{"info":{"_postman_id":"b7ea56c3-4e50-4781-8864-aa33c6fb7818","name":"Salesdock API","description":"<html><head></head><body><h2 id=\"introduction\"><strong>Introduction</strong></h2>\n<p>The Salesdock API allows you to interact with an account in Salesdock. The API is RESTful and uses JSON to transport information.</p>\n<p>The main use case for interacting with a Salsedock account through the API is to help in automated creation and retrieval of sales. Other than Sales, the API can also be used in interacting with other modules on Salesdock including Leads, Forms, Relations etc.</p>\n<p>This documentation aims to provide comprehensive information on how developers can use the Salesdock API to build CRUD operations to manipulate information on Salesdock.</p>\n<hr>\n<h1 id=\"api-basics\">API Basics</h1>\n<p>Each API resource that you use will have a clearly defined path structure. This documentation contains a reference for each resource in the API.</p>\n<p>Before you can use these resources, below is the basic structure of an API resource:</p>\n<h2 id=\"api-path\">API Path</h2>\n<p>The Salesdock API path has the following structure:</p>\n<p><code>https://app.salesdock.nl/api/testomgeving/v1/user/{{resource_path}}</code></p>\n<p>* <a href=\"https://app.salesdock.nl\">https://app.salesdock.nl</a> - The production URL is <a href=\"https://app.salesdock.nl\">https://app.salesdock.nl</a> and for development purpose you can use the staging URL at <a href=\"https://app-staging.salesdock.nl\">https://app-staging.salesdock.nl</a>.<br>* testomgeving - This is your account domain name.<br>* v1 - Version number of the API. Current version is 'v1'.<br>* user - The scope can either be 'user' or 'account'. This is explained in more detail in the \"Scope\" section below. For some specific resources, the scope is not needed and this is mentioned in the documentation in corresponding places.<br>* {{resource_path}} - This indicates the path of the resource you want to access. Each resource path and its details are defined in this documentation under the 'RESOURCES' section. Examples of resource paths are: /products to retrieve all products or /products/3465 to retrieve details of a specific product.</p>\n<h2 id=\"requests\">Requests</h2>\n<p>There are different approaches for making requests to our API. The command line tool cURL is easy and fast for testing our API. When you want to integrate the API into your own software, you can choose to use a general purpose REST library based on your application language. The documentation of each resource shows specific ways in which you can make request for each resource.</p>\n<p>A REST API uses HTTP methods to determine which action to perform on the resource. GET, POST, PUT and DELETE are some of the common methods used in the Salesdock API resources. The type of method is also indicated in the resource documentation.</p>\n<p>An eg. cURL call to get list of products would be:</p>\n<p><code>curl --location --request GET 'https://app.salesdock.nl/api/demo/v1/user/products' --header 'Authorization: Bearer ****' --header 'Accept: application/json'</code></p>\n<h2 id=\"response\">Response</h2>\n<p>Each API request always returns an HTTP code as response. By looking at the code you can know the outcome of the API. Following response codes are returned by the Salesdock API:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Reason</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>200</td>\n<td>OK</td>\n<td>Request was successful</td>\n</tr>\n<tr>\n<td>201</td>\n<td>Created</td>\n<td>Record was created</td>\n</tr>\n<tr>\n<td>400</td>\n<td>Bad request</td>\n<td>Request contains errors</td>\n</tr>\n<tr>\n<td>401</td>\n<td>Unauthorized</td>\n<td>Wrong API token</td>\n</tr>\n<tr>\n<td>403</td>\n<td>Forbidden</td>\n<td>No access to account/API token not whitelisted</td>\n</tr>\n<tr>\n<td>404</td>\n<td>Not found</td>\n<td>Entity not found</td>\n</tr>\n<tr>\n<td>405</td>\n<td>Method Not Allowed</td>\n<td>This endpoint is not available in this API</td>\n</tr>\n<tr>\n<td>429 / 1015</td>\n<td>Too many requests</td>\n<td>Throttling limit reached (see next section)</td>\n</tr>\n<tr>\n<td>500</td>\n<td>Internal Error</td>\n<td>Salesdock needs to fix this</td>\n</tr>\n</tbody>\n</table>\n</div><p>The structure of the API response generally follows the following template:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n \"success\": boolean, // Could be true or false, depending on if the API call was successful or not\n  \"data\": array // Response data\n  \"message\": \"\" // Success or failure messages\n}\n\n</code></pre>\n<p><strong>Pagination</strong></p>\n<p>Some API resources, return the data paginated. This is true for resources that might have a lot of information to return. The number of records per page is by default 20, although this can be configured in the Salesdock application. A sample structure of a paginated response is as follows:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n \"success\": boolean, // Could be true or false, depending on if the API call was successful or not\n  \"data\": {\n    \"current_page\": int, // Current page number\n    \"data\": array, // This will contain all the returned data\n    \"first_page_url\": string, // URL to the first page\"\n    \"from\": int, // First record in this page\n    \"last_page\": int, // Last page number\n    \"last_page_url\": URL to the last page,\n    \"next_page_url\": null|int, URL to next page\n    \"path\": string, // Resource path\n    \"per_page\": int, Records shown per page\n    \"prev_page_url\": null,\n    \"to\": int, // Last record in this page\n    \"total\": int // Number of total records\n  }\n  \"message\": \"\" // Success or failure messages\n}\n\n</code></pre>\n<p>Some endpoints, support cursor pagination. This helps in retrieving results faster but will not show the total number of results in the response. The sample response of the respective endpoints will show if it supports cursor pagination or not. There is a difference in the response structure as shown below. In this case, the developers need to use next_page_url and prev_page_url to traverse between next and previous pages.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"success\": true,\n    \"data\": {\n        \"path\": \"\", // API URL path\n        \"per_page\": int, // number of results per page\n        \"next_cursor\": null|string, // token for next page\n        \"next_page_url\": null|string, // API url for next page\n        \"prev_cursor\": null|string, // token for previous page\n        \"prev_page_url\": null|string, // API url for previous page\n        \"data\": array // Response data\n    },\n    \"message\": \"\" // Response message\n}\n\n</code></pre>\n<h2 id=\"throttling-rate-limiting\">Throttling (Rate limiting)</h2>\n<p>To prevent abuse of the Salesdock API, requests are throttled so that there is a limit to the number of requests that you can do. You can request the API at most 120 times every minute.</p>\n<p>The throttling is based on the source IP and user. So only 120 requests can be requested per minute from one IP or by one API user.</p>\n<p>The API will respond with a 429 or 1015; if you try to exceed this limit.</p>\n<hr>\n<h1 id=\"authentication\">Authentication</h1>\n<p>In order to access the Salesdock API, you have to be an authenticated user. Salesdock uses HTTP authentication via Bearer (token) authorization.</p>\n<h2 id=\"generating-an-api-token\">Generating an API token</h2>\n<p>Your account admin can generate and provide you with the API token that you can use. Each API token is linked to a Salesdock user. Sometimes API tokens are IP specific and can only be accessed from the IP address(es) that were specified while creating the API token.</p>\n<h2 id=\"authorization\">Authorization</h2>\n<p>Once you have an API token, it can be passed in the header of the request to authenticate your request:</p>\n<p>'Authorization: Bearer <em>*\\</em>'</p>\n<h2 id=\"scope\">Scope</h2>\n<p>There are 2 scopes for the API with different access privileges:</p>\n<p>* {{account}} - Account scope gives you access to information across the account.<br>* {{user}} - User scope gives you access for information that is only specific to the user.</p>\n<p>Depending on the role of the user in the Salesdock application, you can use the above scopes in the API calls.</p>\n<hr>\n<h1 id=\"changelog\">Changelog</h1>\n<p>This section contains details about historical changes to the Salesdock API.</p>\n<h2 id=\"22-05-2026\">22-05-2026</h2>\n<ul>\n<li>Added customer_classification support in Create Energy NL business sales</li>\n</ul>\n<h2 id=\"28-05-2025\">28-05-2025</h2>\n<ul>\n<li>Endpoints to fetch statuses list for leads and forms</li>\n</ul>\n<h2 id=\"08-05-2025\">08-05-2025</h2>\n<ul>\n<li>New endpoint to fetch Lead results by period</li>\n</ul>\n<h2 id=\"02-05-2025\">02-05-2025</h2>\n<ul>\n<li>New endpoint to fetch Lead results by lead id</li>\n</ul>\n<h2 id=\"27-02-2025\">27-02-2025</h2>\n<ul>\n<li>Team information added to Get sale endpoint</li>\n</ul>\n<h2 id=\"29-10-2024\">29-10-2024</h2>\n<ul>\n<li>Multi-products sections information added to Get flow endpoint for default flows</li>\n</ul>\n<h2 id=\"14-10-2024\">14-10-2024</h2>\n<ul>\n<li>Update lead endpoints accepts relation_id</li>\n</ul>\n<h2 id=\"10-10-2024\">10-10-2024</h2>\n<ul>\n<li>Period search parameters added for Get products endpoint</li>\n</ul>\n<h2 id=\"26-09-2024\">26-09-2024</h2>\n<ul>\n<li>Leads history added to Get leads and Get lead enpoints</li>\n</ul>\n<h2 id=\"12-07-2024\">12-07-2024</h2>\n<ul>\n<li>Get sale endpoint changes to include products and totals</li>\n</ul>\n<h2 id=\"04-07-2024\">04-07-2024</h2>\n<ul>\n<li>Get agreement endpoint</li>\n</ul>\n<h2 id=\"14-06-2024\">14-06-2024</h2>\n<ul>\n<li><p>Changes in Get tasks and Get task endpoint to provide more information</p>\n</li>\n<li><p>Added labels to Create Lead APIs</p>\n</li>\n</ul>\n<h2 id=\"31-05-2024\">31-05-2024</h2>\n<ul>\n<li><p>New endpoint to fetch townships</p>\n</li>\n<li><p>Changes to create lead form endpoint</p>\n</li>\n</ul>\n<h2 id=\"22-04-2024\">22-04-2024</h2>\n<ul>\n<li>Extra fields and lead questions added to Get leads API response</li>\n</ul>\n<h2 id=\"09-04-2024\">09-04-2024</h2>\n<ul>\n<li><p>Update sale proposal for telecom sales</p>\n</li>\n<li><p>Update finalized sales for default and telecom sales</p>\n</li>\n</ul>\n<h2 id=\"29-03-2024\">29-03-2024</h2>\n<ul>\n<li>New endpoint to create optin for a sale</li>\n</ul>\n<h2 id=\"04-12-2023\">04-12-2023</h2>\n<ul>\n<li>Update sale proposal end pooint for default sales</li>\n</ul>\n<h2 id=\"24-10-2023\">24-10-2023</h2>\n<ul>\n<li>Product question rules as JSON</li>\n</ul>\n<h2 id=\"05-10-2023\">05-10-2023</h2>\n<ul>\n<li>New API endpoints to update lead as reseller and admin users</li>\n</ul>\n<h2 id=\"18-09-2023\">18-09-2023</h2>\n<ul>\n<li>New API endpoint to create, update and delete task</li>\n</ul>\n<h2 id=\"17-07-2023\">17-07-2023</h2>\n<ul>\n<li>New API endpoint to retrieve products of an organisation.</li>\n</ul>\n<h2 id=\"20-06-2023\">20-06-2023</h2>\n<ul>\n<li><p>New API endpoint to fetch lead forms</p>\n</li>\n<li><p>New API endpoint to fetch lead form elements</p>\n</li>\n</ul>\n<h2 id=\"02-06-2023\">02-06-2023</h2>\n<ul>\n<li><p>New API endpoint to fetch lead activities</p>\n</li>\n<li><p>New API endpoint to fetch lead sources</p>\n</li>\n</ul>\n<h2 id=\"25-04-2023\">25-04-2023</h2>\n<ul>\n<li>New API endpoint to update relation</li>\n</ul>\n<h2 id=\"13-03-2023\">13-03-2023</h2>\n<ul>\n<li>Get sale API response updated to include more information</li>\n</ul>\n<h2 id=\"27-02-2023\">27-02-2023</h2>\n<ul>\n<li><p>New API endpoint to update status of lead</p>\n</li>\n<li><p>Changes in get product calculation endpoint to support multiple EAN codes.</p>\n</li>\n</ul>\n<h2 id=\"13-01-2023\">13-01-2023</h2>\n<p>* New API endpoint to fetch sale ids of form instance</p>\n<h2 id=\"05-12-2022\">05-12-2022</h2>\n<p>* New API endpoint to fetch tasks</p>\n<p>* New API endpoints to get task</p>\n<h2 id=\"21-10-2022\">21-10-2022</h2>\n<p>* New API endpoint to fetch Lead form PDF</p>\n<h2 id=\"13-10-2022\">13-10-2022</h2>\n<p>* New API endpoint to get form instances based on Sale ID</p>\n<h2 id=\"20-08-2022\">20-08-2022</h2>\n<p>* New API endpoint to retrieve products of a sale</p>\n<h2 id=\"26-08-2022\">26-08-2022</h2>\n<p>* New API endpoint to retrieve product questions answers of a sale<br>* Added sale extra fields to the get sale API endpoint</p>\n<h2 id=\"09-08-2022\">09-08-2022</h2>\n<p>* New API endpoint to create solar panel sale</p>\n<h2 id=\"06-06-2022\">06-06-2022</h2>\n<p>* New API endpoint to connect organisations to product<br>* New API endpoint to connect product to oraganisations</p>\n<h2 id=\"03-06-2022\">03-06-2022</h2>\n<p>* New API endpoints to create, update and delete organisations</p>\n<h2 id=\"02-06-2022\">02-06-2022</h2>\n<p>* New API endpoints to create, update and delete products</p>\n<h2 id=\"19-05-2022\">19-05-2022</h2>\n<p>* New API endpoints to view, create, update and delete suppliers</p>\n<h2 id=\"13-05-2022\">13-05-2022</h2>\n<p>* Changes in create concept transaction to support source_version and source_metadata<br>* New endpoint to get sales of concept transaction<br>* New endpoint to get view URL of sale</p>\n<h2 id=\"10-02-2022\">10-02-2022</h2>\n<p>* New API endpoint to create relation</p>\n<h2 id=\"17-01-2022\">17-01-2022</h2>\n<p>* New API endpoint to fetch list of agreements</p>\n<h2 id=\"12-01-2022\">12-01-2022</h2>\n<p>* New API endpoint to fetch list of leads</p>\n<h2 id=\"21-12-2021\">21-12-2021</h2>\n<p>* New API endpoint to fetch Belgium energy products with tariff and cost specifications.</p>\n<h2 id=\"20-12-2021\">20-12-2021</h2>\n<p>* New API endpoint to update energy product</p>\n<h2 id=\"03-11-2021\">03-11-2021</h2>\n<p>* New API endpoints for fetching and creating form instances<br>* New API endpoint for fetching list of relations.</p>\n<h2 id=\"30-07-2021\">30-07-2021</h2>\n<p>* New API endpoints added to get sales contracts</p>\n<h2 id=\"07-05-2021\">07-05-2021</h2>\n<p>* New endpoints to create leads and fetch leads</p>\n<h2 id=\"16-04-2021\">16-04-2021</h2>\n<p>* End point to get organisations and users</p>\n<h2 id=\"26-03-2021\">26-03-2021</h2>\n<p>* New endpoints for commissions added</p>\n<h2 id=\"27-01-2021\">27-01-2021</h2>\n<p>* API throttling changed to 60 calls per minute</p>\n<h2 id=\"25-01-2021\">25-01-2021</h2>\n<p>* external_reference added to create sale end-points</p>\n<h2 id=\"17-11-2020\">17-11-2020</h2>\n<p>* New API endpoint to update the status of a sale.</p>\n<p>* New API endpoint to get list of sale statuses.</p>\n<h2 id=\"21-09-2020\">21-09-2020</h2>\n<p>* New API endpoint to get energy usage estimate.<br>* New API endpoint to get products with energy tariffs and calculations.</p>\n<h2 id=\"17-08-2020\">17-08-2020</h2>\n<p>* User and organisation details added to create sale end points.<br>* New end point to get sales by different export templates.</p>\n<h2 id=\"24-07-2020\">24-07-2020</h2>\n<p>* New endpoint added for getting energy sales.</p>\n<h2 id=\"25-06-2020\">25-06-2020</h2>\n<p>* Parameters added in get sales call.<br>* Details on how to create completed/uncompleted offers and orders explained.</p>\n<h2 id=\"09-04-2020\">09-04-2020</h2>\n<p>* Get sales response changed.</p>\n<h2 id=\"26-03-2020\">26-03-2020</h2>\n<p>* Create concept transactions and lead APIs added.</p>\n<h2 id=\"19-02-2020\">19-02-2020</h2>\n<p>* Agreements validation in Create sales API.</p>\n<h2 id=\"06-02-2020\">06-02-2020</h2>\n<p>* First version of the API made public.</p>\n<hr>\n<h1 id=\"resources\">Resources</h1>\n<p>The supported resources in the Salesdock API along with sample requests and responses can be seen in this section.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"API Basics","slug":"api-basics"},{"content":"Authentication","slug":"authentication"},{"content":"Changelog","slug":"changelog"},{"content":"Resources","slug":"resources"}],"owner":"10508713","collectionId":"b7ea56c3-4e50-4781-8864-aa33c6fb7818","publishedId":"SzKbMFge","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2021-02-04T16:11:28.000Z"},"item":[{"name":"Sales API","item":[{"name":"Energy","item":[{"name":"NL","item":[{"name":"Create energy offer (small-business)","id":"7e1ca4b2-4fbf-477f-b3df-c84aa40b3572","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"transaction_type\": \"offer\",\n    \"postcode\": \"7521WC\",\n    \"housenumber\": \"15\",\n    \"suffix\": null,\n    \"gender\": \"male\",\n    \"firstname\": \"Test\",\n    \"lastname\": \"Test\",\n    \"birthdate\": \"01-01-1990\",\n    \"streetname\": \"Test\",\n    \"city\": \"Test\",\n    \"email\": \"test@salesdock.nl\",\n    \"phone\": \"064808XXX\",\n    \"contact_person\": \"Test\",\n    \"company_name\": \"Test\",\n    \"company_coc\": \"12345678\",\n    \"company_vat\": null,\n    \"iban\": \"\",\n    \"iban_holder\": \"\",\n    \"sale_channel\": \"online\",\n    \"product_id\": \"13269\",\n    \"type\": \"e_g\",\n    \"has_return\": 0,\n    \"building_function\": \"1\",\n    \"return\": 0,\n    \"return_e_high\": 0,\n    \"return_e_low\": 0,\n    \"usage_e_single\": 1844,\n    \"usage_e_high\": null,\n    \"usage_e_low\": null,\n    \"usage_g\": 1024,\n    \"tarifftype\": \"0\",\n    \"e_connection_type\": \"\",\n    \"g_connection_type\": \"\",\n    \"g_region\": \"\",\n    \"connection_postcode\": \"7521WC\",\n    \"connection_housenumber\": \"15\",\n    \"connection_suffix\": null,\n    \"connection_streetname\": \"Test\",\n    \"connection_city\": \"Test\",\n    \"business\": \"1\",\n    \"delivery_mainly_private\": \"0\",\n    \"valid_till\": \"2025-07-25\",\n    \"questionData\": {\n        \"inhuizing\": \"Nee\",\n        \"ik-wil-overstappen-per_switchdate_option\": \"Zo snel als mogelijk\",\n        \"betaalwijze\": \"Automatische incasso\",\n        \"gewenste-ingangsdatum_switchdate_option\": \"Zo snel als mogelijk\",\n        \"aanvullende-informatie\": \"Test\",\n        \"organisatie-integratie-test\": \"Test\"\n    },\n    \"agreements\": {\n    \t\"privay-statement\": \"1\"\n    },\n    \"initial_user_firstname\": \"John\",\n    \"initial_user_lastname\": \"Doe\",\n    \"initial_organisation_name\": \"Test Organisation\"\n}"},"url":"{{url}}/api/{{domain}}/{{version}}/sales/flow/{{flow_type_identifier}}/{{flow_identifier}}","description":"<p>Create an offer for energy flow (small-business).</p>\n<p>Replace {{flow_identifier}} with the identifier of the flow.</p>\n<p>Replace {{flow_type_identifier}} with the identifier of the flow type.</p>\n<p>In the questionData object, the product question identifiers needed for the flow should be sent along with the corresponding answers</p>\n<p>In the agreements object, the agreement identifiers needed for the flow should be sent along with value \"1\" for accepted agreements.</p>\n<h4 id=\"completed-and-uncompleted-offers\">Completed and uncompleted offers</h4>\n<p>The API endpoint can be used to create both completed and uncompleted offers. Uncompleted offers result in a new contract pdf being generated and an email being sent to the customer to accept the offer. A completed offer will not send an offer acceptance email. An offer via the API is considered as a completed offer if it contains the \"contract_date\" parameter.</p>\n<p><strong>Body Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Mandatory</th>\n<th>Possible Value(s)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>transaction_type</td>\n<td>string</td>\n<td>Y</td>\n<td>offer</td>\n<td></td>\n</tr>\n<tr>\n<td>connection_postcode</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Connection postcode</td>\n</tr>\n<tr>\n<td>connection_housenumber</td>\n<td>integer</td>\n<td>Y</td>\n<td></td>\n<td>Connection house number</td>\n</tr>\n<tr>\n<td>connection_suffix</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Connection house number extension</td>\n</tr>\n<tr>\n<td>connection_streetname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Connection street name</td>\n</tr>\n<tr>\n<td>connection_city</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Connection city</td>\n</tr>\n<tr>\n<td>postcode</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence postcode</td>\n</tr>\n<tr>\n<td>housenumber</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence house number</td>\n</tr>\n<tr>\n<td>suffix</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence house number extension</td>\n</tr>\n<tr>\n<td>streetname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence street name</td>\n</tr>\n<tr>\n<td>city</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence city</td>\n</tr>\n<tr>\n<td>gender</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>firstname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>lastname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>email</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>phone</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>contact_person</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Contact person</td>\n</tr>\n<tr>\n<td>company_name</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Company name</td>\n</tr>\n<tr>\n<td>company_coc</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>KVK Number</td>\n</tr>\n<tr>\n<td>company_vat</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>BTW number of Company. Required according to flow settings</td>\n</tr>\n<tr>\n<td>iban</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required according to flow settings</td>\n</tr>\n<tr>\n<td>iban_holder</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required according to flow settings</td>\n</tr>\n<tr>\n<td>sale_channel</td>\n<td>string</td>\n<td>N</td>\n<td>'d2d', 'retail', 'telemarketing', 'online', 'f2f'</td>\n<td></td>\n</tr>\n<tr>\n<td>product_id</td>\n<td>integer</td>\n<td>Y</td>\n<td></td>\n<td>ID of product</td>\n</tr>\n<tr>\n<td>business</td>\n<td>string</td>\n<td>Y</td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>Y</td>\n<td>'e', 'g', 'e_g'</td>\n<td>Type of energy selected - Electricity, Gas or electricity and gas</td>\n</tr>\n<tr>\n<td>building_function</td>\n<td>integer</td>\n<td>Y</td>\n<td>0, 1</td>\n<td>Woon-/verblijfsfunctie</td>\n</tr>\n<tr>\n<td>tarifftype</td>\n<td>integer</td>\n<td>Y</td>\n<td>0, 1</td>\n<td>0 =&gt; single meter; 1 =&gt; double meter</td>\n</tr>\n<tr>\n<td>usage_e_single</td>\n<td>float</td>\n<td>N</td>\n<td></td>\n<td>Required if type is 'e' or 'e_g' and tarifftype is 0, Single meter usage of electricity</td>\n</tr>\n<tr>\n<td>usage_e_high</td>\n<td>float</td>\n<td>N</td>\n<td></td>\n<td>Required if type is 'e' or 'e_g' and tarifftype is 1, Normaal usage of electricity in the case of double meter</td>\n</tr>\n<tr>\n<td>usage_e_low</td>\n<td>float</td>\n<td>N</td>\n<td></td>\n<td>Required if type is 'e' or 'e_g' and tarifftype is 1, Low usage of electricity in the case of double meter</td>\n</tr>\n<tr>\n<td>usage_g</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required if type is 'g' or 'e_g', Gas usage</td>\n</tr>\n<tr>\n<td>has_return</td>\n<td>integer</td>\n<td>Y</td>\n<td>0, 1</td>\n<td>Ik lever ook elektriciteit terug, 0 =&gt; No; 1 =&gt; Yes</td>\n</tr>\n<tr>\n<td>return</td>\n<td>float</td>\n<td>N</td>\n<td></td>\n<td>Required if has_return is 1 and tarifftype is 0, Single meter return of electricity</td>\n</tr>\n<tr>\n<td>return_e_high</td>\n<td>float</td>\n<td>N</td>\n<td></td>\n<td>Required if has_return is 1 and tarifftype is 1, Double meter return of normaal electricity</td>\n</tr>\n<tr>\n<td>return_e_low</td>\n<td>float</td>\n<td>N</td>\n<td></td>\n<td>Required if has_return is 1 and tarifftype is 1, Double meter return of low electricity</td>\n</tr>\n<tr>\n<td>e_gridoperator</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Electricity grid operator is required if type is 'e' or 'e_g'. If empty, then grid operator is obtained from eancodeboek.nl.</td>\n</tr>\n<tr>\n<td>g_gridoperator</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Gas grid operator is required if type is 'g' or 'e_g'. If empty, then grid operator is obtained from eancodeboek.nl.</td>\n</tr>\n<tr>\n<td>e_connection_type</td>\n<td>string</td>\n<td>N</td>\n<td>'E_NULTARIEF', 'E_1X6A_ONB' , ‘E_1X6A', 'E_1X10A_ONB', 'E_1X10A', 'E_3X25A_ONB', 'E_3X25A', ‘E_3X35A', 'E_3X50A', 'E_3X63A', 'E_3X80A',  <br />'E_GV'</td>\n<td>Electricity connection type is required if type is 'e' or 'e_g'. If empty, then value is estimated based on the usage.</td>\n</tr>\n<tr>\n<td>g_connection_type</td>\n<td>string</td>\n<td>N</td>\n<td>'G_NULTARIEF', 'G_ONB', 'G_G6_500’, ‘G_G6_500_4000', 'G_G6_4000', 'G_G10', 'G_G16', 'G_G25',  <br />'G_GV'</td>\n<td>Gas connection type is required if type is 'g' or 'e_g'. If empty, then value is estimated based on the usage.</td>\n</tr>\n<tr>\n<td>g_region</td>\n<td>integer</td>\n<td>N</td>\n<td>[1-10]</td>\n<td>Gas region is required if type is 'g' or 'e_g'. If empty, value is obtained from database.</td>\n</tr>\n<tr>\n<td>electricity_ean</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Electricity EAN Code is required if type is 'e' or 'e_g'. If empty, then ean code is obtained from eancodeboek.nl.</td>\n</tr>\n<tr>\n<td>gas_ean</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Gas EAN Code is required if type is 'g' or 'e_g'. If empty, then ean code is obtained from eancodeboek.nl.</td>\n</tr>\n<tr>\n<td>contract_date</td>\n<td>date</td>\n<td>N</td>\n<td></td>\n<td>In DD-MM-YYYY format. If not empty, then signifies that it is a completed offer.</td>\n</tr>\n<tr>\n<td>contract_pdf</td>\n<td>array</td>\n<td>N</td>\n<td></td>\n<td>Required if contract_date is not empty. Array expects 3 keys. First one is \"content\", which is the Base64 string of the contract pdf. Second one is \"extension\", which should always be 'pdf'. Third one is \"created_at\", which is the file created date time in \"YYYY-mm-dd hh:mm:ss\" format</td>\n</tr>\n<tr>\n<td>signature</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required based on flow settings, Base64 encoded string of image</td>\n</tr>\n<tr>\n<td>questionData</td>\n<td>array</td>\n<td>Y</td>\n<td></td>\n<td>Product question identifiers along with corresponding answers</td>\n</tr>\n<tr>\n<td>agreements</td>\n<td>array</td>\n<td>Y</td>\n<td></td>\n<td>Agreement identifiers with answer as \"1\" for accepted agreements</td>\n</tr>\n<tr>\n<td>initial_user_firstname</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>The first name of the user who did the sale</td>\n</tr>\n<tr>\n<td>initial_user_lastname</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>The last name of the user who did the sale</td>\n</tr>\n<tr>\n<td>initial_organisation_name</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>The name of the organisation which did the sale</td>\n</tr>\n<tr>\n<td>initial_created_at</td>\n<td>datetime</td>\n<td>N</td>\n<td></td>\n<td>In YYYY-mm-dd hh:mm:ss format. The date and time on which the sale was originally created</td>\n</tr>\n<tr>\n<td>external_reference</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>An order reference identifier that can be used by the API partners</td>\n</tr>\n<tr>\n<td>relation_id</td>\n<td>integer</td>\n<td>N</td>\n<td></td>\n<td>The ID of the relation that needs to be linked to the sale. This has to be a valid relation ID that is accessible to the user. If relation_id is not sent, then a new relation will be created and linked to the sale.</td>\n</tr>\n<tr>\n<td>customer_classification</td>\n<td>string</td>\n<td>N</td>\n<td>\"micro_business\", \"small_business, \"medium_business\", \"large_business\"</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","{{domain}}","{{version}}","sales","flow","{{flow_type_identifier}}","{{flow_identifier}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"1aab73b2-7a5c-49fe-9bb8-5f7902989b53","name":"Create energy offer (small-business)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"transaction_type\": \"offer\",\n    \"postcode\": \"7521WC\",\n    \"housenumber\": \"15\",\n    \"suffix\": null,\n    \"type\": \"e_g\",\n    \"has_return\": 0,\n    \"building_function\": \"1\",\n    \"gender\": \"male\",\n    \"firstname\": \"Test\",\n    \"lastname\": \"Test\",\n    \"birthdate\": \"01-01-1990\",\n    \"streetname\": \"Test\",\n    \"city\": \"Test\",\n    \"email\": \"test@salesdock.nl\",\n    \"phone\": \"0611XXXXX\",\n    \"contact_person\": \"Test\",\n    \"company_name\": \"Test\",\n    \"company_coc\": \"12345678\",\n    \"company_vat\": null,\n    \"iban\": \"\",\n    \"iban_holder\": \"\",\n    \"sale_channel\": \"online\",\n    \"product_id\": \"3465\",\n    \"return\": 0,\n    \"return_e_high\": 0,\n    \"return_e_low\": 0,\n    \"usage_e_single\": 1844,\n    \"usage_e_high\": null,\n    \"usage_e_low\": null,\n    \"usage_g\": 1024,\n    \"tarifftype\": \"0\",\n    \"e_gridoperator\": \"\",\n    \"g_gridoperator\": \"\",\n    \"e_connection_type\": \"\",\n    \"g_connection_type\": \"\",\n    \"g_region\": \"\",\n    \"electricity_ean\": \"800000000000000000\",\n    \"gas_ean\": \"800000000000000001\",\n    \"connection_postcode\": \"7521WC\",\n    \"connection_housenumber\": \"15\",\n    \"connection_suffix\": null,\n    \"connection_streetname\": \"Test\",\n    \"connection_city\": \"Test\",\n    \"business\": \"1\",\n    \"questionData\": {\n        \"inhuizing\": \"Ja\",\n        \"datum-inhuizing\": \"2020-03-01\",\n        \"ingangsdatum\": \"2020-03-01\",\n        \"overstaptest_switchdate_option\": \"Zo snel als mogelijk\",\n        \"overstaptest\": \"Nee\",\n        \"file-question\": [\n            {\n                \"name\": \"Image\",\n                \"content\": \"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNk+M9QDwADhgGAWjR9awAAAABJRU5ErkJggg==\",\n                \"extension\": \"png\"\n            }\n        ]\n    },\n    \"agreements\": {\n        \"privay-statement\": \"1\"\n    },\n    \"initial_user_firstname\": \"John\",\n    \"initial_user_lastname\": \"Doe\",\n    \"initial_organisation_name\": \"Test Organisation\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/sales/flow/{{flow_type_identifier}}/{{flow_identifier}}"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 21 Feb 2020 13:45:53 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Security-Policy","value":"default-src 'none'; base-uri 'none'; connect-src 'self'; font-src 'self' https://fonts.gstatic.com data: https:; form-action 'self'; frame-ancestors 'self'; frame-src 'self'; img-src 'self' http://json-services.nutselect.nl https://files.delta.nl https://www.westbespaarcoach.nl data: https:; media-src 'none'; object-src 'self'; script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com"},{"key":"Feature-Policy","value":"accelerometer 'self'; ambient-light-sensor 'self'; autoplay 'self'; camera 'self'; display-capture 'self'; document-domain *; encrypted-media 'self'; fullscreen 'self'; geolocation 'self'; gyroscope 'self'; magnetometer 'self'; microphone 'self'; midi 'self'; payment 'self'; picture-in-picture *; speaker 'self'; sync-xhr *; usb 'self'; vr 'self'"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"568929c28a42d5bb-BOM"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"sale_id\": 261268\n    },\n    \"message\": \"Sale created successfully.\"\n}"},{"id":"dced0117-6ea4-43db-8dd5-3730eb506a25","name":"Create completed energy offer (small-business)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"transaction_type\": \"offer\",\n    \"postcode\": \"7521WC\",\n    \"housenumber\": \"15\",\n    \"suffix\": null,\n    \"type\": \"e_g\",\n    \"has_return\": 0,\n    \"building_function\": \"1\",\n    \"gender\": \"male\",\n    \"firstname\": \"Test\",\n    \"lastname\": \"Test\",\n    \"birthdate\": \"01-01-1990\",\n    \"streetname\": \"Test\",\n    \"city\": \"Test\",\n    \"email\": \"test@salesdock.nl\",\n    \"phone\": \"0611XXXXX\",\n    \"contact_person\": \"Test\",\n    \"company_name\": \"Test\",\n    \"company_coc\": \"12345678\",\n    \"company_vat\": null,\n    \"iban\": \"\",\n    \"iban_holder\": \"\",\n    \"sale_channel\": \"online\",\n    \"product_id\": \"3465\",\n    \"return\": 0,\n    \"return_e_high\": 0,\n    \"return_e_low\": 0,\n    \"usage_e_single\": 1844,\n    \"usage_e_high\": null,\n    \"usage_e_low\": null,\n    \"usage_g\": 1024,\n    \"low_tariff_time\": null,\n    \"tarifftype\": \"0\",\n    \"e_gridoperator\": \"\",\n    \"g_gridoperator\": \"\",\n    \"e_connection_type\": \"\",\n    \"g_connection_type\": \"\",\n    \"g_region\": \"\",\n    \"electricity_ean\": \"800000000000000000\",\n    \"gas_ean\": \"800000000000000001\",\n    \"connection_postcode\": \"7521WC\",\n    \"connection_housenumber\": \"15\",\n    \"connection_suffix\": null,\n    \"connection_streetname\": \"Test\",\n    \"connection_city\": \"Test\",\n    \"business\": \"1\",\n    \"contract_date\": \"01-06-2020\",\n    \"contract_pdf\": {\n        \"content\": \"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+Czvwv8A2RYbzSNJuofHXjSIMg03TbhWt7OT0uJxkJjuq5bjGB1r8t/2vv8Agsf8Yv2sY7nTf7VHg7wvcZU6VortF5yH+GWb/WSfTIU/3elfKLMXYkkkk5JPU16uGyNt82JfyX6v/L7z9p4Z8HLNV86nf+5F/wDpUv0j/wCBHsH7Xv7dXxF/ba8Zf2p411l5rO3djY6VbjyrHT1J6Ig6nHV2yx9e1ePUUV9DTpxhFRgrJH7nhMHQwtGOHw0FCEdklZIKKKKs6QooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAAcGvXvgh+3t8Yv2dCieEfiF4k020Q5+xSXJubQ/8AbGXcn4gZ968hoqJ04zVpq6ObFYOhiYeyxEFOPaSTX3M/RD4T/wDBx38VvCUMUPirwt4V8WxJjfJGZNPuHH+8u5B/3xX0H4D/AODlL4eauka+IvAHivRZW++bW5hvok+hPlsf++a/GyiuCplGFlry29D4vHeGfDuJfM8Pyv8Autx/C9vwP3n8O/8ABfL9nXXAvn634i0snr9q0aUhf+/e6untf+C2P7M1yPm+JKQn0fRtQ/pAa/nxorneRUOjf3r/ACPBqeDORyd41Ki/7ej+sT+gjUP+C3f7NFjGzJ8QnuSP4YtFvsn/AL6iFcX4q/4ODfgBoUbfYZfFusyDoINK8sH8XYfyr8K6KayPDrdt/P8A4BVLwayKDvKdSXrJfpFH66fET/g5i0GzV08KfC3VdQYjCy6rqyWqqfXZGkhP03Cvm34wf8HAXx3+Isc0OiTeHvBdvJwDptl50yD2eYvz74r4dorpp5XhYaqF/XU+jwHh1w9hHzQwyk+8m5fhJtfgdh8Vv2gvHPx01I3fjHxd4i8TTk5B1G/knVPZVY4UewAArj6KK74xUVZI+yo0adKCp0oqKXRKy+5BRRRTNAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAK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a4B3Cu2d2elf9ZLp31e9MDf4r4XX/heGKS3OBmeKE4LVimRvvTdFipg38m85/y+zoANbCmVuZHN0cmVhbQplbmRvYmoKNzAgMCBvYmoKOTI2MwplbmRvYmoKNjggMCBvYmoKPDwgL1R5cGUgL0ZvbnQKL1N1YnR5cGUgL0NJREZvbnRUeXBlMgovQmFzZUZvbnQgL0RlamFWdVNhbnMKL0NJRFN5c3RlbUluZm8gPDwgL1JlZ2lzdHJ5IChBZG9iZSkgL09yZGVyaW5nIChJZGVudGl0eSkgL1N1cHBsZW1lbnQgMCA+PgovRm9udERlc2NyaXB0b3IgNjYgMCBSCi9DSURUb0dJRE1hcCAvSWRlbnRpdHkKL1cgWzAgWzU5NSA2NTEgNjEwIDYyOSA5NjYgNDA4IDU3NCAzMzQgNjMxIDYzMSA2MzEgNjMxIDU5OCA2MDcgNjMwIDYyOSA1NDUgMzg5IDYwNiA1MTcgMzE1IDYyNyA2MzAgMjc2IDYzMSAyNzYgNjA4IDU1MyA1ODcgNzY5IDI3NiA2MzEgMzU4IDYzMSA2NzkgNjMxIDMxNSA5ODEgNjkzIDY4MSAzNDkgNjMwIDYzMSA3NDIgNzY0IDYyOSAzMTUgOTkyIDYzMSA2MzAgNjg5IDc0NiA3ODEgNjMwIDcyNiA4NTYgMjkzIDYzMSA1ODcgNzc0IDY3OSAyOTMgNTIxIDUyNyAzMzQgMzg3IDM4NyA4MzEgXQpdCj4+CmVuZG9iago2OSAwIG9iago8PCAvTGVuZ3RoIDgzMyA+PgpzdHJlYW0KL0NJREluaXQgL1Byb2NTZXQgZmluZHJlc291cmNlIGJlZ2luCjEyIGRpY3QgYmVnaW4KYmVnaW5jbWFwCi9DSURTeXN0ZW1JbmZvIDw8IC9SZWdpc3RyeSAoQWRvYmUpIC9PcmRlcmluZyAoVUNTKSAvU3VwcGxlbWVudCAwID4+IGRlZgovQ01hcE5hbWUgL0Fkb2JlLUlkZW50aXR5LVVDUyBkZWYKL0NNYXBUeXBlIDIgZGVmCjEgYmVnaW5jb2Rlc3BhY2VyYW5nZQo8MDAwMD4gPEZGRkY+CmVuZGNvZGVzcGFjZXJhbmdlCjIgYmVnaW5iZnJhbmdlCjwwMDAwPiA8MDAwMD4gPDAwMDA+CjwwMDAxPiA8MDA0Mz4gWzwwMDRCPiA8MDA2NT4gPDAwNkU+IDwwMDZEPiA8MDA3Mj4gPDAwNkI+IDwwMDNBPiA8MDAzNT4gPDAwMzg+IDwwMDM3PiA8MDAzMj4gPDAwNTA+IDwwMDZGPiA8MDA2ND4gPDAwNzU+IDwwMDYzPiA8MDA3ND4gPDAwNTQ+IDwwMDczPiA8MDAyMD4gPDAwNDU+IDwwMDY3PiA8MDA2OT4gPDAwMzM+IDwwMDZBPiA8MDA2MT4gPDAwNEM+IDwwMDc2PiA8MDA0Nz4gPDAwNkM+IDwwMDMwPiA8MDAyRD4gPDAwMzY+IDwwMDQxPiA8MDAzMT4gPDAwMkM+IDwwMDU3PiA8MDA0Mz4gPDAwNDI+IDwwMDY2PiA8MDA3MD4gPDAwMzQ+IDwwMDRFPiA8MDA0ND4gPDAwNjg+IDwwMDJFPiA8MDA0MD4gPDAwMzk+IDwwMDYyPiA8MDA1Mj4gPDAwNDg+IDwwMDRGPiA8MDA1Mz4gPDAwNTU+IDwwMDREPiA8MDA0QT4gPDIwQUM+IDwwMDc4PiA8MDAyNj4gPDAwNTY+IDwwMDQ5PiA8MDA3QT4gPDAwM0Y+IDwwMDJGPiA8MDAyOD4gPDAwMjk+IDwwMDNDPiBdCmVuZGJmcmFuZ2UKZW5kY21hcApDTWFwTmFtZSBjdXJyZW50ZGljdCAvQ01hcCBkZWZpbmVyZXNvdXJjZSBwb3AKZW5kCmVuZAoKZW5kc3RyZWFtCmVuZG9iagoxMyAwIG9iago8PCAvVHlwZSAvRm9udAovU3VidHlwZSAvVHlwZTAKL0Jhc2VGb250IC9EZWphVnVTYW5zCi9FbmNvZGluZyAvSWRlbnRpdHktSAovRGVzY2VuZGFudEZvbnRzIFs2OCAwIFJdCi9Ub1VuaWNvZGUgNjkgMCBSPj4KZW5kb2JqCjcxIDAgb2JqCjw8IC9UeXBlIC9Gb250RGVzY3JpcHRvcgovRm9udE5hbWUgL1FUQ0FBQStEZWphVnVTYW5zLUJvbGQKL0ZsYWdzIDQgCi9Gb250QkJveCBbLTEwNjkuMzM1OTMgLTQxNS4wMzkwNjIgMTk3NS4wOTc2NSAxMTc0LjMxNjQwIF0KL0l0YWxpY0FuZ2xlIDAgCi9Bc2NlbnQgOTI4LjIyMjY1NiAKL0Rlc2NlbnQgLTIzNS44Mzk4NDMgCi9DYXBIZWlnaHQg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ID4+CnN0cmVhbQovQ0lESW5pdCAvUHJvY1NldCBmaW5kcmVzb3VyY2UgYmVnaW4KMTIgZGljdCBiZWdpbgpiZWdpbmNtYXAKL0NJRFN5c3RlbUluZm8gPDwgL1JlZ2lzdHJ5IChBZG9iZSkgL09yZGVyaW5nIChVQ1MpIC9TdXBwbGVtZW50IDAgPj4gZGVmCi9DTWFwTmFtZSAvQWRvYmUtSWRlbnRpdHktVUNTIGRlZgovQ01hcFR5cGUgMiBkZWYKMSBiZWdpbmNvZGVzcGFjZXJhbmdlCjwwMDAwPiA8RkZGRj4KZW5kY29kZXNwYWNlcmFuZ2UKMiBiZWdpbmJmcmFuZ2UKPDAwMDA+IDwwMDAwPiA8MDAwMD4KPDAwMDE+IDwwMDI5PiBbPDAwNEM+IDwwMDY1PiA8MDA3Nj4gPDAwNzI+IDwwMDY5PiA8MDA2RT4gPDAwNjc+IDwwMDczPiA8MDA2MT4gPDAwNjQ+IDwwMDQzPiA8MDA2Rj4gPDAwNzQ+IDwwMDYzPiA8MDA3MD4gPDAwNDI+IDwwMDZDPiA8MDA0Rj4gPDAwNkI+IDwwMDQ0PiA8MDA2RD4gPDAwNEI+IDwwMDIwPiA8MDA2Mj4gPDAwNzU+IDwwMDQ1PiA8MDA3OD4gPDAwNjY+IDwwMDJCPiA8MjBBQz4gPDAwMzA+IDwwMDJDPiA8MDAzMT4gPDAwMzY+IDwwMDMzPiA8MDAzMj4gPDAwMzk+IDwwMDU0PiA8MDAzNz4gPDAwMzQ+IDwwMDM1PiBdCmVuZGJmcmFuZ2UKZW5kY21hcApDTWFwTmFtZSBjdXJyZW50ZGljdCAvQ01hcCBkZWZpbmVyZXNvdXJjZSBwb3AKZW5kCmVuZAoKZW5kc3RyZWFtCmVuZG9iagoxNCAwIG9iago8PCAvVHlwZSAvRm9udAovU3VidHlwZSAvVHlwZTAKL0Jhc2VGb250IC9EZWphVnVTYW5zLUJvbGQKL0VuY29kaW5nIC9JZGVudGl0eS1ICi9EZXNjZW5kYW50Rm9udHMgWzczIDAgUl0KL1RvVW5pY29kZSA3NCAwIFI+PgplbmRvYmoKMiAwIG9iago8PAovVHlwZSAvUGFnZXMKL0tpZHMgClsKNSAwIFIKMzQgMCBSCl0KL0NvdW50IDIKL1Byb2NTZXQgWy9QREYgL1RleHQgL0ltYWdlQiAvSW1hZ2VDXQo+PgplbmRvYmoKeHJlZgowIDc2CjAwMDAwMDAwMDAgNjU1MzUgZiAKMDAwMDAwMDAwOSAwMDAwMCBuIAowMDAwMDk0NDIyIDAwMDAwIG4gCjAwMDAwMDAxNjMgMDAwMDAgbiAKMDAwMDAwMDI1OCAwMDAwMCBuIAowMDAwMDYwMzYxIDAwMDAwIG4gCjAwMDAwMDAyOTUgMDAwMDAgbiAKMDAwMDAwNjY3OCAwMDAwMCBuIAowMDAwMDA2Njk4IDAwMDAwIG4gCjAwMDAwMjEzMDQgMDAwMDAgbiAKMDAwMDAyMTMyNSAwMDAwMCBuIAowMDAwMDU3NzA4IDAwMDAwIG4gCjAwMDAwNzQwMDYgMDAwMDAgbiAKMDAwMDA4NTE1NyAwMDAwMCBuIAowMDAwMDk0MjgwIDAwMDAwIG4gCjAwMDAwNTc3MzAgMDAwMDAgbiAKMDAwMDA1ODg0NSAwMDAwMCBuIAowMDAwMDU4ODY1IDAwMDAwIG4gCjAwMDAwNTk3NjkgMDAwMDAgbiAKMDAwMDA1OTc4OSAwMDAwMCBuIAowMDAwMDU5ODQxIDAwMDAwIG4gCjAwMDAwNTk4OTMgMDAwMDAgbiAKMDAwMDA1OTk0NSAwMDAwMCBuIAowMDAwMDU5OTk3IDAwMDAwIG4gCjAwMDAwNjAwNDkgMDAwMDAgbiAKMDAwMDA2MDEwMSAwMDAwMCBuIAowMDAwMDYwMTUzIDAwMDAwIG4gCjAwMDAwNjAyMDUgMDAwMDAgbiAKMDAwMDA2MDI1NyAwMDAwMCBuIAowMDAwMDYwMzA5IDAwMDAwIG4gCjAwMDAwNjA3MzEgMDAwMDAgbiAKMDAwMDA2MzUyMiAwMDAwMCBuIAowMDAwMDYwNDgyIDAwMDAwIG4gCjAwMDAwNjA3MTEgMDAwMDAgbiAKMDAwMDA2NjI2MCAwMDAwMCBuIAowMDAwMDYzNTQzIDAwMDAwIG4gCjAwMDAwNjM1OTUgMDAwMDAgbiAKMDAwMDA2MzY0NyAwMDAwMCBuIAowMDAwMDYzNjk5IDAwMDAwIG4gCjAwMDAwNjM3NTEgMDAwMDAgbiAKMDAwMDA2NjA5MyAwMDAwMCBuIAowMDAwMDY1NDIwIDAwMDAwIG4gCjAwMDAwNjU5MjYgMDAwMDAgbiAKMDAwMDA2NDA4OCAwMDAwMCBuIAowMDAwMDY0MTk0IDAwMDAwIG4gCjAwMDAwNjQzMzUgMDAwMDAgbiAKMDAwMDA2NDQ2MiAwMDAwMCBuIAowMDAwMDY0NTk3IDAwMDAwIG4gCjAwMDAwNjQ3NTAgMDAwMDAgbiAKMDAwMDA2NDg3NSAwMDAwMCBuIAowMDAwMDY1MDAyIDAwMDAwIG4gCjAwMDAwNjUxNDEgMDAwMDAgbiAKMDAwMDA2NTI5MCAwMDAwMCBuIAowMDAwMDY1NTYzIDAwMDAwIG4gCjAwMDAwNjU2OTcgMDAwMDAgbiAKMDAwMDA2NTgyMiAwMDAwMCBuIAowMDAwMDY2MTU2IDAwMDAwIG4gCjAwMDAwNjY1OTQgMDAwMDAgbiAKMDAwMDA2OTQzNCAwMDAwMCBuIAowMDAwMDY2MzgyIDAwMDAwIG4gCjAwMDAwNjY1NzQgMDAwMDAgbiAKMDAwMDA2OTQ1NSAwMDAwMCBuIAowMDAwMDY5NjcwIDAwMDAwIG4gCjAwMDAwNzMwNzkgMDAwMDAgbiAKMDAwMDA3MzQwOCAwMDAwMCBuIAowMDAwMDczMDU4IDAwMDAwIG4gCjAwMDAwNzQxNTQgMDAwMDAgbiAKMDAwMDA3NDQxNCAwMDAwMCBuIAowMDAwMDgzNzkwIDAwMDAwIG4gCjAwMDAwODQyNzIgMDAwMDAgbiAKMDAwMDA4Mzc2OSAwMDAwMCBuIAowMDAwMDg1Mjk0IDAwMDAwIG4gCjAwMDAwODU1NTkgMDAwMDAgbiAKMDAwMDA5MzE5MyAwMDAwMCBuIAowMDAwMDkzNTc3IDAwMDAwIG4gCjAwMDAwOTMxNzIgMDAwMDAgbiAKdHJhaWxlcgo8PAovU2l6ZSA3NgovSW5mbyAxIDAgUgovUm9vdCA1NiAwIFIKPj4Kc3RhcnR4cmVmCjk0NTI3CiUlRU9GCg=\",\n        \"extension\": \"pdf\",\n        \"created_at\": \"2020-06-04 11:44:09\"\n    },\n    \"signature\": \"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAxwAAAEsCAYAAABJ4rWMAAAYwklEQVR4Xu3dzau1+xgH8OuUIuVlQMrAUV6KEpEwOU7CSBlISsJA5mZm+AdMGJFyBgbnjCidgQwwIi+RvKeIKO8yEEW66v7pZ/c8PftlXc+zv8tnTdbee93rWtf6XL/9dH/vdd/7eajcCBAgQIAAAQIECBAgMCTw0FBdZQkQIECAAAECBAgQIFACh0VAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqvwBYGXV9XHq+rfVfWJqnpdVX2yqv5wbPeMqnpTVb2+ql50/OznVfWPqvpKVT1aVd+qqhccj/25qn5bVT857oETIEDgQQq8pKp+9iAb8NoECBC4rQICx22dzHn11eHi63d4S7+pqn9W1bOr6o9b0LjOu//dEU46pPyiql54FPnLUf86Na/6nO9ur7me2z/rHtbtexe+v+pr2J7AuQr0vwP9u9K/u/vvbX/9yqr6ZVU9vN3/9fi+f6fW433f3/d2Xa+/fuPxb0K7de2vHtv3449V1Vuq6u8H6nur6htV1QdA+tYHSvr7t1XVD7efrX9jnnMcNHleVb2sqr5cVe+qqj+d65C8LwIECFxHQOC4jprnXFWgw0aHDrf/FVgBpe97R6g/yemve0foC8dO0NOrqj/NeWlV/RQggWsKrJ35tdPdO8x9e9Wx5vq+f9bbrW33nfh+bG3bnzb2Ou3vV0Do5/Q2/djFOv1Yr++1k77qr9e65ls6ydP636b+VPWUt/dU1edOWVAtAgQIpAsIHOkTzOhf4LjZnD5VVR88dti+X1WvOMLJW6vq08fR3Cer6tdV9dSq+kFV/f5mL3mrn323ndfV9LOqqv9t6/u1I7yes+9Y729y3wleO9frVL4VAnub/nrtcK8d6Q6HvXPe33/+eLxr99H1t29H1y/u3O9H8tcR/f3TsLv119vstfaeumY/1qcarpC/Hu/nrfe2Xqd7/n++faeqXn1igA9U1WdOXFM5AgQIRAsIHNHji2n+nVX1REy359Xox463s04N6VNHOpz0TnOHl771pycdVvoamr7tp6Str/cd1MueprZ2Zu92fyfpdSrcuk+bxteq6pGj6cs6pb3H295vn2rV9n1aVZ8+1QGsw+MKav31+nTli0cw6+f01x3sv32JU6r+dnwy8twj3Pd93/o6s/dtp1/ddiv9ESBA4L4ICBz3hdmLVNWHq+rdx7UavbPrRuAcBb5ZVa893ljvxPanLG53F2ijdQpWB4IVbNenSutTmfXp0goPHUjXNuv0rg4S65OsB2He13D86EG8sNckQIDAbRcQOG77hM6zvw4cHzmOrD//PN/iSd9VH3F9zUkrKnZVgRUe+oh5X4Tcp0ut05P6NKr1KU6fSvOOo/hnq+r9x3brWof9NK11etf6NGcddd+vdehS+3UVF08N61O5Vk99UXVv2yGnd3x7B7hv6/F+D71z3v33tntP63qM9dr7Tvx++ta+U79OV1uWe73lsYeIFSzW9SNXnYHtCRAgQCBUQOAIHdwZtf3RqvpQVT3zjN7T/lb2HdX95+vIbf9sHdXdj+b2Tmyfg/+v4y/f9KkeXzqO4PYOYP/uvqGqnnZc05F6CtL9GPv660a9472OjPfrrh3f/X4dSV8X8a8d/HtdY3E/3sdlX2O/HmWtr/2i8cvWsR0BAgQIEDiJgMBxEkZFbiiw/k+O3pF+yg1q9U7hOnK772Bdd2frTqFgP5q7P74Hh/XXp27wVq781P4znn1e+X66Wn+KtG7rrwelBpOe6woGezDrn+1Hzi+ekuNo+pWXkicQIECAAIHTCggcp/VU7WYCfWFz/4WX/utLfeu/uPTiCyXXKRq/Oo7+P15VP/YfAN4Tfv1Z3XXEfl0c20/sxzqsvPmocpmLxu/5gtsG+yc4+9cXa+xh4Sr1bUuAAAECBAjcYgGB4xYPR2v/Feij930NQ1/L0DvGbgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIvAfxGwWPNkA3SIAAAAASUVORK5CYII=\",\n    \"questionData\": {\n        \"inhuizing\": \"Ja\",\n        \"datum-inhuizing\": \"2020-03-01\",\n        \"ingangsdatum\": \"2020-03-01\",\n        \"overstaptest_switchdate_option\": \"Zo snel als mogelijk\",\n        \"overstaptest\": \"Nee\",\n        \"betaalwijze\": \"Automatische incasso\",\n        \"file-question\": [\n            {\n                \"name\": \"Image\",\n                \"content\": \"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNk+M9QDwADhgGAWjR9awAAAABJRU5ErkJggg==\",\n                \"extension\": \"png\"\n            }\n        ]\n    },\n    \"agreements\": {\n        \"privay-statement\": \"1\"\n    },\n    \"initial_user_firstname\": \"John\",\n    \"initial_user_lastname\": \"Doe\",\n    \"initial_organisation_name\": \"Test Organisation\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/sales/flow/{{flow_type_identifier}}/{{flow_identifier}}"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 25 Jun 2020 14:01:37 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self'; form-action 'self'; frame-ancestors 'self'; frame-src 'self'; object-src 'self'"},{"key":"Feature-Policy","value":"accelerometer 'self'; ambient-light-sensor 'self'; autoplay 'self'; battery 'self'; camera 'self'; display-capture 'self'; document-domain *; encrypted-media 'self'; execution-while-not-rendered *; execution-while-out-of-viewport *; fullscreen 'self'; geolocation 'self'; gyroscope 'self'; layout-animations 'self'; legacy-image-formats 'self'; magnetometer 'self'; microphone 'self'; midi 'self'; navigation-override 'self'; oversized-images *; payment 'self'; picture-in-picture *; publickey-credentials 'self'; sync-xhr *; unoptimized-images 'self'; unsized-media *; usb 'self'; wake-lock 'self'; xr-spatial-tracking 'self'"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"Vary","value":"Authorization"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"038d61c2420000df7bb5aff200000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"5a8f38b06ee8df7b-BOM"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"sale_id\": 587343\n    },\n    \"message\": \"Sale created successfully.\"\n}"}],"_postman_id":"7e1ca4b2-4fbf-477f-b3df-c84aa40b3572"},{"name":"Create energy order (small-business)","id":"81bba57e-e0d4-47c9-a1c3-bdd0310c6410","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"transaction_type\": \"order\",\n    \"postcode\": \"7511PG\",\n    \"housenumber\": \"9\",\n    \"suffix\": null,\n    \"gender\": \"female\",\n    \"firstname\": \"Jane\",\n    \"lastname\": \"Doe\",\n    \"birthdate\": \"01-01-1990\",\n    \"streetname\": \"Test\",\n    \"city\": \"Test\",\n    \"email\": \"test@salesdock.nl\",\n    \"phone\": \"0611XXXXXX\",\n    \"contact_person\": \"Test\",\n    \"company_name\": \"Test\",\n    \"company_coc\": \"12345678\",\n    \"company_vat\": null,\n    \"iban\": \"NL91ABNA04171643XX\",\n    \"iban_holder\": \"Test Test\",\n    \"signature\": \"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAxwAAAEsCAYAAABJ4rWMAAAYwklEQVR4Xu3dzau1+xgH8OuUIuVlQMrAUV6KEpEwOU7CSBlISsJA5mZm+AdMGJFyBgbnjCidgQwwIi+RvKeIKO8yEEW66v7pZ/c8PftlXc+zv8tnTdbee93rWtf6XL/9dH/vdd/7eajcCBAgQIAAAQIECBAgMCTw0FBdZQkQIECAAAECBAgQIFACh0VAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqvwBYGXV9XHq+rfVfWJqnpdVX2yqv5wbPeMqnpTVb2+ql50/OznVfWPqvpKVT1aVd+qqhccj/25qn5bVT857oETIEDgQQq8pKp+9iAb8NoECBC4rQICx22dzHn11eHi63d4S7+pqn9W1bOr6o9b0LjOu//dEU46pPyiql54FPnLUf86Na/6nO9ur7me2z/rHtbtexe+v+pr2J7AuQr0vwP9u9K/u/vvbX/9yqr6ZVU9vN3/9fi+f6fW433f3/d2Xa+/fuPxb0K7de2vHtv3449V1Vuq6u8H6nur6htV1QdA+tYHSvr7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AgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIvAfxGwWPNkA3SIAAAAASUVORK5CYII=\",\n    \"sale_channel\": \"online\",\n    \"product_id\": \"3465\",\n    \"type\": \"e_g\",\n    \"has_return\": 0,\n    \"building_function\": \"1\",\n    \"return\": 0,\n    \"return_e_high\": 0,\n    \"return_e_low\": 0,\n    \"usage_e_single\": 1844,\n    \"usage_e_high\": null,\n    \"usage_e_low\": null,\n    \"usage_g\": 1024,\n    \"tarifftype\": \"0\",\n    \"e_gridoperator\": \"\",\n    \"g_gridoperator\": \"\",\n    \"e_connection_type\": \"\",\n    \"g_connection_type\": \"\",\n    \"g_region\": \"\",\n    \"electricity_ean\": \"800000000000000000\",\n    \"gas_ean\": \"800000000000000001\",\n    \"connection_postcode\": \"7521WC\",\n    \"connection_housenumber\": \"15\",\n    \"connection_suffix\": null,\n    \"connection_streetname\": \"Test\",\n    \"connection_city\": \"Test\",\n    \"business\": \"1\",\n    \"large_business\": 0,\n    \"questionData\": {\n        \"inhuizing\": \"Ja\",\n        \"datum-inhuizing\": \"2020-03-01\",\n        \"ingangsdatum\": \"2020-03-01\",\n        \"overstaptest_switchdate_option\": \"Zo snel als mogelijk\",\n        \"overstaptest\": \"Nee\",\n        \"betaalwijze\": \"Automatische incasso\"\n    },\n    \"agreements\": {\n    \t\"privay-statement\": \"1\",\n    \t\"energy-cer-en-car\": \"1\",\n        \"telefonisch-benaderen\": \"1\",\n        \"algemene-voorwaarden\": \"1\",\n        \"annulering\": \"1\"\n    },\n    \"initial_user_firstname\": \"John\",\n    \"initial_user_lastname\": \"Doe\",\n    \"initial_organisation_name\": \"Test Organisation\"\n}"},"url":"{{url}}/api/{{domain}}/{{version}}/sales/flow/{{flow_type_identifier}}/{{flow_identifier}}","description":"<p>Create an order for energy flow (small-business).<br />Replace {{flow_dentifier}} with the identifier of the flow.</p>\n<p>Replace {{flow_type_identifier}} with the identifier of the flow type.</p>\n<p>In the questionData object, the product question identifiers needed for the flow should be sent along with the corresponding answers</p>\n<p>In the agreements object, the agreement identifiers needed for the flow should be sent along with value \"1\" for accepted agreements.</p>\n<h4 id=\"completed-and-uncompleted-orders\">Completed and uncompleted orders</h4>\n<p>The API endpoint can be used to create both completed and uncompleted orders. Uncompleted orders result in a new contract pdf being generated and also a confirmation/verification email being sent to customers based on flow settings. A completed order will not send an email. An order via the API is considered as a completed order if it contains the \"contract_date\" parameter.</p>\n<p><strong>Body Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Mandatory</th>\n<th>Possible Value(s)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>transaction_type</td>\n<td>string</td>\n<td>Y</td>\n<td>order</td>\n<td></td>\n</tr>\n<tr>\n<td>connection_postcode</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Connection postcode</td>\n</tr>\n<tr>\n<td>connection_housenumber</td>\n<td>integer</td>\n<td>Y</td>\n<td></td>\n<td>Connection house number</td>\n</tr>\n<tr>\n<td>connection_suffix</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Connection house number extension</td>\n</tr>\n<tr>\n<td>connection_streetname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Connection street name</td>\n</tr>\n<tr>\n<td>connection_city</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Connection city</td>\n</tr>\n<tr>\n<td>postcode</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence postcode</td>\n</tr>\n<tr>\n<td>housenumber</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence house number</td>\n</tr>\n<tr>\n<td>suffix</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence house number extension</td>\n</tr>\n<tr>\n<td>streetname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence street name</td>\n</tr>\n<tr>\n<td>city</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence city</td>\n</tr>\n<tr>\n<td>gender</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>firstname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>lastname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>email</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>phone</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>contact_person</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Contact person</td>\n</tr>\n<tr>\n<td>company_name</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Company name</td>\n</tr>\n<tr>\n<td>company_coc</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>KVK Number</td>\n</tr>\n<tr>\n<td>company_vat</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required according to flow settings</td>\n</tr>\n<tr>\n<td>iban</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required according to flow settings</td>\n</tr>\n<tr>\n<td>iban_holder</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required according to flow settings</td>\n</tr>\n<tr>\n<td>sale_channel</td>\n<td>string</td>\n<td>N</td>\n<td>'d2d', 'retail', 'telemarketing', 'online', 'f2f'</td>\n<td></td>\n</tr>\n<tr>\n<td>product_id</td>\n<td>integer</td>\n<td>Y</td>\n<td></td>\n<td>ID of product</td>\n</tr>\n<tr>\n<td>business</td>\n<td>string</td>\n<td>Y</td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>Y</td>\n<td>'e', 'g', 'e_g'</td>\n<td>Type of energy selected - Electricity, Gas or electricity and gas</td>\n</tr>\n<tr>\n<td>building_function</td>\n<td>integer</td>\n<td>Y</td>\n<td>0, 1</td>\n<td>Woon-/verblijfsfunctie</td>\n</tr>\n<tr>\n<td>tarifftype</td>\n<td>integer</td>\n<td>Y</td>\n<td>0, 1</td>\n<td>0 =&gt; single meter; 1 =&gt; double meter</td>\n</tr>\n<tr>\n<td>usage_e_single</td>\n<td>float</td>\n<td>N</td>\n<td></td>\n<td>Required if type is 'e' or 'e_g' and tarifftype is 0, Single meter usage of electricity</td>\n</tr>\n<tr>\n<td>usage_e_high</td>\n<td>float</td>\n<td>N</td>\n<td></td>\n<td>Required if type is 'e' or 'e_g' and tarifftype is 1, Normaal usage of electricity in the case of double meter</td>\n</tr>\n<tr>\n<td>usage_e_low</td>\n<td>float</td>\n<td>N</td>\n<td></td>\n<td>Required if type is 'e' or 'e_g' and tarifftype is 1, Low usage of electricity in the case of double meter</td>\n</tr>\n<tr>\n<td>usage_g</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required if type is 'g' or 'e_g', Gas usage</td>\n</tr>\n<tr>\n<td>has_return</td>\n<td>integer</td>\n<td>Y</td>\n<td>0, 1</td>\n<td>Ik lever ook elektriciteit terug, 0 =&gt; No; 1 =&gt; Yes</td>\n</tr>\n<tr>\n<td>return</td>\n<td>float</td>\n<td>N</td>\n<td></td>\n<td>Required if has_return is 1 and tarifftype is 0, Single meter return of electricity</td>\n</tr>\n<tr>\n<td>return_e_high</td>\n<td>float</td>\n<td>N</td>\n<td></td>\n<td>Required if has_return is 1 and tarifftype is 1, Double meter return of normaal electricity</td>\n</tr>\n<tr>\n<td>return_e_low</td>\n<td>float</td>\n<td>N</td>\n<td></td>\n<td>Required if has_return is 1 and tarifftype is 1, Double meter return of low electricity</td>\n</tr>\n<tr>\n<td>e_gridoperator</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Electricity grid operator is required if type is 'e' or 'e_g'. If empty, then grid operator is obtained from eancodeboek.nl.</td>\n</tr>\n<tr>\n<td>g_gridoperator</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Gas grid operator is required if type is 'g' or 'e_g'. If empty, then grid operator is obtained from eancodeboek.nl.</td>\n</tr>\n<tr>\n<td>e_connection_type</td>\n<td>string</td>\n<td>N</td>\n<td>'E_NULTARIEF', 'E_1X6A_ONB' , ‘E_1X6A', 'E_1X10A_ONB', 'E_1X10A', 'E_3X25A_ONB', 'E_3X25A', ‘E_3X35A', 'E_3X50A', 'E_3X63A', 'E_3X80A', 'E_GV'</td>\n<td>Electricity connection type is required if type is 'e' or 'e_g'. If empty, then value is estimated based on the usage.</td>\n</tr>\n<tr>\n<td>g_connection_type</td>\n<td>string</td>\n<td>N</td>\n<td>'G_NULTARIEF', 'G_ONB', 'G_G6_500’, ‘G_G6_500_4000', 'G_G6_4000', 'G_G10', 'G_G16', 'G_G25', 'G_GV'</td>\n<td>Gas connection type is required if type is 'g' or 'e_g'. If empty, then value is estimated based on the usage.</td>\n</tr>\n<tr>\n<td>g_region</td>\n<td>integer</td>\n<td>N</td>\n<td>[1-10]</td>\n<td>Gas region is required if type is 'g' or 'e_g'. If empty, value is obtained from database.</td>\n</tr>\n<tr>\n<td>electricity_ean</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Electricity EAN Code is required if type is 'e' or 'e_g'. If empty, then ean code is obtained from eancodeboek.nl.</td>\n</tr>\n<tr>\n<td>gas_ean</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Gas EAN Code is required if type is 'g' or 'e_g'. If empty, then ean code is obtained from eancodeboek.nl.</td>\n</tr>\n<tr>\n<td>contract_date</td>\n<td>date</td>\n<td>N</td>\n<td></td>\n<td>In DD-MM-YYYY format. If not empty, then signifies that it is a completed order.</td>\n</tr>\n<tr>\n<td>contract_pdf</td>\n<td>array</td>\n<td>N</td>\n<td></td>\n<td>Required if contract_date is not empty. Array expects 3 keys. First one is \"content\", which is the Base64 string of the contract pdf. Second one is \"extension\", which should always be 'pdf'. Third one is \"created_at\", which is the file created date time in \"YYYY-mm-dd hh:mm:ss\" format</td>\n</tr>\n<tr>\n<td>signature</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required based on flow settings, Base64 encoded string of image</td>\n</tr>\n<tr>\n<td>questionData</td>\n<td>array</td>\n<td>Y</td>\n<td></td>\n<td>Product question identifiers along with corresponding answers</td>\n</tr>\n<tr>\n<td>agreements</td>\n<td>array</td>\n<td>Y</td>\n<td></td>\n<td>Agreement identifiers with answer as \"1\" for accepted agreements</td>\n</tr>\n<tr>\n<td>initial_user_firstname</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>The first name of the user who did the sale</td>\n</tr>\n<tr>\n<td>initial_user_lastname</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>The last name of the user who did the sale</td>\n</tr>\n<tr>\n<td>initial_organisation_name</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>The name of the organisation which did the sale</td>\n</tr>\n<tr>\n<td>initial_created_at</td>\n<td>datetime</td>\n<td>N</td>\n<td></td>\n<td>In YYYY-mm-dd hh:mm:ss format. The date and time on which the sale was originally created. If the sale is completed, then this date time (if not empty), is considered as the contract signed date.</td>\n</tr>\n<tr>\n<td>external_reference</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>An order reference identifier that can be used by the API partners</td>\n</tr>\n<tr>\n<td>relation_id</td>\n<td>integer</td>\n<td>N</td>\n<td></td>\n<td>The ID of the relation that needs to be linked to the sale. This has to be a valid relation ID that is accessible to the user. If relation_id is not sent, then a new relation will be created and linked to the sale.</td>\n</tr>\n<tr>\n<td>customer_classification</td>\n<td>string</td>\n<td>N</td>\n<td>\"micro_business\", \"small_business, \"medium_business\", \"large_business\"</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","{{domain}}","{{version}}","sales","flow","{{flow_type_identifier}}","{{flow_identifier}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"2560875a-b8db-43e0-9071-a635a2799970","name":"Create energy order (small-business) - Invalid Product","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"transaction_type\": \"order\",\n    \"postcode\": \"7521WC\",\n    \"housenumber\": \"15\",\n    \"suffix\": null,\n    \"gender\": \"male\",\n    \"firstname\": \"Test\",\n    \"lastname\": \"Test\",\n    \"birthdate\": \"01-01-1990\",\n    \"streetname\": \"Test\",\n    \"city\": \"Test\",\n    \"email\": \"test@salesdock.nl\",\n    \"phone\": \"0611XXXXX\",\n    \"contact_person\": \"Test\",\n    \"company_name\": \"Test\",\n    \"company_coc\": \"12345678\",\n    \"company_vat\": null,\n    \"iban\": \"NL91ABNA0XXXXXXXXX\",\n    \"iban_holder\": \"Test Test\",\n    \"signature\": \"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAxwAAAEsCAYAAABJ4rWMAAAYwklEQVR4Xu3dzau1+xgH8OuUIuVlQMrAUV6KEpEwOU7CSBlISsJA5mZm+AdMGJFyBgbnjCidgQwwIi+RvKeIKO8yEEW66v7pZ/c8PftlXc+zv8tnTdbee93rWtf6XL/9dH/vdd/7eajcCBAgQIAAAQIECBAgMCTw0FBdZQkQIECAAAECBAgQIFACh0VAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqvwBYGXV9XHq+rfVfWJqnpdVX2yqv5wbPeMqnpTVb2+ql50/OznVfWPqvpKVT1aVd+qqhccj/25qn5bVT857oETIEDgQQq8pKp+9iAb8NoECBC4rQICx22dzHn11eHi63d4S7+pqn9W1bOr6o9b0LjOu//dEU46pPyiql54FPnLUf86Na/6nO9ur7me2z/rHtbtexe+v+pr2J7AuQr0vwP9u9K/u/vvbX/9yqr6ZVU9vN3/9fi+f6fW433f3/d2Xa+/fuPxb0K7de2vHtv3449V1Vuq6u8H6nur6htV1QdA+tYHSvr7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AgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIvAfxGwWPNkA3SIAAAAASUVORK5CYII=\",\n    \"sale_channel\": \"online\",\n    \"product_id\": \"424\",\n    \"type\": \"e_g\",\n    \"has_return\": 0,\n    \"building_function\": \"1\",\n    \"return\": 0,\n    \"return_e_high\": 0,\n    \"return_e_low\": 0,\n    \"usage_e_single\": 1844,\n    \"usage_e_high\": null,\n    \"usage_e_low\": null,\n    \"usage_g\": 1024,\n    \"low_tariff_time\": null,\n    \"tarifftype\": \"0\",\n    \"e_gridoperator\": \"\",\n    \"g_gridoperator\": \"\",\n    \"e_connection_type\": \"\",\n    \"g_connection_type\": \"\",\n    \"g_region\": \"\",\n    \"electricity_ean\": \"800000000000000000\",\n    \"gas_ean\": \"800000000000000001\",\n    \"connection_postcode\": \"7521WC\",\n    \"connection_housenumber\": \"15\",\n    \"connection_suffix\": null,\n    \"connection_streetname\": \"Test\",\n    \"connection_city\": \"Test\",\n    \"business\": \"1\",\n    \"large_business\": 0,\n    \"questionData\": {\n        \"inhuizing\": \"Ja\",\n        \"datum-inhuizing\": \"2020-03-01\",\n        \"ingangsdatum\": \"2020-03-01\",\n        \"overstaptest_switchdate_option\": \"Zo snel als mogelijk\",\n        \"overstaptest\": \"Nee\",\n        \"file-question\": [\n            {\n                \"name\": \"Image\",\n                \"content\": \"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNk+M9QDwADhgGAWjR9awAAAABJRU5ErkJggg==\",\n                \"extension\": \"png\"\n            }\n        ]\n    },\n    \"agreements\": {\n        \"privay-statement\": \"1\"\n    },\n    \"initial_user_firstname\": \"John\",\n    \"initial_user_lastname\": \"Doe\",\n    \"initial_organisation_name\": \"Test Organisation\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/sales/flow/{{flow_type_identifier}}/{{flow_identifier}}"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 21 Feb 2020 13:46:30 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Security-Policy","value":"default-src 'none'; base-uri 'none'; connect-src 'self'; font-src 'self' https://fonts.gstatic.com data: https:; form-action 'self'; frame-ancestors 'self'; frame-src 'self'; img-src 'self' http://json-services.nutselect.nl https://files.delta.nl https://www.westbespaarcoach.nl data: https:; media-src 'none'; object-src 'self'; script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com"},{"key":"Feature-Policy","value":"accelerometer 'self'; ambient-light-sensor 'self'; autoplay 'self'; camera 'self'; display-capture 'self'; document-domain *; encrypted-media 'self'; fullscreen 'self'; geolocation 'self'; gyroscope 'self'; magnetometer 'self'; microphone 'self'; midi 'self'; payment 'self'; picture-in-picture *; speaker 'self'; sync-xhr *; usb 'self'; vr 'self'"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"56892aa9dc0dd5bb-BOM"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"message\": \"Invalid product\",\n    \"code\": 400\n}"},{"id":"41f32849-41e8-4289-92aa-cc79e8c5b1e7","name":"Create energy order (small-business) - Validation error","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"transaction_type\": \"order\",\n    \"postcode\": \"7521WC\",\n    \"housenumber\": \"15\",\n    \"suffix\": null,\n    \"gender\": \"male\",\n    \"firstname\": \"Test\",\n    \"lastname\": \"Test\",\n    \"birthdate\": \"01-01-1990\",\n    \"streetname\": \"Test\",\n    \"city\": \"Test\",\n    \"email\": \"test@salesdock.nl\",\n    \"phone\": \"0611XXXXX\",\n    \"contact_person\": \"Test\",\n    \"company_name\": \"Test\",\n    \"company_coc\": \"12345678\",\n    \"company_vat\": null,\n    \"iban\": \"NL91ABNA0XXXXXXXXX\",\n    \"iban_holder\": \"Test Test\",\n    \"signature\": \"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAxwAAAEsCAYAAABJ4rWMAAAYwklEQVR4Xu3dzau1+xgH8OuUIuVlQMrAUV6KEpEwOU7CSBlISsJA5mZm+AdMGJFyBgbnjCidgQwwIi+RvKeIKO8yEEW66v7pZ/c8PftlXc+zv8tnTdbee93rWtf6XL/9dH/vdd/7eajcCBAgQIAAAQIECBAgMCTw0FBdZQkQIECAAAECBAgQIFACh0VAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqvwBYGXV9XHq+rfVfWJqnpdVX2yqv5wbPeMqnpTVb2+ql50/OznVfWPqvpKVT1aVd+qqhccj/25qn5bVT857oETIEDgQQq8pKp+9iAb8NoECBC4rQICx22dzHn11eHi63d4S7+pqn9W1bOr6o9b0LjOu//dEU46pPyiql54FPnLUf86Na/6nO9ur7me2z/rHtbtexe+v+pr2J7AuQr0vwP9u9K/u/vvbX/9yqr6ZVU9vN3/9fi+f6fW433f3/d2Xa+/fuPxb0K7de2vHtv3449V1Vuq6u8H6nur6htV1QdA+tYHSvr7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AgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIvAfxGwWPNkA3SIAAAAASUVORK5CYII=\",\n    \"sale_channel\": \"online\",\n    \"product_id\": \"3465\",\n    \"type\": \"e_g\",\n    \"has_return\": 0,\n    \"building_function\": \"1\",\n    \"return\": 0,\n    \"return_e_high\": 0,\n    \"return_e_low\": 0,\n    \"usage_e_single\": 1844,\n    \"usage_e_high\": null,\n    \"usage_e_low\": null,\n    \"usage_g\": 1024,\n    \"low_tariff_time\": null,\n    \"tarifftype\": \"0\",\n    \"e_gridoperator\": \"\",\n    \"g_gridoperator\": \"\",\n    \"e_connection_type\": \"\",\n    \"g_connection_type\": \"\",\n    \"g_region\": \"\",\n    \"electricity_ean\": \"800000000000000000\",\n    \"gas_ean\": \"800000000000000001\",\n    \"connection_postcode\": \"7521WC\",\n    \"connection_housenumber\": \"15\",\n    \"connection_suffix\": null,\n    \"connection_streetname\": \"Test\",\n    \"connection_city\": \"Test\",\n    \"business\": \"1\",\n    \"large_business\": 0,\n    \"questionData\": {\n        \"inhuizing\": \"Ja\",\n        \"datum-inhuizing\": \"2020-03-01\",\n        \"ingangsdatum\": \"2020-03-01\",\n        \"overstaptest_switchdate_option\": \"Zo snel als mogelijk\",\n        \"overstaptest\": \"Nee\",\n        \"file-question\": [\n            {\n                \"name\": \"Image\",\n                \"content\": \"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNk+M9QDwADhgGAWjR9awAAAABJRU5ErkJggg==\",\n                \"extension\": \"png\"\n            }\n        ]\n    },\n    \"agreements\": {\n    \t\"privay-statement\": \"1\"\n    },\n    \"initial_user_firstname\": \"John\",\n    \"initial_user_lastname\": \"Doe\",\n    \"initial_organisation_name\": \"Test Organisation\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/sales/flow/{{flow_type_identifier}}/{{flow_identifier}}"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 21 Feb 2020 13:47:21 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Security-Policy","value":"default-src 'none'; base-uri 'none'; connect-src 'self'; font-src 'self' https://fonts.gstatic.com data: https:; form-action 'self'; frame-ancestors 'self'; frame-src 'self'; img-src 'self' http://json-services.nutselect.nl https://files.delta.nl https://www.westbespaarcoach.nl data: https:; media-src 'none'; object-src 'self'; script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com"},{"key":"Feature-Policy","value":"accelerometer 'self'; ambient-light-sensor 'self'; autoplay 'self'; camera 'self'; display-capture 'self'; document-domain *; encrypted-media 'self'; fullscreen 'self'; geolocation 'self'; gyroscope 'self'; magnetometer 'self'; microphone 'self'; midi 'self'; payment 'self'; picture-in-picture *; speaker 'self'; sync-xhr *; usb 'self'; vr 'self'"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"56892be9b97fd5bb-BOM"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"message\": \"Validation Error.\",\n    \"code\": 400,\n    \"errors\": {\n        \"iban\": [\n            \"IBAN rekeningnummer is ongeldig.\"\n        ]\n    }\n}"}],"_postman_id":"81bba57e-e0d4-47c9-a1c3-bdd0310c6410"},{"name":"Create energy offer (consumer)","id":"78a2540e-a1fc-4ef7-854a-d258570d8012","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"transaction_type\": \"offer\",\n    \"postcode\": \"7546MS\",\n    \"housenumber\": \"8\",\n    \"suffix\": null,\n    \"gender\": \"male\",\n    \"firstname\": \"Test\",\n    \"lastname\": \"Test\",\n    \"birthdate\": \"01-01-1990\",\n    \"streetname\": \"Test\",\n    \"city\": \"Test\",\n    \"email\": \"test@salesdock.nl\",\n    \"phone\": \"0611XXXXX\",\n    \"sale_channel\": \"online\",\n    \"product_id\": \"3465\",\n    \"type\": \"e\",\n    \"has_return\": \"0\",\n    \"building_function\": \"1\",\n    \"return\": 0,\n    \"return_e_high\": 0,\n    \"return_e_low\": 0,\n    \"usage_e_single\": null,\n    \"usage_e_high\": 1010,\n    \"usage_e_low\": 1247,\n    \"usage_g\": null,\n    \"tarifftype\": \"1\",\n    \"e_gridoperator\": \"\",\n    \"g_gridoperator\": \"\",\n    \"e_connection_type\": \"\",\n    \"g_connection_type\": \"\",\n    \"g_region\": \"\",\n    \"electricity_ean\": \"800000000000000000\",\n    \"gas_ean\": null,\n    \"connection_postcode\": \"7546MS\",\n    \"connection_housenumber\": \"8\",\n    \"connection_suffix\": null,\n    \"connection_streetname\": \"Test\",\n    \"connection_city\": \"Test\",\n    \"business\": \"0\",\n    \"questionData\": {\n        \"inhuizing\": \"Ja\",\n        \"datum-inhuizing\": \"2020-03-01\",\n        \"ingangsdatum\": \"2020-03-01\",\n        \"overstaptest_switchdate_option\": \"Zo snel als mogelijk\",\n        \"overstaptest\": \"Nee\"\n    },\n    \"agreements\": {\n    \t\"privay-statement\": \"1\"\n    },\n    \"initial_user_firstname\": \"John\",\n    \"initial_user_lastname\": \"Doe\",\n    \"initial_organisation_name\": \"Test Organisation\"\n}"},"url":"{{url}}/api/{{domain}}/{{version}}/sales/flow/{{flow_type_identifier}}/{{flow_identifier}}","description":"<p>Create an offer for energy flow (consumer).<br />Replace {{flow_dentifier}} with the identifier of the flow.</p>\n<p>Replace {{flow_type_identifier}} with the identifier of the flow type.</p>\n<p>In the questionData object, the product question identifiers needed for the flow should be sent along with the corresponding answers</p>\n<p>In the agreements object, the agreement identifiers needed for the flow should be sent along with value \"1\" for accepted agreements.</p>\n<h4 id=\"completed-and-uncompleted-offers\">Completed and uncompleted offers</h4>\n<p>The API endpoint can be used to create both completed and uncompleted offers. Uncompleted offers result in a new contract pdf being generated and an email being sent to the customer to accept the offer. A completed offer will not send an offer acceptance email. An offer via the API is considered as a completed offer if it contains the \"contract_date\" parameter.</p>\n<p><strong>Body Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Mandatory</th>\n<th>Possible Value(s)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>transaction_type</td>\n<td>string</td>\n<td>Y</td>\n<td>offer</td>\n<td></td>\n</tr>\n<tr>\n<td>connection_postcode</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Connection postcode</td>\n</tr>\n<tr>\n<td>connection_housenumber</td>\n<td>integer</td>\n<td>Y</td>\n<td></td>\n<td>Connection house number</td>\n</tr>\n<tr>\n<td>connection_suffix</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Connection house number extension</td>\n</tr>\n<tr>\n<td>connection_streetname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Connection street name</td>\n</tr>\n<tr>\n<td>connection_city</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Connection city</td>\n</tr>\n<tr>\n<td>postcode</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence postcode</td>\n</tr>\n<tr>\n<td>housenumber</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence house number</td>\n</tr>\n<tr>\n<td>suffix</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence house number extension</td>\n</tr>\n<tr>\n<td>streetname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence street name</td>\n</tr>\n<tr>\n<td>city</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence city</td>\n</tr>\n<tr>\n<td>gender</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>firstname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>lastname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>birthdate</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>DOB in format dd-mm-yyyy</td>\n</tr>\n<tr>\n<td>email</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>phone</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>iban</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required according to flow settings</td>\n</tr>\n<tr>\n<td>iban_holder</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required according to flow settings</td>\n</tr>\n<tr>\n<td>sale_channel</td>\n<td>string</td>\n<td>N</td>\n<td>'d2d', 'retail', 'telemarketing', 'online', 'f2f'</td>\n<td></td>\n</tr>\n<tr>\n<td>product_id</td>\n<td>integer</td>\n<td>Y</td>\n<td></td>\n<td>ID of product</td>\n</tr>\n<tr>\n<td>business</td>\n<td>string</td>\n<td>Y</td>\n<td>0</td>\n<td></td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>Y</td>\n<td>'e', 'g', 'e_g'</td>\n<td>Type of energy selected - Electricity, Gas or electricity and gas</td>\n</tr>\n<tr>\n<td>building_function</td>\n<td>integer</td>\n<td>Y</td>\n<td>0, 1</td>\n<td>Woon-/verblijfsfunctie</td>\n</tr>\n<tr>\n<td>tarifftype</td>\n<td>integer</td>\n<td>Y</td>\n<td>0, 1</td>\n<td>0 =&gt; single meter; 1 =&gt; double meter</td>\n</tr>\n<tr>\n<td>usage_e_single</td>\n<td>float</td>\n<td>N</td>\n<td></td>\n<td>Required if type is 'e' or 'e_g' and tarifftype is 0, Single meter usage of electricity</td>\n</tr>\n<tr>\n<td>usage_e_high</td>\n<td>float</td>\n<td>N</td>\n<td></td>\n<td>Required if type is 'e' or 'e_g' and tarifftype is 1, Normaal usage of electricity in the case of double meter</td>\n</tr>\n<tr>\n<td>usage_e_low</td>\n<td>float</td>\n<td>N</td>\n<td></td>\n<td>Required if type is 'e' or 'e_g' and tarifftype is 1, Low usage of electricity in the case of double meter</td>\n</tr>\n<tr>\n<td>usage_g</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required if type is 'g' or 'e_g', Gas usage</td>\n</tr>\n<tr>\n<td>has_return</td>\n<td>integer</td>\n<td>Y</td>\n<td>0, 1</td>\n<td>Ik lever ook elektriciteit terug, 0 =&gt; No; 1 =&gt; Yes</td>\n</tr>\n<tr>\n<td>return</td>\n<td>float</td>\n<td>N</td>\n<td></td>\n<td>Required if has_return is 1 and tarifftype is 0, Single meter return of electricity</td>\n</tr>\n<tr>\n<td>return_e_high</td>\n<td>float</td>\n<td>N</td>\n<td></td>\n<td>Required if has_return is 1 and tarifftype is 1, Double meter return of normaal electricity</td>\n</tr>\n<tr>\n<td>return_e_low</td>\n<td>float</td>\n<td>N</td>\n<td></td>\n<td>Required if has_return is 1 and tarifftype is 1, Double meter return of low electricity</td>\n</tr>\n<tr>\n<td>e_gridoperator</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Electricity grid operator is required if type is 'e' or 'e_g'. If empty, then grid operator is obtained from eancodeboek.nl.</td>\n</tr>\n<tr>\n<td>g_gridoperator</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Gas grid operator is required if type is 'g' or 'e_g'. If empty, then grid operator is obtained from eancodeboek.nl.</td>\n</tr>\n<tr>\n<td>e_connection_type</td>\n<td>string</td>\n<td>N</td>\n<td>'E_NULTARIEF', 'E_1X6A_ONB' , ‘E_1X6A', 'E_1X10A_ONB', 'E_1X10A', 'E_3X25A_ONB', 'E_3X25A', ‘E_3X35A', 'E_3X50A', 'E_3X63A', 'E_3X80A', 'E_GV'</td>\n<td>Electricity connection type is required if type is 'e' or 'e_g'. If empty, then value is estimated based on the usage.</td>\n</tr>\n<tr>\n<td>g_connection_type</td>\n<td>string</td>\n<td>N</td>\n<td>'G_NULTARIEF', 'G_ONB', 'G_G6_500’, ‘G_G6_500_4000', 'G_G6_4000', 'G_G10', 'G_G16', 'G_G25', 'G_GV'</td>\n<td>Gas connection type is required if type is 'g' or 'e_g'. If empty, then value is estimated based on the usage.</td>\n</tr>\n<tr>\n<td>g_region</td>\n<td>integer</td>\n<td>N</td>\n<td>[1-10]</td>\n<td>Gas region is required if type is 'g' or 'e_g'. If empty, value is obtained from database.</td>\n</tr>\n<tr>\n<td>electricity_ean</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Electricity EAN Code is required if type is 'e' or 'e_g'. If empty, then ean code is obtained from eancodeboek.nl.</td>\n</tr>\n<tr>\n<td>gas_ean</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Gas EAN Code is required if type is 'g' or 'e_g'. If empty, then ean code is obtained from eancodeboek.nl.</td>\n</tr>\n<tr>\n<td>contract_date</td>\n<td>date</td>\n<td>N</td>\n<td></td>\n<td>In DD-MM-YYYY format. If not empty, then signifies that it is a completed offer.</td>\n</tr>\n<tr>\n<td>contract_pdf</td>\n<td>array</td>\n<td>N</td>\n<td></td>\n<td>Required if contract_date is not empty. Array expects 3 keys. First one is \"content\", which is the Base64 string of the contract pdf. Second one is \"extension\", which should always be 'pdf'. Third one is \"created_at\", which is the file created date time in \"YYYY-mm-dd hh:mm:ss\" format</td>\n</tr>\n<tr>\n<td>signature</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required based on flow settings, Base64 encoded string of image</td>\n</tr>\n<tr>\n<td>questionData</td>\n<td>array</td>\n<td>Y</td>\n<td></td>\n<td>Product question identifiers along with corresponding answers</td>\n</tr>\n<tr>\n<td>agreements</td>\n<td>array</td>\n<td>Y</td>\n<td></td>\n<td>Agreement identifiers with answer as \"1\" for accepted agreements</td>\n</tr>\n<tr>\n<td>initial_user_firstname</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>The first name of the user who did the sale</td>\n</tr>\n<tr>\n<td>initial_user_lastname</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>The last name of the user who did the sale</td>\n</tr>\n<tr>\n<td>initial_organisation_name</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>The name of the organisation which did the sale</td>\n</tr>\n<tr>\n<td>initial_created_at</td>\n<td>datetime</td>\n<td>N</td>\n<td></td>\n<td>In YYYY-mm-dd hh:mm:ss format. The date and time on which the sale was originally created</td>\n</tr>\n<tr>\n<td>external_reference</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>An order reference identifier that can be used by the API partners</td>\n</tr>\n<tr>\n<td>relation_id</td>\n<td>integer</td>\n<td>N</td>\n<td></td>\n<td>The ID of the relation that needs to be linked to the sale. This has to be a valid relation ID that is accessible to the user. If relation_id is not sent, then a new relation will be created and linked to the sale.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","{{domain}}","{{version}}","sales","flow","{{flow_type_identifier}}","{{flow_identifier}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"e58456cd-e4c5-41ab-b8ef-2049c4015677","name":"Create energy offer (consumer)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"transaction_type\": \"offer\",\n    \"postcode\": \"7546MS\",\n    \"housenumber\": \"8\",\n    \"suffix\": null,\n    \"gender\": \"male\",\n    \"firstname\": \"Test\",\n    \"lastname\": \"Test\",\n    \"birthdate\": \"01-01-1990\",\n    \"streetname\": \"Test\",\n    \"city\": \"Test\",\n    \"email\": \"test@salesdock.nl\",\n    \"phone\": \"0611XXXXX\",\n    \"sale_channel\": \"online\",\n    \"product_id\": \"3465\",\n    \"type\": \"e\",\n    \"has_return\": \"0\",\n    \"building_function\": \"1\",\n    \"return\": 0,\n    \"return_e_high\": 0,\n    \"return_e_low\": 0,\n    \"usage_e_single\": null,\n    \"usage_e_high\": 1010,\n    \"usage_e_low\": 1247,\n    \"usage_g\": null,\n    \"low_tariff_time\": \"t3\",\n    \"tarifftype\": \"1\",\n    \"e_gridoperator\": \"\",\n    \"g_gridoperator\": \"\",\n    \"e_connection_type\": \"\",\n    \"g_connection_type\": \"\",\n    \"g_region\": \"\",\n    \"electricity_ean\": \"800000000000000000\",\n    \"gas_ean\": null,\n    \"connection_postcode\": \"7546MS\",\n    \"connection_housenumber\": \"8\",\n    \"connection_suffix\": null,\n    \"connection_streetname\": \"Test\",\n    \"connection_city\": \"Test\",\n    \"business\": \"0\",\n    \"questionData\": {\n        \"inhuizing\": \"Ja\",\n        \"datum-inhuizing\": \"2020-03-01\",\n        \"ingangsdatum\": \"2020-03-01\",\n        \"overstaptest_switchdate_option\": \"Zo snel als mogelijk\",\n        \"overstaptest\": \"Nee\",\n        \"file-question\": [\n            {\n                \"name\": \"Image\",\n                \"content\": \"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNk+M9QDwADhgGAWjR9awAAAABJRU5ErkJggg==\",\n                \"extension\": \"png\"\n            }\n        ]\n    },\n    \"agreements\": {\n    \t\"privay-statement\": \"1\"\n    },\n    \"initial_user_firstname\": \"John\",\n    \"initial_user_lastname\": \"Doe\",\n    \"initial_organisation_name\": \"Test Organisation\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/sales/flow/{{flow_type_identifier}}/{{flow_identifier}}"},"status":"201Created","_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 21 Feb 2020 13:48:11 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Security-Policy","value":"default-src 'none'; base-uri 'none'; connect-src 'self'; font-src 'self' https://fonts.gstatic.com data: https:; form-action 'self'; frame-ancestors 'self'; frame-src 'self'; img-src 'self' http://json-services.nutselect.nl https://files.delta.nl https://www.westbespaarcoach.nl data: https:; media-src 'none'; object-src 'self'; script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com"},{"key":"Feature-Policy","value":"accelerometer 'self'; ambient-light-sensor 'self'; autoplay 'self'; camera 'self'; display-capture 'self'; document-domain *; encrypted-media 'self'; fullscreen 'self'; geolocation 'self'; gyroscope 'self'; magnetometer 'self'; microphone 'self'; midi 'self'; payment 'self'; picture-in-picture *; speaker 'self'; sync-xhr *; usb 'self'; vr 'self'"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"56892d24cf31d5bb-BOM"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"sale_id\": 261269\n    },\n    \"message\": \"Sale created successfully.\"\n}"}],"_postman_id":"78a2540e-a1fc-4ef7-854a-d258570d8012"},{"name":"Create energy order (consumer)","id":"f294ba97-bed1-4c26-82b0-88cae7e9f8a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"transaction_type\": \"order\",\n    \"postcode\": \"7546MS\",\n    \"housenumber\": \"8\",\n    \"suffix\": null,\n    \"business\": 0,\n    \"gender\": \"male\",\n    \"firstname\": \"Test\",\n    \"lastname\": \"Test\",\n    \"birthdate\": \"01-01-1990\",\n    \"streetname\": \"Test\",\n    \"city\": \"Test\",\n    \"email\": \"test@salesdock.nl\",\n    \"phone\": \"0611XXXXX\",\n    \"iban\": \"NL91ABNA04XXXXXXXX\",\n    \"iban_holder\": \"Test\",\n    \"sale_channel\": \"online\",\n    \"product_id\": \"424\",\n    \"type\": \"e\",\n    \"has_return\": \"0\",\n    \"building_function\": \"1\",\n    \"return\": 0,\n    \"return_e_high\": 0,\n    \"return_e_low\": 0,\n    \"usage_e_single\": null,\n    \"usage_e_high\": 1010,\n    \"usage_e_low\": 1247,\n    \"usage_g\": null,\n    \"tarifftype\": \"1\",\n    \"e_gridoperator\": \"\",\n    \"g_gridoperator\": \"\",\n    \"e_connection_type\": \"\",\n    \"g_connection_type\": \"\",\n    \"g_region\": \"\",\n    \"electricity_ean\": \"800000000000000000\",\n    \"gas_ean\": null,\n    \"connection_postcode\": \"7546MS\",\n    \"connection_housenumber\": \"8\",\n    \"connection_suffix\": null,\n    \"connection_streetname\": \"Test\",\n    \"connection_city\": \"Test\",\n    \"signature\": \"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAxwAAAEsCAYAAABJ4rWMAAAYwklEQVR4Xu3dzau1+xgH8OuUIuVlQMrAUV6KEpEwOU7CSBlISsJA5mZm+AdMGJFyBgbnjCidgQwwIi+RvKeIKO8yEEW66v7pZ/c8PftlXc+zv8tnTdbee93rWtf6XL/9dH/vdd/7eajcCBAgQIAAAQIECBAgMCTw0FBdZQkQIECAAAECBAgQIFACh0VAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqvwBYGXV9XHq+rfVfWJqnpdVX2yqv5wbPeMqnpTVb2+ql50/OznVfWPqvpKVT1aVd+qqhccj/25qn5bVT857oETIEDgQQq8pKp+9iAb8NoECBC4rQICx22dzHn11eHi63d4S7+pqn9W1bOr6o9b0LjOu//dEU46pPyiql54FPnLUf86Na/6nO9ur7me2z/rHtbtexe+v+pr2J7AuQr0vwP9u9K/u/vvbX/9yqr6ZVU9vN3/9fi+f6fW433f3/d2Xa+/fuPxb0K7de2vHtv3449V1Vuq6u8H6nur6htV1QdA+tYHSvr7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AgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIvAfxGwWPNkA3SIAAAAASUVORK5CYII=\",\n    \"questionData\": {\n        \"inhuizing\": \"Ja\",\n        \"datum-inhuizing\": \"2020-03-01\",\n        \"ingangsdatum\": \"2020-03-01\",\n        \"overstaptest_switchdate_option\": \"Zo snel als mogelijk\",\n        \"overstaptest\": \"Nee\"\n    },\n    \"agreements\": {\n    \t\"privay-statement\": \"1\"\n    },\n    \"initial_user_firstname\": \"John\",\n    \"initial_user_lastname\": \"Doe\",\n    \"initial_organisation_name\": \"Test Organisation\"\n}"},"url":"{{url}}/api/{{domain}}/{{version}}/sales/flow/{{flow_type_identifier}}/{{flow_identifier}}","description":"<p>Create an order for energy flow (consumer).<br />Replace {{flow_dentifier}} with the identifier of the flow.</p>\n<p>Replace {{flow_type_identifier}} with the identifier of the flow type.</p>\n<p>In the questionData object, get the product question identifiers needed for the flow and send them along with corresponding answers.</p>\n<p>In the agreements object, get the agreement identifiers needed for the flow and send them along with value \"1\" for accepted agreements.</p>\n<h4 id=\"completed-and-uncompleted-orders\">Completed and uncompleted orders</h4>\n<p>The API endpoint can be used to create both completed and uncompleted orders. Uncompleted orders result in a new contract pdf being generated and also a confirmation/verification email being sent to customers based on flow settings. A completed order will not send an email. An order via the API is considered as a completed order if it contains the \"contract_date\" parameter.</p>\n<p><strong>Body Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Mandatory</th>\n<th>Possible Value(s)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>transaction_type</td>\n<td>string</td>\n<td>Y</td>\n<td>order</td>\n<td></td>\n</tr>\n<tr>\n<td>connection_postcode</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Connection postcode</td>\n</tr>\n<tr>\n<td>connection_housenumber</td>\n<td>integer</td>\n<td>Y</td>\n<td></td>\n<td>Connection house number</td>\n</tr>\n<tr>\n<td>connection_suffix</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Connection house number extension</td>\n</tr>\n<tr>\n<td>connection_streetname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Connection street name</td>\n</tr>\n<tr>\n<td>connection_city</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Connection city</td>\n</tr>\n<tr>\n<td>postcode</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Contractant postcode</td>\n</tr>\n<tr>\n<td>housenumber</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Contractant house number</td>\n</tr>\n<tr>\n<td>suffix</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Contractant house number extension</td>\n</tr>\n<tr>\n<td>streetname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Contractant street name</td>\n</tr>\n<tr>\n<td>city</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Contractant city</td>\n</tr>\n<tr>\n<td>gender</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>firstname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>lastname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>birthdate</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>DOB in format dd-mm-yyyy</td>\n</tr>\n<tr>\n<td>email</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>phone</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>iban</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required according to flow settings</td>\n</tr>\n<tr>\n<td>iban_holder</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required according to flow settings</td>\n</tr>\n<tr>\n<td>sale_channel</td>\n<td>string</td>\n<td>N</td>\n<td>'d2d', 'retail', 'telemarketing', 'online', 'f2f'</td>\n<td></td>\n</tr>\n<tr>\n<td>product_id</td>\n<td>integer</td>\n<td>Y</td>\n<td></td>\n<td>ID of product</td>\n</tr>\n<tr>\n<td>business</td>\n<td>string</td>\n<td>Y</td>\n<td>0</td>\n<td></td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>Y</td>\n<td>'e', 'g', 'e_g'</td>\n<td>Type of energy selected - Electricity, Gas or electricity and gas</td>\n</tr>\n<tr>\n<td>building_function</td>\n<td>integer</td>\n<td>Y</td>\n<td>0, 1</td>\n<td>Woon-/verblijfsfunctie</td>\n</tr>\n<tr>\n<td>tarifftype</td>\n<td>integer</td>\n<td>Y</td>\n<td>0, 1</td>\n<td>0 =&gt; single meter; 1 =&gt; double meter</td>\n</tr>\n<tr>\n<td>usage_e_single</td>\n<td>float</td>\n<td>N</td>\n<td></td>\n<td>Required if type is 'e' or 'e_g' and tarifftype is 0, Single meter usage of electricity</td>\n</tr>\n<tr>\n<td>usage_e_high</td>\n<td>float</td>\n<td>N</td>\n<td></td>\n<td>Required if type is 'e' or 'e_g' and tarifftype is 1, Normaal usage of electricity in the case of double meter</td>\n</tr>\n<tr>\n<td>usage_e_low</td>\n<td>float</td>\n<td>N</td>\n<td></td>\n<td>Required if type is 'e' or 'e_g' and tarifftype is 1, Low usage of electricity in the case of double meter</td>\n</tr>\n<tr>\n<td>usage_g</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required if type is 'g' or 'e_g', Gas usage</td>\n</tr>\n<tr>\n<td>has_return</td>\n<td>integer</td>\n<td>Y</td>\n<td>0, 1</td>\n<td>Ik lever ook elektriciteit terug, 0 =&gt; No; 1 =&gt; Yes</td>\n</tr>\n<tr>\n<td>return</td>\n<td>float</td>\n<td>N</td>\n<td></td>\n<td>Required if has_return is 1 and tarifftype is 0, Single meter return of electricity</td>\n</tr>\n<tr>\n<td>return_e_high</td>\n<td>float</td>\n<td>N</td>\n<td></td>\n<td>Required if has_return is 1 and tarifftype is 1, Double meter return of normaal electricity</td>\n</tr>\n<tr>\n<td>return_e_low</td>\n<td>float</td>\n<td>N</td>\n<td></td>\n<td>Required if has_return is 1 and tarifftype is 1, Double meter return of low electricity</td>\n</tr>\n<tr>\n<td>e_gridoperator</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Electricity grid operator is required if type is 'e' or 'e_g'. If empty, then grid operator is obtained from eancodeboek.nl.</td>\n</tr>\n<tr>\n<td>g_gridoperator</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Gas grid operator is required if type is 'g' or 'e_g'. If empty, then grid operator is obtained from eancodeboek.nl.</td>\n</tr>\n<tr>\n<td>e_connection_type</td>\n<td>string</td>\n<td>N</td>\n<td>'E_NULTARIEF', 'E_1X6A_ONB' , ‘E_1X6A', 'E_1X10A_ONB', 'E_1X10A', 'E_3X25A_ONB', 'E_3X25A', ‘E_3X35A', 'E_3X50A', 'E_3X63A', 'E_3X80A', 'E_GV</td>\n<td>Electricity connection type is required if type is 'e' or 'e_g'. If empty, then value is estimated based on the usage.</td>\n</tr>\n<tr>\n<td>g_connection_type</td>\n<td>string</td>\n<td>N</td>\n<td>'G_NULTARIEF', 'G_ONB', 'G_G6_500’, ‘G_G6_500_4000', 'G_G6_4000', 'G_G10', 'G_G16', 'G_G25', 'G_GV'</td>\n<td>Gas connection type is required if type is 'g' or 'e_g'. If empty, then value is estimated based on the usage.</td>\n</tr>\n<tr>\n<td>g_region</td>\n<td>integer</td>\n<td>N</td>\n<td>[1-10]</td>\n<td>Gas region is required if type is 'g' or 'e_g'. If empty, value is obtained from database.</td>\n</tr>\n<tr>\n<td>electricity_ean</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Electricity EAN Code is required if type is 'e' or 'e_g'. If empty, then ean code is obtained from eancodeboek.nl.</td>\n</tr>\n<tr>\n<td>gas_ean</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Gas EAN Code is required if type is 'g' or 'e_g'. If empty, then ean code is obtained from eancodeboek.nl.</td>\n</tr>\n<tr>\n<td>contract_date</td>\n<td>date</td>\n<td>N</td>\n<td></td>\n<td>In DD-MM-YYYY format. If not empty, then signifies that it is a completed order.</td>\n</tr>\n<tr>\n<td>contract_pdf</td>\n<td>array</td>\n<td>N</td>\n<td></td>\n<td>Required if contract_date is not empty. Array expects 3 keys. First one is \"content\", which is the Base64 string of the contract pdf. Second one is \"extension\", which should always be 'pdf'. Third one is \"created_at\", which is the file created date time in \"YYYY-mm-dd hh:mm:ss\" format</td>\n</tr>\n<tr>\n<td>signature</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required based on flow settings, Base64 encoded string of image</td>\n</tr>\n<tr>\n<td>questionData</td>\n<td>array</td>\n<td>Y</td>\n<td></td>\n<td>Product question identifiers along with corresponding answers</td>\n</tr>\n<tr>\n<td>agreements</td>\n<td>array</td>\n<td>Y</td>\n<td></td>\n<td>Agreement identifiers with answer as \"1\" for accepted agreements</td>\n</tr>\n<tr>\n<td>initial_user_firstname</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>The first name of the user who did the sale</td>\n</tr>\n<tr>\n<td>initial_user_lastname</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>The last name of the user who did the sale</td>\n</tr>\n<tr>\n<td>initial_organisation_name</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>The name of the organisation which did the sale</td>\n</tr>\n<tr>\n<td>initial_created_at</td>\n<td>datetime</td>\n<td>N</td>\n<td></td>\n<td>In YYYY-mm-dd hh:mm:ss format. The date and time on which the sale was originally created. If the sale is completed, then this date time (if not empty), is considered as the contract signed date.</td>\n</tr>\n<tr>\n<td>external_reference</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>An order reference identifier that can be used by the API partners</td>\n</tr>\n<tr>\n<td>relation_id</td>\n<td>integer</td>\n<td>N</td>\n<td></td>\n<td>The ID of the relation that needs to be linked to the sale. This has to be a valid relation ID that is accessible to the user. If relation_id is not sent, then a new relation will be created and linked to the sale.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","{{domain}}","{{version}}","sales","flow","{{flow_type_identifier}}","{{flow_identifier}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"300c4059-3e6e-4ab0-8651-c71802fd76e0","name":"Create energy order (consumer) - Invalid product","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"transaction_type\": \"order\",\n    \"postcode\": \"7546MS\",\n    \"housenumber\": \"8\",\n    \"suffix\": null,\n    \"business\": 0,\n    \"gender\": \"male\",\n    \"firstname\": \"Test\",\n    \"lastname\": \"Test\",\n    \"birthdate\": \"01-01-1990\",\n    \"streetname\": \"Test\",\n    \"city\": \"Test\",\n    \"email\": \"test@salesdock.nl\",\n    \"phone\": \"0611XXXXX\",\n    \"iban\": \"NL91ABNA04XXXXXXXX\",\n    \"iban_holder\": \"Test\",\n    \"sale_channel\": \"online\",\n    \"product_id\": \"424\",\n    \"type\": \"e\",\n    \"has_return\": \"0\",\n    \"building_function\": \"1\",\n    \"return\": 0,\n    \"return_e_high\": 0,\n    \"return_e_low\": 0,\n    \"usage_e_single\": null,\n    \"usage_e_high\": 1010,\n    \"usage_e_low\": 1247,\n    \"usage_g\": null,\n    \"low_tariff_time\": \"t3\",\n    \"tarifftype\": \"1\",\n    \"e_gridoperator\": \"\",\n    \"g_gridoperator\": \"\",\n    \"e_connection_type\": \"\",\n    \"g_connection_type\": \"\",\n    \"g_region\": \"\",\n    \"electricity_ean\": \"800000000000000000\",\n    \"gas_ean\": null,\n    \"connection_postcode\": \"7546MS\",\n    \"connection_housenumber\": \"8\",\n    \"connection_suffix\": null,\n    \"connection_streetname\": \"Test\",\n    \"connection_city\": \"Test\",\n    \"signature\": \"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAxwAAAEsCAYAAABJ4rWMAAAYwklEQVR4Xu3dzau1+xgH8OuUIuVlQMrAUV6KEpEwOU7CSBlISsJA5mZm+AdMGJFyBgbnjCidgQwwIi+RvKeIKO8yEEW66v7pZ/c8PftlXc+zv8tnTdbee93rWtf6XL/9dH/vdd/7eajcCBAgQIAAAQIECBAgMCTw0FBdZQkQIECAAAECBAgQIFACh0VAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqswAQIECBAgQIAAAQIChzVAgAABAgQIECBAgMCYgMAxRqvwBYGXV9XHq+rfVfWJqnpdVX2yqv5wbPeMqnpTVb2+ql50/OznVfWPqvpKVT1aVd+qqhccj/25qn5bVT857oETIEDgQQq8pKp+9iAb8NoECBC4rQICx22dzHn11eHi63d4S7+pqn9W1bOr6o9b0LjOu//dEU46pPyiql54FPnLUf86Na/6nO9ur7me2z/rHtbtexe+v+pr2J7AuQr0vwP9u9K/u/vvbX/9yqr6ZVU9vN3/9fi+f6fW433f3/d2Xa+/fuPxb0K7de2vHtv3449V1Vuq6u8H6nur6htV1QdA+tYHSvr7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AgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIiBwhAxKmwQIECBAgAABAgQSBQSOxKnpmQABAgQIECBAgECIgMARMihtEiBAgAABAgQIEEgUEDgSp6ZnAgQIECBAgAABAiECAkfIoLRJgAABAgQIECBAIFFA4Eicmp4JECBAgAABAgQIhAgIHCGD0iYBAgQIECBAgACBRAGBI3FqeiZAgAABAgQIECAQIvAfxGwWPNkA3SIAAAAASUVORK5CYII=\",\n    \"questionData\": {\n        \"inhuizing\": \"Ja\",\n        \"datum-inhuizing\": \"2020-03-01\",\n        \"ingangsdatum\": \"2020-03-01\",\n        \"overstaptest_switchdate_option\": \"Zo snel als mogelijk\",\n        \"overstaptest\": \"Nee\",\n        \"file-question\": [\n            {\n                \"name\": \"Image\",\n                \"content\": \"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNk+M9QDwADhgGAWjR9awAAAABJRU5ErkJggg==\",\n                \"extension\": \"png\"\n            }\n        ]\n    },\n    \"agreements\": {\n    \t\"privay-statement\": \"1\"\n    },\n    \"initial_user_firstname\": \"John\",\n    \"initial_user_lastname\": \"Doe\",\n    \"initial_organisation_name\": \"Test Organisation\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/sales/flow/{{flow_type_identifier}}/{{flow_identifier}}"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 21 Feb 2020 13:49:38 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Security-Policy","value":"default-src 'none'; base-uri 'none'; connect-src 'self'; font-src 'self' https://fonts.gstatic.com data: https:; form-action 'self'; frame-ancestors 'self'; frame-src 'self'; img-src 'self' http://json-services.nutselect.nl https://files.delta.nl https://www.westbespaarcoach.nl data: https:; media-src 'none'; object-src 'self'; script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com"},{"key":"Feature-Policy","value":"accelerometer 'self'; ambient-light-sensor 'self'; autoplay 'self'; camera 'self'; display-capture 'self'; document-domain *; encrypted-media 'self'; fullscreen 'self'; geolocation 'self'; gyroscope 'self'; magnetometer 'self'; microphone 'self'; midi 'self'; payment 'self'; picture-in-picture *; speaker 'self'; sync-xhr *; usb 'self'; vr 'self'"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"56892f40ddb8d5bb-BOM"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"message\": \"Invalid product\",\n    \"code\": 400\n}"}],"_postman_id":"f294ba97-bed1-4c26-82b0-88cae7e9f8a7"},{"name":"Update energy product","id":"84c30d08-992c-47c5-83a7-08a989f1ea76","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"energy_e_g\", // type of the product\n    \"active\": \"1\", // 1 = active, 0 = inactive\n    \"valid_from\": \"01-01-2020\", // Starting date from which product can be sold. Do not send if no start date required\n    \"valid_till\": \"31-12-2023\", // Ending date till which product can be sold. Do not send if no end date required\n    \"tariff_single\": \"0.03829\", // Single meter usage tariff\n    \"tariff_high\": \"0.04347\", // High usage tariff for double meter\n    \"tariff_low\": \"0.03168\", // Low usage tariff for double meter\n    \"tariff_high_t2\": \"0.04347\", // High usage tariff for double meter during night\n    \"tariff_low_t2\": \"0.03168\", // Low usage tariff for double meter during night\n    \"tariff_return\": \"0.03829\", // Single meter return tariff\n    \"tariff_return_high\": \"0.03829\", // Double meter high return tariff\n    \"tariff_return_low\": \"0.03829\", // Double meter low return tariff\n    \"tariff_fixed_e\": \"14.99\", // Electricity fixed tariff per month\n    \"g_region_tax_level\": \"supplier\", // Gas tax level on - supplier/product\n    \"tariff_g\": \"0.1448\", // Gas usage tariff\n    \"tariff_g_g2\": \"0.2448\", // Gas usage tariff d2\n    \"tariff_fixed_g\": \"15.99\", // Gas fixed tariff per month,\n    \"product_type\": \"fixed\" // If product is fixed, variable or dynamic \n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/account/products/{{product_id}}/energy","description":"<p>This endpoint helps in updating the tariffs and extra field values of an energie product.</p>\n<p>Replace the product_id in the URL with the id of the product.</p>\n<p>The identifiers to use for tariffs and extra fields can be received from the \"Get product\" API call</p>\n<p>By default the tariffs are mandatory in the request. But if only the extra fields need to be updated and not the tariffs, send do_not_update_tariffs = true, in the request body.</p>\n<p><strong>Body Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Format</strong></th>\n<th><strong>Mandatory</strong></th>\n<th><strong>Possible Value(s)</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>Y</td>\n<td>'energy_e_g', 'energy_e', 'energy_g'</td>\n<td>This is type of the prodocut. energy_e_g - Electricity and gas energy_e - Only electricity energy_g - Only gas</td>\n</tr>\n<tr>\n<td>active</td>\n<td>string</td>\n<td>Y</td>\n<td>'1', '0'</td>\n<td>If product is active or inactive. 1 = active and 0 = inactive</td>\n</tr>\n<tr>\n<td>valid_from</td>\n<td>date (dd-mm-yyyy)</td>\n<td>N</td>\n<td></td>\n<td>Starting date from which product can be sold. Do not send if no start date required</td>\n</tr>\n<tr>\n<td>valid_till</td>\n<td>date (dd-mm-yyyy)</td>\n<td>N</td>\n<td></td>\n<td>Ending date till which product can be sold. Do not send if no end date required</td>\n</tr>\n<tr>\n<td>product_type</td>\n<td></td>\n<td>Y</td>\n<td>'fixed', 'variable', 'dynamic'</td>\n<td>The type of energie product</td>\n</tr>\n<tr>\n<td>tariff_single</td>\n<td>numeric</td>\n<td>N</td>\n<td></td>\n<td>Single meter electricity tariff</td>\n</tr>\n<tr>\n<td>tariff_high</td>\n<td>numeric</td>\n<td>N</td>\n<td></td>\n<td>Peak electricity tariff</td>\n</tr>\n<tr>\n<td>tariff_low</td>\n<td>numeric</td>\n<td>N</td>\n<td></td>\n<td>Off peak electricity tariff</td>\n</tr>\n<tr>\n<td>tariff_high_t2</td>\n<td>numeric</td>\n<td>N</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>tariff_low_t2</td>\n<td>numeric</td>\n<td>N</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>tariff_return</td>\n<td>numeric</td>\n<td>N</td>\n<td></td>\n<td>Electricity return tariff single meter</td>\n</tr>\n<tr>\n<td>tariff_return_high</td>\n<td>numeric</td>\n<td>N</td>\n<td></td>\n<td>Electricity peak return tariff</td>\n</tr>\n<tr>\n<td>tariff_return_low</td>\n<td>numeric</td>\n<td>N</td>\n<td></td>\n<td>Electricity off peak return tariff</td>\n</tr>\n<tr>\n<td>tariff_fixed_e</td>\n<td>numeric</td>\n<td>N</td>\n<td></td>\n<td>Fixed electricity tariff</td>\n</tr>\n<tr>\n<td>g_region_tax_level</td>\n<td>string</td>\n<td>N</td>\n<td>supplier, product</td>\n<td>If the supplier gas tax level is on supplier level or product level.</td>\n</tr>\n<tr>\n<td>tariff_g</td>\n<td>numeric</td>\n<td>N</td>\n<td></td>\n<td>Gas usage tariff</td>\n</tr>\n<tr>\n<td>tariff_g_g2</td>\n<td>numeric</td>\n<td>N</td>\n<td></td>\n<td>Gas usage tariff (G2)</td>\n</tr>\n<tr>\n<td>tariff_fixed_g</td>\n<td>numeric</td>\n<td>N</td>\n<td></td>\n<td>Gas fixed tariff</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","{{domain}}","{{version}}","account","products","{{product_id}}","energy"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"a3e349ee-6876-4364-af91-7fe6a73bcc2a","name":"Update energie product","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"energy_e_g\",\n    \"active\": \"1\",\n    \"valid_from\": \"01-01-2020\",\n    \"valid_till\": \"31-12-2023\",\n    \"tariff_single\": \"0.03829\",\n    \"tariff_high\": \"0.04347\",\n    \"tariff_low\": \"0.03168\",\n    \"tariff_high_t2\": \"0.04347\",\n    \"tariff_low_t2\": \"0.03168\",\n    \"tariff_return\": \"0.03829\",\n    \"tariff_return_high\": \"0.03829\",\n    \"tariff_return_low\": \"0.03829\",\n    \"tariff_fixed_e\": \"14.99\",\n    \"g_region_tax_level\": \"supplier\",\n    \"tariff_g\": \"0.1448\",\n    \"tariff_g_g2\": \"0.2448\",\n    \"tariff_fixed_g\": \"15.99\",\n    \"contractduur\": \"12 maanden\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/account/products/{{product_id}}/energy"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 20 Dec 2021 08:13:05 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' https://bam.eu01.nr-data.net https://www.google-analytics.com https://widget.freshworks.com https://salesdock.freshdesk.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Rft42GOD018fJg6A2aRmbasgojygNz0jtVbmy9p4xu%2Bc8yD42g2RF%2BEEAygz7hlOsqh6J%2BEIpy8JyVfXdw0rvKVZHpDKqh97uUbONxXhhnZeZjOLM%2BI5PGxPcU4WnnXntoo%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"6c0768ca68cd0c75-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [],\n    \"message\": \"Product succesvol geupdatet\"\n}"}],"_postman_id":"84c30d08-992c-47c5-83a7-08a989f1ea76"},{"name":"Get products with energy tariff and calculation","id":"b28c47a9-2d30-4310-957b-22e9fdb8bff0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/v1/user/products/energy?postcode=7546MS&housenumber=8&suffix=&type=e&tarifftype=1&usage_e_single=&usage_e_high=500&usage_e_low=300&usage_g=&has_return=1&return=&return_e_high=200&return_e_low=100&building_function=1&e_gridoperator=&g_gridoperator&e_connection_type=&g_connection_type=&flow_identifier&business","description":"<p>This end point returns all the possible products that are avaialble for the address along with the tariff and costs calculated</p>\n","urlObject":{"path":["api","{{domain}}","v1","user","products","energy"],"host":["{{url}}"],"query":[{"description":{"content":"<p>Postcode of the address</p>\n","type":"text/plain"},"key":"postcode","value":"7546MS"},{"description":{"content":"<p>House number of the address</p>\n","type":"text/plain"},"key":"housenumber","value":"8"},{"description":{"content":"<p>House number extension of the address (if no suffix, do not send this field)</p>\n","type":"text/plain"},"key":"suffix","value":""},{"description":{"content":"<p>e_g = Electricity and gas, e = only electricity, g = only gas</p>\n","type":"text/plain"},"key":"type","value":"e"},{"description":{"content":"<p>1= Double meter, 0 = single meter</p>\n","type":"text/plain"},"key":"tarifftype","value":"1"},{"description":{"content":"<p>Single usage electricity. Required if: type = e/e_g and tarifftype = 0.</p>\n","type":"text/plain"},"key":"usage_e_single","value":""},{"description":{"content":"<p>High usage electricity. Required if: type = e/e_g and tarifftype = 1.</p>\n","type":"text/plain"},"key":"usage_e_high","value":"500"},{"description":{"content":"<p>Low usage electricity. Required if: type = e/e_g and tarifftype = 1.</p>\n","type":"text/plain"},"key":"usage_e_low","value":"300"},{"description":{"content":"<p>Usage gasRequired if: type = g/e_g.</p>\n","type":"text/plain"},"key":"usage_g","value":""},{"description":{"content":"<p>1 = has electricity return, 0 = no electricity return. Required if: type = e/e_g.</p>\n","type":"text/plain"},"key":"has_return","value":"1"},{"description":{"content":"<p>Single meter electricity return. Required if has_return = 1 and tarifftype = 0.</p>\n","type":"text/plain"},"key":"return","value":""},{"description":{"content":"<p>Electricity return high. Required if has_return = 1 and tarifftype = 1.</p>\n","type":"text/plain"},"key":"return_e_high","value":"200"},{"description":{"content":"<p>Elextricity return low. Required if has_return = 1 and tarifftype = 1.</p>\n","type":"text/plain"},"key":"return_e_low","value":"100"},{"description":{"content":"<p>1 = yes, 0 = no</p>\n","type":"text/plain"},"key":"building_function","value":"1"},{"description":{"content":"<p>Electricity grid operator (optional). Possible values: 8716871000004, 8716871000008, 8716871000001, 8716871000002, 8716871000006  8716871000003, 8716871000007.</p>\n","type":"text/plain"},"key":"e_gridoperator","value":""},{"description":{"content":"<p>Gas grid operator (optional). Possible values: 8716871000004, 8716871000008, 8716871000001, 8716871000002, 8716871000006  8716871000003, 8716871000007.</p>\n","type":"text/plain"},"key":"g_gridoperator","value":null},{"description":{"content":"<p>Electricity connection type.  Possible values: 'E_NULTARIEF', 'E_1X6A_ONB' , ‘E_1X6A', 'E_1X10A_ONB', 'E_1X10A', 'E_3X25A_ONB', 'E_3X25A', ‘E_3X35A', 'E_3X50A', 'E_3X63A', 'E_3X80A', 'E_GV'</p>\n","type":"text/plain"},"key":"e_connection_type","value":""},{"description":{"content":"<p>Gas connection type. Possible values: 'G_NULTARIEF', 'G_ONB', 'G_G6_500’, ‘G_G6_500_4000', 'G_G6_4000', 'G_G10', 'G_G16', 'G_G25', 'G_GV'</p>\n","type":"text/plain"},"key":"g_connection_type","value":""},{"description":{"content":"<p>Identifier of the flow</p>\n","type":"text/plain"},"key":"flow_identifier","value":null},{"description":{"content":"<p>1 = yes, 0 = no</p>\n","type":"text/plain"},"key":"business","value":null}],"variable":[]}},"response":[{"id":"dff0534a-0df0-4cd7-ae7c-8c31aedf88d3","name":"Get energy products with calculation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"}],"url":{"raw":"https://app.salesdock.nl/api/{{domain}}/v1/user/products/energy?postcode=7521WC&housenumber=15&type=e_g&tarifftype=1&usage_e_high=300&usage_e_low=200&usage_g=500&has_return=1&return_e_high=100&return_e_low=50&low_tariff_time=t3&building_function=1&e_connection_type=E_3X35A&g_connection_type=G_G6_500_4000","protocol":"https","host":["app","salesdock","nl"],"path":["api","{{domain}}","v1","user","products","energy"],"query":[{"key":"postcode","value":"7521WC","description":"Postcode of the address"},{"key":"housenumber","value":"15","description":"House number of the address"},{"key":"suffix","value":"","description":"House number extension of the address (if no suffix, do not send this field)","disabled":true},{"key":"type","value":"e_g","description":"e_g = Electricity and gas, e = only electricity, g = only gas"},{"key":"tarifftype","value":"1","description":"1= Double meter, 0 = single meter"},{"key":"usage_e_single","value":"","description":"Single usage electricity. Required if: type = e/e_g and tarifftype = 0.","disabled":true},{"key":"usage_e_high","value":"300","description":"High usage electricity. Required if: type = e/e_g and tarifftype = 1."},{"key":"usage_e_low","value":"200","description":"Low usage electricity. Required if: type = e/e_g and tarifftype = 1."},{"key":"usage_g","value":"500","description":"Usage gasRequired if: type = g/e_g."},{"key":"has_return","value":"1","description":"1 = has electricity return, 0 = no electricity return. Required if: type = e/e_g."},{"key":"return","value":"","description":"Single meter electricity return. Required if has_return = 1 and tarifftype = 0.","disabled":true},{"key":"return_e_high","value":"100","description":"Electricity return high. Required if has_return = 1 and tarifftype = 1."},{"key":"return_e_low","value":"50","description":"Elextricity return low. Required if has_return = 1 and tarifftype = 1."},{"key":"low_tariff_time","value":"t3","description":"t3 = Vanaf 23:00. t2 = Vanaf 21:00, Required if tarifftype = 1."},{"key":"building_function","value":"1","description":"1 = yes, 0 = no"},{"key":"e_gridoperator","value":"","description":"Electricity grid operator (optional)","disabled":true},{"key":"g_gridoperator","value":null,"description":"Gas grid operator (optional)","disabled":true},{"key":"e_connection_type","value":"E_3X35A","description":"Electricity connection type. Required if type = e/e_g. Possible values: 'E_NULTARIEF', 'E_1X6A_ONB' , ‘E_1X6A', 'E_1X10A_ONB', 'E_1X10A', 'E_3X25A_ONB', 'E_3X25A', ‘E_3X35A', 'E_3X50A', 'E_3X63A', 'E_3X80A'."},{"key":"g_connection_type","value":"G_G6_500_4000","description":"Gas connection type. Required if type = g/e_g. Possible values: 'G_NULTARIEF', 'G_ONB', 'G_G6_500’, ‘G_G6_500_4000', 'G_G6_4000', 'G_G10', 'G_G16', 'G_G25'"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 21 Sep 2020 06:28:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self'; form-action 'self'; frame-ancestors 'self'; frame-src 'self'; object-src 'self'"},{"key":"Feature-Policy","value":"accelerometer 'self'; ambient-light-sensor 'self'; autoplay 'self'; battery 'self'; camera 'self'; display-capture 'self'; document-domain *; encrypted-media 'self'; execution-while-not-rendered *; execution-while-out-of-viewport *; fullscreen 'self'; geolocation 'self'; gyroscope 'self'; layout-animations 'self'; legacy-image-formats 'self'; magnetometer 'self'; microphone 'self'; midi 'self'; navigation-override 'self'; oversized-images *; payment 'self'; picture-in-picture *; publickey-credentials 'self'; sync-xhr *; unoptimized-images 'self'; unsized-media *; usb 'self'; wake-lock 'self'; xr-spatial-tracking 'self'"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"Vary","value":"Authorization"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"0550f2d5fc00001aa4b1218200000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"5d61ba6998a61aa4-SIN"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"data\": [\n    {\n      \"id\": 428,\n      \"name\": \"Test Product 1\",\n      \"identifier\": \"test-product-1\",\n      \"supplier_id\": 41,\n      \"type\": \"energy_e_g\",\n      \"usp\": \"3 jaar lang een vast tarief\\r\\ngroene stroom\",\n      \"description\": \"\",\n      \"duration\": null,\n      \"business\": \"2\",\n      \"retention\": \"0\",\n      \"switchdate_business_min\": null,\n      \"switchdate_business_max\": null,\n      \"switchdate_business_default\": null,\n      \"switchdate_business_min_date\": null,\n      \"switchdate_consumer_min\": null,\n      \"switchdate_consumer_max\": null,\n      \"switchdate_consumer_default\": null,\n      \"switchdate_consumer_min_date\": null,\n      \"valid_from\": null,\n      \"valid_till\": null,\n      \"created_at\": \"2025-09-26 09:53:53\",\n      \"updated_at\": \"2025-12-17 17:08:26\",\n      \"supplier_name\": \"Test supplier\",\n      \"address\": {\n        \"postcode\": \"7521WC\",\n        \"housenumber\": \"15\",\n        \"suffix\": null,\n        \"streetname\": \"Neptunusstraat\",\n        \"city\": \"Enschede\"\n      },\n      \"bag\": {\n        \"functions\": \"kantoorfunctie\",\n        \"availability_of_product\": true\n      },\n      \"ean_codes\": {\n        \"electricity\": [\n          {\n            \"grid_operator_name\": \"Enexis B.V.\",\n            \"grid_operator\": 8716871000001,\n            \"ean_code\": 871694840009017700\n          }\n        ],\n        \"gas\": [\n          {\n            \"grid_operator_name\": \"Enexis B.V.\",\n            \"grid_operator\": 8716871000001,\n            \"ean_code\": 871694840015349100\n          }\n        ]\n      },\n      \"cost_specifications\": {\n        \"building_function\": 1,\n        \"electricity\": {\n          \"double_meter\": true,\n          \"has_return\": true,\n          \"future_return_tariff\": \"0,10000\",\n          \"future_return_tariff_high\": \"0,20000\",\n          \"future_return_tariff_low\": \"0,30000\",\n          \"future_return_costs\": \"1,00000\",\n          \"usage_low\": 150,\n          \"usage_high\": 200,\n          \"full_usage_high\": 300,\n          \"full_usage_low\": 200,\n          \"usage_low_cost\": \"6,44\",\n          \"usage_low_cost_inc_vat\": \"7,79\",\n          \"usage_high_cost\": \"10,85\",\n          \"usage_high_cost_inc_vat\": \"13,13\",\n          \"full_return_low\": 50,\n          \"full_return_high\": 100,\n          \"delivery_cost\": \"167,29\",\n          \"delivery_cost_inc_vat\": \"202,42\",\n          \"government_tax_per_year\": \"32,06\",\n          \"government_tax_per_month\": \"2,67\",\n          \"government_tax_per_year_inc_vat\": \"38,80\",\n          \"government_tax_per_month_inc_vat\": \"3,23\",\n          \"fixed_delivery_cost\": \"44,53\",\n          \"fixed_delivery_cost_inc_vat\": \"53,88\",\n          \"variable_delivery_cost_return\": \"150,00\",\n          \"variable_delivery_cost_return_inc_vat\": \"181,50\",\n          \"tax_reduction\": \"519,80\",\n          \"tax_reduction_inc_vat\": \"628,96\",\n          \"tariff_grid_operator_monthly\": \"135,75\",\n          \"tariff_grid_operator_year\": \"1.628,96\",\n          \"tariff_grid_operator_monthly_inc_vat\": \"164,25\",\n          \"tariff_grid_operator_year_inc_vat\": \"1.971,04\",\n          \"grid_operator_name\": \"Enexis 3x35A\",\n          \"total\": \"1.353,04\",\n          \"total_inc_vat\": \"1.637,18\",\n          \"total_vat\": \"284,14\",\n          \"tariff_energytax_exc_vat\": {\n            \"0 - 350\": \"0,09161\"\n          },\n          \"total_energytax_exc_vat\": {\n            \"0 - 350\": \"32,06\"\n          },\n          \"tariff_ode_exc_vat\": {\n            \"0 - 350\": \"0,00000\"\n          },\n          \"total_ode_exc_vat\": {\n            \"0 - 350\": \"0,00\"\n          },\n          \"tariff_energytax_inc_vat\": {\n            \"0 - 350\": \"0,11085\"\n          },\n          \"total_energytax_inc_vat\": {\n            \"0 - 350\": \"38,80\"\n          },\n          \"tariff_ode_inc_vat\": {\n            \"0 - 350\": \"0,00000\"\n          },\n          \"total_ode_inc_vat\": {\n            \"0 - 350\": \"0,00\"\n          },\n          \"tariff\": {\n            \"tariff_low\": \"0,04\",\n            \"tariff_low_inc_vat\": \"0,05\",\n            \"tariff_high\": \"0,05\",\n            \"tariff_high_inc_vat\": \"0,07\",\n            \"all_in_tariff_low\": \"0,13454\",\n            \"all_in_tariff_low_inc_vat\": \"0,16279\",\n            \"all_in_tariff_high\": \"0,14587\",\n            \"all_in_tariff_high_inc_vat\": \"0,17650\",\n            \"tariff_fixed_fee_month\": \"3,71\",\n            \"tariff_fixed_fee_month_inc_vat\": \"4,49\"\n          }\n        },\n        \"gas\": {\n          \"usage\": 500,\n          \"delivery_cost\": \"1.605,42\",\n          \"delivery_cost_inc_vat\": \"1.942,55\",\n          \"government_tax_per_year\": \"300,33\",\n          \"government_tax_per_month\": \"25,03\",\n          \"government_tax_per_year_inc_vat\": \"363,40\",\n          \"government_tax_per_month_inc_vat\": \"30,28\",\n          \"fixed_delivery_cost\": \"44,53\",\n          \"fixed_delivery_cost_inc_vat\": \"53,88\",\n          \"tariff_grid_operator_monthly\": \"18,34\",\n          \"tariff_grid_operator_year\": \"220,13\",\n          \"tariff_grid_operator_monthly_inc_vat\": \"22,20\",\n          \"tariff_grid_operator_year_inc_vat\": \"266,36\",\n          \"grid_operator_name\": \"Enexis t/m G6, 500 < verbruik < 4000\",\n          \"total\": \"2.170,41\",\n          \"total_inc_vat\": \"2.626,19\",\n          \"total_vat\": \"455,79\",\n          \"tariff_energytax_exc_vat\": {\n            \"0-1000\": \"0,60066\"\n          },\n          \"total_energytax_exc_vat\": {\n            \"0-1000\": \"300,33\"\n          },\n          \"tariff_ode_exc_vat\": {\n            \"0-1000\": \"0,00\"\n          },\n          \"total_ode_exc_vat\": {\n            \"0-1000\": \"0,00\"\n          },\n          \"tariff_energytax_inc_vat\": {\n            \"0-1000\": \"0,72680\"\n          },\n          \"total_energytax_inc_vat\": {\n            \"0-1000\": \"363,40\"\n          },\n          \"tariff_ode_inc_vat\": {\n            \"0-1000\": \"0,00000\"\n          },\n          \"total_ode_inc_vat\": {\n            \"0-1000\": \"0,00\"\n          },\n          \"tariff\": {\n            \"g_tariff\": \"3,21\",\n            \"tariff_inc_vat\": \"3,89\",\n            \"all_in_tariff\": \"3,81149\",\n            \"all_in_tariff_inc_vat\": \"4,61190\",\n            \"tariff_fixed_fee_month\": \"3,71\",\n            \"tariff_fixed_fee_month_inc_vat\": \"4,49\",\n            \"g_region_tax_level\": \"supplier\",\n            \"g_region\": 4,\n            \"g_profile\": \"G1\",\n            \"g_region_tariff\": \"3,21\",\n            \"g_region_tax_tariff\": \"0,00\",\n            \"g_region_tax_tariff_inc_vat\": \"0,00\",\n            \"tariff_fixed_g\": \"3.71083\",\n            \"tariff_g\": \"3,21\",\n            \"tariff_g_g2\": \"3,71\",\n            \"tariff_inc_gas_region_tax\": \"3,21\",\n            \"tariff_inc_gas_region_tax_and_vat\": \"3,89\"\n          }\n        },\n        \"total\": {\n          \"total\": \"3.523,45\",\n          \"total_inc_vat\": \"4.263,37\",\n          \"total_per_month\": \"293,62\",\n          \"total_per_month_inc_vat\": \"355,28\",\n          \"total_vat\": \"739,92\"\n        }\n      },\n      \"customer_type_availability\": \"all\",\n      \"customer_classification\": [\n        \"household\"\n      ],\n      \"make_second_calculation\": true,\n      \"has_2027_calculation\": true,\n      \"cost_specifications_2027\": {\n        \"building_function\": 1,\n        \"electricity\": {\n          \"double_meter\": true,\n          \"has_return\": true,\n          \"future_return_tariff\": \"0,10000\",\n          \"future_return_tariff_high\": \"0,20000\",\n          \"future_return_tariff_low\": \"0,30000\",\n          \"future_return_costs\": \"1,00000\",\n          \"usage_low\": 200,\n          \"usage_high\": 300,\n          \"full_usage_high\": 300,\n          \"full_usage_low\": 200,\n          \"usage_low_cost\": \"8,59\",\n          \"usage_low_cost_inc_vat\": \"10,39\",\n          \"usage_high_cost\": \"16,28\",\n          \"usage_high_cost_inc_vat\": \"19,70\",\n          \"return_low\": 50,\n          \"return_high\": 100,\n          \"full_return_low\": 50,\n          \"full_return_high\": 100,\n          \"tariff_return_high\": \"0,20\",\n          \"tariff_return_high_consumer\": \"0,24200\",\n          \"return_high_cost_consumer\": \"24,20\",\n          \"tariff_return_low\": \"0,30000\",\n          \"tariff_return_low_consumer\": \"0,36300\",\n          \"return_low_cost_consumer\": \"18,15\",\n          \"delivery_cost\": \"174,86\",\n          \"delivery_cost_inc_vat\": \"211,59\",\n          \"government_tax_per_year\": \"45,81\",\n          \"government_tax_per_month\": \"3,82\",\n          \"government_tax_per_year_inc_vat\": \"55,42\",\n          \"government_tax_per_month_inc_vat\": \"4,62\",\n          \"fixed_delivery_cost\": \"44,53\",\n          \"fixed_delivery_cost_inc_vat\": \"53,88\",\n          \"variable_delivery_cost_return\": \"150,00\",\n          \"variable_delivery_cost_return_inc_vat\": \"181,50\",\n          \"tax_reduction\": \"519,80\",\n          \"tax_reduction_inc_vat\": \"628,96\",\n          \"tariff_grid_operator_monthly\": \"135,75\",\n          \"tariff_grid_operator_year\": \"1.628,96\",\n          \"tariff_grid_operator_monthly_inc_vat\": \"164,25\",\n          \"tariff_grid_operator_year_inc_vat\": \"1.971,04\",\n          \"grid_operator_name\": \"Enexis 3x35A\",\n          \"total\": \"1.339,36\",\n          \"total_inc_vat\": \"1.620,62\",\n          \"total_vat\": \"281,27\",\n          \"tariff_energytax_exc_vat\": {\n            \"0 - 500\": \"0,09161\"\n          },\n          \"total_energytax_exc_vat\": {\n            \"0 - 500\": \"45,81\"\n          },\n          \"tariff_ode_exc_vat\": {\n            \"0 - 500\": \"0,00000\"\n          },\n          \"total_ode_exc_vat\": {\n            \"0 - 500\": \"0,00\"\n          },\n          \"tariff_energytax_inc_vat\": {\n            \"0 - 500\": \"0,11085\"\n          },\n          \"total_energytax_inc_vat\": {\n            \"0 - 500\": \"55,42\"\n          },\n          \"tariff_ode_inc_vat\": {\n            \"0 - 500\": \"0,00000\"\n          },\n          \"total_ode_inc_vat\": {\n            \"0 - 500\": \"0,00\"\n          },\n          \"return_high_cost\": \"20,00000\",\n          \"return_low_cost\": \"15,00000\",\n          \"tariff\": {\n            \"tariff_low\": \"0,04\",\n            \"tariff_low_inc_vat\": \"0,05\",\n            \"tariff_high\": \"0,05\",\n            \"tariff_high_inc_vat\": \"0,07\",\n            \"all_in_tariff_low\": \"0,13454\",\n            \"all_in_tariff_low_inc_vat\": \"0,16279\",\n            \"all_in_tariff_high\": \"0,14587\",\n            \"all_in_tariff_high_inc_vat\": \"0,17650\",\n            \"tariff_fixed_fee_month\": \"3,71\",\n            \"tariff_fixed_fee_month_inc_vat\": \"4,49\"\n          }\n        },\n        \"gas\": {\n          \"usage\": 500,\n          \"delivery_cost\": \"1.605,42\",\n          \"delivery_cost_inc_vat\": \"1.942,55\",\n          \"government_tax_per_year\": \"300,33\",\n          \"government_tax_per_month\": \"25,03\",\n          \"government_tax_per_year_inc_vat\": \"363,40\",\n          \"government_tax_per_month_inc_vat\": \"30,28\",\n          \"fixed_delivery_cost\": \"44,53\",\n          \"fixed_delivery_cost_inc_vat\": \"53,88\",\n          \"tariff_grid_operator_monthly\": \"18,34\",\n          \"tariff_grid_operator_year\": \"220,13\",\n          \"tariff_grid_operator_monthly_inc_vat\": \"22,20\",\n          \"tariff_grid_operator_year_inc_vat\": \"266,36\",\n          \"grid_operator_name\": \"Enexis t/m G6, 500 < verbruik < 4000\",\n          \"total\": \"2.170,41\",\n          \"total_inc_vat\": \"2.626,19\",\n          \"total_vat\": \"455,79\",\n          \"tariff_energytax_exc_vat\": {\n            \"0-1000\": \"0,60066\"\n          },\n          \"total_energytax_exc_vat\": {\n            \"0-1000\": \"300,33\"\n          },\n          \"tariff_ode_exc_vat\": {\n            \"0-1000\": \"0,00\"\n          },\n          \"total_ode_exc_vat\": {\n            \"0-1000\": \"0,00\"\n          },\n          \"tariff_energytax_inc_vat\": {\n            \"0-1000\": \"0,72680\"\n          },\n          \"total_energytax_inc_vat\": {\n            \"0-1000\": \"363,40\"\n          },\n          \"tariff_ode_inc_vat\": {\n            \"0-1000\": \"0,00000\"\n          },\n          \"total_ode_inc_vat\": {\n            \"0-1000\": \"0,00\"\n          },\n          \"tariff\": {\n            \"g_tariff\": \"3,21\",\n            \"tariff_inc_vat\": \"3,89\",\n            \"all_in_tariff\": \"3,81149\",\n            \"all_in_tariff_inc_vat\": \"4,61190\",\n            \"tariff_fixed_fee_month\": \"3,71\",\n            \"tariff_fixed_fee_month_inc_vat\": \"4,49\",\n            \"g_region_tax_level\": \"supplier\",\n            \"g_region\": 4,\n            \"g_profile\": \"G1\",\n            \"g_region_tariff\": \"3,21\",\n            \"g_region_tax_tariff\": \"0,00\",\n            \"g_region_tax_tariff_inc_vat\": \"0,00\",\n            \"tariff_fixed_g\": \"3.71083\",\n            \"tariff_g\": \"3,21\",\n            \"tariff_g_g2\": \"3,71\",\n            \"tariff_inc_gas_region_tax\": \"3,21\",\n            \"tariff_inc_gas_region_tax_and_vat\": \"3,89\"\n          }\n        },\n        \"total\": {\n          \"total\": \"3.509,76\",\n          \"total_inc_vat\": \"4.246,81\",\n          \"total_per_month\": \"292,48\",\n          \"total_per_month_inc_vat\": \"353,90\",\n          \"total_vat\": \"737,05\"\n        }\n      }\n    },\n    {\n      \"id\": 430,\n      \"name\": \"Test product 2\",\n      \"identifier\": \"test-product-2\",\n      \"supplier_id\": 40,\n      \"type\": \"energy_e_g\",\n      \"usp\": \"5 jaar een vaste scherpe prijs\",\n      \"description\": null,\n      \"duration\": null,\n      \"business\": \"1\",\n      \"retention\": \"1\",\n      \"switchdate_business_min\": \"+10days\",\n      \"switchdate_business_max\": \"+10days\",\n      \"switchdate_business_default\": \"+10days\",\n      \"switchdate_business_min_date\": \"2024-12-21 00:00:00\",\n      \"switchdate_consumer_min\": \"+10days\",\n      \"switchdate_consumer_max\": \"+10days\",\n      \"switchdate_consumer_default\": \"+10days\",\n      \"switchdate_consumer_min_date\": \"2024-12-21 00:00:00\",\n      \"valid_from\": null,\n      \"valid_till\": null,\n      \"created_at\": \"2025-10-15 09:57:57\",\n      \"updated_at\": \"2025-10-15 09:57:57\",\n      \"supplier_name\": \"Test supplier 2\",\n      \"address\": {\n        \"postcode\": \"7521WC\",\n        \"housenumber\": \"15\",\n        \"suffix\": null,\n        \"streetname\": \"Neptunusstraat\",\n        \"city\": \"Enschede\"\n      },\n      \"bag\": {\n        \"functions\": \"kantoorfunctie\",\n        \"availability_of_product\": true\n      },\n      \"ean_codes\": {\n        \"electricity\": [\n          {\n            \"grid_operator_name\": \"Enexis B.V.\",\n            \"grid_operator\": 8716871000001,\n            \"ean_code\": 871694840009017700\n          }\n        ],\n        \"gas\": [\n          {\n            \"grid_operator_name\": \"Enexis B.V.\",\n            \"grid_operator\": 8716871000001,\n            \"ean_code\": 871694840015349100\n          }\n        ]\n      },\n      \"cost_specifications\": {\n        \"building_function\": 1,\n        \"electricity\": {\n          \"double_meter\": true,\n          \"has_return\": true,\n          \"usage_low\": 200,\n          \"usage_high\": 300,\n          \"full_usage_high\": 300,\n          \"full_usage_low\": 200,\n          \"usage_low_cost\": \"100,67\",\n          \"usage_low_cost_inc_vat\": \"121,81\",\n          \"usage_high_cost\": \"183,47\",\n          \"usage_high_cost_inc_vat\": \"222,00\",\n          \"return_low\": 50,\n          \"return_high\": 100,\n          \"full_return_low\": 50,\n          \"full_return_high\": 100,\n          \"tariff_return_high\": \"0,25\",\n          \"tariff_return_high_consumer\": \"0,29802\",\n          \"return_high_cost_consumer\": \"29,80\",\n          \"tariff_return_low\": \"0,21571\",\n          \"tariff_return_low_consumer\": \"0,26101\",\n          \"return_low_cost_consumer\": \"13,05\",\n          \"delivery_cost\": \"284,14\",\n          \"delivery_cost_inc_vat\": \"343,81\",\n          \"government_tax_per_year\": \"32,06\",\n          \"government_tax_per_month\": \"2,67\",\n          \"government_tax_per_year_inc_vat\": \"38,80\",\n          \"government_tax_per_month_inc_vat\": \"3,23\",\n          \"fixed_delivery_cost\": \"9,34\",\n          \"fixed_delivery_cost_inc_vat\": \"11,30\",\n          \"tax_reduction\": \"519,80\",\n          \"tax_reduction_inc_vat\": \"628,96\",\n          \"tariff_grid_operator_monthly\": \"135,75\",\n          \"tariff_grid_operator_year\": \"1.628,96\",\n          \"tariff_grid_operator_monthly_inc_vat\": \"164,25\",\n          \"tariff_grid_operator_year_inc_vat\": \"1.971,04\",\n          \"grid_operator_name\": \"Enexis 3x35A\",\n          \"total\": \"442,28\",\n          \"total_inc_vat\": \"535,16\",\n          \"total_vat\": \"92,88\",\n          \"tariff_energytax_exc_vat\": {\n            \"0 - 350\": \"0,09161\"\n          },\n          \"total_energytax_exc_vat\": {\n            \"0 - 350\": \"32,06\"\n          },\n          \"tariff_ode_exc_vat\": {\n            \"0 - 350\": \"0,00000\"\n          },\n          \"total_ode_exc_vat\": {\n            \"0 - 350\": \"0,00\"\n          },\n          \"tariff_energytax_inc_vat\": {\n            \"0 - 350\": \"0,11085\"\n          },\n          \"total_energytax_inc_vat\": {\n            \"0 - 350\": \"38,80\"\n          },\n          \"tariff_ode_inc_vat\": {\n            \"0 - 350\": \"0,00000\"\n          },\n          \"total_ode_inc_vat\": {\n            \"0 - 350\": \"0,00\"\n          },\n          \"return_high_cost\": \"24,63000\",\n          \"return_low_cost\": \"10,78550\",\n          \"tariff\": {\n            \"tariff_low\": \"0,50\",\n            \"tariff_low_inc_vat\": \"0,61\",\n            \"tariff_high\": \"0,61\",\n            \"tariff_high_inc_vat\": \"0,74\",\n            \"all_in_tariff_low\": \"0,59496\",\n            \"all_in_tariff_low_inc_vat\": \"0,71990\",\n            \"all_in_tariff_high\": \"0,70317\",\n            \"all_in_tariff_high_inc_vat\": \"0,85084\",\n            \"tariff_fixed_fee_month\": \"0,78\",\n            \"tariff_fixed_fee_month_inc_vat\": \"0,94\"\n          },\n          \"cashback\": \"957,00\"\n        },\n        \"gas\": {\n          \"usage\": 500,\n          \"delivery_cost\": \"408,89\",\n          \"delivery_cost_inc_vat\": \"494,75\",\n          \"government_tax_per_year\": \"300,33\",\n          \"government_tax_per_month\": \"25,03\",\n          \"government_tax_per_year_inc_vat\": \"363,40\",\n          \"government_tax_per_month_inc_vat\": \"30,28\",\n          \"fixed_delivery_cost\": \"12,00\",\n          \"fixed_delivery_cost_inc_vat\": \"14,52\",\n          \"tariff_grid_operator_monthly\": \"18,34\",\n          \"tariff_grid_operator_year\": \"220,13\",\n          \"tariff_grid_operator_monthly_inc_vat\": \"22,20\",\n          \"tariff_grid_operator_year_inc_vat\": \"266,36\",\n          \"grid_operator_name\": \"Enexis t/m G6, 500 < verbruik < 4000\",\n          \"total\": \"312,35\",\n          \"total_inc_vat\": \"377,94\",\n          \"total_vat\": \"65,59\",\n          \"tariff_energytax_exc_vat\": {\n            \"0-1000\": \"0,60066\"\n          },\n          \"total_energytax_exc_vat\": {\n            \"0-1000\": \"300,33\"\n          },\n          \"tariff_ode_exc_vat\": {\n            \"0-1000\": \"0,00\"\n          },\n          \"total_ode_exc_vat\": {\n            \"0-1000\": \"0,00\"\n          },\n          \"tariff_energytax_inc_vat\": {\n            \"0-1000\": \"0,72680\"\n          },\n          \"total_energytax_inc_vat\": {\n            \"0-1000\": \"363,40\"\n          },\n          \"tariff_ode_inc_vat\": {\n            \"0-1000\": \"0,00000\"\n          },\n          \"total_ode_inc_vat\": {\n            \"0-1000\": \"0,00\"\n          },\n          \"tariff\": {\n            \"g_tariff\": \"0,82\",\n            \"tariff_inc_vat\": \"0,99\",\n            \"all_in_tariff\": \"1,41843\",\n            \"all_in_tariff_inc_vat\": \"1,71630\",\n            \"tariff_fixed_fee_month\": \"1,00\",\n            \"tariff_fixed_fee_month_inc_vat\": \"1,21\",\n            \"g_region_tax_level\": \"product\",\n            \"g_region\": 4,\n            \"g_profile\": \"G1\",\n            \"g_region_tariff\": \"0,82\",\n            \"g_region_tax_tariff\": \"0,00\",\n            \"g_region_tax_tariff_inc_vat\": \"0,00\",\n            \"tariff_fixed_g\": \"1\",\n            \"tariff_g_region_1\": \"0.2175\",\n            \"tariff_g_region_2\": \"0.02949\",\n            \"tariff_g_region_3\": \"0.20486\",\n            \"tariff_g_region_4\": \"0.81777\",\n            \"tariff_g_region_5\": \"0.08857\",\n            \"tariff_g_region_6\": \"0.91299\",\n            \"tariff_g_region_7\": \"0.20997\",\n            \"tariff_g_region_8\": \"0.93849\",\n            \"tariff_g_region_9\": \"0.68855\",\n            \"tariff_g_region_10\": \"0.60506\",\n            \"tariff_g_g2_region_1\": \"0.44695\",\n            \"tariff_g_g2_region_2\": \"0.32759\",\n            \"tariff_g_g2_region_3\": \"0.41256\",\n            \"tariff_g_g2_region_4\": \"0.13948\",\n            \"tariff_g_g2_region_5\": \"0.95739\",\n            \"tariff_g_g2_region_6\": \"0.43921\",\n            \"tariff_g_g2_region_7\": \"0.00052\",\n            \"tariff_g_g2_region_8\": \"0.71184\",\n            \"tariff_g_g2_region_9\": \"0.23856\",\n            \"tariff_g_g2_region_10\": \"0.03138\",\n            \"tariff_inc_gas_region_tax\": \"0,82\",\n            \"tariff_inc_gas_region_tax_and_vat\": \"0,99\"\n          },\n          \"cashback\": \"629,00\"\n        },\n        \"total\": {\n          \"cashback\": \"1.586,00\",\n          \"total\": \"754,63\",\n          \"total_inc_vat\": \"913,10\",\n          \"total_per_month\": \"62,89\",\n          \"total_per_month_inc_vat\": \"76,09\",\n          \"total_vat\": \"158,47\"\n        }\n      },\n      \"customer_type_availability\": \"all\",\n      \"customer_classification\": [\n        \"micro_business\",\n        \"small_business\",\n        \"medium_business\",\n        \"large_business\"\n      ],\n      \"make_second_calculation\": false,\n      \"has_2027_calculation\": false\n    }\n  ],\n  \"message\": \"Producten succesvol opgehaald\"\n}"}],"_postman_id":"b28c47a9-2d30-4310-957b-22e9fdb8bff0"},{"name":"Get energy product with tariff and calculation","id":"42c7e55f-f84c-4832-9d3e-eb4faddde6f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/v1/user/products/{{product_id}}/energy?postcode=&housenumber=&suffix=&type=&tarifftype=&usage_e_single=&usage_e_high=&usage_e_low=&usage_g=&has_return=&return=&return_e_high=&return_e_low=&building_function=&e_gridoperator=&g_gridoperator&e_connection_type=&g_connection_type=&flow_identifier","description":"<p>This end point returns a product specified in the product id along with the energy tariffs and calculations</p>\n","urlObject":{"path":["api","{{domain}}","v1","user","products","{{product_id}}","energy"],"host":["{{url}}"],"query":[{"description":{"content":"<p>Postcode of the address</p>\n","type":"text/plain"},"key":"postcode","value":""},{"description":{"content":"<p>House number of the address</p>\n","type":"text/plain"},"key":"housenumber","value":""},{"description":{"content":"<p>House number extension of the address (if no suffix, do not send this field)</p>\n","type":"text/plain"},"key":"suffix","value":""},{"description":{"content":"<p>e_g = Electricity and gas, e = only electricity, g = only gas</p>\n","type":"text/plain"},"key":"type","value":""},{"description":{"content":"<p>1= Double meter, 0 = single meter</p>\n","type":"text/plain"},"key":"tarifftype","value":""},{"description":{"content":"<p>Single usage electricity. Required if: type = e/e_g and tarifftype = 0.</p>\n","type":"text/plain"},"key":"usage_e_single","value":""},{"description":{"content":"<p>High usage electricity. Required if: type = e/e_g and tarifftype = 1.</p>\n","type":"text/plain"},"key":"usage_e_high","value":""},{"description":{"content":"<p>Low usage electricity. Required if: type = e/e_g and tarifftype = 1.</p>\n","type":"text/plain"},"key":"usage_e_low","value":""},{"description":{"content":"<p>Usage gasRequired if: type = g/e_g.</p>\n","type":"text/plain"},"key":"usage_g","value":""},{"description":{"content":"<p>1 = has electricity return, 0 = no electricity return. Required if: type = e/e_g.</p>\n","type":"text/plain"},"key":"has_return","value":""},{"description":{"content":"<p>Single meter electricity return. Required if has_return = 1 and tarifftype = 0.</p>\n","type":"text/plain"},"key":"return","value":""},{"description":{"content":"<p>Electricity return high. Required if has_return = 1 and tarifftype = 1.</p>\n","type":"text/plain"},"key":"return_e_high","value":""},{"description":{"content":"<p>Elextricity return low. Required if has_return = 1 and tarifftype = 1.</p>\n","type":"text/plain"},"key":"return_e_low","value":""},{"description":{"content":"<p>1 = yes, 0 = no</p>\n","type":"text/plain"},"key":"building_function","value":""},{"description":{"content":"<p>Electricity grid operator (optional). Possible values: 8716871000004, 8716871000008, 8716871000001, 8716871000002, 8716871000006  8716871000003, 8716871000007.</p>\n","type":"text/plain"},"key":"e_gridoperator","value":""},{"description":{"content":"<p>Gas grid operator (optional). Possible values: 8716871000004, 8716871000008, 8716871000001, 8716871000002, 8716871000006  8716871000003, 8716871000007.</p>\n","type":"text/plain"},"key":"g_gridoperator","value":null},{"description":{"content":"<p>Electricity connection type. Possible values: 'E_NULTARIEF', 'E_1X6A_ONB' , ‘E_1X6A', 'E_1X10A_ONB', 'E_1X10A', 'E_3X25A_ONB', 'E_3X25A', ‘E_3X35A', 'E_3X50A', 'E_3X63A', 'E_3X80A', 'E_GV'</p>\n","type":"text/plain"},"key":"e_connection_type","value":""},{"description":{"content":"<p>Gas connection type. Possible values: 'G_NULTARIEF', 'G_ONB', 'G_G6_500’, ‘G_G6_500_4000', 'G_G6_4000', 'G_G10', 'G_G16', 'G_G25', 'G_GV'</p>\n","type":"text/plain"},"key":"g_connection_type","value":""},{"description":{"content":"<p>Identifier of the flow</p>\n","type":"text/plain"},"key":"flow_identifier","value":null}],"variable":[]}},"response":[{"id":"09b93bc2-1333-4d18-a04b-830a507cae35","name":"Get energy product with tariff and calculation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"}],"url":{"raw":"https://app.salesdock.nl/api/{{domain}}/v1/user/products/428/energy?postcode=7521WC&housenumber=15&type=e_g&tarifftype=1&usage_e_high=300&usage_e_low=200&usage_g=500&has_return=1&return_e_high=100&return_e_low=50&low_tariff_time=t3&building_function=1&e_connection_type=E_3X35A&g_connection_type=G_G6_500_4000","protocol":"https","host":["app","salesdock","nl"],"path":["api","{{domain}}","v1","user","products","428","energy"],"query":[{"key":"postcode","value":"7521WC"},{"key":"housenumber","value":"15"},{"key":"type","value":"e_g"},{"key":"tarifftype","value":"1"},{"key":"usage_e_high","value":"300"},{"key":"usage_e_low","value":"200"},{"key":"usage_g","value":"500"},{"key":"has_return","value":"1"},{"key":"return_e_high","value":"100"},{"key":"return_e_low","value":"50"},{"key":"low_tariff_time","value":"t3"},{"key":"building_function","value":"1"},{"key":"e_connection_type","value":"E_3X35A"},{"key":"g_connection_type","value":"G_G6_500_4000"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 21 Sep 2020 07:03:55 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self'; form-action 'self'; frame-ancestors 'self'; frame-src 'self'; object-src 'self'"},{"key":"Feature-Policy","value":"accelerometer 'self'; ambient-light-sensor 'self'; autoplay 'self'; battery 'self'; camera 'self'; display-capture 'self'; document-domain *; encrypted-media 'self'; execution-while-not-rendered *; execution-while-out-of-viewport *; fullscreen 'self'; geolocation 'self'; gyroscope 'self'; layout-animations 'self'; legacy-image-formats 'self'; magnetometer 'self'; microphone 'self'; midi 'self'; navigation-override 'self'; oversized-images *; payment 'self'; picture-in-picture *; publickey-credentials 'self'; sync-xhr *; unoptimized-images 'self'; unsized-media *; usb 'self'; wake-lock 'self'; xr-spatial-tracking 'self'"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"Vary","value":"Authorization"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"055112f8ee0000ddc705ba5200000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"5d61edd4b9a9ddc7-SIN"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n      \"id\": 428,\n      \"name\": \"Test Product 1\",\n      \"identifier\": \"test-product-1\",\n      \"supplier_id\": 41,\n      \"type\": \"energy_e_g\",\n      \"usp\": \"3 jaar lang een vast tarief\\r\\ngroene stroom\",\n      \"description\": \"\",\n      \"duration\": null,\n      \"business\": \"2\",\n      \"retention\": \"0\",\n      \"switchdate_business_min\": null,\n      \"switchdate_business_max\": null,\n      \"switchdate_business_default\": null,\n      \"switchdate_business_min_date\": null,\n      \"switchdate_consumer_min\": null,\n      \"switchdate_consumer_max\": null,\n      \"switchdate_consumer_default\": null,\n      \"switchdate_consumer_min_date\": null,\n      \"valid_from\": null,\n      \"valid_till\": null,\n      \"created_at\": \"2025-09-26 09:53:53\",\n      \"updated_at\": \"2025-12-17 17:08:26\",\n      \"supplier_name\": \"Test supplier\",\n      \"address\": {\n        \"postcode\": \"7521WC\",\n        \"housenumber\": \"15\",\n        \"suffix\": null,\n        \"streetname\": \"Neptunusstraat\",\n        \"city\": \"Enschede\"\n      },\n      \"bag\": {\n        \"functions\": \"kantoorfunctie\",\n        \"availability_of_product\": true\n      },\n      \"ean_codes\": {\n        \"electricity\": [\n          {\n            \"grid_operator_name\": \"Enexis B.V.\",\n            \"grid_operator\": 8716871000001,\n            \"ean_code\": 871694840009017700\n          }\n        ],\n        \"gas\": [\n          {\n            \"grid_operator_name\": \"Enexis B.V.\",\n            \"grid_operator\": 8716871000001,\n            \"ean_code\": 871694840015349100\n          }\n        ]\n      },\n      \"cost_specifications\": {\n        \"building_function\": 1,\n        \"electricity\": {\n          \"double_meter\": true,\n          \"has_return\": true,\n          \"future_return_tariff\": \"0,10000\",\n          \"future_return_tariff_high\": \"0,20000\",\n          \"future_return_tariff_low\": \"0,30000\",\n          \"future_return_costs\": \"1,00000\",\n          \"usage_low\": 150,\n          \"usage_high\": 200,\n          \"full_usage_high\": 300,\n          \"full_usage_low\": 200,\n          \"usage_low_cost\": \"6,44\",\n          \"usage_low_cost_inc_vat\": \"7,79\",\n          \"usage_high_cost\": \"10,85\",\n          \"usage_high_cost_inc_vat\": \"13,13\",\n          \"full_return_low\": 50,\n          \"full_return_high\": 100,\n          \"delivery_cost\": \"167,29\",\n          \"delivery_cost_inc_vat\": \"202,42\",\n          \"government_tax_per_year\": \"32,06\",\n          \"government_tax_per_month\": \"2,67\",\n          \"government_tax_per_year_inc_vat\": \"38,80\",\n          \"government_tax_per_month_inc_vat\": \"3,23\",\n          \"fixed_delivery_cost\": \"44,53\",\n          \"fixed_delivery_cost_inc_vat\": \"53,88\",\n          \"variable_delivery_cost_return\": \"150,00\",\n          \"variable_delivery_cost_return_inc_vat\": \"181,50\",\n          \"tax_reduction\": \"519,80\",\n          \"tax_reduction_inc_vat\": \"628,96\",\n          \"tariff_grid_operator_monthly\": \"135,75\",\n          \"tariff_grid_operator_year\": \"1.628,96\",\n          \"tariff_grid_operator_monthly_inc_vat\": \"164,25\",\n          \"tariff_grid_operator_year_inc_vat\": \"1.971,04\",\n          \"grid_operator_name\": \"Enexis 3x35A\",\n          \"total\": \"1.353,04\",\n          \"total_inc_vat\": \"1.637,18\",\n          \"total_vat\": \"284,14\",\n          \"tariff_energytax_exc_vat\": {\n            \"0 - 350\": \"0,09161\"\n          },\n          \"total_energytax_exc_vat\": {\n            \"0 - 350\": \"32,06\"\n          },\n          \"tariff_ode_exc_vat\": {\n            \"0 - 350\": \"0,00000\"\n          },\n          \"total_ode_exc_vat\": {\n            \"0 - 350\": \"0,00\"\n          },\n          \"tariff_energytax_inc_vat\": {\n            \"0 - 350\": \"0,11085\"\n          },\n          \"total_energytax_inc_vat\": {\n            \"0 - 350\": \"38,80\"\n          },\n          \"tariff_ode_inc_vat\": {\n            \"0 - 350\": \"0,00000\"\n          },\n          \"total_ode_inc_vat\": {\n            \"0 - 350\": \"0,00\"\n          },\n          \"tariff\": {\n            \"tariff_low\": \"0,04\",\n            \"tariff_low_inc_vat\": \"0,05\",\n            \"tariff_high\": \"0,05\",\n            \"tariff_high_inc_vat\": \"0,07\",\n            \"all_in_tariff_low\": \"0,13454\",\n            \"all_in_tariff_low_inc_vat\": \"0,16279\",\n            \"all_in_tariff_high\": \"0,14587\",\n            \"all_in_tariff_high_inc_vat\": \"0,17650\",\n            \"tariff_fixed_fee_month\": \"3,71\",\n            \"tariff_fixed_fee_month_inc_vat\": \"4,49\"\n          }\n        },\n        \"gas\": {\n          \"usage\": 500,\n          \"delivery_cost\": \"1.605,42\",\n          \"delivery_cost_inc_vat\": \"1.942,55\",\n          \"government_tax_per_year\": \"300,33\",\n          \"government_tax_per_month\": \"25,03\",\n          \"government_tax_per_year_inc_vat\": \"363,40\",\n          \"government_tax_per_month_inc_vat\": \"30,28\",\n          \"fixed_delivery_cost\": \"44,53\",\n          \"fixed_delivery_cost_inc_vat\": \"53,88\",\n          \"tariff_grid_operator_monthly\": \"18,34\",\n          \"tariff_grid_operator_year\": \"220,13\",\n          \"tariff_grid_operator_monthly_inc_vat\": \"22,20\",\n          \"tariff_grid_operator_year_inc_vat\": \"266,36\",\n          \"grid_operator_name\": \"Enexis t/m G6, 500 < verbruik < 4000\",\n          \"total\": \"2.170,41\",\n          \"total_inc_vat\": \"2.626,19\",\n          \"total_vat\": \"455,79\",\n          \"tariff_energytax_exc_vat\": {\n            \"0-1000\": \"0,60066\"\n          },\n          \"total_energytax_exc_vat\": {\n            \"0-1000\": \"300,33\"\n          },\n          \"tariff_ode_exc_vat\": {\n            \"0-1000\": \"0,00\"\n          },\n          \"total_ode_exc_vat\": {\n            \"0-1000\": \"0,00\"\n          },\n          \"tariff_energytax_inc_vat\": {\n            \"0-1000\": \"0,72680\"\n          },\n          \"total_energytax_inc_vat\": {\n            \"0-1000\": \"363,40\"\n          },\n          \"tariff_ode_inc_vat\": {\n            \"0-1000\": \"0,00000\"\n          },\n          \"total_ode_inc_vat\": {\n            \"0-1000\": \"0,00\"\n          },\n          \"tariff\": {\n            \"g_tariff\": \"3,21\",\n            \"tariff_inc_vat\": \"3,89\",\n            \"all_in_tariff\": \"3,81149\",\n            \"all_in_tariff_inc_vat\": \"4,61190\",\n            \"tariff_fixed_fee_month\": \"3,71\",\n            \"tariff_fixed_fee_month_inc_vat\": \"4,49\",\n            \"g_region_tax_level\": \"supplier\",\n            \"g_region\": 4,\n            \"g_profile\": \"G1\",\n            \"g_region_tariff\": \"3,21\",\n            \"g_region_tax_tariff\": \"0,00\",\n            \"g_region_tax_tariff_inc_vat\": \"0,00\",\n            \"tariff_fixed_g\": \"3.71083\",\n            \"tariff_g\": \"3,21\",\n            \"tariff_g_g2\": \"3,71\",\n            \"tariff_inc_gas_region_tax\": \"3,21\",\n            \"tariff_inc_gas_region_tax_and_vat\": \"3,89\"\n          }\n        },\n        \"total\": {\n          \"total\": \"3.523,45\",\n          \"total_inc_vat\": \"4.263,37\",\n          \"total_per_month\": \"293,62\",\n          \"total_per_month_inc_vat\": \"355,28\",\n          \"total_vat\": \"739,92\"\n        }\n      },\n      \"customer_type_availability\": \"all\",\n      \"customer_classification\": [\n        \"household\"\n      ],\n      \"make_second_calculation\": true,\n      \"has_2027_calculation\": true,\n      \"cost_specifications_2027\": {\n        \"building_function\": 1,\n        \"electricity\": {\n          \"double_meter\": true,\n          \"has_return\": true,\n          \"future_return_tariff\": \"0,10000\",\n          \"future_return_tariff_high\": \"0,20000\",\n          \"future_return_tariff_low\": \"0,30000\",\n          \"future_return_costs\": \"1,00000\",\n          \"usage_low\": 200,\n          \"usage_high\": 300,\n          \"full_usage_high\": 300,\n          \"full_usage_low\": 200,\n          \"usage_low_cost\": \"8,59\",\n          \"usage_low_cost_inc_vat\": \"10,39\",\n          \"usage_high_cost\": \"16,28\",\n          \"usage_high_cost_inc_vat\": \"19,70\",\n          \"return_low\": 50,\n          \"return_high\": 100,\n          \"full_return_low\": 50,\n          \"full_return_high\": 100,\n          \"tariff_return_high\": \"0,20\",\n          \"tariff_return_high_consumer\": \"0,24200\",\n          \"return_high_cost_consumer\": \"24,20\",\n          \"tariff_return_low\": \"0,30000\",\n          \"tariff_return_low_consumer\": \"0,36300\",\n          \"return_low_cost_consumer\": \"18,15\",\n          \"delivery_cost\": \"174,86\",\n          \"delivery_cost_inc_vat\": \"211,59\",\n          \"government_tax_per_year\": \"45,81\",\n          \"government_tax_per_month\": \"3,82\",\n          \"government_tax_per_year_inc_vat\": \"55,42\",\n          \"government_tax_per_month_inc_vat\": \"4,62\",\n          \"fixed_delivery_cost\": \"44,53\",\n          \"fixed_delivery_cost_inc_vat\": \"53,88\",\n          \"variable_delivery_cost_return\": \"150,00\",\n          \"variable_delivery_cost_return_inc_vat\": \"181,50\",\n          \"tax_reduction\": \"519,80\",\n          \"tax_reduction_inc_vat\": \"628,96\",\n          \"tariff_grid_operator_monthly\": \"135,75\",\n          \"tariff_grid_operator_year\": \"1.628,96\",\n          \"tariff_grid_operator_monthly_inc_vat\": \"164,25\",\n          \"tariff_grid_operator_year_inc_vat\": \"1.971,04\",\n          \"grid_operator_name\": \"Enexis 3x35A\",\n          \"total\": \"1.339,36\",\n          \"total_inc_vat\": \"1.620,62\",\n          \"total_vat\": \"281,27\",\n          \"tariff_energytax_exc_vat\": {\n            \"0 - 500\": \"0,09161\"\n          },\n          \"total_energytax_exc_vat\": {\n            \"0 - 500\": \"45,81\"\n          },\n          \"tariff_ode_exc_vat\": {\n            \"0 - 500\": \"0,00000\"\n          },\n          \"total_ode_exc_vat\": {\n            \"0 - 500\": \"0,00\"\n          },\n          \"tariff_energytax_inc_vat\": {\n            \"0 - 500\": \"0,11085\"\n          },\n          \"total_energytax_inc_vat\": {\n            \"0 - 500\": \"55,42\"\n          },\n          \"tariff_ode_inc_vat\": {\n            \"0 - 500\": \"0,00000\"\n          },\n          \"total_ode_inc_vat\": {\n            \"0 - 500\": \"0,00\"\n          },\n          \"return_high_cost\": \"20,00000\",\n          \"return_low_cost\": \"15,00000\",\n          \"tariff\": {\n            \"tariff_low\": \"0,04\",\n            \"tariff_low_inc_vat\": \"0,05\",\n            \"tariff_high\": \"0,05\",\n            \"tariff_high_inc_vat\": \"0,07\",\n            \"all_in_tariff_low\": \"0,13454\",\n            \"all_in_tariff_low_inc_vat\": \"0,16279\",\n            \"all_in_tariff_high\": \"0,14587\",\n            \"all_in_tariff_high_inc_vat\": \"0,17650\",\n            \"tariff_fixed_fee_month\": \"3,71\",\n            \"tariff_fixed_fee_month_inc_vat\": \"4,49\"\n          }\n        },\n        \"gas\": {\n          \"usage\": 500,\n          \"delivery_cost\": \"1.605,42\",\n          \"delivery_cost_inc_vat\": \"1.942,55\",\n          \"government_tax_per_year\": \"300,33\",\n          \"government_tax_per_month\": \"25,03\",\n          \"government_tax_per_year_inc_vat\": \"363,40\",\n          \"government_tax_per_month_inc_vat\": \"30,28\",\n          \"fixed_delivery_cost\": \"44,53\",\n          \"fixed_delivery_cost_inc_vat\": \"53,88\",\n          \"tariff_grid_operator_monthly\": \"18,34\",\n          \"tariff_grid_operator_year\": \"220,13\",\n          \"tariff_grid_operator_monthly_inc_vat\": \"22,20\",\n          \"tariff_grid_operator_year_inc_vat\": \"266,36\",\n          \"grid_operator_name\": \"Enexis t/m G6, 500 < verbruik < 4000\",\n          \"total\": \"2.170,41\",\n          \"total_inc_vat\": \"2.626,19\",\n          \"total_vat\": \"455,79\",\n          \"tariff_energytax_exc_vat\": {\n            \"0-1000\": \"0,60066\"\n          },\n          \"total_energytax_exc_vat\": {\n            \"0-1000\": \"300,33\"\n          },\n          \"tariff_ode_exc_vat\": {\n            \"0-1000\": \"0,00\"\n          },\n          \"total_ode_exc_vat\": {\n            \"0-1000\": \"0,00\"\n          },\n          \"tariff_energytax_inc_vat\": {\n            \"0-1000\": \"0,72680\"\n          },\n          \"total_energytax_inc_vat\": {\n            \"0-1000\": \"363,40\"\n          },\n          \"tariff_ode_inc_vat\": {\n            \"0-1000\": \"0,00000\"\n          },\n          \"total_ode_inc_vat\": {\n            \"0-1000\": \"0,00\"\n          },\n          \"tariff\": {\n            \"g_tariff\": \"3,21\",\n            \"tariff_inc_vat\": \"3,89\",\n            \"all_in_tariff\": \"3,81149\",\n            \"all_in_tariff_inc_vat\": \"4,61190\",\n            \"tariff_fixed_fee_month\": \"3,71\",\n            \"tariff_fixed_fee_month_inc_vat\": \"4,49\",\n            \"g_region_tax_level\": \"supplier\",\n            \"g_region\": 4,\n            \"g_profile\": \"G1\",\n            \"g_region_tariff\": \"3,21\",\n            \"g_region_tax_tariff\": \"0,00\",\n            \"g_region_tax_tariff_inc_vat\": \"0,00\",\n            \"tariff_fixed_g\": \"3.71083\",\n            \"tariff_g\": \"3,21\",\n            \"tariff_g_g2\": \"3,71\",\n            \"tariff_inc_gas_region_tax\": \"3,21\",\n            \"tariff_inc_gas_region_tax_and_vat\": \"3,89\"\n          }\n        },\n        \"total\": {\n          \"total\": \"3.509,76\",\n          \"total_inc_vat\": \"4.246,81\",\n          \"total_per_month\": \"292,48\",\n          \"total_per_month_inc_vat\": \"353,90\",\n          \"total_vat\": \"737,05\"\n        }\n      }\n    },\n    \"message\": \"Product succesvol opgehaald\"\n}"}],"_postman_id":"42c7e55f-f84c-4832-9d3e-eb4faddde6f2"}],"id":"ae900e63-ca72-4675-87d0-b0fda8cc8242","_postman_id":"ae900e63-ca72-4675-87d0-b0fda8cc8242","description":""},{"name":"BE","item":[{"name":"Create energy sale","id":"e7b43afc-0994-4040-a8ce-c6225b9c9eb0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"transaction_type\": \"offer\",\n    \"postcode\": \"7521\",\n    \"housenumber\": \"15\",\n    \"suffix\": null,\n    \"streetname\": \"Test\",\n    \"city\": \"Test\",\n    \"type\": \"e_g\",\n    \"has_return\": 0,\n    \"e_measurement_frequency\": \"YMR\",\n    \"g_measurement_frequency\": \"YMR\",\n    \"exclusive_night\":\"1\",\n    \"usage_e_exclusive\": \"120\",\n    \"region\": \"flanders\",\n    \"e_grid_operator\": \"FLUVIUS HALLE-VILVOORDE\",\n    \"g_grid_operator\": \"FLUVIUS HALLE-VILVOORDE\",\n    \"gender\": \"male\",\n    \"firstname\": \"Test\",\n    \"lastname\": \"Test\",\n    \"birthdate\": \"01-01-1990\",\n    \"email\": \"test@salesdock.nl\",\n    \"phone\": \"0611XXXXX\",\n    \"contact_person\": \"Test\",\n    \"company_name\": \"Test\",\n    \"company_coc\": \"0123321123\",\n    \"company_vat\": null,\n    \"iban\": \"\",\n    \"iban_holder\": \"\",\n    \"product_id\": \"19557\",\n    \"return\": 0,\n    \"return_e_high\": 0,\n    \"return_e_low\": 0,\n    \"usage_e_single\": 1844,\n    \"usage_e_high\": null,\n    \"usage_e_low\": null,\n    \"usage_g\": 1024,\n    \"tarifftype\": \"0\",\n    \"electricity_ean\": \"800000000000000000\",\n    \"gas_ean\": \"800000000000000001\",\n    \"connection_postcode\": \"7521\",\n    \"connection_housenumber\": \"15\",\n    \"connection_suffix\": null,\n    \"connection_streetname\": \"Test\",\n    \"connection_city\": \"Test\",\n    \"business\": \"1\",\n    \"questionData\": {\n        \"inhuizing\": \"Ja\",\n        \"datum-inhuizing\": \"2020-03-01\",\n        \"ingangsdatum\": \"2020-03-01\",\n        \"overstaptest_switchdate_option\": \"Zo snel als mogelijk\",\n        \"overstaptest\": \"Nee\"\n    },\n    \"agreements\": {\n    \t\"privay-statement\": \"1\"\n    }\n}"},"url":"{{url}}/api/{{domain}}/{{version}}/sales/flow/{{flow_type_identifier}}/{{flow_identifier}}","description":"<p>Create an order/offer for Belgium energy flow.<br />Replace {{flow_dentifier}} with the identifier of the flow.</p>\n<p>Replace {{flow_type_identifier}} with the identifier of the flow type.</p>\n<p>In the questionData object, get the product question identifiers needed for the flow and send them along with corresponding answers.</p>\n<p>In the agreements object, get the agreement identifiers needed for the flow and send them along with value \"1\" for accepted agreements.</p>\n<h4 id=\"completed-and-uncompleted-orders\">Completed and uncompleted orders</h4>\n<p>The API endpoint can be used to create both completed and uncompleted orders. Uncompleted orders result in a new contract pdf being generated and also a confirmation/verification email being sent to customers based on flow settings. A completed order will not send an email. An order via the API is considered as a completed order if it contains the \"contract_date\" parameter.</p>\n<p><strong>Body Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Mandatory</th>\n<th>Possible Value(s)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>transaction_type</td>\n<td>string</td>\n<td>Y</td>\n<td>order/offer</td>\n<td></td>\n</tr>\n<tr>\n<td>connection_postcode</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Connection postcode</td>\n</tr>\n<tr>\n<td>connection_housenumber</td>\n<td>integer</td>\n<td>Y</td>\n<td></td>\n<td>Connection house number</td>\n</tr>\n<tr>\n<td>connection_suffix</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Connection house number extension</td>\n</tr>\n<tr>\n<td>connection_streetname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Connection street name</td>\n</tr>\n<tr>\n<td>connection_city</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Connection city</td>\n</tr>\n<tr>\n<td>postcode</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence postcode</td>\n</tr>\n<tr>\n<td>housenumber</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence house number</td>\n</tr>\n<tr>\n<td>suffix</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence house number extension</td>\n</tr>\n<tr>\n<td>streetname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence street name</td>\n</tr>\n<tr>\n<td>city</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence city</td>\n</tr>\n<tr>\n<td>gender</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>firstname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>lastname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>birthdate</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>DOB in format dd-mm-yyyy</td>\n</tr>\n<tr>\n<td>email</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>phone</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>iban</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required according to flow settings</td>\n</tr>\n<tr>\n<td>iban_holder</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required according to flow settings</td>\n</tr>\n<tr>\n<td>sale_channel</td>\n<td>string</td>\n<td>N</td>\n<td>'d2d', 'retail', 'telemarketing', 'online', 'f2f'</td>\n<td></td>\n</tr>\n<tr>\n<td>product_id</td>\n<td>integer</td>\n<td>Y</td>\n<td></td>\n<td>ID of product</td>\n</tr>\n<tr>\n<td>business</td>\n<td>integer</td>\n<td>Y</td>\n<td>1,0</td>\n<td>1=business;0=consumer</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>Y</td>\n<td>'e', 'g', 'e_g'</td>\n<td>Type of energy selected - Electricity, Gas or electricity and gas</td>\n</tr>\n<tr>\n<td>e_measurement_frequency</td>\n<td>string</td>\n<td>Y</td>\n<td>'YMR', 'MMR', 'AMR'</td>\n<td>Electricity measurement frequency</td>\n</tr>\n<tr>\n<td>g_measurement_frequency</td>\n<td>string</td>\n<td>Y</td>\n<td>'YMR', 'MMR', 'AMR'</td>\n<td>Gas measurement frequency</td>\n</tr>\n<tr>\n<td>tarifftype</td>\n<td>integer</td>\n<td>Y</td>\n<td>0, 1</td>\n<td>0 =&gt; single meter; 1 =&gt; double meter</td>\n</tr>\n<tr>\n<td>usage_e_single</td>\n<td>int</td>\n<td>N</td>\n<td></td>\n<td>Required if type is 'e' or 'e_g' and tarifftype is 0, Single meter usage of electricity</td>\n</tr>\n<tr>\n<td>usage_e_high</td>\n<td>int</td>\n<td>N</td>\n<td></td>\n<td>Required if type is 'e' or 'e_g' and tarifftype is 1, Normaal usage of electricity in the case of double meter</td>\n</tr>\n<tr>\n<td>usage_e_low</td>\n<td>int</td>\n<td>N</td>\n<td></td>\n<td>Required if type is 'e' or 'e_g' and tarifftype is 1, Low usage of electricity in the case of double meter</td>\n</tr>\n<tr>\n<td>usage_g</td>\n<td>int</td>\n<td>N</td>\n<td></td>\n<td>Required if type is 'g' or 'e_g', Gas usage</td>\n</tr>\n<tr>\n<td>exclusive_night</td>\n<td>string</td>\n<td>Y</td>\n<td>1,0</td>\n<td>1=Exclusive night meter; 0 = Not exclusive</td>\n</tr>\n<tr>\n<td>usage_e_exclusive</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Electricity usage if exclusive_night = 1</td>\n</tr>\n<tr>\n<td>has_return</td>\n<td>integer</td>\n<td>Y</td>\n<td>0, 1</td>\n<td>Ik lever ook elektriciteit terug, 0 =&gt; No; 1 =&gt; Yes</td>\n</tr>\n<tr>\n<td>return</td>\n<td>int</td>\n<td>N</td>\n<td></td>\n<td>Required if has_return is 1 and tarifftype is 0, Single meter return of electricity</td>\n</tr>\n<tr>\n<td>return_e_high</td>\n<td>int</td>\n<td>N</td>\n<td></td>\n<td>Required if has_return is 1 and tarifftype is 1, Double meter return of normaal electricity</td>\n</tr>\n<tr>\n<td>return_e_low</td>\n<td>int</td>\n<td>N</td>\n<td></td>\n<td>Required if has_return is 1 and tarifftype is 1, Double meter return of low electricity</td>\n</tr>\n<tr>\n<td>connection_region_code</td>\n<td>string</td>\n<td>Y</td>\n<td>'brussels', 'flanders', 'wallonia'</td>\n<td>The region of the address</td>\n</tr>\n<tr>\n<td>has_digital_meter</td>\n<td>string</td>\n<td>N</td>\n<td>0, 1</td>\n<td>0 =&gt; Digital meter not present; 1 =&gt; Digital meter is present  <br />By default 0 is taken</td>\n</tr>\n<tr>\n<td>converter_power</td>\n<td>float</td>\n<td>N</td>\n<td>Between 0 and 10</td>\n<td>Required for wallonia when has_digital_meter = 1 or 0. Required for flanders when has_digital_meter = 0</td>\n</tr>\n<tr>\n<td>average_monthly_peak</td>\n<td>float</td>\n<td>N</td>\n<td>Greater than or equal to 2.5</td>\n<td></td>\n</tr>\n<tr>\n<td>e_grid_operator</td>\n<td>string</td>\n<td>N</td>\n<td>wallonia: ORES (NAMUR), ORES (HAINAUT), ORES (EST), ORES (LUXEMBOURG), ORES (VERVIERS), ORES (BRABANT WALLON), ORES (MOUSCRON), RESA, AIEG, AIESH, RÉSEAU DES ÉNERGIES DE WAVRE flanders: FLUVIUS HALLE-VILVOORDE, FLUVIUS ANTWERPEN, FLUVIUS LIMBURG, FLUVIUS WEST, FLUVIUS IMEWO, FLUVIUS MIDDEN-VLAANDEREN, FLUVIUS KEMPEN, FLUVIUS ZENNE-DIJLE</td>\n<td>Electricity grid operator is required if type is 'e' or 'e_g'. Depends on the region</td>\n</tr>\n<tr>\n<td>g_grid_operator</td>\n<td>string</td>\n<td>N</td>\n<td>wallonia: ORES (NAMUR), ORES (HAINAUT), ORES (EST), ORES (LUXEMBOURG), ORES (VERVIERS), ORES (BRABANT WALLON), ORES (MOUSCRON), RESA  <br />flanders: FLUVIUS HALLE-VILVOORDE, FLUVIUS ANTWERPEN, FLUVIUS LIMBURG, FLUVIUS WEST, FLUVIUS IMEWO, FLUVIUS MIDDEN-VLAANDEREN, FLUVIUS KEMPEN, FLUVIUS ZENNE-DIJLE</td>\n<td>Gas grid operator is required if type is 'g' or 'e_g'. Depends on the region</td>\n</tr>\n<tr>\n<td>contract_date</td>\n<td>date</td>\n<td>N</td>\n<td></td>\n<td>In DD-MM-YYYY format. If not empty, then signifies that it is a completed order.</td>\n</tr>\n<tr>\n<td>contract_pdf</td>\n<td>array</td>\n<td>N</td>\n<td></td>\n<td>Required if contract_date is not empty. Array expects 3 keys. First one is \"content\", which is the Base64 string of the contract pdf. Second one is \"extension\", which should always be 'pdf'. Third one is \"created_at\", which is the file created date time in \"YYYY-mm-dd hh:mm:ss\" format</td>\n</tr>\n<tr>\n<td>signature</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required based on flow settings, Base64 encoded string of image</td>\n</tr>\n<tr>\n<td>questionData</td>\n<td>array</td>\n<td>Y</td>\n<td></td>\n<td>Product question identifiers along with corresponding answers</td>\n</tr>\n<tr>\n<td>agreements</td>\n<td>array</td>\n<td>Y</td>\n<td></td>\n<td>Agreement identifiers with answer as \"1\" for accepted agreements</td>\n</tr>\n<tr>\n<td>initial_user_firstname</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>The first name of the user who did the sale</td>\n</tr>\n<tr>\n<td>initial_user_lastname</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>The last name of the user who did the sale</td>\n</tr>\n<tr>\n<td>initial_organisation_name</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>The name of the organisation which did the sale</td>\n</tr>\n<tr>\n<td>initial_created_at</td>\n<td>datetime</td>\n<td>N</td>\n<td></td>\n<td>In YYYY-mm-dd hh:mm:ss format. The date and time on which the sale was originally created. If the sale is completed, then this date time (if not empty), is considered as the contract signed date.</td>\n</tr>\n<tr>\n<td>external_reference</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>An order reference identifier that can be used by the API partners</td>\n</tr>\n<tr>\n<td>relation_id</td>\n<td>integer</td>\n<td>N</td>\n<td></td>\n<td>The ID of the relation that needs to be linked to the sale. This has to be a valid relation ID that is accessible to the user. If relation_id is not sent, then a new relation will be created and linked to the sale.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","{{domain}}","{{version}}","sales","flow","{{flow_type_identifier}}","{{flow_identifier}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"1ae4f1b4-d71f-4d71-bc43-9048b2281f23","name":"Create energy sale","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer hn76Dg5ISl6NEXrLbwZJ40VhJfqrje9Gef5euRsQJD6lDDcRTxE7tcRjz9eY","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"transaction_type\": \"offer\",\n    \"postcode\": \"7521\",\n    \"housenumber\": \"15\",\n    \"suffix\": null,\n    \"streetname\": \"Test\",\n    \"city\": \"Test\",\n    \"type\": \"e_g\",\n    \"has_return\": 0,\n    \"e_measurement_frequency\": \"YMR\",\n    \"g_measurement_frequency\": \"YMR\",\n    \"exclusive_night\":\"1\",\n    \"usage_e_exclusive\": \"120\",\n    \"region\": \"flanders\",\n    \"e_grid_operator\": \"FLUVIUS HALLE-VILVOORDE\",\n    \"g_grid_operator\": \"FLUVIUS HALLE-VILVOORDE\",\n    \"gender\": \"male\",\n    \"firstname\": \"Test\",\n    \"lastname\": \"Test\",\n    \"birthdate\": \"01-01-1990\",\n    \"email\": \"test@salesdock.nl\",\n    \"phone\": \"0611XXXXX\",\n    \"contact_person\": \"Test\",\n    \"company_name\": \"Test\",\n    \"company_coc\": \"0123321123\",\n    \"company_vat\": null,\n    \"iban\": \"\",\n    \"iban_holder\": \"\",\n    \"product_id\": \"19557\",\n    \"return\": 0,\n    \"return_e_high\": 0,\n    \"return_e_low\": 0,\n    \"usage_e_single\": 1844,\n    \"usage_e_high\": null,\n    \"usage_e_low\": null,\n    \"usage_g\": 1024,\n    \"tarifftype\": \"0\",\n    \"electricity_ean\": \"800000000000000000\",\n    \"gas_ean\": \"800000000000000001\",\n    \"connection_postcode\": \"7521\",\n    \"connection_housenumber\": \"15\",\n    \"connection_suffix\": null,\n    \"connection_streetname\": \"Test\",\n    \"connection_city\": \"Test\",\n    \"business\": \"1\",\n    \"questionData\": {\n        \"inhuizing\": \"Ja\",\n        \"datum-inhuizing\": \"2020-03-01\",\n        \"ingangsdatum\": \"2020-03-01\",\n        \"overstaptest_switchdate_option\": \"Zo snel als mogelijk\",\n        \"overstaptest\": \"Nee\",\n        \"file-question\": [\n            {\n                \"name\": \"Image\",\n                \"content\": \"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNk+M9QDwADhgGAWjR9awAAAABJRU5ErkJggg==\",\n                \"extension\": \"png\"\n            }\n        ]\n    },\n    \"agreements\": {\n    \t\"privay-statement\": \"1\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://app.salesdock.nl/api/testomgeving/v1/sales/flow/energie-small-business/energie"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 23 Dec 2021 13:27:36 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"cache-control","value":"no-cache, private"},{"key":"x-ratelimit-limit","value":"60"},{"key":"x-ratelimit-remaining","value":"59"},{"key":"content-security-policy","value":"script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' https://bam.eu01.nr-data.net https://www.google-analytics.com https://widget.freshworks.com https://salesdock.freshdesk.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"permissions-policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-download-options","value":"noopen"},{"key":"x-frame-options","value":"sameorigin"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"referrer-policy","value":"no-referrer"},{"key":"access-control-allow-origin","value":""},{"key":"vary","value":"Origin,Authorization"},{"key":"access-control-allow-credentials","value":"true"},{"key":"strict-transport-security","value":"max-age=0"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=VAR2p9JDNz6jXDLG5PPIPUWeKdlN6zPX4SCMpgzpZTcABT0icJ9%2B6uA15oitACjTUH0IvBf6mujzJvDrnS2wddTmp98JQDGYeAFAtfOJ9jxxaxwRcLyGnGarEKiSNIaFwEk%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"6c21eda0bdf9202c-AMS"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"sale_id\": 261269\n    },\n    \"message\": \"Sale created successfully.\"\n}"}],"_postman_id":"e7b43afc-0994-4040-a8ce-c6225b9c9eb0"},{"name":"Get product(s) with tariffs and calculations","id":"6e7b6cf1-91cb-4ab8-a6b4-0f3cb80a8f27","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/v1/user/products/energy-be?postcode=&housenumber=&suffix=&type=&tarifftype=&usage_e_single=&usage_e_high&usage_e_low&has_return=&return&return_e_high&return_e_low&usage_g=&e_grid_operator=&g_grid_operator&exclusive_night=&usage_e_exclusive&region=&flow_identifier&converter_power&has_digital_meter&has_charging_station&average_monthly_peak","description":"<p>This endpoint fetches the product(s) along with the energy tariffs and calculations for Belgium.</p>\n<p>By default it fetches all the products matching the parameters. To fetch the details of only one product, pass product_id in the request URL along with the id of the product</p>\n","urlObject":{"path":["api","{{domain}}","v1","user","products","energy-be"],"host":["{{url}}"],"query":[{"description":{"content":"<p>Postcode of the address</p>\n","type":"text/plain"},"key":"postcode","value":""},{"description":{"content":"<p>House number of the address</p>\n","type":"text/plain"},"key":"housenumber","value":""},{"description":{"content":"<p>House number extension of the address (if no suffix, do not send this field)</p>\n","type":"text/plain"},"key":"suffix","value":""},{"description":{"content":"<p>e_g = Electricity and gas, e = only electricity, g = only gas</p>\n","type":"text/plain"},"key":"type","value":""},{"description":{"content":"<p>1= Double meter, 0 = single meter</p>\n","type":"text/plain"},"key":"tarifftype","value":""},{"description":{"content":"<p>Single usage electricity. Required if: type = e/e_g and tarifftype = 0.</p>\n","type":"text/plain"},"key":"usage_e_single","value":""},{"description":{"content":"<p>High usage electricity. Required if: type = e/e_g and tarifftype = 1.</p>\n","type":"text/plain"},"key":"usage_e_high","value":null},{"description":{"content":"<p>Low usage electricity. Required if: type = e/e_g and tarifftype = 1.</p>\n","type":"text/plain"},"key":"usage_e_low","value":null},{"description":{"content":"<p>1 = has electricity return, 0 = no electricity return. Required if: type = e/e_g.</p>\n","type":"text/plain"},"key":"has_return","value":""},{"description":{"content":"<p>Single meter electricity return. Required if has_return = 1 and tarifftype = 0.</p>\n","type":"text/plain"},"key":"return","value":null},{"description":{"content":"<p>Electricity usage return high. Required if has_return = 1 and tarifftype = 1.</p>\n","type":"text/plain"},"key":"return_e_high","value":null},{"description":{"content":"<p>Electricity usage return low. Required if has_return = 1 and tarifftype = 1.</p>\n","type":"text/plain"},"key":"return_e_low","value":null},{"description":{"content":"<p>Gas usage. Required if: type = g/e_g.</p>\n","type":"text/plain"},"key":"usage_g","value":""},{"description":{"content":"<p>Electricity: Electricity grid operator (optional). Based on region. Possible values: \nwallonia:\nORES (NAMUR), ORES (HAINAUT), ORES (EST), ORES (LUXEMBOURG), ORES (VERVIERS), ORES (BRABANT WALLON), ORES (MOUSCRON), RESA, AIEG, AIESH, RÉSEAU DES ÉNERGIES DE WAVRE\nflanders:\nFLUVIUS HALLE-VILVOORDE, FLUVIUS ANTWERPEN, FLUVIUS LIMBURG, FLUVIUS WEST, FLUVIUS IMEWO, FLUVIUS MIDDEN-VLAANDEREN, FLUVIUS KEMPEN, FLUVIUS ZENNE-DIJLE</p>\n","type":"text/plain"},"key":"e_grid_operator","value":""},{"description":{"content":"<p>Gas: Gas grid operator (optional). Based on region. Possible values: \nwallonia:\nORES (NAMUR), ORES (HAINAUT), ORES (EST), ORES (LUXEMBOURG), ORES (VERVIERS), ORES (BRABANT WALLON), ORES (MOUSCRON), RESA\nflanders:\nFLUVIUS HALLE-VILVOORDE, FLUVIUS ANTWERPEN, FLUVIUS LIMBURG, FLUVIUS WEST, FLUVIUS IMEWO, FLUVIUS MIDDEN-VLAANDEREN, FLUVIUS KEMPEN, FLUVIUS ZENNE-DIJLE</p>\n","type":"text/plain"},"key":"g_grid_operator","value":null},{"description":{"content":"<p>1= true, 0 = false</p>\n","type":"text/plain"},"key":"exclusive_night","value":""},{"description":{"content":"<p>Exclusive night usage, If exlusive_night = 1;</p>\n","type":"text/plain"},"key":"usage_e_exclusive","value":null},{"description":{"content":"<p>Possible values - flanders, wallonia, brussels</p>\n","type":"text/plain"},"key":"region","value":""},{"description":{"content":"<p>Identifier of the flow</p>\n","type":"text/plain"},"key":"flow_identifier","value":null},{"description":{"content":"<p>The coverter powe. Accepts number values greater than or equal to 10</p>\n","type":"text/plain"},"key":"converter_power","value":null},{"description":{"content":"<p>If digital meter is available or not. Possible values are: 0,1</p>\n","type":"text/plain"},"key":"has_digital_meter","value":null},{"description":{"content":"<p>If charging station is available or not. Possible values are: 0,1</p>\n","type":"text/plain"},"key":"has_charging_station","value":null},{"description":{"content":"<p>The average monthloy peak. Accepts numeric values greater than 2.5</p>\n","type":"text/plain"},"key":"average_monthly_peak","value":null}],"variable":[]}},"response":[{"id":"9cb9e506-79bf-4795-9257-a8bdf3da070b","name":"Get Belgium energy product(s) with tariffs and calculations","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"}],"url":{"raw":"{{url}}/api/{{domain}}/v1/user/products/energy-be?postcode=3439&housenumber=14&suffix=&type=e_g&tarifftype=0&usage_e_single=100&usage_g=50&has_return=0&building_function=1&e_gridoperator=&g_gridoperator&e_connection_type=&g_connection_type=&exclusive_night=0&region=flanders","host":["{{url}}"],"path":["api","{{domain}}","v1","user","products","energy-be"],"query":[{"key":"postcode","value":"3439"},{"key":"housenumber","value":"14"},{"key":"suffix","value":""},{"key":"type","value":"e_g"},{"key":"tarifftype","value":"0"},{"key":"usage_e_single","value":"100"},{"key":"usage_g","value":"50"},{"key":"has_return","value":"0"},{"key":"building_function","value":"1"},{"key":"e_gridoperator","value":""},{"key":"g_gridoperator","value":null},{"key":"e_connection_type","value":""},{"key":"g_connection_type","value":""},{"key":"exclusive_night","value":"0"},{"key":"region","value":"flanders"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 21 Dec 2021 08:09:54 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' https://bam.eu01.nr-data.net https://www.google-analytics.com https://widget.freshworks.com https://salesdock.freshdesk.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=VsOFZNKLKVs0NMwyBykc2Eg2qdPeCe7C9gH6EKGSyyS05sKpKd938pJo275djRvateLwzrcBtXSLI1feNslCMHSn62q5FJpvbsIfdDsNqsVXDg0m7rv2qD74JCJ4KrF%2BbV0%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"6c0fa1843ad56b3e-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"id\": 123,\n            \"name\": \"Test - 3 jaar Variabel  Elektriciteit & Aardgas (SOHO)\",\n            \"identifier\": \"test-3-jaar-variabel-elektriciteit-aardgas-soho\",\n            \"supplier_id\": 1360,\n            \"type\": \"energy_e_g_be\",\n            \"usp\": \"Eerlijke prijzen\\r\\n100% Groen, 100% Belgisch\\r\\nVoor iedereen\\r\\nGratis Energiemanager\",\n            \"description\": \"\",\n            \"business\": \"1\",\n            \"retention\": \"2\",\n            \"switchdate_business_min\": null,\n            \"switchdate_business_max\": null,\n            \"switchdate_business_default\": null,\n            \"switchdate_consumer_min\": null,\n            \"switchdate_consumer_max\": null,\n            \"switchdate_consumer_default\": null,\n            \"valid_from\": null,\n            \"valid_till\": null,\n            \"created_at\": \"2021-08-11 11:18:04\",\n            \"updated_at\": \"2021-08-11 11:18:04\",\n            \"supplier_name\": \"Test\",\n            \"address\": {\n                \"postcode\": \"3439\",\n                \"housenumber\": \"14\",\n                \"suffix\": null,\n                \"streetname\": null,\n                \"city\": null\n            },\n            \"region\": \"flanders\",\n            \"cost_specifications\": {\n                \"electricity\": {\n                    \"grid_operator\": \"SIBELGAS\",\n                    \"energy_costs\": {\n                        \"usage_single\": {\n                            \"tariff\": \"0,100113\",\n                            \"tariff_inc_vat\": \"0,121137\",\n                            \"total\": \"10,011300\",\n                            \"total_inc_vat\": \"12,113673\",\n                            \"usage\": \"100,00\"\n                        },\n                        \"fixed_delivery_cost\": {\n                            \"tariff\": \"720,000000\",\n                            \"tariff_inc_vat\": \"871,200000\",\n                            \"total\": \"720,000000\",\n                            \"total_inc_vat\": \"871,200000\"\n                        },\n                        \"cashback\": \"0,00\",\n                        \"total\": \"730,011300\",\n                        \"total_inc_vat\": \"883,313673\"\n                    },\n                    \"grid_operator_costs\": {\n                        \"distribution_usage_single\": {\n                            \"tariff\": \"0,102100\",\n                            \"tariff_inc_vat\": \"0,123541\",\n                            \"total\": \"10,210000\",\n                            \"total_inc_vat\": \"12,354100\",\n                            \"usage\": \"100,00\"\n                        },\n                        \"data_management\": {\n                            \"tariff\": \"11,270000\",\n                            \"tariff_inc_vat\": \"13,636700\",\n                            \"total\": \"11,270000\",\n                            \"total_inc_vat\": \"13,636700\"\n                        },\n                        \"transmission_usage_single\": {\n                            \"tariff\": \"0,024500\",\n                            \"tariff_inc_vat\": \"0,029645\",\n                            \"total\": \"2,450000\",\n                            \"total_inc_vat\": \"2,964500\",\n                            \"usage\": \"100,00\"\n                        },\n                        \"total\": \"23,930000\",\n                        \"total_inc_vat\": \"28,955300\"\n                    },\n                    \"govt_costs\": {\n                        \"energy_usage_single\": {\n                            \"tariff\": \"0,001926\",\n                            \"tariff_inc_vat\": \"0,002331\",\n                            \"total\": \"0,192612\",\n                            \"total_inc_vat\": \"0,233060\",\n                            \"usage\": \"100,00\"\n                        },\n                        \"federal_usage_single\": {\n                            \"tariff\": \"0,003512\",\n                            \"total\": \"0,351170\",\n                            \"usage\": \"100,00\"\n                        },\n                        \"energy_funds_contribution\": {\n                            \"tariff\": \"5,160000\",\n                            \"total\": \"5,160000\"\n                        },\n                        \"total\": \"4,747298\",\n                        \"total_inc_vat\": \"5,744230\"\n                    },\n                    \"cashback\": \"0,00\",\n                    \"total_inc_vat\": \"918,013203\",\n                    \"total\": \"758,688598\"\n                },\n                \"gas\": {\n                    \"grid_operator\": \"SIBELGAS\",\n                    \"energy_costs\": {\n                        \"usage\": {\n                            \"tariff\": \"0,041213\",\n                            \"tariff_inc_vat\": \"0,049868\",\n                            \"total\": \"2,060650\",\n                            \"total_inc_vat\": \"2,493387\",\n                            \"usage\": \"50,00\"\n                        },\n                        \"fixed_delivery_cost\": {\n                            \"tariff\": \"720,000000\",\n                            \"tariff_inc_vat\": \"871,200000\",\n                            \"total\": \"720,000000\",\n                            \"total_inc_vat\": \"871,200000\"\n                        },\n                        \"total\": \"722,060650\",\n                        \"total_inc_vat\": \"873,693387\"\n                    },\n                    \"grid_operator_costs\": {\n                        \"distribution\": {\n                            \"tariff\": \"0,018000\",\n                            \"tariff_inc_vat\": \"0,021780\",\n                            \"total\": \"0,900000\",\n                            \"total_inc_vat\": \"1,089000\",\n                            \"usage\": \"50,00\"\n                        },\n                        \"data_management\": {\n                            \"tariff\": \"11,270000\",\n                            \"tariff_inc_vat\": \"13,636700\",\n                            \"total\": \"11,270000\",\n                            \"total_inc_vat\": \"13,636700\"\n                        },\n                        \"fixed_delivery_cost\": {\n                            \"tariff\": \"12,090000\",\n                            \"tariff_inc_vat\": \"14,628900\",\n                            \"total\": \"12,090000\",\n                            \"total_inc_vat\": \"14,628900\"\n                        },\n                        \"transmission\": {\n                            \"tariff\": \"0,001460\",\n                            \"tariff_inc_vat\": \"0,001767\",\n                            \"total\": \"0,073017\",\n                            \"total_inc_vat\": \"0,088350\",\n                            \"usage\": \"50,00\"\n                        },\n                        \"total\": \"24,333017\",\n                        \"total_inc_vat\": \"29,442950\"\n                    },\n                    \"govt_costs\": {\n                        \"energy_contribution\": {\n                            \"tariff\": \"0,000998\",\n                            \"tariff_inc_vat\": \"0,001207\",\n                            \"total\": \"0,049890\",\n                            \"total_inc_vat\": \"0,060367\",\n                            \"usage\": \"50,00\"\n                        },\n                        \"federal_contribution\": {\n                            \"tariff\": \"0,000656\",\n                            \"total\": \"0,032795\",\n                            \"usage\": \"50,00\"\n                        },\n                        \"total\": \"0,076993\",\n                        \"total_inc_vat\": \"0,093162\"\n                    },\n                    \"cashback\": \"0,00\",\n                    \"total_inc_vat\": \"903,229498\",\n                    \"total\": \"746,470660\"\n                },\n                \"total_cost\": {\n                     \"cashback\": \"0,00\",\n                    \"total_yearly\": \"1.506,121433\",\n                    \"total_yearly_inc_vat\": \"1.821,242701\",\n                    \"total_vat\": \"315,121268\",\n                    \"total_monthly_inc_vat\": \"151,770225\",\n                    \"total_monthly\": \"125,510119\"\n                }\n            }\n        },\n        {\n            \"id\": 422222,\n            \"name\": \"Test Comfy Vast 1 jaar Elektriciteit & Aardgas (SOHO)\",\n            \"identifier\": \"test-comfy-vast-1-jaar-elektriciteit-aardgas-soho\",\n            \"supplier_id\": 1358,\n            \"type\": \"energy_e_g_be\",\n            \"usp\": \"Reken af met je hoge energierekening\\r\\n1 jaar vaste prijs\\r\\nGratis Energiemanager\",\n            \"description\": \"\",\n            \"business\": \"1\",\n            \"retention\": \"2\",\n            \"switchdate_business_min\": null,\n            \"switchdate_business_max\": null,\n            \"switchdate_business_default\": null,\n            \"switchdate_consumer_min\": null,\n            \"switchdate_consumer_max\": null,\n            \"switchdate_consumer_default\": null,\n            \"valid_from\": null,\n            \"valid_till\": null,\n            \"created_at\": \"2021-08-11 11:58:21\",\n            \"updated_at\": \"2021-08-11 11:58:21\",\n            \"supplier_name\": \"Test\",\n            \"address\": {\n                \"postcode\": \"3439\",\n                \"housenumber\": \"14\",\n                \"suffix\": null,\n                \"streetname\": null,\n                \"city\": null\n            },\n            \"region\": \"flanders\",\n            \"cost_specifications\": {\n                \"electricity\": {\n                    \"grid_operator\": \"SIBELGAS\",\n                    \"energy_costs\": {\n                        \"usage_single\": {\n                            \"tariff\": \"0,089700\",\n                            \"tariff_inc_vat\": \"0,108537\",\n                            \"total\": \"8,970000\",\n                            \"total_inc_vat\": \"10,853700\",\n                            \"usage\": \"100,00\"\n                        },\n                        \"fixed_delivery_cost\": {\n                            \"tariff\": \"743,760000\",\n                            \"tariff_inc_vat\": \"899,949600\",\n                            \"total\": \"743,760000\",\n                            \"total_inc_vat\": \"899,949600\"\n                        },\n                        \"green_usage_single\": {\n                            \"tariff\": \"0,023000\",\n                            \"tariff_inc_vat\": \"0,027830\",\n                            \"total\": \"2,300000\",\n                            \"total_inc_vat\": \"2,783000\",\n                            \"usage\": \"100,00\"\n                        },\n                        \"wkk_usage_single\": {\n                            \"tariff\": \"0,010000\",\n                            \"tariff_inc_vat\": \"0,012100\",\n                            \"total\": \"1,000000\",\n                            \"total_inc_vat\": \"1,210000\",\n                            \"usage\": \"100,00\"\n                        },\n                        \"total\": \"756,030000\",\n                        \"total_inc_vat\": \"914,796300\"\n                    },\n                    \"grid_operator_costs\": {\n                        \"distribution_usage_single\": {\n                            \"tariff\": \"0,102100\",\n                            \"tariff_inc_vat\": \"0,123541\",\n                            \"total\": \"10,210000\",\n                            \"total_inc_vat\": \"12,354100\",\n                            \"usage\": \"100,00\"\n                        },\n                        \"data_management\": {\n                            \"tariff\": \"11,270000\",\n                            \"tariff_inc_vat\": \"13,636700\",\n                            \"total\": \"11,270000\",\n                            \"total_inc_vat\": \"13,636700\"\n                        },\n                        \"transmission_usage_single\": {\n                            \"tariff\": \"0,024500\",\n                            \"tariff_inc_vat\": \"0,029645\",\n                            \"total\": \"2,450000\",\n                            \"total_inc_vat\": \"2,964500\",\n                            \"usage\": \"100,00\"\n                        },\n                        \"total\": \"23,930000\",\n                        \"total_inc_vat\": \"28,955300\"\n                    },\n                    \"govt_costs\": {\n                        \"energy_usage_single\": {\n                            \"tariff\": \"0,001926\",\n                            \"tariff_inc_vat\": \"0,002331\",\n                            \"total\": \"0,192612\",\n                            \"total_inc_vat\": \"0,233060\",\n                            \"usage\": \"100,00\"\n                        },\n                        \"federal_usage_single\": {\n                            \"tariff\": \"0,003512\",\n                            \"total\": \"0,351170\",\n                            \"usage\": \"100,00\"\n                        },\n                        \"energy_funds_contribution\": {\n                            \"tariff\": \"5,160000\",\n                            \"total\": \"5,160000\"\n                        },\n                        \"total\": \"4,747298\",\n                        \"total_inc_vat\": \"5,744230\"\n                    },\n                    \"cashback\": \"10,00\",\n                    \"total_inc_vat\": \"949,495830\",\n                    \"total\": \"784,707298\"\n                },\n                \"gas\": {\n                    \"grid_operator\": \"SIBELGAS\",\n                    \"energy_costs\": {\n                        \"usage\": {\n                            \"tariff\": \"0,036000\",\n                            \"tariff_inc_vat\": \"0,043560\",\n                            \"total\": \"1,800000\",\n                            \"total_inc_vat\": \"2,178000\",\n                            \"usage\": \"50,00\"\n                        },\n                        \"fixed_delivery_cost\": {\n                            \"tariff\": \"743,760000\",\n                            \"tariff_inc_vat\": \"899,949600\",\n                            \"total\": \"743,760000\",\n                            \"total_inc_vat\": \"899,949600\"\n                        },\n                        \"total\": \"745,560000\",\n                        \"total_inc_vat\": \"902,127600\"\n                    },\n                    \"grid_operator_costs\": {\n                        \"distribution\": {\n                            \"tariff\": \"0,018000\",\n                            \"tariff_inc_vat\": \"0,021780\",\n                            \"total\": \"0,900000\",\n                            \"total_inc_vat\": \"1,089000\",\n                            \"usage\": \"50,00\"\n                        },\n                        \"data_management\": {\n                            \"tariff\": \"11,270000\",\n                            \"tariff_inc_vat\": \"13,636700\",\n                            \"total\": \"11,270000\",\n                            \"total_inc_vat\": \"13,636700\"\n                        },\n                        \"fixed_delivery_cost\": {\n                            \"tariff\": \"12,090000\",\n                            \"tariff_inc_vat\": \"14,628900\",\n                            \"total\": \"12,090000\",\n                            \"total_inc_vat\": \"14,628900\"\n                        },\n                        \"transmission\": {\n                            \"tariff\": \"0,001460\",\n                            \"tariff_inc_vat\": \"0,001767\",\n                            \"total\": \"0,073017\",\n                            \"total_inc_vat\": \"0,088350\",\n                            \"usage\": \"50,00\"\n                        },\n                        \"total\": \"24,333017\",\n                        \"total_inc_vat\": \"29,442950\"\n                    },\n                    \"govt_costs\": {\n                        \"energy_contribution\": {\n                            \"tariff\": \"0,000998\",\n                            \"tariff_inc_vat\": \"0,001207\",\n                            \"total\": \"0,049890\",\n                            \"total_inc_vat\": \"0,060367\",\n                            \"usage\": \"50,00\"\n                        },\n                        \"federal_contribution\": {\n                            \"tariff\": \"0,000656\",\n                            \"total\": \"0,032795\",\n                            \"usage\": \"50,00\"\n                        },\n                        \"total\": \"0,076993\",\n                        \"total_inc_vat\": \"0,093162\"\n                    },\n                    \"cashback\": \"0,00\",\n                    \"total_inc_vat\": \"931,663712\",\n                    \"total\": \"769,970010\"\n                },\n                \"total_cost\": {\n                    \"cashback\": \"10,00\",\n                    \"total_yearly\": \"1.555,639483\",\n                    \"total_yearly_inc_vat\": \"1.881,159542\",\n                    \"total_vat\": \"325,520059\",\n                    \"total_monthly_inc_vat\": \"156,763295\",\n                    \"total_monthly\": \"129,636624\"\n                }\n            }\n        },\n        {\n            \"id\": 26891,\n            \"name\": \"Bolt (residentieel)\",\n            \"identifier\": \"bolt-residentieel\",\n            \"supplier_id\": 1512,\n            \"type\": \"energy_e_g_be\",\n            \"usp\": \"Interessante tarieven\\r\\nGroene stroom\",\n            \"description\": \"\",\n            \"business\": \"0\",\n            \"retention\": \"2\",\n            \"switchdate_business_min\": null,\n            \"switchdate_business_max\": null,\n            \"switchdate_business_default\": null,\n            \"switchdate_consumer_min\": null,\n            \"switchdate_consumer_max\": null,\n            \"switchdate_consumer_default\": null,\n            \"valid_from\": null,\n            \"valid_till\": null,\n            \"created_at\": \"2021-11-09 13:05:14\",\n            \"updated_at\": \"2021-11-09 13:05:14\",\n            \"supplier_name\": \"Bolt Energie\",\n            \"address\": {\n                \"postcode\": \"3439\",\n                \"housenumber\": \"14\",\n                \"suffix\": null,\n                \"streetname\": null,\n                \"city\": null\n            },\n            \"region\": \"flanders\",\n            \"cost_specifications\": {\n                \"electricity\": {\n                    \"grid_operator\": \"SIBELGAS\",\n                    \"energy_costs\": {\n                        \"usage_single\": {\n                            \"tariff\": \"0,230000\",\n                            \"tariff_inc_vat\": \"0,278300\",\n                            \"total\": \"23,000000\",\n                            \"total_inc_vat\": \"27,830000\",\n                            \"usage\": \"100,00\"\n                        },\n                        \"fixed_delivery_cost\": {\n                            \"tariff\": \"59,880000\",\n                            \"tariff_inc_vat\": \"72,454800\",\n                            \"total\": \"59,880000\",\n                            \"total_inc_vat\": \"72,454800\"\n                        },\n                        \"total\": \"82,880000\",\n                        \"total_inc_vat\": \"100,284800\"\n                    },\n                    \"grid_operator_costs\": {\n                        \"distribution_usage_single\": {\n                            \"tariff\": \"0,102100\",\n                            \"tariff_inc_vat\": \"0,123541\",\n                            \"total\": \"10,210000\",\n                            \"total_inc_vat\": \"12,354100\",\n                            \"usage\": \"100,00\"\n                        },\n                        \"data_management\": {\n                            \"tariff\": \"11,270000\",\n                            \"tariff_inc_vat\": \"13,636700\",\n                            \"total\": \"11,270000\",\n                            \"total_inc_vat\": \"13,636700\"\n                        },\n                        \"transmission_usage_single\": {\n                            \"tariff\": \"0,024500\",\n                            \"tariff_inc_vat\": \"0,029645\",\n                            \"total\": \"2,450000\",\n                            \"total_inc_vat\": \"2,964500\",\n                            \"usage\": \"100,00\"\n                        },\n                        \"total\": \"23,930000\",\n                        \"total_inc_vat\": \"28,955300\"\n                    },\n                    \"govt_costs\": {\n                        \"energy_usage_single\": {\n                            \"tariff\": \"0,001926\",\n                            \"tariff_inc_vat\": \"0,002331\",\n                            \"total\": \"0,192612\",\n                            \"total_inc_vat\": \"0,233060\",\n                            \"usage\": \"100,00\"\n                        },\n                        \"federal_usage_single\": {\n                            \"tariff\": \"0,003512\",\n                            \"total\": \"0,351170\",\n                            \"usage\": \"100,00\"\n                        },\n                        \"energy_funds_contribution\": {\n                            \"tariff\": \"5,160000\",\n                            \"total\": \"5,160000\"\n                        },\n                        \"total\": \"4,747298\",\n                        \"total_inc_vat\": \"5,744230\"\n                    },\n                    \"cashback\": \"0,00\",\n                    \"total_inc_vat\": \"134,984330\",\n                    \"total\": \"111,557298\"\n                },\n                \"gas\": {\n                    \"grid_operator\": \"SIBELGAS\",\n                    \"energy_costs\": {\n                        \"usage\": {\n                            \"tariff\": \"1,170000\",\n                            \"tariff_inc_vat\": \"1,415700\",\n                            \"total\": \"58,500000\",\n                            \"total_inc_vat\": \"70,785000\",\n                            \"usage\": \"50,00\"\n                        },\n                        \"fixed_delivery_cost\": {\n                            \"tariff\": \"59,880000\",\n                            \"tariff_inc_vat\": \"72,454800\",\n                            \"total\": \"59,880000\",\n                            \"total_inc_vat\": \"72,454800\"\n                        },\n                        \"total\": \"118,380000\",\n                        \"total_inc_vat\": \"143,239800\"\n                    },\n                    \"grid_operator_costs\": {\n                        \"distribution\": {\n                            \"tariff\": \"0,018000\",\n                            \"tariff_inc_vat\": \"0,021780\",\n                            \"total\": \"0,900000\",\n                            \"total_inc_vat\": \"1,089000\",\n                            \"usage\": \"50,00\"\n                        },\n                        \"data_management\": {\n                            \"tariff\": \"11,270000\",\n                            \"tariff_inc_vat\": \"13,636700\",\n                            \"total\": \"11,270000\",\n                            \"total_inc_vat\": \"13,636700\"\n                        },\n                        \"fixed_delivery_cost\": {\n                            \"tariff\": \"12,090000\",\n                            \"tariff_inc_vat\": \"14,628900\",\n                            \"total\": \"12,090000\",\n                            \"total_inc_vat\": \"14,628900\"\n                        },\n                        \"transmission\": {\n                            \"tariff\": \"0,001460\",\n                            \"tariff_inc_vat\": \"0,001767\",\n                            \"total\": \"0,073017\",\n                            \"total_inc_vat\": \"0,088350\",\n                            \"usage\": \"50,00\"\n                        },\n                        \"total\": \"24,333017\",\n                        \"total_inc_vat\": \"29,442950\"\n                    },\n                    \"govt_costs\": {\n                        \"energy_contribution\": {\n                            \"tariff\": \"0,000998\",\n                            \"tariff_inc_vat\": \"0,001207\",\n                            \"total\": \"0,049890\",\n                            \"total_inc_vat\": \"0,060367\",\n                            \"usage\": \"50,00\"\n                        },\n                        \"federal_contribution\": {\n                            \"tariff\": \"0,000656\",\n                            \"total\": \"0,032795\",\n                            \"usage\": \"50,00\"\n                        },\n                        \"total\": \"0,076993\",\n                        \"total_inc_vat\": \"0,093162\"\n                    },\n                    \"cashback\": \"0,00\",\n                    \"total_inc_vat\": \"172,775912\",\n                    \"total\": \"142,790010\"\n                },\n                \"total_cost\": {\n                    \"cashback\": \"0,00\",\n                    \"total_yearly\": \"255,309483\",\n                    \"total_yearly_inc_vat\": \"307,760242\",\n                    \"total_vat\": \"52,450759\",\n                    \"total_monthly_inc_vat\": \"25,646687\",\n                    \"total_monthly\": \"21,275790\"\n                }\n            }\n        },\n        {\n            \"id\": 26892,\n            \"name\": \"Bolt (professioneel)\",\n            \"identifier\": \"bolt-professioneel\",\n            \"supplier_id\": 1512,\n            \"type\": \"energy_e_g_be\",\n            \"usp\": \"Interessante tarieven\\r\\nGroene stroom\",\n            \"description\": \"\",\n            \"business\": \"1\",\n            \"retention\": \"2\",\n            \"switchdate_business_min\": null,\n            \"switchdate_business_max\": null,\n            \"switchdate_business_default\": null,\n            \"switchdate_consumer_min\": null,\n            \"switchdate_consumer_max\": null,\n            \"switchdate_consumer_default\": null,\n            \"valid_from\": null,\n            \"valid_till\": null,\n            \"created_at\": \"2021-11-09 13:58:48\",\n            \"updated_at\": \"2021-11-09 13:59:02\",\n            \"supplier_name\": \"Bolt Energie\",\n            \"address\": {\n                \"postcode\": \"3439\",\n                \"housenumber\": \"14\",\n                \"suffix\": null,\n                \"streetname\": null,\n                \"city\": null\n            },\n            \"region\": \"flanders\",\n            \"cost_specifications\": {\n                \"electricity\": {\n                    \"grid_operator\": \"SIBELGAS\",\n                    \"energy_costs\": {\n                        \"usage_single\": {\n                            \"tariff\": \"0,230000\",\n                            \"tariff_inc_vat\": \"0,278300\",\n                            \"total\": \"23,000000\",\n                            \"total_inc_vat\": \"27,830000\",\n                            \"usage\": \"100,00\"\n                        },\n                        \"fixed_delivery_cost\": {\n                            \"tariff\": \"59,880000\",\n                            \"tariff_inc_vat\": \"72,454800\",\n                            \"total\": \"59,880000\",\n                            \"total_inc_vat\": \"72,454800\"\n                        },\n                        \"total\": \"82,880000\",\n                        \"total_inc_vat\": \"100,284800\"\n                    },\n                    \"grid_operator_costs\": {\n                        \"distribution_usage_single\": {\n                            \"tariff\": \"0,102100\",\n                            \"tariff_inc_vat\": \"0,123541\",\n                            \"total\": \"10,210000\",\n                            \"total_inc_vat\": \"12,354100\",\n                            \"usage\": \"100,00\"\n                        },\n                        \"data_management\": {\n                            \"tariff\": \"11,270000\",\n                            \"tariff_inc_vat\": \"13,636700\",\n                            \"total\": \"11,270000\",\n                            \"total_inc_vat\": \"13,636700\"\n                        },\n                        \"transmission_usage_single\": {\n                            \"tariff\": \"0,024500\",\n                            \"tariff_inc_vat\": \"0,029645\",\n                            \"total\": \"2,450000\",\n                            \"total_inc_vat\": \"2,964500\",\n                            \"usage\": \"100,00\"\n                        },\n                        \"total\": \"23,930000\",\n                        \"total_inc_vat\": \"28,955300\"\n                    },\n                    \"govt_costs\": {\n                        \"energy_usage_single\": {\n                            \"tariff\": \"0,001926\",\n                            \"tariff_inc_vat\": \"0,002331\",\n                            \"total\": \"0,192612\",\n                            \"total_inc_vat\": \"0,233060\",\n                            \"usage\": \"100,00\"\n                        },\n                        \"federal_usage_single\": {\n                            \"tariff\": \"0,003512\",\n                            \"total\": \"0,351170\",\n                            \"usage\": \"100,00\"\n                        },\n                        \"energy_funds_contribution\": {\n                            \"tariff\": \"5,160000\",\n                            \"total\": \"5,160000\"\n                        },\n                        \"total\": \"4,747298\",\n                        \"total_inc_vat\": \"5,744230\"\n                    },\n                    \"cashback\": \"0,00\",\n                    \"total_inc_vat\": \"134,984330\",\n                    \"total\": \"111,557298\"\n                },\n                \"gas\": {\n                    \"grid_operator\": \"SIBELGAS\",\n                    \"energy_costs\": {\n                        \"usage\": {\n                            \"tariff\": \"1,170000\",\n                            \"tariff_inc_vat\": \"1,415700\",\n                            \"total\": \"58,500000\",\n                            \"total_inc_vat\": \"70,785000\",\n                            \"usage\": \"50,00\"\n                        },\n                        \"fixed_delivery_cost\": {\n                            \"tariff\": \"59,880000\",\n                            \"tariff_inc_vat\": \"72,454800\",\n                            \"total\": \"59,880000\",\n                            \"total_inc_vat\": \"72,454800\"\n                        },\n                        \"total\": \"118,380000\",\n                        \"total_inc_vat\": \"143,239800\"\n                    },\n                    \"grid_operator_costs\": {\n                        \"distribution\": {\n                            \"tariff\": \"0,018000\",\n                            \"tariff_inc_vat\": \"0,021780\",\n                            \"total\": \"0,900000\",\n                            \"total_inc_vat\": \"1,089000\",\n                            \"usage\": \"50,00\"\n                        },\n                        \"data_management\": {\n                            \"tariff\": \"11,270000\",\n                            \"tariff_inc_vat\": \"13,636700\",\n                            \"total\": \"11,270000\",\n                            \"total_inc_vat\": \"13,636700\"\n                        },\n                        \"fixed_delivery_cost\": {\n                            \"tariff\": \"12,090000\",\n                            \"tariff_inc_vat\": \"14,628900\",\n                            \"total\": \"12,090000\",\n                            \"total_inc_vat\": \"14,628900\"\n                        },\n                        \"transmission\": {\n                            \"tariff\": \"0,001460\",\n                            \"tariff_inc_vat\": \"0,001767\",\n                            \"total\": \"0,073017\",\n                            \"total_inc_vat\": \"0,088350\",\n                            \"usage\": \"50,00\"\n                        },\n                        \"total\": \"24,333017\",\n                        \"total_inc_vat\": \"29,442950\"\n                    },\n                    \"govt_costs\": {\n                        \"energy_contribution\": {\n                            \"tariff\": \"0,000998\",\n                            \"tariff_inc_vat\": \"0,001207\",\n                            \"total\": \"0,049890\",\n                            \"total_inc_vat\": \"0,060367\",\n                            \"usage\": \"50,00\"\n                        },\n                        \"federal_contribution\": {\n                            \"tariff\": \"0,000656\",\n                            \"total\": \"0,032795\",\n                            \"usage\": \"50,00\"\n                        },\n                        \"total\": \"0,076993\",\n                        \"total_inc_vat\": \"0,093162\"\n                    },\n                    \"cashback\": \"0,00\",\n                    \"total_inc_vat\": \"172,775912\",\n                    \"total\": \"142,790010\"\n                },\n                \"total_cost\": {\n                    \"cashback\": \"0,00\",\n                    \"total_yearly\": \"255,309483\",\n                    \"total_yearly_inc_vat\": \"307,760242\",\n                    \"total_vat\": \"52,450759\",\n                    \"total_monthly_inc_vat\": \"25,646687\",\n                    \"total_monthly\": \"21,275790\"\n                }\n            }\n        }\n    ],\n    \"message\": \"Producten succesvol opgehaald\"\n}"}],"_postman_id":"6e7b6cf1-91cb-4ab8-a6b4-0f3cb80a8f27"}],"id":"8af85282-b2c0-4660-ad23-3b25381d75a1","_postman_id":"8af85282-b2c0-4660-ad23-3b25381d75a1","description":""},{"name":"Get energy sales","id":"37e8228d-1177-4781-a954-773cb9457bca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/sales/energy","description":"<p>Get all energy sales during a specific period using different filters.</p>\n<p><strong>Filter Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter Name</th>\n<th>Possible Value(s) or Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>period_filter_on</td>\n<td>'created_date', 'updated_date', 'finalized_at', 'cancelled_date', 'sent_date', 'deleted_date'</td>\n<td>The date field to filter on.  <br />created_date - Sale created date.  <br />updated_date - Sale last updated date.  <br />finalized_at - Sale signed date.  <br />cancelled_date - Sale cancelled date.  <br />sent_date - Sale processed date.  <br />deleted_date - Sale deleted date.  <br /></td>\n</tr>\n<tr>\n<td>period</td>\n<td>'today', 'yesterday', 'this_week', 'last_week', 'last_30_days', 'this_month', 'last_month', 'custom'</td>\n<td>Possible periods to filter on</td>\n</tr>\n<tr>\n<td>period_start</td>\n<td>Date in YYYY-MM-DD hh:mm:ss format</td>\n<td>If period is custom</td>\n</tr>\n<tr>\n<td>period_end</td>\n<td>Date in YYYY-MM-DD hh:mm:ss format</td>\n<td>If period is custom</td>\n</tr>\n<tr>\n<td>type</td>\n<td>'sale', 'offer'</td>\n<td>To filter direct sales or offers</td>\n</tr>\n<tr>\n<td>flow_id</td>\n<td>integer</td>\n<td>The id of the flow of the transaction</td>\n</tr>\n<tr>\n<td>supplier_id</td>\n<td>integer</td>\n<td>The id of the supplier of the product of the transaction</td>\n</tr>\n<tr>\n<td>statuses</td>\n<td>array</td>\n<td>The possible statuses can be retrieved using the \"Get sale statuses list\" endpoint Multiple statuses can be passed. Eg: statuses[0]=new&amp;statuses[1]=sent</td>\n</tr>\n<tr>\n<td>offer_statuses</td>\n<td>'open', '1' (accepted), '0' (declined), '2' (expired)</td>\n<td>The status of the offers of the transactions. Multiple offer statuses can be filtered. Eg. offer_statuses[0]=open&amp;offer_statuses[1]=1</td>\n</tr>\n<tr>\n<td>product_types</td>\n<td>array</td>\n<td>The type of the product of the transaction. Multiple product types can be passed like: product_types[0]=simple&amp;product_types[1]=default</td>\n</tr>\n<tr>\n<td>sale_ids</td>\n<td>array</td>\n<td>The ids of the sales can be passed as an array to return specific sales like: sale_ids[0]=123456&amp;sale_ids[1]=5555555</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","sales","energy"],"host":["{{url}}"],"query":[{"disabled":true,"key":"period_filter_on","value":"updated_date"},{"disabled":true,"key":"period","value":"custom"},{"disabled":true,"key":"period_start","value":"{{start_date}}"},{"disabled":true,"key":"period_end","value":"{{end_date}}"},{"disabled":true,"key":"type","value":""},{"disabled":true,"key":"supplier_id","value":null},{"disabled":true,"key":"flow_id","value":null},{"disabled":true,"key":"statuses","value":null},{"disabled":true,"key":"offer_statuses","value":null},{"disabled":true,"key":"product_types","value":null}],"variable":[]}},"response":[{"id":"26e26ede-d072-4117-be13-09bc34caeb0c","name":"Get energy transactions","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/sales/energy?period_filter_on=updated_date&period=custom&period_start=2020-02-19 05:00:49&period_end=2020-02-19 05:55:49&type=&supplier_id&flow_id&statuses","host":["{{url}}"],"path":["api","{{domain}}","{{version}}","{{scope}}","sales","energy"],"query":[{"key":"period_filter_on","value":"updated_date"},{"key":"period","value":"custom"},{"key":"period_start","value":"2020-02-19 05:00:49"},{"key":"period_end","value":"2020-02-19 05:55:49"},{"key":"type","value":""},{"key":"supplier_id","value":null},{"key":"flow_id","value":null},{"key":"statuses","value":null},{"key":"api_token","value":"{{api_token}}","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 Jul 2020 11:21:45 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self'; form-action 'self'; frame-ancestors 'self'; frame-src 'self'; object-src 'self'"},{"key":"Feature-Policy","value":"accelerometer 'self'; ambient-light-sensor 'self'; autoplay 'self'; battery 'self'; camera 'self'; display-capture 'self'; document-domain *; encrypted-media 'self'; execution-while-not-rendered *; execution-while-out-of-viewport *; fullscreen 'self'; geolocation 'self'; gyroscope 'self'; layout-animations 'self'; legacy-image-formats 'self'; magnetometer 'self'; microphone 'self'; midi 'self'; navigation-override 'self'; oversized-images *; payment 'self'; picture-in-picture *; publickey-credentials 'self'; sync-xhr *; unoptimized-images 'self'; unsized-media *; usb 'self'; wake-lock 'self'; xr-spatial-tracking 'self'"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"042227d2000000dded5c8b2200000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"5b7d42633b87dded-SIN"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"current_page\": 1,\n        \"data\": [\n            {\n                \"Sale ID\": 228838,\n                \"Flow ID\": 4,\n                \"Titel\": \"Elektriciteit & gas MKB\",\n                \"Geverifieerd\": null,\n                \"Tijdstip geverifieerd\": null,\n                \"Geverifieerd IP\": null,\n                \"Saletype\": \"offer\",\n                \"Status\": \"Afgewezen\",\n                \"Opmerking bij status\": null,\n                \"Geldig tot\": \"31-12-2019\",\n                \"Tijdstip aangemaakt\": \"15-12-2019 05:33:35\",\n                \"Tijdstip geüpdated\": \"19-02-2020 05:51:49\",\n                \"Verificatie\": \"signature\",\n                \"Opmerking annulering\": \"\",\n                \"Geannuleerd door\": null,\n                \"Finalized datetime\": null,\n                \"Cancelled datetime\": null,\n                \"Outgoing datetime\": null,\n                \"Product ID\": 424,\n                \"Productnaam\": \"Test Product\",\n                \"Product identifier\": \"test-product\",\n                \"Organisatie\": \"Default\",\n                \"Organisatie identifier\": \"default\",\n                \"Gebruikers ID\": 2916,\n                \"Gebruikersnaam\": \"test@salesdock.nl\",\n                \"Agent\": \"Test User\",\n                \"Oorspronkelijk account\": \"Demo Company\",\n                \"Oorspronkelijke organisatie\": \"Default\",\n                \"Oorspronkelijke verkoper\": \"Test User\",\n                \"Relatie ID\": 116488,\n                \"Voornaam\": \"*****\",\n                \"Achternaam\": \"*****\",\n                \"Zakelijk\": \"Ja\",\n                \"Bedrijfsnaam\": \"Test\",\n                \"Contactpersoon\": \"*****\",\n                \"Nummer Kamer van Koophandel (KvK)\": \"12345678\",\n                \"btw\": null,\n                \"Geslacht\": \"Dhr.\",\n                \"Postcode\": \"*****\",\n                \"Huisnummer\": \"*****\",\n                \"Toevoeging\": \"*****\",\n                \"Straatnaam\": \"Neptunusstraat\",\n                \"Woonplaats\": \"Enschede\",\n                \"Postcode aansluiting\": \"*****\",\n                \"Huisnummer aansluiting\": \"*****\",\n                \"Huisnummer toevoeging aansluiting\": \"*****\",\n                \"Straatnaam aansluiting\": \"Neptunusstraat\",\n                \"Plaatsnaam aansluiting\": \"Enschede\",\n                \"Geboortedatum\": null,\n                \"E-mail\": \"****@******.***\",\n                \"Telefoon\": null,\n                \"IBAN nummer\": \"*****\",\n                \"IBAN tenaamstelling\": \"*****\",\n                \"Offerte\": \"Ja\",\n                \"Offerte geaccepteerd\": \"Afgewezen\",\n                \"Offer answered datetime\": \"15-12-2019 05:35:34\",\n                \"Offer answered IP\": \"137.97.109.126\",\n                \"Tijdstip offerte laatst bekeken\": \"15-12-2019 05:35:35\",\n                \"IP adres offerte laatst bekeken\": \"137.97.109.126\",\n                \"Offerte downloads\": null,\n                \"Tijdstip offerte laatst gedownload\": null,\n                \"Bron\": null,\n                \"Bron ID\": null,\n                \"Signed contract date\": \"\",\n                \"Signed IP\": \"\",\n                \"AI / Acceptgiro\": \"AG\",\n                \"Double meter\": \"Nee\",\n                \"Double meter low tariff 21.00/23.00\": null,\n                \"Estimation\": \"Manual\",\n                \"Electricity usage single\": 200,\n                \"Electricity usage peak\": null,\n                \"Electricity usage off-peak\": null,\n                \"Gas usage\": 100,\n                \"Electricity return\": null,\n                \"Verblijfsfunctie\": \"Ja\",\n                \"EAN Code E\": \"*****\",\n                \"EAN Code G\": \"*****\",\n                \"Desired start date\": \"\",\n                \"Price gas\": \"0.24480\",\n                \"Price electricity single\": \"0.04829\",\n                \"Price electricity peak\": \"0.05347\",\n                \"Price electricity off-peak\": \"0.04168\",\n                \"Gas region\": \"Gasregio 4\",\n                \"Profile electricity\": \"E_3X25A\",\n                \"Profile gas\": \"G_G6_500_4000\",\n                \"Supplier Name\": \"Test Supplier\",\n                \"Outgoing Id\": \"\",\n                \"Outgoing app\": \"\",\n                \"Is de levering vooral of volledig voor privégebruik?\": null,\n                \"Estimated yearly costs\": 309.73,\n                \"Estimated monthly costs\": 25.81,\n                \"Type of energy\": \"Stroom en gas\",\n                \"Fixed costs electricity\": \"5.99\",\n                \"Fixed costs gas\": \"5.99\",\n                \"Contract duration\": \"\"\n            },\n            {\n                \"Sale ID\": 228839,\n                \"Flow ID\": 4,\n                \"Titel\": \"Elektriciteit & gas MKB\",\n                \"Geverifieerd\": null,\n                \"Tijdstip geverifieerd\": null,\n                \"Geverifieerd IP\": null,\n                \"Saletype\": \"offer\",\n                \"Status\": \"Geannuleerd na Happy Call\",\n                \"Opmerking bij status\": null,\n                \"Geldig tot\": \"31-12-2019\",\n                \"Tijdstip aangemaakt\": \"15-12-2019 05:51:12\",\n                \"Tijdstip geüpdated\": \"19-02-2020 05:51:49\",\n                \"Verificatie\": \"signature\",\n                \"Opmerking annulering\": \"Test\",\n                \"Geannuleerd door\": null,\n                \"Finalized datetime\": \"15-12-2019 05:52:24\",\n                \"Cancelled datetime\": \"15-12-2019 06:00:28\",\n                \"Outgoing datetime\": \"15-12-2019 06:00:09\",\n                \"Product ID\": 3329,\n                \"Productnaam\": \"TestProduct\",\n                \"Product identifier\": \"testproduct\",\n                \"Organisatie\": \"Default\",\n                \"Organisatie identifier\": \"default\",\n                \"Gebruikers ID\": 2916,\n                \"Gebruikersnaam\": \"test@salesdock.nl\",\n                \"Agent\": \"Test User\",\n                \"Oorspronkelijk account\": \"Demo Company\",\n                \"Oorspronkelijke organisatie\": \"Default\",\n                \"Oorspronkelijke verkoper\": \"Test User\",\n                \"Relatie ID\": 116488,\n                \"Voornaam\": \"*****\",\n                \"Achternaam\": \"*****\",\n                \"Zakelijk\": \"Ja\",\n                \"Bedrijfsnaam\": \"Test\",\n                \"Contactpersoon\": \"*****\",\n                \"Nummer Kamer van Koophandel (KvK)\": \"12345678\",\n                \"btw\": null,\n                \"Geslacht\": \"Dhr.\",\n                \"Postcode\": \"*****\",\n                \"Huisnummer\": \"*****\",\n                \"Toevoeging\": \"*****\",\n                \"Straatnaam\": \"Neptunusstraat\",\n                \"Woonplaats\": \"Enschede\",\n                \"Postcode aansluiting\": \"*****\",\n                \"Huisnummer aansluiting\": \"*****\",\n                \"Huisnummer toevoeging aansluiting\": \"*****\",\n                \"Straatnaam aansluiting\": \"Neptunusstraat\",\n                \"Plaatsnaam aansluiting\": \"Enschede\",\n                \"Geboortedatum\": null,\n                \"E-mail\": \"****@******.***\",\n                \"Telefoon\": null,\n                \"IBAN nummer\": \"*****\",\n                \"IBAN tenaamstelling\": \"*****\",\n                \"Offerte\": \"Ja\",\n                \"Offerte geaccepteerd\": \"Geaccepteerd\",\n                \"Offer answered datetime\": \"15-12-2019 05:52:24\",\n                \"Offer answered IP\": \"137.97.109.126\",\n                \"Tijdstip offerte laatst bekeken\": \"15-12-2019 05:52:25\",\n                \"IP adres offerte laatst bekeken\": \"137.97.109.126\",\n                \"Offerte downloads\": null,\n                \"Tijdstip offerte laatst gedownload\": null,\n                \"Bron\": null,\n                \"Bron ID\": null,\n                \"Signed contract date\": \"15-12-2019 05:52:24\",\n                \"Signed IP\": \"137.97.109.126\",\n                \"AI / Acceptgiro\": \"AI\",\n                \"Double meter\": \"Nee\",\n                \"Double meter low tariff 21.00/23.00\": null,\n                \"Estimation\": \"Manual\",\n                \"Electricity usage single\": 200,\n                \"Electricity usage peak\": null,\n                \"Electricity usage off-peak\": null,\n                \"Gas usage\": 100,\n                \"Electricity return\": null,\n                \"Verblijfsfunctie\": \"Ja\",\n                \"EAN Code E\": \"*****\",\n                \"EAN Code G\": \"*****\",\n                \"Desired start date\": \"\",\n                \"Price gas\": \"80\",\n                \"Price electricity single\": \"10\",\n                \"Price electricity peak\": \"20\",\n                \"Price electricity off-peak\": \"30\",\n                \"Gas region\": \"Gasregio 4\",\n                \"Profile electricity\": \"E_3X25A\",\n                \"Profile gas\": \"G_G6_500_4000\",\n                \"Supplier Name\": \"TestSupplier\",\n                \"Outgoing Id\": \"228840\",\n                \"Outgoing app\": \"salesdock\",\n                \"Is de levering vooral of volledig voor privégebruik?\": null,\n                \"Estimated yearly costs\": 11091.83,\n                \"Estimated monthly costs\": 924.32,\n                \"Type of energy\": \"Stroom en gas\",\n                \"Fixed costs electricity\": \"70\",\n                \"Fixed costs gas\": \"10\",\n                \"Contract duration\": \"\"\n            },\n            {\n                \"Sale ID\": 225006,\n                \"Flow ID\": 4,\n                \"Titel\": \"Elektriciteit & gas MKB\",\n                \"Geverifieerd\": null,\n                \"Tijdstip geverifieerd\": null,\n                \"Geverifieerd IP\": null,\n                \"Saletype\": \"offer\",\n                \"Status\": \"Afgewezen\",\n                \"Opmerking bij status\": null,\n                \"Geldig tot\": \"31-12-2019\",\n                \"Tijdstip aangemaakt\": \"12-12-2019 10:29:10\",\n                \"Tijdstip geüpdated\": \"19-02-2020 05:50:52\",\n                \"Verificatie\": \"signature\",\n                \"Opmerking annulering\": \"\",\n                \"Geannuleerd door\": null,\n                \"Finalized datetime\": null,\n                \"Cancelled datetime\": null,\n                \"Outgoing datetime\": null,\n                \"Product ID\": 424,\n                \"Productnaam\": \"Test Product\",\n                \"Product identifier\": \"test-product\",\n                \"Organisatie\": \"Default\",\n                \"Organisatie identifier\": \"default\",\n                \"Gebruikers ID\": 2916,\n                \"Gebruikersnaam\": \"test@salesdock.nl\",\n                \"Agent\": \"Test User\",\n                \"Oorspronkelijk account\": \"Demo Company\",\n                \"Oorspronkelijke organisatie\": \"Default\",\n                \"Oorspronkelijke verkoper\": \"Test User\",\n                \"Relatie ID\": 116488,\n                \"Voornaam\": \"*****\",\n                \"Achternaam\": \"*****\",\n                \"Zakelijk\": \"Ja\",\n                \"Bedrijfsnaam\": \"Test\",\n                \"Contactpersoon\": \"*****\",\n                \"Nummer Kamer van Koophandel (KvK)\": \"12345678\",\n                \"btw\": null,\n                \"Geslacht\": \"Dhr.\",\n                \"Postcode\": \"*****\",\n                \"Huisnummer\": \"*****\",\n                \"Toevoeging\": \"*****\",\n                \"Straatnaam\": \"Neptunusstraat\",\n                \"Woonplaats\": \"Enschede\",\n                \"Postcode aansluiting\": \"*****\",\n                \"Huisnummer aansluiting\": \"*****\",\n                \"Huisnummer toevoeging aansluiting\": \"*****\",\n                \"Straatnaam aansluiting\": \"Neptunusstraat\",\n                \"Plaatsnaam aansluiting\": \"Enschede\",\n                \"Geboortedatum\": null,\n                \"E-mail\": \"****@******.***\",\n                \"Telefoon\": null,\n                \"IBAN nummer\": \"*****\",\n                \"IBAN tenaamstelling\": \"*****\",\n                \"Offerte\": \"Ja\",\n                \"Offerte geaccepteerd\": \"Afgewezen\",\n                \"Offer answered datetime\": \"12-12-2019 12:32:54\",\n                \"Offer answered IP\": \"117.221.64.66\",\n                \"Tijdstip offerte laatst bekeken\": \"12-12-2019 12:32:56\",\n                \"IP adres offerte laatst bekeken\": \"117.221.64.66\",\n                \"Offerte downloads\": null,\n                \"Tijdstip offerte laatst gedownload\": null,\n                \"Bron\": null,\n                \"Bron ID\": null,\n                \"Signed contract date\": \"\",\n                \"Signed IP\": \"\",\n                \"AI / Acceptgiro\": \"AG\",\n                \"Double meter\": \"Nee\",\n                \"Double meter low tariff 21.00/23.00\": null,\n                \"Estimation\": \"Manual\",\n                \"Electricity usage single\": 200,\n                \"Electricity usage peak\": null,\n                \"Electricity usage off-peak\": null,\n                \"Gas usage\": 100,\n                \"Electricity return\": null,\n                \"Verblijfsfunctie\": \"Ja\",\n                \"EAN Code E\": \"*****\",\n                \"EAN Code G\": \"*****\",\n                \"Desired start date\": \"\",\n                \"Price gas\": \"0.24480\",\n                \"Price electricity single\": \"0.04829\",\n                \"Price electricity peak\": \"0.05347\",\n                \"Price electricity off-peak\": \"0.04168\",\n                \"Gas region\": \"Gasregio 4\",\n                \"Profile electricity\": \"E_3X25A\",\n                \"Profile gas\": \"G_G6_500_4000\",\n                \"Supplier Name\": \"Test Supplier\",\n                \"Outgoing Id\": \"\",\n                \"Outgoing app\": \"\",\n                \"Is de levering vooral of volledig voor privégebruik?\": null,\n                \"Estimated yearly costs\": 309.73,\n                \"Estimated monthly costs\": 25.81,\n                \"Type of energy\": \"Stroom en gas\",\n                \"Fixed costs electricity\": \"5.99\",\n                \"Fixed costs gas\": \"5.99\",\n                \"Contract duration\": \"\"\n            }\n        ],\n        \"first_page_url\": \"https://app.salesdock.nl/api/demo/v1/user/sales/energy?page=1\",\n        \"from\": 1,\n        \"last_page\": 1,\n        \"last_page_url\": \"https://app.salesdock.nl/api/demo/v1/user/sales/energy?page=1\",\n        \"next_page_url\": null,\n        \"path\": \"https://app.salesdock.nl/api/demo/v1/user/sales/energy\",\n        \"per_page\": 20,\n        \"prev_page_url\": null,\n        \"to\": 3,\n        \"total\": 3\n    },\n    \"message\": \"Sales succesvol opgehaald\"\n}\n"}],"_postman_id":"37e8228d-1177-4781-a954-773cb9457bca"},{"name":"Get energy usage estimation","id":"7ceb855c-0e22-4c52-afca-ba4f78c4afed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/v1/user/energy/estimation?business=1&building_type=zzp&household_size=","description":"<p>The get energy usage estimation helps estimate the usage for a business or consumer customer based on the type of building and the household size (for consumer).</p>\n","urlObject":{"path":["api","{{domain}}","v1","user","energy","estimation"],"host":["{{url}}"],"query":[{"description":{"content":"<p>Only for business. If consumer, do not send anything</p>\n","type":"text/plain"},"key":"business","value":"1"},{"description":{"content":"<p>If business = 1, then: zzp, eenmanszaak, winkel, kantoorpand, industrieel.\nIf consumer then: appartement, tussenwoning, hoekwoning, vrijstaand</p>\n","type":"text/plain"},"key":"building_type","value":"zzp"},{"description":{"content":"<p>Ony for consumer. Possible values: 1, 2, 3-4, 5-6</p>\n","type":"text/plain"},"key":"household_size","value":""}],"variable":[]}},"response":[{"id":"c578e11f-32cf-47dd-ad8c-3bf1513e0174","name":"Get energy usage estimation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"}],"url":{"raw":"https://app.salesdock.nl/api/{{domain}}/v1/user/energy/estimation?business=1&building_type=kantoorpand","protocol":"https","host":["app","salesdock","nl"],"path":["api","{{domain}}","v1","user","energy","estimation"],"query":[{"key":"business","value":"1","description":"Business = 1, Consumer = 0"},{"key":"building_type","value":"kantoorpand","description":"If business = 1, then: zzp, eenmanszaak, winkel, \n kantoorpand, industrieel.\nIf business = 0, then: appartement, tussenwoning, hoekwoning, vrijstaand"},{"key":"household_size","value":"","description":"If business = 0, then: 1, 2, 3-4, 5-6","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 21 Sep 2020 05:51:46 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self'; form-action 'self'; frame-ancestors 'self'; frame-src 'self'; object-src 'self'"},{"key":"Feature-Policy","value":"accelerometer 'self'; ambient-light-sensor 'self'; autoplay 'self'; battery 'self'; camera 'self'; display-capture 'self'; document-domain *; encrypted-media 'self'; execution-while-not-rendered *; execution-while-out-of-viewport *; fullscreen 'self'; geolocation 'self'; gyroscope 'self'; layout-animations 'self'; legacy-image-formats 'self'; magnetometer 'self'; microphone 'self'; midi 'self'; navigation-override 'self'; oversized-images *; payment 'self'; picture-in-picture *; publickey-credentials 'self'; sync-xhr *; unoptimized-images 'self'; unsized-media *; usb 'self'; wake-lock 'self'; xr-spatial-tracking 'self'"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"Vary","value":"Authorization"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"0550d0eaaa00001a5a1cbf6200000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"5d61842449c51a5a-SIN"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"type\": \"kantoorpand\",\n        \"e_single\": 50000,\n        \"e_high\": 25000,\n        \"e_low\": 25000,\n        \"gas\": 10000\n    },\n    \"message\": \"Verwachtingen succes vol opgehaald\"\n}"}],"_postman_id":"7ceb855c-0e22-4c52-afca-ba4f78c4afed"}],"id":"0bb44385-f0e2-464f-aed5-9a610a816294","_postman_id":"0bb44385-f0e2-464f-aed5-9a610a816294","description":""},{"name":"Telecom","item":[{"name":"Create telecom offer","id":"e6b7a989-bd08-4db4-b55e-72a639fe00bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"transaction_type\": \"offer\",\n    \"postcode\": \"7546MS\",\n    \"housenumber\": \"8\",\n    \"suffix\": null,\n    \"gender\": \"male\",\n    \"firstname\": \"Test\",\n    \"lastname\": \"Test\",\n    \"birthdate\": \"01-01-1990\",\n    \"streetname\": \"Test\",\n    \"city\": \"Test\",\n    \"email\": \"test@salesdock.nl\",\n    \"phone\": \"0610000000\",\n    \"sale_channel\": \"online\",\n    \"product_id\": \"\",\n    \"connection_postcode\": \"7546MS\",\n    \"connection_housenumber\": \"8\",\n    \"connection_suffix\": null,\n    \"connection_streetname\": \"Test\",\n    \"connection_city\": \"Test\",\n    \"business\": \"0\",\n    \"questionData\": {\n        \"inhuizing\": \"Ja\",\n        \"datum-inhuizing\": \"2020-03-01\",\n        \"ingangsdatum\": \"2020-03-01\",\n        \"overstaptest_switchdate_option\": \"Zo snel als mogelijk\",\n        \"overstaptest\": \"Nee\"\n    },\n    \"agreements\": {\n        \"privay-statement\": \"1\"\n    },\n    \"related_products\": {\n        \"0\": {\n            \"product_id\": \"\"\n        },\n        \"1\": {\n            \"product_id\": \"\"\n        },\n        \"2\": {\n            \"product_id\": \"\"\n        }\n    },\n    \"initial_user_firstname\": \"John\",\n    \"initial_user_lastname\": \"Doe\",\n    \"initial_organisation_name\": \"Test Organisation\"\n}"},"url":"{{url}}/api/{{domain}}/{{version}}/sales/flow/{{flow_type_identifier}}/{{flow_identifier}}","description":"<p>Create offer for telecom flow.</p>\n<p>Replace {{flow_dentifier}} with the identifier of the flow.</p>\n<p>Replace {{flow_type_identifier}} with the identifier of the flow type.</p>\n<p>In the questionData object, the product question identifiers needed for the flow should be sent along with the corresponding answers</p>\n<p>In the agreements object, the agreement identifiers needed for the flow should be sent along with value \"1\" for accepted agreements.</p>\n<p>In the related_products object, the related products that are chosen in the telecom flow need to be sent.</p>\n<h4 id=\"completed-and-uncompleted-offers\">Completed and uncompleted offers</h4>\n<p>The API endpoint can be used to create both completed and uncompleted offers. Uncompleted offers result in a new contract pdf being generated and an email being sent to the customer to accept the offer. A completed offer will not send an offer acceptance email. An offer via the API is considered as a completed offer if it contains the \"contract_date\" parameter.</p>\n<p><strong>Body Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Mandatory</th>\n<th>Possible Value(s)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>transaction_type</td>\n<td>string</td>\n<td>Y</td>\n<td>offer</td>\n<td></td>\n</tr>\n<tr>\n<td>connection_postcode</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Connection postcode</td>\n</tr>\n<tr>\n<td>connection_housenumber</td>\n<td>integer</td>\n<td>Y</td>\n<td></td>\n<td>Connection house number</td>\n</tr>\n<tr>\n<td>connection_suffix</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Connection house number extension</td>\n</tr>\n<tr>\n<td>connection_streetname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Connection street name</td>\n</tr>\n<tr>\n<td>connection_city</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Connection city</td>\n</tr>\n<tr>\n<td>postcode</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence postcode</td>\n</tr>\n<tr>\n<td>housenumber</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence house number</td>\n</tr>\n<tr>\n<td>suffix</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Correspondence house number extension</td>\n</tr>\n<tr>\n<td>streetname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence street name</td>\n</tr>\n<tr>\n<td>city</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence city</td>\n</tr>\n<tr>\n<td>gender</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>firstname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>lastname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>birthdate</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>DOB in format dd-mm-yyyy</td>\n</tr>\n<tr>\n<td>email</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>phone</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>iban</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required according to flow settings</td>\n</tr>\n<tr>\n<td>iban_holder</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required according to flow settings</td>\n</tr>\n<tr>\n<td>sale_channel</td>\n<td>string</td>\n<td>N</td>\n<td>'d2d', 'retail', 'telemarketing', 'online', 'f2f'</td>\n<td></td>\n</tr>\n<tr>\n<td>product_id</td>\n<td>integer</td>\n<td>Y</td>\n<td></td>\n<td>ID of product</td>\n</tr>\n<tr>\n<td>business</td>\n<td>integer</td>\n<td>Y</td>\n<td>1, 0</td>\n<td>1 = business, 0 = consumer</td>\n</tr>\n<tr>\n<td>contact_person</td>\n<td>string</td>\n<td>Y, if business = 1</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>company_name</td>\n<td>string</td>\n<td>Y, if business = 1</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>company_coc</td>\n<td>string</td>\n<td>Y, if business = 1</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>company_vat</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>If business = 1, Required according to flow settings</td>\n</tr>\n<tr>\n<td>contract_date</td>\n<td>date</td>\n<td>N</td>\n<td></td>\n<td>In DD-MM-YYYY format. If not empty, then signifies that it is a completed offer.</td>\n</tr>\n<tr>\n<td>contract_pdf</td>\n<td>array</td>\n<td>N</td>\n<td></td>\n<td>Required if contract_date is not empty. Array expects 3 keys. First one is \"content\", which is the Base64 string of the contract pdf. Second one is \"extension\", which should always be 'pdf'. Third one is \"created_at\", which is the file created date time in \"YYYY-mm-dd hh:mm:ss\" format</td>\n</tr>\n<tr>\n<td>signature</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required based on flow settings, Base64 encoded string of image</td>\n</tr>\n<tr>\n<td>questionData</td>\n<td>array</td>\n<td>Y</td>\n<td></td>\n<td>Product question identifiers along with corresponding answers</td>\n</tr>\n<tr>\n<td>agreements</td>\n<td>array</td>\n<td>Y</td>\n<td></td>\n<td>Agreement identifiers with answer as \"1\" for accepted agreements</td>\n</tr>\n<tr>\n<td>related_products</td>\n<td>array</td>\n<td>Y</td>\n<td></td>\n<td>Array of list related product ids selected in the sale</td>\n</tr>\n<tr>\n<td>initial_user_firstname</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>The first name of the user who did the sale</td>\n</tr>\n<tr>\n<td>initial_user_lastname</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>The last name of the user who did the sale</td>\n</tr>\n<tr>\n<td>initial_organisation_name</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>The name of the organisation which did the sale</td>\n</tr>\n<tr>\n<td>initial_created_at</td>\n<td>datetime</td>\n<td>N</td>\n<td></td>\n<td>In YYYY-mm-dd hh:mm:ss format. The date and time on which the sale was originally created</td>\n</tr>\n<tr>\n<td>external_reference</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>An order reference identifier that can be used by the API partners</td>\n</tr>\n<tr>\n<td>relation_id</td>\n<td>integer</td>\n<td>N</td>\n<td></td>\n<td>The ID of the relation that needs to be linked to the sale. This has to be a valid relation ID that is accessible to the user. If relation_id is not sent, then a new relation will be created and linked to the sale.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","{{domain}}","{{version}}","sales","flow","{{flow_type_identifier}}","{{flow_identifier}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"de402acf-f2da-47de-a9d6-8ce699b3bb47","name":"Create telecom offer","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"transaction_type\": \"offer\",\n    \"postcode\": \"7546MS\",\n    \"housenumber\": \"8\",\n    \"suffix\": null,\n    \"gender\": \"male\",\n    \"firstname\": \"Test\",\n    \"lastname\": \"Test\",\n    \"birthdate\": \"01-01-1990\",\n    \"streetname\": \"Test\",\n    \"city\": \"Test\",\n    \"email\": \"test@salesdock.nl\",\n    \"phone\": \"0610000000\",\n    \"sale_channel\": \"online\",\n    \"product_id\": \"\",\n    \"connection_postcode\": \"7546MS\",\n    \"connection_housenumber\": \"8\",\n    \"connection_suffix\": null,\n    \"connection_streetname\": \"Test\",\n    \"connection_city\": \"Test\",\n    \"business\": \"0\",\n    \"questionData\": {\n        \"inhuizing\": \"Ja\",\n        \"datum-inhuizing\": \"2020-03-01\",\n        \"ingangsdatum\": \"2020-03-01\",\n        \"overstaptest_switchdate_option\": \"Zo snel als mogelijk\",\n        \"overstaptest\": \"Nee\",\n        \"file-question\": [\n            {\n                \"name\": \"Image\",\n                \"content\": \"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNk+M9QDwADhgGAWjR9awAAAABJRU5ErkJggg==\",\n                \"extension\": \"png\"\n            }\n        ]\n    },\n    \"agreements\": {\n        \"privay-statement\": \"1\"\n    },\n    \"related_products\": {\n        \"0\": {\n            \"product_id\": \"\"\n        },\n        \"1\": {\n            \"product_id\": \"\"\n        },\n        \"2\": {\n            \"product_id\": \"\"\n        }\n    },\n    \"initial_user_firstname\": \"John\",\n    \"initial_user_lastname\": \"Doe\",\n    \"initial_organisation_name\": \"Test Organisation\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/sales/flow/{{flow_type_identifier}}/{{flow_identifier}}"},"status":"201Created","_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 21 Feb 2020 13:50:30 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Security-Policy","value":"default-src 'none'; base-uri 'none'; connect-src 'self'; font-src 'self' https://fonts.gstatic.com data: https:; form-action 'self'; frame-ancestors 'self'; frame-src 'self'; img-src 'self' http://json-services.nutselect.nl https://files.delta.nl https://www.westbespaarcoach.nl data: https:; media-src 'none'; object-src 'self'; script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com"},{"key":"Feature-Policy","value":"accelerometer 'self'; ambient-light-sensor 'self'; autoplay 'self'; camera 'self'; display-capture 'self'; document-domain *; encrypted-media 'self'; fullscreen 'self'; geolocation 'self'; gyroscope 'self'; magnetometer 'self'; microphone 'self'; midi 'self'; payment 'self'; picture-in-picture *; speaker 'self'; sync-xhr *; usb 'self'; vr 'self'"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"5689308b6c39d5bb-BOM"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"sale_id\": 261290\n    },\n    \"message\": \"Sale created successfully.\"\n}"}],"_postman_id":"e6b7a989-bd08-4db4-b55e-72a639fe00bb"},{"name":"Create telecom order","id":"97587257-ae3e-44aa-a6fe-284642a9dcd0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{api_token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"transaction_type\": \"order\",\n    \"postcode\": \"7546MS\",\n    \"housenumber\": \"8\",\n    \"suffix\": null,\n    \"gender\": \"male\",\n    \"firstname\": \"Test\",\n    \"lastname\": \"Test\",\n    \"birthdate\": \"01-01-1990\",\n    \"streetname\": \"Test\",\n    \"city\": \"Test\",\n    \"email\": \"test@salesdock.nl\",\n    \"phone\": \"0610000000\",\n    \"sale_channel\": \"online\",\n    \"product_id\": \"\",\n    \"connection_postcode\": \"7546MS\",\n    \"connection_housenumber\": \"8\",\n    \"connection_suffix\": null,\n    \"connection_streetname\": \"Test\",\n    \"connection_city\": \"Test\",\n    \"business\": \"0\",\n    \"questionData\": {\n        \"inhuizing\": \"Ja\",\n        \"datum-inhuizing\": \"2020-03-01\",\n        \"ingangsdatum\": \"2020-03-01\",\n        \"overstaptest_switchdate_option\": \"Zo snel als mogelijk\",\n        \"overstaptest\": \"Nee\"\n    },\n    \"agreements\": {\n        \"privay-statement\": \"1\"\n    },\n    \"related_products\": {\n        \"0\": {\n            \"product_id\": \"\"\n        },\n        \"1\": {\n            \"product_id\": \"\"\n        },\n        \"2\": {\n            \"product_id\": \"\"\n        }\n    },\n    \"initial_user_firstname\": \"John\",\n    \"initial_user_lastname\": \"Doe\",\n    \"initial_organisation_name\": \"Test Organisation\"\n}"},"url":"{{url}}/api/{{domain}}/{{version}}/sales/flow/{{flow_type_identifier}}/{{flow_identifier}}","description":"<p>Create order for telecom flow.</p>\n<p>Replace {{flow_dentifier}} with the identifier of the flow.</p>\n<p>Replace {{flow_type_identifier}} with the identifier of the flow type.</p>\n<p>In the questionData object, the product question identifiers needed for the flow should be sent along with the corresponding answers</p>\n<p>In the agreements object, the agreement identifiers needed for the flow should be sent along with value \"1\" for accepted agreements.</p>\n<h4 id=\"completed-and-uncompleted-orders\">Completed and uncompleted orders</h4>\n<p>The API endpoint can be used to create both completed and uncompleted orders. Uncompleted orders result in a new contract pdf being generated and also a confirmation/verification email being sent to customers based on flow settings. A completed order will not send an email. An order via the API is considered as a completed order if it contains the \"contract_date\" parameter.</p>\n<p><strong>Body Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Mandatory</th>\n<th>Possible Value(s)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>transaction_type</td>\n<td>string</td>\n<td>Y</td>\n<td>order</td>\n<td></td>\n</tr>\n<tr>\n<td>connection_postcode</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Connection postcode</td>\n</tr>\n<tr>\n<td>connection_housenumber</td>\n<td>integer</td>\n<td>Y</td>\n<td></td>\n<td>Connection house number</td>\n</tr>\n<tr>\n<td>connection_suffix</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Connection house number extension</td>\n</tr>\n<tr>\n<td>connection_streetname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Connection street name</td>\n</tr>\n<tr>\n<td>connection_city</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Connection city</td>\n</tr>\n<tr>\n<td>postcode</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Contractant postcode</td>\n</tr>\n<tr>\n<td>housenumber</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence house number</td>\n</tr>\n<tr>\n<td>suffix</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Correspondence house number extension</td>\n</tr>\n<tr>\n<td>streetname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence street name</td>\n</tr>\n<tr>\n<td>city</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence city</td>\n</tr>\n<tr>\n<td>gender</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>firstname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>lastname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>birthdate</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>DOB in format dd-mm-yyyy</td>\n</tr>\n<tr>\n<td>email</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>phone</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>iban</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required according to flow settings</td>\n</tr>\n<tr>\n<td>iban_holder</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required according to flow settings</td>\n</tr>\n<tr>\n<td>sale_channel</td>\n<td>string</td>\n<td>N</td>\n<td>'d2d', 'retail', 'telemarketing', 'online', 'f2f'</td>\n<td></td>\n</tr>\n<tr>\n<td>product_id</td>\n<td>integer</td>\n<td>Y</td>\n<td></td>\n<td>ID of product</td>\n</tr>\n<tr>\n<td>business</td>\n<td>integer</td>\n<td>Y</td>\n<td>1, 0</td>\n<td>1 = business, 0 = consumer</td>\n</tr>\n<tr>\n<td>contact_person</td>\n<td>string</td>\n<td>Y, if business = 1</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>company_name</td>\n<td>string</td>\n<td>Y, if business = 1</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>company_coc</td>\n<td>string</td>\n<td>Y, if business = 1</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>company_vat</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>If business = 1, Required according to flow settings</td>\n</tr>\n<tr>\n<td>contract_date</td>\n<td>date</td>\n<td>N</td>\n<td></td>\n<td>In DD-MM-YYYY format. If not empty, then signifies that it is a completed order.</td>\n</tr>\n<tr>\n<td>contract_pdf</td>\n<td>array</td>\n<td>N</td>\n<td></td>\n<td>Required if contract_date is not empty. Array expects 3 keys. First one is \"content\", which is the Base64 string of the contract pdf. Second one is \"extension\", which should always be 'pdf'. Third one is \"created_at\", which is the file created date time in \"YYYY-mm-dd hh:mm:ss\" format</td>\n</tr>\n<tr>\n<td>signature</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required based on flow settings, Base64 encoded string of image</td>\n</tr>\n<tr>\n<td>questionData</td>\n<td>array</td>\n<td>Y</td>\n<td></td>\n<td>Product question identifiers along with corresponding answers</td>\n</tr>\n<tr>\n<td>agreements</td>\n<td>array</td>\n<td>Y</td>\n<td></td>\n<td>Agreement identifiers with answer as \"1\" for accepted agreements</td>\n</tr>\n<tr>\n<td>related_products</td>\n<td>array</td>\n<td>Y</td>\n<td></td>\n<td>Array of list related product ids selected in the sale</td>\n</tr>\n<tr>\n<td>initial_user_firstname</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>The first name of the user who did the sale</td>\n</tr>\n<tr>\n<td>initial_user_lastname</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>The last name of the user who did the sale</td>\n</tr>\n<tr>\n<td>initial_organisation_name</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>The name of the organisation which did the sale</td>\n</tr>\n<tr>\n<td>initial_created_at</td>\n<td>datetime</td>\n<td>N</td>\n<td></td>\n<td>In YYYY-mm-dd hh:mm:ss format. The date and time on which the sale was originally created. If the sale is completed, then this date time (if not empty), is considered as the contract signed date.</td>\n</tr>\n<tr>\n<td>external_reference</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>An order reference identifier that can be used by the API partners</td>\n</tr>\n<tr>\n<td>relation_id</td>\n<td>integer</td>\n<td>N</td>\n<td></td>\n<td>The ID of the relation that needs to be linked to the sale. This has to be a valid relation ID that is accessible to the user. If relation_id is not sent, then a new relation will be created and linked to the sale.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","{{domain}}","{{version}}","sales","flow","{{flow_type_identifier}}","{{flow_identifier}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"e3e9c0e6-a3cd-43be-9493-1ca450d6ae75","name":"Create telecom order - Invalid Product","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{api_token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"transaction_type\": \"order\",\n    \"postcode\": \"7546MS\",\n    \"housenumber\": \"8\",\n    \"suffix\": null,\n    \"gender\": \"male\",\n    \"firstname\": \"Test\",\n    \"lastname\": \"Test\",\n    \"birthdate\": \"01-01-1990\",\n    \"streetname\": \"Test\",\n    \"city\": \"Test\",\n    \"email\": \"test@salesdock.nl\",\n    \"phone\": \"0610000000\",\n    \"sale_channel\": \"online\",\n    \"product_id\": \"\",\n    \"connection_postcode\": \"7546MS\",\n    \"connection_housenumber\": \"8\",\n    \"connection_suffix\": null,\n    \"connection_streetname\": \"Test\",\n    \"connection_city\": \"Test\",\n    \"business\": \"0\",\n    \"questionData\": {\n        \"inhuizing\": \"Ja\",\n        \"datum-inhuizing\": \"2020-03-01\",\n        \"ingangsdatum\": \"2020-03-01\",\n        \"overstaptest_switchdate_option\": \"Zo snel als mogelijk\",\n        \"overstaptest\": \"Nee\"\n    },\n    \"agreements\": {\n        \"privay-statement\": \"1\"\n    },\n    \"related_products\": {\n        \"0\": {\n            \"product_id\": \"\"\n        },\n        \"1\": {\n            \"product_id\": \"\"\n        },\n        \"2\": {\n            \"product_id\": \"\"\n        }\n    },\n    \"initial_user_firstname\": \"John\",\n    \"initial_user_lastname\": \"Doe\",\n    \"initial_organisation_name\": \"Test Organisation\"\n}"},"url":"{{url}}/api/{{domain}}/{{version}}/sales/flow/{{flow_type_identifier}}/{{flow_identifier}}"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 21 Feb 2020 13:51:21 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Security-Policy","value":"default-src 'none'; base-uri 'none'; connect-src 'self'; font-src 'self' https://fonts.gstatic.com data: https:; form-action 'self'; frame-ancestors 'self'; frame-src 'self'; img-src 'self' http://json-services.nutselect.nl https://files.delta.nl https://www.westbespaarcoach.nl data: https:; media-src 'none'; object-src 'self'; script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com"},{"key":"Feature-Policy","value":"accelerometer 'self'; ambient-light-sensor 'self'; autoplay 'self'; camera 'self'; display-capture 'self'; document-domain *; encrypted-media 'self'; fullscreen 'self'; geolocation 'self'; gyroscope 'self'; magnetometer 'self'; microphone 'self'; midi 'self'; payment 'self'; picture-in-picture *; speaker 'self'; sync-xhr *; usb 'self'; vr 'self'"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"568931c74b9bd5bb-BOM"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"message\": \"Invalid product\",\n    \"code\": 400\n}"}],"_postman_id":"97587257-ae3e-44aa-a6fe-284642a9dcd0"},{"name":"Update telecom proposal","id":"29a8cdc0-e12d-4269-9071-22293a1b1a0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"customer\": {\n        \"business\": false,\n        \"gender\": \"male\",\n        \"firstname\": \"Jane\",\n        \"lastname\": \"Doe\",\n        \"birthdate\": null,\n        \"email\": \"test@salesdock.nl\",\n        \"phone\": \"0611111111\",\n        \"company_name\": \"Test\",\n        \"contact_person\": \"Man\",\n        \"coc\": \"12345678\",\n        \"vat\": \"NL123456789B01\",\n        \"address\": {\n            \"postcode\": \"7511PG\",\n            \"housenumber\": \"9\",\n            \"suffix\": \"15\",\n            \"streetname\": \"Neptunusstraat\",\n            \"city\": \"Enschede\"\n        },\n        \"correspondence_address\": {\n            \"postcode\": \"7511PG\",\n            \"housenumber\": \"8\",\n            \"suffix\": \"A\",\n            \"streetname\": \"Neptunusstraat\",\n            \"city\": \"Enschede\"\n        }\n    },\n    \"product_questions\": {\n        \"delete\": [\n            \"test-2\",\n            \"betaalwijze\"\n        ],\n        \"upsert\": {\n            \"overstapdatum_switchdate_option\": \"Anders\",\n            \"overstapdatum\": \"05-06-2021\",\n            \"betaalwijze\": \"Factuur\",\n            \"payment-address\": \"Test payment\"\n        }\n    },\n    \"agreements\": {\n        \"delete\": [],\n        \"upsert\": {\n            \"info-bnnvara\": \"1\",\n            \"telefonisch-benaderen\": \"1\",\n            \"algemene-voorwaarden\": \"1\",\n            \"annulering\": \"1\"\n        }\n    },\n    \"flow_telecom\": {\n        \"products\": {\n            \"delete\": [\n                35,\n                20\n            ],\n            \"upsert\": [\n                15,\n                10,\n                12\n            ]\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/proposal/{{sale_id}}","description":"<p>This endpoint can be used to update the details of a sale already created. The endpoint is available for both admin and agent users.</p>\n<p>This endpoint can currently be only used to edit sales of specific flow types and also sales that are not:</p>\n<ul>\n<li><p>cancelled</p>\n</li>\n<li><p>sent</p>\n</li>\n<li><p>anonymised</p>\n</li>\n<li><p>locked</p>\n</li>\n<li><p>Salesdock integration sales</p>\n</li>\n</ul>\n<p>The endpoint accepts mainly the following:</p>\n<ol>\n<li><p>customer - This object contains all ther personal and address information of the customer.</p>\n</li>\n<li><p>product_questions - This object contains the product questions of the sale. A \"delete\" array passsed in this with product question identifiers, will remove existing product questions from the sale and an \"upsert\" array will insert/update product questions into the sale.</p>\n</li>\n<li><p>agreements - Agreemeent data need to be sent for orders. A \"delete\" array passsed in this with agreement idnetifiers, will remove existing agreements from the sale and an \"upsert\" array will insert/update agreements into the sale.</p>\n</li>\n<li><p>flow_telecom - This array will contain telecom flow specific information. Right now, it accepts one array called \"products\". These accept the add on products of the sale that can be modified. A sample json object os below</p>\n</li>\n</ol>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"products\": {\n        \"delete\": [\n                35,\n                20\n            ]\n        },\n        \"upsert\": [\n                12,\n                15\n            ]\n        }\n    }\n}\n\n</code></pre>\n<p>In the above request, the products in the delete array will be inserted and those in the upsert array will be updated or inserted.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","proposal","{{sale_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"6d656af6-b7bf-45cd-9225-208865bdc003","name":"Update telecom sale proposal","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"customer\": {\n        \"business\": false,\n        \"gender\": \"male\",\n        \"firstname\": \"Jane\",\n        \"lastname\": \"Doe\",\n        \"birthdate\": null,\n        \"email\": \"test@salesdock.nl\",\n        \"phone\": \"0611111111\",\n        \"company_name\": \"Test\",\n        \"contact_person\": \"Man\",\n        \"coc\": \"12345678\",\n        \"vat\": \"NL123456789B01\",\n        \"address\": {\n            \"postcode\": \"7511PG\",\n            \"housenumber\": \"9\",\n            \"suffix\": \"15\",\n            \"streetname\": \"Neptunusstraat\",\n            \"city\": \"Enschede\"\n        },\n        \"correspondence_address\": {\n            \"postcode\": \"7511PG\",\n            \"housenumber\": \"8\",\n            \"suffix\": \"A\",\n            \"streetname\": \"Neptunusstraat\",\n            \"city\": \"Enschede\"\n        }\n    },\n    \"product_questions\": {\n        \"delete\": [\n            \"test-2\",\n            \"betaalwijze\"\n        ],\n        \"upsert\": {\n            \"overstapdatum_switchdate_option\": \"Anders\",\n            \"overstapdatum\": \"05-06-2021\",\n            \"betaalwijze\": \"Factuur\",\n            \"payment-address\": \"Test payment\"\n        }\n    },\n    \"agreements\": {\n        \"delete\": [],\n        \"upsert\": {\n            \"info-bnnvara\": \"1\",\n            \"telefonisch-benaderen\": \"1\",\n            \"algemene-voorwaarden\": \"1\",\n            \"annulering\": \"1\"\n        }\n    },\n    \"flow_telecom\": {\n        \"products\": {\n            \"delete\": [\n                35,\n                20\n            ],\n            \"upsert\": [\n                15,\n                10,\n                12\n            ]\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/proposal/{{sale_id}}"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 04 Dec 2023 10:13:42 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"120"},{"key":"X-RateLimit-Remaining","value":"119"},{"key":"x-robots-tag","value":"none"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://*.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Cross-Origin-Embedder-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Opener-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=WWYMhq4phqTr4R4ApAhtd2ZuR2ltYk%2FaL4PwWGOlGVoA7q9qVARHLyR7mmF4fWeIa%2BmRAufypWAsbTlv5B%2B3OGOLwtJV4bthSNw%2Bjj9fzRo9svCCJvUGl%2Bg8qsisiNQHSFE%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"83034737ba3e0b4e-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"sale_id\": 390\n    },\n    \"message\": \"Sale updated successfully\"\n}"}],"_postman_id":"29a8cdc0-e12d-4269-9071-22293a1b1a0f"},{"name":"Update telecom finalized sale","id":"568aac65-f84b-4cf2-90b1-8595f9eac6dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"customer\": {\n        \"business\": false,\n        \"gender\": \"male\",\n        \"firstname\": \"Jane\",\n        \"lastname\": \"Doe\",\n        \"birthdate\": null,\n        \"email\": \"test@salesdock.nl\",\n        \"phone\": \"0611111111\",\n        \"company_name\": \"Test\",\n        \"contact_person\": \"Man\",\n        \"coc\": \"12345678\",\n        \"vat\": \"NL123456789B01\",\n        \"address\": {\n            \"postcode\": \"7511PG\",\n            \"housenumber\": \"9\",\n            \"suffix\": \"15\",\n            \"streetname\": \"Neptunusstraat\",\n            \"city\": \"Enschede\"\n        },\n        \"correspondence_address\": {\n            \"postcode\": \"7511PG\",\n            \"housenumber\": \"8\",\n            \"suffix\": \"A\",\n            \"streetname\": \"Neptunusstraat\",\n            \"city\": \"Enschede\"\n        }\n    },\n    \"product_questions\": {\n        \"delete\": [\n            \"test-2\",\n            \"betaalwijze\"\n        ],\n        \"upsert\": {\n            \"overstapdatum_switchdate_option\": \"Anders\",\n            \"overstapdatum\": \"05-06-2021\",\n            \"betaalwijze\": \"Factuur\",\n            \"payment-address\": \"Test payment\"\n        }\n    },\n    \"agreements\": {\n        \"delete\": [],\n        \"upsert\": {\n            \"info-bnnvara\": \"1\",\n            \"telefonisch-benaderen\": \"1\",\n            \"algemene-voorwaarden\": \"1\",\n            \"annulering\": \"1\"\n        }\n    },\n    \"flow_telecom\": {\n        \"products\": {\n            \"delete\": [\n                35,\n                20\n            ],\n            \"upsert\": [\n                15,\n                10,\n                12\n            ]\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/account/sales/{{sale_id}}","description":"<p>This endpoint can be used to update the details of a sale that is finalized. So only accepted offers and direct orders can be updated with this API.</p>\n<p>The confirmation PDF is not regenerated once a sale is updated via this endpoint.</p>\n<p>This endpoint is only available for admin users.</p>\n<p>This endpoint can currently be only used to edit sales of specific flow types and also sales that are not:</p>\n<ul>\n<li><p>cancelled</p>\n</li>\n<li><p>sent</p>\n</li>\n<li><p>anonymised</p>\n</li>\n<li><p>locked</p>\n</li>\n<li><p>Salesdock integration sales</p>\n</li>\n</ul>\n<p>The endpoint accepts mainly the following:</p>\n<ol>\n<li><p>customer - This object contains all ther personal and address information of the customer.</p>\n</li>\n<li><p>product_questions - This object contains the product questions of the sale. A \"delete\" array passsed in this with product question identifiers, will remove existing product questions from the sale and an \"upsert\" array will insert/update product questions into the sale.</p>\n</li>\n<li><p>agreements - Agreemeent data need to be sent for orders. A \"delete\" array passsed in this with agreement idnetifiers, will remove existing agreements from the sale and an \"upsert\" array will insert/update agreements into the sale.</p>\n</li>\n<li><p>flow_telecom - This array will contain telecom flow specific information. Right now, it accepts one array called \"products\". These accept the add on products of the sale that can be modified. A sample json object os below</p>\n</li>\n</ol>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"products\": {\n        \"delete\": [\n                35,\n                20\n            ]\n        },\n        \"upsert\": [\n                12,\n                15\n            ]\n        }\n    }\n}\n\n</code></pre>\n<p>In the above request, the products in the delete array will be inserted and those in the upsert array will be updated or inserted.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","sales","{{sale_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"2d88d841-093e-4537-817b-4d4a66e1fa63","name":"Update telecom finalized sale","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"customer\": {\n        \"business\": false,\n        \"gender\": \"male\",\n        \"firstname\": \"Jane\",\n        \"lastname\": \"Doe\",\n        \"birthdate\": null,\n        \"email\": \"test@salesdock.nl\",\n        \"phone\": \"0611111111\",\n        \"company_name\": \"Test\",\n        \"contact_person\": \"Man\",\n        \"coc\": \"12345678\",\n        \"vat\": \"NL123456789B01\",\n        \"address\": {\n            \"postcode\": \"7511PG\",\n            \"housenumber\": \"9\",\n            \"suffix\": \"15\",\n            \"streetname\": \"Neptunusstraat\",\n            \"city\": \"Enschede\"\n        },\n        \"correspondence_address\": {\n            \"postcode\": \"7511PG\",\n            \"housenumber\": \"8\",\n            \"suffix\": \"A\",\n            \"streetname\": \"Neptunusstraat\",\n            \"city\": \"Enschede\"\n        }\n    },\n    \"product_questions\": {\n        \"delete\": [\n            \"test-2\",\n            \"betaalwijze\"\n        ],\n        \"upsert\": {\n            \"overstapdatum_switchdate_option\": \"Anders\",\n            \"overstapdatum\": \"05-06-2021\",\n            \"betaalwijze\": \"Factuur\",\n            \"payment-address\": \"Test payment\"\n        }\n    },\n    \"agreements\": {\n        \"delete\": [],\n        \"upsert\": {\n            \"info-bnnvara\": \"1\",\n            \"telefonisch-benaderen\": \"1\",\n            \"algemene-voorwaarden\": \"1\",\n            \"annulering\": \"1\"\n        }\n    },\n    \"flow_telecom\": {\n        \"products\": {\n            \"delete\": [\n                35,\n                20\n            ],\n            \"upsert\": [\n                15,\n                10,\n                12\n            ]\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/account/sales/{{sale_id}}"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 04 Dec 2023 10:13:42 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"120"},{"key":"X-RateLimit-Remaining","value":"119"},{"key":"x-robots-tag","value":"none"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://*.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Cross-Origin-Embedder-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Opener-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=WWYMhq4phqTr4R4ApAhtd2ZuR2ltYk%2FaL4PwWGOlGVoA7q9qVARHLyR7mmF4fWeIa%2BmRAufypWAsbTlv5B%2B3OGOLwtJV4bthSNw%2Bjj9fzRo9svCCJvUGl%2Bg8qsisiNQHSFE%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"83034737ba3e0b4e-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"sale_id\": 390\n    },\n    \"message\": \"Sale updated successfully\"\n}"}],"_postman_id":"568aac65-f84b-4cf2-90b1-8595f9eac6dc"},{"name":"Telecom compare","id":"215979dc-910a-4bb8-90de-99969537fccc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"business\": \"0\",\n    \"postcode\": \"7511PG\",\n    \"housenumber\": \"9\",\n    \"housenumber_suffix\": null,\n    \"flow_identifier\": \"alles-in-1\",\n    \"customfield_filters\": {\n        \"cf-1\": null,\n        \"cf-2\": \"B\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/v1/telecom/compare","description":"<p>This endpoint is used to retrieve the possible telcom packages that the user has access to.</p>\n<p><strong>Body Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Mandatory</th>\n<th>Possible Value(s)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>postcode</td>\n<td>number</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>housenumber</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>suffix</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Suffix of housenumber</td>\n</tr>\n<tr>\n<td>business</td>\n<td>string</td>\n<td>Y</td>\n<td>1,0</td>\n<td>Type of sales. business=1, consumer=0</td>\n</tr>\n<tr>\n<td>flow_identifier</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>The identifier of the flow</td>\n</tr>\n<tr>\n<td>customfield_filters</td>\n<td>array</td>\n<td>N</td>\n<td></td>\n<td>Array of custom fields with identifier and value (key value pair). Only the options with correct custom field values will be returned if this is sent</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","{{domain}}","v1","telecom","compare"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"8d688389-4487-4e1c-9567-82d08116b300","name":"Telecom compare","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"business\": \"0\",\n    \"postcode\": \"7511PG\",\n    \"housenumber\": \"9\",\n    \"housenumber_suffix\": null,\n    \"flow_identifier\": \"alles-in-1\",\n    \"customfield_filters\": {\n        \"customfield-filter-identifier-1\": \"customfield-filter-value-1\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/v1/telecom/compare"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 Apr 2024 15:09:31 GMT"},{"key":"Server","value":"Apache/2.4.54 (Unix) OpenSSL/1.1.1w PHP/8.2.11"},{"key":"Vary","value":"Authorization,Origin"},{"key":"X-Powered-By","value":"PHP/8.2.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"phpdebugbar-id","value":"X132f16b4f79326e03f6fc1e81b629b6f"},{"key":"x-robots-tag","value":"none"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com https://fonts.bunny.net; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://*.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io https://*.salesdock.nl; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Cross-Origin-Embedder-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Opener-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"address\": {\n            \"postcode\": \"7511PG\",\n            \"housenumber\": \"9\",\n            \"suffix\": null,\n            \"streetname\": \"Willem Wilminkplein\",\n            \"city\": \"Enschede\"\n        },\n        \"bandwidth\": [\n            {\n                \"supplier\": {\n                    \"id\": 42,\n                    \"name\": \"NLEx\",\n                    \"expected_maximum_download_speed\": 4000000,\n                    \"expected_maximum_upload_speed\": 4000000\n                }\n            },\n            {\n                \"supplier\": {\n                    \"id\": 47,\n                    \"name\": \"Delta\",\n                    \"expected_maximum_download_speed\": 4000000,\n                    \"expected_maximum_upload_speed\": 4000000\n                }\n            },\n            {\n                \"supplier\": {\n                    \"id\": 96,\n                    \"name\": \"Ziggo Zakelijk\",\n                    \"expected_maximum_download_speed\": 1000000,\n                    \"expected_maximum_upload_speed\": 1000000\n                }\n            }\n        ],\n        \"products\": [\n            {\n                \"id\": 431,\n                \"name\": \"NLEx Internet, TV 20 Mb/s\",\n                \"identifier\": \"nlex-internet-tv-20-mbs\",\n                \"type\": {\n                    \"identifier\": \"telecom_3p\",\n                    \"name\": \"Telecom - Alles-in-1\"\n                },\n                \"usp\": \"Down: 20 Mb/s\\r\\nUp: 1 Mb/s\\r\\nTechniek: ADSL\\r\\nContractduur: 1 jaar\",\n                \"supplier\": {\n                    \"id\": 42,\n                    \"identifier\": \"nlex\",\n                    \"name\": \"NLEx\"\n                },\n                \"mandatory_products\": [\n                    51719,\n                    51720\n                ],\n                \"price\": {\n                    \"price\": 250,\n                    \"price_action\": null,\n                    \"price_monthly\": 32.45,\n                    \"price_monthly_action\": 29.58,\n                    \"price_monthly_action_type\": null,\n                    \"price_monthly_action_value\": 9\n                }\n            },\n            {\n                \"id\": 27955,\n                \"name\": \"Test Delta\",\n                \"identifier\": \"test-delta\",\n                \"type\": {\n                    \"identifier\": \"telecom_3p\",\n                    \"name\": \"Telecom - Alles-in-1\"\n                },\n                \"usp\": \"\",\n                \"supplier\": {\n                    \"id\": 47,\n                    \"identifier\": \"delta\",\n                    \"name\": \"Delta\"\n                },\n                \"mandatory_products\": [],\n                \"price\": {\n                    \"price\": null,\n                    \"price_action\": null,\n                    \"price_monthly\": 45,\n                    \"price_monthly_action\": 12.5,\n                    \"price_monthly_action_type\": null,\n                    \"price_monthly_action_value\": 3\n                }\n            },\n            {\n                \"id\": 51292,\n                \"name\": \"Testfdasfdasfdas\",\n                \"identifier\": \"testfdasfdasfdas\",\n                \"type\": {\n                    \"identifier\": \"telecom_1p\",\n                    \"name\": \"Telecom - Internet\"\n                },\n                \"usp\": \"\",\n                \"supplier\": {\n                    \"id\": 96,\n                    \"identifier\": \"ziggo-zakelijk\",\n                    \"name\": \"Ziggo Zakelijk\"\n                },\n                \"mandatory_products\": [],\n                \"price\": {\n                    \"price\": null,\n                    \"price_action\": null,\n                    \"price_monthly\": null,\n                    \"price_monthly_action\": null,\n                    \"price_monthly_action_type\": null,\n                    \"price_monthly_action_value\": null\n                }\n            }\n        ],\n        \"options\": [\n            {\n                \"id\": 3316,\n                \"name\": \"TV Delta\",\n                \"identifier\": \"tv-delta\",\n                \"type\": {\n                    \"identifier\": \"telecom_tv_option\",\n                    \"name\": \"TV options\"\n                },\n                \"usp\": \"\",\n                \"associated_suppliers\": [\n                    \"40\",\n                    \"42\",\n                    \"44\"\n                ],\n                \"associated_main_products\": [],\n                \"incompatible_products\": [],\n                \"price\": {\n                    \"price\": 20,\n                    \"price_action\": null,\n                    \"price_monthly\": 20,\n                    \"price_monthly_action\": 100,\n                    \"price_monthly_action_type\": null,\n                    \"price_monthly_action_value\": 3\n                }\n            },\n            {\n                \"id\": 3522,\n                \"name\": \"Film1\",\n                \"identifier\": \"film1\",\n                \"type\": {\n                    \"identifier\": \"telecom_tv_package\",\n                    \"name\": \"TV extra channels\"\n                },\n                \"usp\": \"\",\n                \"associated_suppliers\": [],\n                \"associated_main_products\": [],\n                \"incompatible_products\": [],\n                \"price\": {\n                    \"price\": 120,\n                    \"price_action\": 240,\n                    \"price_monthly\": 15,\n                    \"price_monthly_action\": 10,\n                    \"price_monthly_action_type\": null,\n                    \"price_monthly_action_value\": 3\n                }\n            },\n            {\n                \"id\": 3523,\n                \"name\": \"Film2\",\n                \"identifier\": \"film2\",\n                \"type\": {\n                    \"identifier\": \"telecom_tv_package\",\n                    \"name\": \"TV extra channels\"\n                },\n                \"usp\": \"\",\n                \"associated_suppliers\": [],\n                \"associated_main_products\": [],\n                \"incompatible_products\": [\n                    \"3522\"\n                ],\n                \"price\": {\n                    \"price\": null,\n                    \"price_action\": null,\n                    \"price_monthly\": null,\n                    \"price_monthly_action\": null,\n                    \"price_monthly_action_type\": null,\n                    \"price_monthly_action_value\": null\n                }\n            },\n            {\n                \"id\": 3610,\n                \"name\": \"Hosted telefooncentrale\",\n                \"identifier\": \"-hosted-telefooncentrale\",\n                \"type\": {\n                    \"identifier\": \"telecom_phone_option\",\n                    \"name\": \"Telephone\"\n                },\n                \"usp\": \"\",\n                \"associated_suppliers\": [],\n                \"associated_main_products\": [],\n                \"incompatible_products\": [],\n                \"price\": {\n                    \"price\": null,\n                    \"price_action\": null,\n                    \"price_monthly\": 10,\n                    \"price_monthly_action\": null,\n                    \"price_monthly_action_type\": null,\n                    \"price_monthly_action_value\": null\n                }\n            },\n            {\n                \"id\": 51721,\n                \"name\": \"Discount 50%\",\n                \"identifier\": \"discount-50\",\n                \"type\": {\n                    \"identifier\": \"telecom_discount_option\",\n                    \"name\": \"Discount\"\n                },\n                \"usp\": \"\",\n                \"associated_suppliers\": [\n                    \"40\",\n                    \"42\",\n                    \"44\"\n                ],\n                \"associated_main_products\": [\n                    \"431\",\n                    \"432\",\n                    \"433\",\n                    \"434\",\n                    \"435\",\n                    \"436\",\n                    \"446\",\n                    \"447\",\n                    \"449\",\n                    \"450\",\n                    \"451\",\n                    \"3608\",\n                    \"3609\",\n                    \"3614\",\n                    \"5377\",\n                    \"5382\",\n                    \"5384\",\n                    \"27955\",\n                    \"38437\",\n                    \"51247\",\n                    \"51292\",\n                    \"51295\"\n                ],\n                \"incompatible_products\": [],\n                \"price\": {\n                    \"price\": null,\n                    \"price_action\": null,\n                    \"price_monthly\": null,\n                    \"price_monthly_action\": null,\n                    \"price_monthly_action_type\": null,\n                    \"price_monthly_action_value\": null\n                }\n            },\n            {\n                \"id\": 27956,\n                \"name\": \"test korting\",\n                \"identifier\": \"test-korting\",\n                \"type\": {\n                    \"identifier\": \"telecom_internet_option\",\n                    \"name\": \"Internet\"\n                },\n                \"usp\": \"\",\n                \"associated_suppliers\": [\n                    \"47\"\n                ],\n                \"associated_main_products\": [],\n                \"incompatible_products\": [],\n                \"price\": {\n                    \"price\": null,\n                    \"price_action\": null,\n                    \"price_monthly\": 5,\n                    \"price_monthly_action\": 0,\n                    \"price_monthly_action_type\": null,\n                    \"price_monthly_action_value\": 15\n                }\n            }\n        ]\n    },\n    \"message\": \"Packages retrieved successfully\"\n}"}],"_postman_id":"215979dc-910a-4bb8-90de-99969537fccc"}],"id":"968a800f-febe-4de0-8a70-3c4e6477c7d8","_postman_id":"968a800f-febe-4de0-8a70-3c4e6477c7d8","description":""},{"name":"Hosted Voice","item":[{"name":"Create hosted voice sale","id":"5a41f069-931a-4c27-97e2-15fc6aeabfe5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"transaction_type\": \"offer\",\n    \"gender\": \"male\",\n    \"firstname\": \"John\",\n    \"lastname\": \"Doe\",\n    \"contact_person\": \"Test\",\n    \"business\": \"1\",\n    \"company_name\": \"Salesdock\",\n    \"company_coc\": \"12312312\",\n    \"iban\": \"NL91ABNA0417164300\",\n    \"iban_holder\": \"Test User\",\n    \"postcode\": \"7546MS\",\n    \"housenumber\": \"8\",\n    \"suffix\": null,\n    \"birthdate\": \"01-01-1990\",\n    \"streetname\": \"Test\",\n    \"city\": \"Test\",\n    \"email\": \"test@salesdock.nl\",\n    \"phone\": \"06100000XX\",\n    \"sale_channel\": \"online\",\n    \"product_id\": \"10963\",\n    \"connection_postcode\": \"7546MS\",\n    \"connection_housenumber\": \"8\",\n    \"connection_suffix\": null,\n    \"connection_streetname\": \"Test\",\n    \"connection_city\": \"Test\",\n    \"includes_internet\": 0,\n    \"questionData\": {\n        \"inhuizing\": \"Ja\",\n        \"datum-inhuizing\": \"2020-03-01\",\n        \"ingangsdatum\": \"2020-03-01\",\n        \"overstaptest_switchdate_option\": \"Zo snel als mogelijk\",\n        \"overstaptest\": \"Nee\"\n    },\n    \"agreements\": {\n        \"privay-statement\": \"1\"\n    },\n    \"related_products\": {\n        \"0\": {\n            \"product_id\": \"10968\"\n        },\n        \"1\": {\n            \"product_id\": \"11093\"\n        },\n        \"2\": {\n            \"product_id\": \"10973\"\n        }\n    },\n    \"initial_user_firstname\": \"John\",\n    \"initial_user_lastname\": \"Doe\",\n    \"initial_organisation_name\": \"Test Organisation\"\n}"},"url":"{{url}}/api/{{domain}}/{{version}}/sales/flow/{{flow_type_identifier}}/{{flow_identifier}}","description":"<p>Hosted voice sales can be created using this endpoint if the Hosted voice app is installed in the account.</p>\n<p>Replace {{flow_dentifier}} with the identifier of the flow.</p>\n<p>Replace {{flow_type_identifier}} with the identifier of the flow type.</p>\n<p>In the questionData object, the product question identifiers needed for the flow should be sent along with the corresponding answers</p>\n<p>In the agreements object, the agreement identifiers needed for the flow should be sent along with value \"1\" for accepted agreements.</p>\n<p>In the related_products object, the addon products can be sent.</p>\n<h4 id=\"completed-and-uncompleted-offers\">Completed and uncompleted offers</h4>\n<p>The API endpoint can be used to create both completed and uncompleted offers. Uncompleted offers result in a new contract pdf being generated and an email being sent to the customer to accept the offer. A completed offer will not send an offer acceptance email. An offer via the API is considered as a completed offer if it contains the \"contract_date\" parameter.</p>\n<h4 id=\"completed-and-uncompleted-orders\">Completed and uncompleted orders</h4>\n<p>The API endpoint can be used to create both completed and uncompleted orders. Uncompleted orders result in a new contract pdf being generated and also a confirmation/verification email being sent to customers based on flow settings. A completed order will not send an email. An order via the API is considered as a completed order if it contains the \"contract_date\" parameter.</p>\n<p><strong>Body Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Mandatory</th>\n<th>Possible Value(s)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>transaction_type</td>\n<td>string</td>\n<td>Y</td>\n<td>offer, order</td>\n<td></td>\n</tr>\n<tr>\n<td>connection_postcode</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Connection postcode</td>\n</tr>\n<tr>\n<td>connection_housenumber</td>\n<td>integer</td>\n<td>Y</td>\n<td></td>\n<td>Connection house number</td>\n</tr>\n<tr>\n<td>connection_suffix</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Connection house number extension</td>\n</tr>\n<tr>\n<td>connection_streetname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Connection street name</td>\n</tr>\n<tr>\n<td>connection_city</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Connection city</td>\n</tr>\n<tr>\n<td>postcode</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence postcode</td>\n</tr>\n<tr>\n<td>housenumber</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence house number</td>\n</tr>\n<tr>\n<td>suffix</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence house number extension</td>\n</tr>\n<tr>\n<td>streetname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence street name</td>\n</tr>\n<tr>\n<td>city</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence city</td>\n</tr>\n<tr>\n<td>gender</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>firstname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>lastname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>birthdate</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>DOB in format dd-mm-yyyy</td>\n</tr>\n<tr>\n<td>email</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>phone</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>iban</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required according to flow settings</td>\n</tr>\n<tr>\n<td>iban_holder</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required according to flow settings</td>\n</tr>\n<tr>\n<td>sale_channel</td>\n<td>string</td>\n<td>N</td>\n<td>'d2d', 'retail', 'telemarketing', 'online', 'f2f'</td>\n<td></td>\n</tr>\n<tr>\n<td>product_id</td>\n<td>integer</td>\n<td>Y</td>\n<td></td>\n<td>ID of product</td>\n</tr>\n<tr>\n<td>business</td>\n<td>integer</td>\n<td>Y</td>\n<td>1, 0</td>\n<td>1 = business, 0 = consumer</td>\n</tr>\n<tr>\n<td>contact_person</td>\n<td>string</td>\n<td>Y, if business = 1</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>company_name</td>\n<td>string</td>\n<td>Y, if business = 1</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>company_coc</td>\n<td>string</td>\n<td>Y, if business = 1</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>company_vat</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>If business = 1, Required according to flow settings</td>\n</tr>\n<tr>\n<td>contract_date</td>\n<td>date</td>\n<td>N</td>\n<td></td>\n<td>In DD-MM-YYYY format. If not empty, then signifies that it is a completed offer.</td>\n</tr>\n<tr>\n<td>contract_pdf</td>\n<td>array</td>\n<td>N</td>\n<td></td>\n<td>Required if contract_date is not empty. Array expects 3 keys. First one is \"content\", which is the Base64 string of the contract pdf. Second one is \"extension\", which should always be 'pdf'. Third one is \"created_at\", which is the file created date time in \"YYYY-mm-dd hh:mm:ss\" format</td>\n</tr>\n<tr>\n<td>signature</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required based on flow settings, Base64 encoded string of image</td>\n</tr>\n<tr>\n<td>questionData</td>\n<td>array</td>\n<td>Y</td>\n<td></td>\n<td>Product question identifiers along with corresponding answers</td>\n</tr>\n<tr>\n<td>agreements</td>\n<td>array</td>\n<td>Y</td>\n<td></td>\n<td>Agreement identifiers with answer as \"1\" for accepted agreements</td>\n</tr>\n<tr>\n<td>initial_user_firstname</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>The first name of the user who did the sale</td>\n</tr>\n<tr>\n<td>initial_user_lastname</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>The last name of the user who did the sale</td>\n</tr>\n<tr>\n<td>initial_organisation_name</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>The name of the organisation which did the sale</td>\n</tr>\n<tr>\n<td>external_reference</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>An order reference identifier that can be used by the API partners</td>\n</tr>\n<tr>\n<td>initial_created_at</td>\n<td>datetime</td>\n<td>N</td>\n<td></td>\n<td>In YYYY-mm-dd hh:mm:ss format. The date and time on which the sale was originally created</td>\n</tr>\n<tr>\n<td>includes_internet</td>\n<td>int</td>\n<td>Y</td>\n<td>0,1</td>\n<td>0 =&gt; Internet is not included; 1 =&gt; Internet is included</td>\n</tr>\n<tr>\n<td>related_products</td>\n<td>array</td>\n<td>N</td>\n<td></td>\n<td>This object contains the details of the sub products (if any) that are being sold in this sale.</td>\n</tr>\n<tr>\n<td>relation_id</td>\n<td>integer</td>\n<td>N</td>\n<td></td>\n<td>The ID of the relation that needs to be linked to the sale. This has to be a valid relation ID that is accessible to the user. If relation_id is not sent, then a new relation will be created and linked to the sale.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","{{domain}}","{{version}}","sales","flow","{{flow_type_identifier}}","{{flow_identifier}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"93c324a1-cd41-4fb3-abdd-ec4f8ab62465","name":"Create hosted voice sale","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"transaction_type\": \"order\",\n    \"business\": \"1\",\n    \"contact_person\": \"Test\",\n    \"company_name\": \"Salesdock\",\n    \"company_coc\": \"12312312\",\n    \"iban\": \"NL859312409B01\",\n    \"iban_holder\": \"Test User\",\n    \"postcode\": \"7546MS\",\n    \"housenumber\": \"8\",\n    \"suffix\": null,\n    \"gender\": \"male\",\n    \"firstname\": \"Test\",\n    \"lastname\": \"Test\",\n    \"birthdate\": \"01-01-1990\",\n    \"streetname\": \"Test\",\n    \"city\": \"Test\",\n    \"email\": \"test@salesdock.nl\",\n    \"phone\": \"06100000XX\",\n    \"sale_channel\": \"online\",\n    \"product_id\": \"10963\",\n    \"connection_postcode\": \"7546MS\",\n    \"connection_housenumber\": \"8\",\n    \"connection_suffix\": null,\n    \"connection_streetname\": \"Test\",\n    \"connection_city\": \"Test\",\n    \"includes_internet\": 0,\n    \"questionData\": {\n        \"inhuizing\": \"Ja\",\n        \"datum-inhuizing\": \"2020-03-01\",\n        \"ingangsdatum\": \"2020-03-01\",\n        \"overstaptest_switchdate_option\": \"Zo snel als mogelijk\",\n        \"overstaptest\": \"Nee\",\n        \"file-question\": [\n            {\n                \"name\": \"Image\",\n                \"content\": \"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNk+M9QDwADhgGAWjR9awAAAABJRU5ErkJggg==\",\n                \"extension\": \"png\"\n            }\n        ]\n    },\n    \"agreements\": {\n        \"privay-statement\": \"1\"\n    },\n    \"related_products\": {\n        \"0\": {\n            \"product_id\": \"10968\"\n        },\n        \"1\": {\n            \"product_id\": \"11093\"\n        },\n        \"2\": {\n            \"product_id\": \"10973\"\n        }\n    },\n    \"initial_user_firstname\": \"John\",\n    \"initial_user_lastname\": \"Doe\",\n    \"initial_organisation_name\": \"Test Organisation\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/sales/flow/{{flow_type_identifier}}/{{flow_identifier}}"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 20 May 2022 10:21:18 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=nn0mORc623uF6CmKjILG2gJy9LSCEttULQkdGhFZOqBAQTGZWcN12fu0ND3sjH%2FmCSwRV49PUSoCoUtg0nwelnd0y9Klt6pbr00drL0qjO2rw23YcMe3eSvs5RoQXeeriKY%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"70e4583d3dd54c74-AMS"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"sale_id\": 3\n    },\n    \"message\": \"Sale created successfully.\"\n}"}],"_postman_id":"5a41f069-931a-4c27-97e2-15fc6aeabfe5"}],"id":"b165aafc-cc39-4b9d-8fdc-8ab853f1fc21","_postman_id":"b165aafc-cc39-4b9d-8fdc-8ab853f1fc21","description":""},{"name":"Solar Panels","item":[{"name":"Create sale","id":"90e85f99-2292-4985-8e19-a7c54825e78e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"transaction_type\": \"offer\",\n    \"gender\": \"male\",\n    \"firstname\": \"John\",\n    \"lastname\": \"Doe\",\n    \"contact_person\": \"Test\",\n    \"business\": \"1\",\n    \"company_name\": \"Salesdock\",\n    \"company_coc\": \"12312312\",\n    \"iban\": \"NL91ABNA0417164300\",\n    \"iban_holder\": \"Test User\",\n    \"postcode\": \"7546MS\",\n    \"housenumber\": \"8\",\n    \"suffix\": null,\n    \"birthdate\": \"01-01-1990\",\n    \"streetname\": \"Test\",\n    \"city\": \"Test\",\n    \"email\": \"test@salesdock.nl\",\n    \"phone\": \"06100000XX\",\n    \"sale_channel\": \"online\",\n    \"product_id\": \"10963\",\n    \"connection_postcode\": \"7546MS\",\n    \"connection_housenumber\": \"8\",\n    \"connection_suffix\": null,\n    \"connection_streetname\": \"Test\",\n    \"connection_city\": \"Test\",\n    \"sell_type\": \"buy\",\n    \"usage\": \"2400\",\n    \"building_type\": \"townhouse\",\n    \"household_size\": \"2\",\n    \"address\": \"Test 8, 7546MS Test\",\n    \"country\": \"The Netherlands\",\n    \"type\": null,\n    \"area\": \"165\",\n    \"building_function\": \"Woonfunctie\",\n    \"construction_year\": \"\",\n    \"street_view_url\": \"\",\n    \"panel_product\": \"22285\",\n    \"panel_count\": \"11\",\n    \"own_usage\": 30,\n    \"own_usage_indexation\": null,\n    \"own_usage_maximum\": null,\n    \"energy_tariff\": \"0.23\",\n    \"return_tariff\": \"0.07\",\n    \"tariff_inflation_rate\": null,\n    \"increased_property_value\": 3300,\n    \"replacement_inverter_price\": 0,\n    \"fuse_box_capacity\": \"1 x 25A\",\n    \"roof_type\": \"sloping\",\n    \"roof_direction\": \"South\",\n    \"wp_kwh_factor\": null,\n    \"roofing\": \"Roof tiles\",\n    \"panels_known\": \"1\",\n    \"roof_length\": null,\n    \"roof_width\": null,\n    \"dynamic_pricing\": \"1\",\n    \"dynamic_product_name\": \"Installation\",\n    \"dynamic_product_price\": \"100\",\n    \"dynamic_product_price_vat_type\": \"exclusive\",\n    \"vat_lump_sum\": \"include_in_totals\",\n    \"option_products\": [\n        {\n            \"product_id\": 22286,\n            \"quantity\": 3\n        }\n    ],\n    \"dynamic_options\": [],\n    \"selected_options\": {\n        \"22286\": 3\n    },\n    \"questionData\": {\n        \"inhuizing\": \"Ja\",\n        \"datum-inhuizing\": \"2020-03-01\",\n        \"ingangsdatum\": \"2020-03-01\",\n        \"overstaptest_switchdate_option\": \"Zo snel als mogelijk\",\n        \"overstaptest\": \"Nee\"\n    },\n    \"agreements\": {\n        \"privay-statement\": \"1\"\n    }\n}"},"url":"{{url}}/api/{{domain}}/{{version}}/sales/flow/solar-panels/{{flow_identifier}}","description":"<p>Solar panels sales can be created using this endpoint if the Solar panel voice app is installed in the account.</p>\n<p>Replace {{flow_dentifier}} with the identifier of the flow.</p>\n<p>In the questionData object, the product question identifiers needed for the flow should be sent along with the corresponding answers</p>\n<p>In the agreements object, the agreement identifiers needed for the flow should be sent along with value \"1\" for accepted agreements.</p>\n<h4 id=\"completed-and-uncompleted-offers\">Completed and uncompleted offers</h4>\n<p>The API endpoint can be used to create both completed and uncompleted offers. Uncompleted offers result in a new contract pdf being generated and an email being sent to the customer to accept the offer. A completed offer will not send an offer acceptance email. An offer via the API is considered as a completed offer if it contains the \"contract_date\" parameter.</p>\n<h4 id=\"completed-and-uncompleted-orders\">Completed and uncompleted orders</h4>\n<p>The API endpoint can be used to create both completed and uncompleted orders. Uncompleted orders result in a new contract pdf being generated and also a confirmation/verification email being sent to customers based on flow settings. A completed order will not send an email. An order via the API is considered as a completed order if it contains the \"contract_date\" parameter.</p>\n<p><strong>Body Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Mandatory</th>\n<th>Possible Value(s)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>transaction_type</td>\n<td>string</td>\n<td>Y</td>\n<td>offer, order</td>\n<td></td>\n</tr>\n<tr>\n<td>connection_postcode</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Connection postcode</td>\n</tr>\n<tr>\n<td>connection_housenumber</td>\n<td>integer</td>\n<td>Y</td>\n<td></td>\n<td>Connection house number</td>\n</tr>\n<tr>\n<td>connection_suffix</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Connection house number extension</td>\n</tr>\n<tr>\n<td>connection_streetname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Connection street name</td>\n</tr>\n<tr>\n<td>connection_city</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Connection city</td>\n</tr>\n<tr>\n<td>postcode</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence postcode</td>\n</tr>\n<tr>\n<td>housenumber</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence house number</td>\n</tr>\n<tr>\n<td>suffix</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence house number extension</td>\n</tr>\n<tr>\n<td>streetname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence street name</td>\n</tr>\n<tr>\n<td>city</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence city</td>\n</tr>\n<tr>\n<td>gender</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>firstname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>lastname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>birthdate</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>DOB in format dd-mm-yyyy</td>\n</tr>\n<tr>\n<td>email</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>phone</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>iban</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required according to flow settings</td>\n</tr>\n<tr>\n<td>iban_holder</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required according to flow settings</td>\n</tr>\n<tr>\n<td>sale_channel</td>\n<td>string</td>\n<td>N</td>\n<td>'d2d', 'retail', 'telemarketing', 'online', 'f2f'</td>\n<td></td>\n</tr>\n<tr>\n<td>product_id</td>\n<td>integer</td>\n<td>Y</td>\n<td></td>\n<td>ID of package product or panel product</td>\n</tr>\n<tr>\n<td>business</td>\n<td>integer</td>\n<td>Y</td>\n<td>1, 0</td>\n<td>1 = business, 0 = consumer</td>\n</tr>\n<tr>\n<td>contact_person</td>\n<td>string</td>\n<td>Y, if business = 1</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>company_name</td>\n<td>string</td>\n<td>Y, if business = 1</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>company_coc</td>\n<td>string</td>\n<td>Y, if business = 1</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>company_vat</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>If business = 1, Required according to flow settings</td>\n</tr>\n<tr>\n<td>contract_date</td>\n<td>date</td>\n<td>N</td>\n<td></td>\n<td>In DD-MM-YYYY format. If not empty, then signifies that it is a completed offer.</td>\n</tr>\n<tr>\n<td>contract_pdf</td>\n<td>array</td>\n<td>N</td>\n<td></td>\n<td>Required if contract_date is not empty. Array expects 3 keys. First one is \"content\", which is the Base64 string of the contract pdf. Second one is \"extension\", which should always be 'pdf'. Third one is \"created_at\", which is the file created date time in \"YYYY-mm-dd hh:mm:ss\" format</td>\n</tr>\n<tr>\n<td>signature</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required based on flow settings, Base64 encoded string of image</td>\n</tr>\n<tr>\n<td>questionData</td>\n<td>array</td>\n<td>Y</td>\n<td></td>\n<td>Product question identifiers along with corresponding answers</td>\n</tr>\n<tr>\n<td>agreements</td>\n<td>array</td>\n<td>Y</td>\n<td></td>\n<td>Agreement identifiers with answer as \"1\" for accepted agreements</td>\n</tr>\n<tr>\n<td>initial_user_firstname</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>The first name of the user who did the sale</td>\n</tr>\n<tr>\n<td>initial_user_lastname</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>The last name of the user who did the sale</td>\n</tr>\n<tr>\n<td>initial_organisation_name</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>The name of the organisation which did the sale</td>\n</tr>\n<tr>\n<td>external_reference</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>An order reference identifier that can be used by the API partners</td>\n</tr>\n<tr>\n<td>initial_created_at</td>\n<td>datetime</td>\n<td>N</td>\n<td></td>\n<td>In YYYY-mm-dd hh:mm:ss format. The date and time on which the sale was originally created</td>\n</tr>\n<tr>\n<td>sell_type</td>\n<td>string</td>\n<td>Y</td>\n<td>'buy', 'rent'</td>\n<td></td>\n</tr>\n<tr>\n<td>usage</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Electricity usage</td>\n</tr>\n<tr>\n<td>building_type</td>\n<td>string</td>\n<td>N</td>\n<td>'apartment', 'townhouse', 'corner_house', 'detached'</td>\n<td></td>\n</tr>\n<tr>\n<td>street_view_url</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Google street view URL</td>\n</tr>\n<tr>\n<td>panel_product</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>ID of panel product</td>\n</tr>\n<tr>\n<td>panel_count</td>\n<td>int</td>\n<td>Y</td>\n<td></td>\n<td>Number of panels</td>\n</tr>\n<tr>\n<td>fuse_box_capacity</td>\n<td>string</td>\n<td>N</td>\n<td>'1 x 25A', '3 x 25A', '1 x 35A', '3 x 35A'</td>\n<td></td>\n</tr>\n<tr>\n<td>roof_type</td>\n<td>string</td>\n<td>N</td>\n<td>'sloping', 'flat'</td>\n<td></td>\n</tr>\n<tr>\n<td>roofing</td>\n<td>string</td>\n<td>N</td>\n<td>'Roof tiles',  <br />'Slates',  <br />'Corrugated iron',  <br />'Reed',  <br />'Steel',  <br />'Zinc',  <br />'Green roof', 'Bitumen',  <br />'EPDM',  <br />'PVC',  <br />'Green roof'</td>\n<td></td>\n</tr>\n<tr>\n<td>roof_direction</td>\n<td>string</td>\n<td>N</td>\n<td>'South', 'Southeast', 'Southwest', 'West', 'East'</td>\n<td></td>\n</tr>\n<tr>\n<td>wp_kwh_factor</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Solar panel power factor</td>\n</tr>\n<tr>\n<td>roof_length</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>roof_width</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>dynamic_pricing</td>\n<td>string</td>\n<td>N</td>\n<td>'1', '0'</td>\n<td></td>\n</tr>\n<tr>\n<td>dynamic_product_name</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required if dynamic_pricing = '1'</td>\n</tr>\n<tr>\n<td>dynamic_product_price</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required if dynamic_pricing = '1'</td>\n</tr>\n<tr>\n<td>dynamic_product_price_vat_type</td>\n<td>string</td>\n<td>N</td>\n<td>'inclusive', 'exclusive'</td>\n<td>Required if dynamic_pricing = '1'</td>\n</tr>\n<tr>\n<td>vat_lump_sum</td>\n<td>string</td>\n<td>N</td>\n<td>'include_in_totals', 'disclaimer_only'</td>\n<td></td>\n</tr>\n<tr>\n<td>option_products</td>\n<td>array</td>\n<td>N</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>dynamic_options</td>\n<td>array</td>\n<td>N</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>selected_options</td>\n<td>array</td>\n<td>N</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>external_reference</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>An order reference identifier that can be used by the API partners</td>\n</tr>\n<tr>\n<td>relation_id</td>\n<td>integer</td>\n<td>N</td>\n<td></td>\n<td>The ID of the relation that needs to be linked to the sale. This has to be a valid relation ID that is accessible to the user. If relation_id is not sent, then a new relation will be created and linked to the sale.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","{{domain}}","{{version}}","sales","flow","solar-panels","{{flow_identifier}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"63142416-10e1-4431-a22c-162fe0d64394","name":"Create sale","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"transaction_type\": \"offer\",\n    \"gender\": \"male\",\n    \"firstname\": \"John\",\n    \"lastname\": \"Doe\",\n    \"contact_person\": \"Test\",\n    \"business\": \"1\",\n    \"company_name\": \"Salesdock\",\n    \"company_coc\": \"12312312\",\n    \"iban\": \"NL91ABNA0417164300\",\n    \"iban_holder\": \"Test User\",\n    \"postcode\": \"7511PG\",\n    \"housenumber\": \"9\",\n    \"suffix\": null,\n    \"birthdate\": \"01-01-1990\",\n    \"streetname\": \"Test\",\n    \"city\": \"Test\",\n    \"email\": \"test@salesdock.nl\",\n    \"phone\": \"06100000XX\",\n    \"sale_channel\": \"online\",\n    \"product_id\": \"10963\",\n    \"connection_postcode\": \"7546MS\",\n    \"connection_housenumber\": \"8\",\n    \"connection_suffix\": null,\n    \"connection_streetname\": \"Test\",\n    \"connection_city\": \"Test\",\n    \"sell_type\": \"buy\",\n    \"usage\": \"2400\",\n    \"building_type\": \"townhouse\",\n    \"household_size\": \"2\",\n    \"address\": \"Test 8, 7546MS Test\",\n    \"country\": \"The Netherlands\",\n    \"type\": null,\n    \"area\": \"165\",\n    \"building_function\": \"Woonfunctie\",\n    \"construction_year\": \"\",\n    \"street_view_url\": \"\",\n    \"panel_product\": \"22285\",\n    \"panel_count\": \"11\",\n    \"own_usage\": 30,\n    \"own_usage_indexation\": null,\n    \"own_usage_maximum\": null,\n    \"energy_tariff\": \"0.23\",\n    \"return_tariff\": \"0.07\",\n    \"tariff_inflation_rate\": null,\n    \"increased_property_value\": 3300,\n    \"replacement_inverter_price\": 0,\n    \"fuse_box_capacity\": \"1 x 25A\",\n    \"roof_type\": \"sloping\",\n    \"roof_direction\": \"South\",\n    \"wp_kwh_factor\": null,\n    \"roofing\": \"Roof tiles\",\n    \"panels_known\": \"1\",\n    \"roof_length\": null,\n    \"roof_width\": null,\n    \"dynamic_pricing\": \"1\",\n    \"dynamic_product_name\": \"Installation\",\n    \"dynamic_product_price\": \"100\",\n    \"dynamic_product_price_vat_type\": \"exclusive\",\n    \"vat_lump_sum\": \"include_in_totals\",\n    \"option_products\": [\n        {\n            \"product_id\": 22286,\n            \"quantity\": 3\n        }\n    ],\n    \"dynamic_options\": [],\n    \"selected_options\": {\n        \"22286\": 3\n    },\n    \"questionData\": {\n        \"inhuizing\": \"Ja\",\n        \"datum-inhuizing\": \"2020-03-01\",\n        \"ingangsdatum\": \"2020-03-01\",\n        \"overstaptest_switchdate_option\": \"Zo snel als mogelijk\",\n        \"overstaptest\": \"Nee\",\n        \"file-question\": [\n            {\n                \"name\": \"Image\",\n                \"content\": \"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNk+M9QDwADhgGAWjR9awAAAABJRU5ErkJggg==\",\n                \"extension\": \"png\"\n            }\n        ]\n    },\n    \"agreements\": {\n        \"privay-statement\": \"1\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/sales/flow/solar-panels/{{flow_identifier}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"sale_id\": 3\n    },\n    \"message\": \"Sale created successfully.\"\n}"}],"_postman_id":"90e85f99-2292-4985-8e19-a7c54825e78e"},{"name":"Panels estimation","id":"7153834e-3373-48a6-936b-21da6f33ac3b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"{{url}}/api/{{domain}}/v1/solar/estimate-panels?usage_electricity=&roof_type=&roof_orientation=&fuse_box_capacity=&roof_height=&roof_width=&panel_power=&powerfactor=&panel_orientation=&panel_width&panel_height","description":"<p>This endpoint can be used to estimate the number of solar panels. Using different input parameters like the type of roof, capacity and usages, it estimates and returns the number of panels that can be supported.</p>\n<p>This endpoint is not scope specific.</p>\n","urlObject":{"path":["api","{{domain}}","v1","solar","estimate-panels"],"host":["{{url}}"],"query":[{"description":{"content":"<p>Electricity usage in kWh per year. Value is required and posible value type is integer.</p>\n","type":"text/plain"},"key":"usage_electricity","value":""},{"description":{"content":"<p>Type of roof. Value is required. Posible values are sloping, flat.</p>\n","type":"text/plain"},"key":"roof_type","value":""},{"description":{"content":"<p>Roof direction. Posible values are South, Southeast, Southwest, West, East, North, Northeast, Northwest. Required when powerfactor is not present and roof type is sloping.</p>\n","type":"text/plain"},"key":"roof_orientation","value":""},{"description":{"content":"<p>Fuse box capacity. Posible values are 1 x 25A, 3 x 25A, 1 x 35A, 1 x 40A, 3 x 35A, 3 x 50A, 3 x 63A, 3 x 80A, Other, I don't know</p>\n","type":"text/plain"},"key":"fuse_box_capacity","value":""},{"description":{"content":"<p>Length of the roof. Possible value type is an integer. Empty value will treated as 0.</p>\n","type":"text/plain"},"key":"roof_height","value":""},{"description":{"content":"<p>Width of the roof. Posible value type is an integer. Empty value will treated as 0.</p>\n","type":"text/plain"},"key":"roof_width","value":""},{"description":{"content":"<p>Panel power. Posible value type is numeric. Default value is 320.</p>\n","type":"text/plain"},"key":"panel_power","value":""},{"description":{"content":"<p>Powerfactor is in KWh. Posible value is numeric and maximum value is 1. Required when roof orientation is not present and roof type is sloping. Empty value will treated as 0.</p>\n","type":"text/plain"},"key":"powerfactor","value":""},{"description":{"content":"<p>Panel direction. Posible values are landscape, portrait</p>\n","type":"text/plain"},"key":"panel_orientation","value":""},{"description":{"content":"<p>Width of the panel. Posible value type is integer</p>\n","type":"text/plain"},"key":"panel_width","value":null},{"description":{"content":"<p>Length of the panel. Posible value type is integer</p>\n","type":"text/plain"},"key":"panel_height","value":null}],"variable":[]}},"response":[{"id":"8c110136-e157-4aee-8997-d94aca9da0a3","name":"Panels estimation","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"}],"url":{"raw":"{{url}}/api/{{domain}}/v1/solar/estimate-panels?usage_electricity=2800&roof_type=sloping&roof_orientation=South&fuse_box_capacity=1 x 25A&roof_height=5&roof_width=2&panel_power=320&powerfactor=0.68&panel_orientation=&panel_width&panel_height","host":["{{url}}"],"path":["api","{{domain}}","v1","solar","estimate-panels"],"query":[{"key":"usage_electricity","value":"2800","description":"Usage electricity. Value is required and posible value type is numeric."},{"key":"roof_type","value":"sloping","description":"Type of roof. Value is required. Posible values are sloping, flat."},{"key":"roof_orientation","value":"South","description":"Roof direction. Posible values are South, Southeast, Southwest, West, East, North, Northeast, Northwest. Required when powerfactor is not present and roof type is sloping."},{"key":"fuse_box_capacity","value":"1 x 25A","description":"Fuse box capacity. Posible values are 1 x 25A, 3 x 25A, 1 x 35A, 1 x 40A, 3 x 35A, 3 x 50A, 3 x 63A, 3 x 80A, Other, I don't know"},{"key":"roof_height","value":"5","description":"Length of the roof. Possible value type is an integer. Empty value will treated as 0."},{"key":"roof_width","value":"2","description":"Width of the roof. Posible value type is an integer. Empty value will treated as 0."},{"key":"panel_power","value":"320","description":"Panel power. Posible value type is numeric. Default value is 320."},{"key":"powerfactor","value":"0.68","description":"Powerfactor is in KWh. Posible value is numeric and maximum value is 1. Required when roof orientation is not present and roof type is sloping. Empty value will trated as 0."},{"key":"panel_orientation","value":"","description":"Panel direction. Posible values are landscape, portrait"},{"key":"panel_width","value":null,"description":"Width of the panel. Posible value type is integer"},{"key":"panel_height","value":null,"description":"Length of the panel. Posible value type is integer"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 19 Apr 2023 08:55:19 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=NzmAmrDTQOzSFEGIq%2Fp0%2BrFKOCpa0tgdaq7u%2FDQBoKEoWPLF3hbT9zZmDbBOboZ8u9kDnfVSi7zBFN6DHQGVaSnU2SCVtNjhll%2BJFl8OhWn5GooXZMbMiJdwPNGqlAULEJs%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7ba3ed87f8f0b956-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"number_of_panels\": 5\n    },\n    \"message\": \"Suggested amount of panel retrieved successfully\"\n}"}],"_postman_id":"7153834e-3373-48a6-936b-21da6f33ac3b"},{"name":"Solar compare","id":"4e410762-21cf-4e5f-80d8-efeb7795a8c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"number_of_panels\": \"10\",\n    \"usage_electricity\": \"5000\",\n    \"roof_type\": \"sloping\",\n    \"roof_orientation\": \"North\",\n    \"powerfactor\": \"\",\n    \"type\": \"buy\",\n    \"solar_panel_id\": \"\",\n    \"return_tariff\": \"\",\n    \"energy_tariff\": \"\",\n    \"customfield_filters\": {\n        \"customfield_identifier1\": \"customfield_value\",\n        \"customfield_identifier2\": \"customfield_value\"\n    },\n    \"additional_costs\": [\n        {\n            \"description\": \"Installation cost\",\n            \"calculation_type\": \"onetime\",\n            \"vat_type\": \"inclusive\",\n            \"vat_percentage\": 21,\n            \"calculation_value\": 500,\n            \"supplier_id\": 1\n        },\n        {\n            \"description\": \"Recurring fee\",\n            \"calculation_type\": \"monthly\",\n            \"vat_type\": \"inclusive\",\n            \"vat_percentage\": 21,\n            \"calculation_value\": 1500\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/v1/solar/compare","description":"<p>This endpoint is used to retrieve the possible solar packages that the user has access to.</p>\n<p><strong>Body Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Mandatory</th>\n<th>Possible Value(s)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>number_of_panels</td>\n<td>number</td>\n<td>Y</td>\n<td></td>\n<td>Number of panels</td>\n</tr>\n<tr>\n<td>usage_electricity</td>\n<td>number</td>\n<td>Y</td>\n<td></td>\n<td>Electricity usage</td>\n</tr>\n<tr>\n<td>roof_type</td>\n<td>string</td>\n<td>Y</td>\n<td>sloping, flat</td>\n<td>Type of roof</td>\n</tr>\n<tr>\n<td>roof_orientation</td>\n<td>string</td>\n<td>N</td>\n<td>south, southeast, southwest, west, east, north, northeast, northwest</td>\n<td>The direction where the roof is facing. Required when roof type is sloping.</td>\n</tr>\n<tr>\n<td>powerfactor</td>\n<td>number</td>\n<td>N</td>\n<td></td>\n<td>Powerfactor is in KWh. Posible value is numeric and maximum value is 1. Required when roof orientation is not present and roof type is sloping. Empty value will treated as 0.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>Y</td>\n<td>buy, rent</td>\n<td>Default value will be buy</td>\n</tr>\n<tr>\n<td>solar_panel_id</td>\n<td>number</td>\n<td>N</td>\n<td></td>\n<td>Solar panel ID. Used to filter the solar packages.</td>\n</tr>\n<tr>\n<td>return_tariff</td>\n<td>number</td>\n<td>N</td>\n<td></td>\n<td>Electricity return</td>\n</tr>\n<tr>\n<td>energy_tariff</td>\n<td>number</td>\n<td>N</td>\n<td></td>\n<td>Electricity tariff.</td>\n</tr>\n<tr>\n<td>customfield_filters</td>\n<td>array</td>\n<td>N</td>\n<td></td>\n<td>Array of custom fields with identifier and value (key value pair). Only the options with correct custom field values will be returned if this is sent</td>\n</tr>\n<tr>\n<td>additional_costs</td>\n<td>array</td>\n<td>N</td>\n<td></td>\n<td>Array of additional costs</td>\n</tr>\n</tbody>\n</table>\n</div><p>For each package, apart from the basic information, the response also contains:</p>\n<ul>\n<li>package_content - The different products supported in the package</li>\n<li>pricing - Monthly and total prices in the package</li>\n<li>yield - The yield in KWH from the package</li>\n<li>savings - The return on investment in using the package</li>\n</ul>\n","urlObject":{"path":["api","{{domain}}","v1","solar","compare"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"5d7be2c8-e68b-4a35-83a9-0abf7b66350c","name":"Solar compare","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"number_of_panels\": \"10\",\n    \"usage_electricity\": \"5000\",\n    \"roof_type\": \"sloping\",\n    \"roof_orientation\": \"North\",\n    \"powerfactor\": \"\",\n    \"type\": \"buy\",\n    \"solar_panel_id\": \"\",\n    \"return_tariff\": \"\",\n    \"energy_tariff\": \"\",\n    \"customfield_filters\": {\n        \"customfield_identifier1\": \"customfield_value\",\n        \"customfield_identifier2\": \"customfield_value\"\n    },\n    \"additional_costs\": [\n        {\n            \"description\": \"Installation cost\",\n            \"calculation_type\": \"onetime\",\n            \"vat_type\": \"inclusive\",\n            \"vat_percentage\": 21,\n            \"calculation_value\": 500,\n            \"supplier_id\": 1\n        },\n        {\n            \"description\": \"Recurring fee\",\n            \"calculation_type\": \"monthly\",\n            \"vat_type\": \"inclusive\",\n            \"vat_percentage\": 21,\n            \"calculation_value\": 1500\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://app.salesdock.nl/api/testomgeving/v1/solar/compare"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 03 Jul 2023 07:24:55 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"120"},{"key":"X-RateLimit-Remaining","value":"119"},{"key":"x-robots-tag","value":"none"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=ze7%2F8rBMfbw02Ik3YHHSrtp7zPZvVaM0ZjP48RsJ5T%2BQTgtxhCsOIqoOQfnUdpLR6INWo8In9dWQMhjbBhAFtqLKwKSSXbMmcoKsNvWLBNtIYDbxb47ZLox5a%2FVbmf%2FwfiE%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7e0d643bec31b7f5-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"packages\": [\n                {\n                    \"id\": 123,\n                    \"name\": \"Test Solar Package 3 years\",\n                    \"identifier\": \"test-package\",\n                    \"usp\": null,\n                    \"description\": \"Productomschrijving. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ligula tincidunt lobortis diam adipiscing sed arcu pellentesque amet consectetur.\",\n                    \"image\": null,\n                    \"supplier\": {\n                        \"id\": 1,\n                        \"identifier\": \"solar-seller\",\n                        \"label\": \"Solar seller\"\n                    },\n                    \"business\": \"0\",\n                    \"active\": \"1\",\n                    \"valid_from\": null,\n                    \"valid_till\": null,\n                    \"created_at\": \"2021-07-16 09:23:27\",\n                    \"updated_at\": \"2022-11-25 16:04:11\",\n                    \"package_content\": [\n                        {\n                            \"id\": 22266,\n                            \"type\": \"pv_panel\",\n                            \"name\": \"XYZ Solar 320 Wp\",\n                            \"identifier\": \"xyz-solar-320-wp\",\n                            \"usp\": \"Hoog vermogen door PERC technologie\\r\\nKwaliteit van de wereldmarktleiders\\r\\nDiepzwarte uitstraling door kleursortering\\r\\n80% vermogen na 25 jaar gegarandeerd\",\n                            \"description\": \"De zwarte zonnepanelen zijn kleur gesorteerd en worden geleverd met een verhoogd vermogen van 325 Wp, te danken aan de PERC en half-cut-cell technologie. We maken met deze zonnepanelen een duidelijke keuze voor kwaliteit en prestaties op lange termijn.\",\n                            \"image\": null,\n                            \"documents\": [],\n                            \"quantity\": 10,\n                            \"type_properties\": {\n                                \"watt_peak\": 320,\n                                \"color\": \"Zwart\",\n                                \"width\": 100,\n                                \"height\": 200,\n                                \"yearly_loss\": 0.55\n                            }\n                        },\n                        {\n                            \"id\": 22267,\n                            \"type\": \"pv_inverter\",\n                            \"name\": \"ABC 3600 MTL-S\",\n                            \"identifier\": \"abc-3600-mtl-s\",\n                            \"usp\": null,\n                            \"description\": \"\",\n                            \"image\": null,\n                            \"documents\": [],\n                            \"quantity\": 3,\n                            \"type_properties\": {\n                                \"power_output\": 3300,\n                                \"max_power\": 3300,\n                                \"trackers\": null,\n                                \"phase\": null,\n                                \"color\": null,\n                                \"width\": null,\n                                \"height\": null,\n                                \"depth\": null,\n                                \"warranty_in_years\": null,\n                                \"decibel\": null\n                            }\n                        },\n                        {\n                            \"id\": 22268,\n                            \"type\": \"pv_battery\",\n                            \"name\": \"PQR- Schuin dak\",\n                            \"identifier\": \"pqr-evo-schuin-dak\",\n                            \"usp\": null,\n                            \"description\": \"\",\n                            \"image\": null,\n                            \"documents\": [],\n                            \"quantity\": 10\n                        }\n                    ],\n                    \"pricing\": {\n                        \"onetime\": {\n                            \"price\": 1500,\n                            \"promotion_price\": 1200,\n                            \"subtotal_exclusive_vat\": 1500,\n                            \"subtotal_inclusive_vat\": 1815,\n                            \"subtotal_promotion_exclusive_vat\": 1200,\n                            \"subtotal_promotion_inclusive_vat\": 1452\n                        },\n                        \"monthly\": {\n                            \"price\": null,\n                            \"promotion_price\": null,\n                            \"promotion_months\": null,\n                            \"subtotal_exclusive_vat\": null,\n                            \"subtotal_inclusive_vat\": 0,\n                            \"subtotal_promotion_exclusive_vat\": null,\n                            \"subtotal_promotion_inclusive_vat\": 0\n                        },\n                        \"additional_costs\": {\n                            \"onetime\": [\n                                {\n                                    \"description\": \"Installation cost\",\n                                    \"calculation_type\": \"onetime\",\n                                    \"vat_type\": \"inclusive\",\n                                    \"vat_percentage\": 21,\n                                    \"calculation_value\": 500\n                                }\n                            ],\n                            \"monthly\": [\n                                {\n                                    \"description\": \"Recurring fee\",\n                                    \"calculation_type\": \"monthly\",\n                                    \"vat_type\": \"inclusive\",\n                                    \"vat_percentage\": 21,\n                                    \"calculation_value\": 1500\n                                }\n                            ],\n                            \"totals\": {\n                                \"monthly_excluding_vat\": 1239.67,\n                                \"monthly_including_vat\": 1500,\n                                \"onetime_excluding_vat\": 413.22,\n                                \"onetime_including_vat\": 500\n                            }\n                        },\n                        \"totals\": {\n                            \"monthly_excluding_vat\": 1239.67,\n                            \"monthly_including_vat\": 1500,\n                            \"onetime_excluding_vat\": 1613.22,\n                            \"onetime_including_vat\": 1952,\n                            \"vat_lump_sum\": 80,\n                            \"net_investment\": 1952\n                        }\n                    },\n                    \"yield\": {\n                        \"yearly_in_kwh\": 1920\n                    },\n                    \"savings\": {\n                        \"roi_in_years\": \"9.6\",\n                        \"roi_label\": \"9 year and 6 months\",\n                        \"after_1_year\": 442,\n                        \"after_10_year\": 3258,\n                        \"after_25_year\": 6353\n                    }\n                }\n            ]\n        }\n    ],\n    \"message\": \"Packages retrieved successfully\"\n}"}],"_postman_id":"4e410762-21cf-4e5f-80d8-efeb7795a8c2"}],"id":"63167a6c-41a8-4cf1-b08e-a3a32d58211e","_postman_id":"63167a6c-41a8-4cf1-b08e-a3a32d58211e","description":""},{"name":"Heat pumps","item":[{"name":"Create sale","id":"b146d933-bd9e-4cc6-8221-496dabbeece8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"transaction_type\": \"offer\",\n    \"postcode\": \"7511PG\",\n    \"housenumber\": \"9\",\n    \"suffix\": null,\n    \"gender\": \"male\",\n    \"firstname\": \"John\",\n    \"lastname\": \"Doe\",\n    \"birthdate\": \"\",\n    \"streetname\": \"Gaffelhoek\",\n    \"city\": \"Enschede\",\n    \"email\": \"test@salesdock.nl\",\n    \"phone\": \"0651111111\",\n    \"contact_person\": \"John Doe\",\n    \"company_name\": null,\n    \"company_coc\": null,\n    \"company_coc_branch_number\": null,\n    \"company_vat\": null,\n    \"iban\": \"NL91ABNA0417164300\",\n    \"iban_holder\": \"J. Doe\",\n    \"product_id\": 40960,\n    \"connection_postcode\": \"7511PG\",\n    \"connection_housenumber\": \"9\",\n    \"connection_suffix\": null,\n    \"connection_streetname\": \"Gaffelhoek\",\n    \"connection_city\": \"Enschede\",\n    \"business\": \"0\",\n    \"valid_till\": \"20-10-2024\",\n    \"sell_type\": \"buy\",\n    \"number_of_persons\": \"3\",\n    \"electricity_usage\": \"2000\",\n    \"gas_usage\": \"1998\",\n    \"heating_system\": \"underfloor-heating\",\n    \"gas_usage_tap_water_per_person\": \"0\",\n    \"questionData\": {},\n    \"agreements\": {}\n}"},"url":"{{url}}/api/{{domain}}/{{version}}/sales/flow/heat-pump/{{flow_identifier}}","description":"<p>Heat pumps sales can be created using this endpoint if the Heat pump app is installed in the account.</p>\n<p>Replace {{flow_dentifier}} with the identifier of the flow.</p>\n<p>In the questionData object, the product question identifiers needed for the flow should be sent along with the corresponding answers</p>\n<p>In the agreements object, the agreement identifiers needed for the flow should be sent along with value \"1\" for accepted agreements.</p>\n<h4 id=\"completed-and-uncompleted-offers\">Completed and uncompleted offers</h4>\n<p>The API endpoint can be used to create both completed and uncompleted offers. Uncompleted offers result in a new contract pdf being generated and an email being sent to the customer to accept the offer. A completed offer will not send an offer acceptance email. An offer via the API is considered as a completed offer if it contains the \"contract_date\" parameter.</p>\n<h4 id=\"completed-and-uncompleted-orders\">Completed and uncompleted orders</h4>\n<p>The API endpoint can be used to create both completed and uncompleted orders. Uncompleted orders result in a new contract pdf being generated and also a confirmation/verification email being sent to customers based on flow settings. A completed order will not send an email. An order via the API is considered as a completed order if it contains the \"contract_date\" parameter.</p>\n<p><strong>Body Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Mandatory</th>\n<th>Possible Value(s)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>transaction_type</td>\n<td>string</td>\n<td>Y</td>\n<td>offer, order</td>\n<td></td>\n</tr>\n<tr>\n<td>connection_postcode</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Connection postcode</td>\n</tr>\n<tr>\n<td>connection_housenumber</td>\n<td>integer</td>\n<td>Y</td>\n<td></td>\n<td>Connection house number</td>\n</tr>\n<tr>\n<td>connection_suffix</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Connection house number extension</td>\n</tr>\n<tr>\n<td>connection_streetname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Connection street name</td>\n</tr>\n<tr>\n<td>connection_city</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Connection city</td>\n</tr>\n<tr>\n<td>postcode</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence postcode</td>\n</tr>\n<tr>\n<td>housenumber</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence house number</td>\n</tr>\n<tr>\n<td>suffix</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence house number extension</td>\n</tr>\n<tr>\n<td>streetname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence street name</td>\n</tr>\n<tr>\n<td>city</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence city</td>\n</tr>\n<tr>\n<td>gender</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>firstname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>lastname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>birthdate</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>DOB in format dd-mm-yyyy</td>\n</tr>\n<tr>\n<td>email</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>phone</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>iban</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required according to flow settings</td>\n</tr>\n<tr>\n<td>iban_holder</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required according to flow settings</td>\n</tr>\n<tr>\n<td>sale_channel</td>\n<td>string</td>\n<td>N</td>\n<td>'d2d', 'retail', 'telemarketing', 'online', 'f2f'</td>\n<td></td>\n</tr>\n<tr>\n<td>product_id</td>\n<td>integer</td>\n<td>Y</td>\n<td></td>\n<td>ID of package product or panel product</td>\n</tr>\n<tr>\n<td>business</td>\n<td>integer</td>\n<td>Y</td>\n<td>1, 0</td>\n<td>1 = business, 0 = consumer</td>\n</tr>\n<tr>\n<td>contact_person</td>\n<td>string</td>\n<td>Y, if business = 1</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>company_name</td>\n<td>string</td>\n<td>Y, if business = 1</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>company_coc</td>\n<td>string</td>\n<td>Y, if business = 1</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>company_vat</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>If business = 1, Required according to flow settings</td>\n</tr>\n<tr>\n<td>contract_date</td>\n<td>date</td>\n<td>N</td>\n<td></td>\n<td>In DD-MM-YYYY format. If not empty, then signifies that it is a completed offer.</td>\n</tr>\n<tr>\n<td>contract_pdf</td>\n<td>array</td>\n<td>N</td>\n<td></td>\n<td>Required if contract_date is not empty. Array expects 3 keys. First one is \"content\", which is the Base64 string of the contract pdf. Second one is \"extension\", which should always be 'pdf'. Third one is \"created_at\", which is the file created date time in \"YYYY-mm-dd hh:mm:ss\" format</td>\n</tr>\n<tr>\n<td>signature</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required based on flow settings, Base64 encoded string of image</td>\n</tr>\n<tr>\n<td>questionData</td>\n<td>array</td>\n<td>Y</td>\n<td></td>\n<td>Product question identifiers along with corresponding answers</td>\n</tr>\n<tr>\n<td>agreements</td>\n<td>array</td>\n<td>Y</td>\n<td></td>\n<td>Agreement identifiers with answer as \"1\" for accepted agreements</td>\n</tr>\n<tr>\n<td>initial_user_firstname</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>The first name of the user who did the sale</td>\n</tr>\n<tr>\n<td>initial_user_lastname</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>The last name of the user who did the sale</td>\n</tr>\n<tr>\n<td>initial_organisation_name</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>The name of the organisation which did the sale</td>\n</tr>\n<tr>\n<td>external_reference</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>An order reference identifier that can be used by the API partners</td>\n</tr>\n<tr>\n<td>initial_created_at</td>\n<td>datetime</td>\n<td>N</td>\n<td></td>\n<td>In YYYY-mm-dd hh:mm:ss format. The date and time on which the sale was originally created</td>\n</tr>\n<tr>\n<td>sell_type</td>\n<td>string</td>\n<td>Y</td>\n<td>'buy', 'rent'</td>\n<td></td>\n</tr>\n<tr>\n<td>number_of_persons</td>\n<td>number</td>\n<td>Y</td>\n<td></td>\n<td>Nimber of people in the household</td>\n</tr>\n<tr>\n<td>electricity_usage</td>\n<td>number</td>\n<td>Y</td>\n<td></td>\n<td>Usage of electricity per year in kWh</td>\n</tr>\n<tr>\n<td>gas_usage</td>\n<td>number</td>\n<td>Y</td>\n<td></td>\n<td>Usage of electricity per year in m3</td>\n</tr>\n<tr>\n<td>heating_system</td>\n<td>string</td>\n<td>Y</td>\n<td>'underfloor-heating', 'underfloor-heating-and-radiators', 'radiators-and-underfloor-heating', 'radiators', 'convectors'</td>\n<td></td>\n</tr>\n<tr>\n<td>gas_usage_tap_water_per_person</td>\n<td>number</td>\n<td>Y</td>\n<td></td>\n<td>Gas usage tap water per person</td>\n</tr>\n<tr>\n<td>external_reference</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>An order reference identifier that can be used by the API partners</td>\n</tr>\n<tr>\n<td>relation_id</td>\n<td>integer</td>\n<td>N</td>\n<td></td>\n<td>The ID of the relation that needs to be linked to the sale. This has to be a valid relation ID that is accessible to the user. If relation_id is not sent, then a new relation will be created and linked to the sale.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","{{domain}}","{{version}}","sales","flow","heat-pump","{{flow_identifier}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"133a0d92-762d-42a1-ad10-d590e660cd06","name":"Create sale","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"transaction_type\": \"offer\",\n    \"postcode\": \"7511PG\",\n    \"housenumber\": \"9\",\n    \"suffix\": null,\n    \"gender\": \"male\",\n    \"firstname\": \"John\",\n    \"lastname\": \"Doe\",\n    \"birthdate\": \"\",\n    \"streetname\": \"Gaffelhoek\",\n    \"city\": \"Enschede\",\n    \"email\": \"test@salesdock.nl\",\n    \"phone\": \"0651111111\",\n    \"contact_person\": \"John Doe\",\n    \"company_name\": null,\n    \"company_coc\": null,\n    \"company_coc_branch_number\": null,\n    \"company_vat\": null,\n    \"iban\": \"NL91ABNA0417164300\",\n    \"iban_holder\": \"J. Doe\",\n    \"product_id\": 40960,\n    \"connection_postcode\": \"7511PG\",\n    \"connection_housenumber\": \"9\",\n    \"connection_suffix\": null,\n    \"connection_streetname\": \"Gaffelhoek\",\n    \"connection_city\": \"Enschede\",\n    \"business\": \"0\",\n    \"valid_till\": \"20-10-2024\",\n    \"sell_type\": \"buy\",\n    \"number_of_persons\": \"3\",\n    \"electricity_usage\": \"2000\",\n    \"gas_usage\": \"1998\",\n    \"heating_system\": \"underfloor-heating\",\n    \"gas_usage_tap_water_per_person\": \"0\",\n    \"questionData\": {},\n    \"agreements\": {}\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/sales/flow/heat-pump/{{flow_identifier}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"sale_id\": 3\n    },\n    \"message\": \"Sale created successfully.\"\n}"}],"_postman_id":"b146d933-bd9e-4cc6-8221-496dabbeece8"},{"name":"Update heatpump proposal","id":"51de3419-2bcd-4b3e-a2bc-a7424a7ae706","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"product_id\": \"792\",\n    \"valid_till\": \"20-12-2024\",\n    \"customer\": {\n        \"gender\": \"male\",\n        \"firstname\": \"Jane\",\n        \"lastname\": \"Doe\",\n        \"birthdate\": null,\n        \"email\": \"test@salesdock.nl\",\n        \"phone\": null,\n        \"business\": true,\n        \"company_name\": \"Test\",\n        \"contact_person\": \"Man\",\n        \"coc\": \"12345678\",\n        \"vat\": \"NL123456789B01\",\n        \"address\": {\n            \"postcode\": \"7511PG\",\n            \"housenumber\": \"9\",\n            \"streetname\": \"Neaat\",\n            \"city\": \"AMSTER\"\n        },\n        \"correspondence_address\": {\n            \"postcode\": \"7546MS\",\n            \"housenumber\": \"8\",\n            \"suffix\": \"A\",\n            \"streetname\": \"Neptunusstraat\",\n            \"city\": \"Enschede\"\n        }\n    },\n    \"product_questions\": {\n        \"delete\": [\n            \"ik-steun-bnnvara\",\n            \"test-2\"\n        ],\n        \"upsert\": {\n            \"ik-steun-bnnvara\": \"voor €10 in het eerste 1,5 jaar en daarna voor €10 per jaar\",\n            \"overstapdatum_switchdate_option\": \"Anders\",\n            \"overstapdatum\": \"05-06-2021\",\n            \"multi-selet-question\": [\"Three\", \"Two\", \"Three\"],\n            \"betaalwijze\": \"Automatische incasso\"\n        }\n    },\n    \"agreements\": {\n        \"delete\": [],\n        \"upsert\": {\n            \"info-bnnvara\": \"1\",\n            \"telefonisch-benaderen\": \"1\",\n            \"algemene-voorwaarden\": \"1\",\n            \"annulering\": \"1\"\n        }\n    },\n    \"flow_heatpump\": {\n        \"products\": {\n            \"delete\": {\n                \"test-part-add-ons\": [\n                    431\n                ]\n            },\n            \"upsert\": {\n                \"test-part-add-ons\": [\n                    {\n                        \"id\": 58542,\n                        \"quantity\": \"4\"\n                    }\n                ]\n            }\n        },\n        \"number_of_persons\": \"12\",\n        \"electricity_usage\": \"4000\",\n        \"gas_usage\": \"6000\",\n        \"heating_system\": \"underfloor-heating\",\n        \"gas_usage_tap_water_per_person\": \"110\",\n        \"electricity_tariff\": {\n            \"0-10000\": \"0.35\",\n            \"10001-50000\": \"0.3107\"\n        },\n        \"electricity_return_tariff\": \"0.16656\",\n        \"gas_tariff\": \"1.5\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/proposal/{{sale_id}}","description":"<p>This endpoint can be used to update the details of a sale already created. The endpoint is available for both admin and agent users.</p>\n<p>This endpoint can currently be only used to edit sales of specific flow types and also sales that are not:</p>\n<ul>\n<li><p>cancelled</p>\n</li>\n<li><p>sent</p>\n</li>\n<li><p>anonymised</p>\n</li>\n<li><p>locked</p>\n</li>\n<li><p>Salesdock integration sales</p>\n</li>\n</ul>\n<p>The endpoint accepts mainly the following:</p>\n<ol>\n<li><p>customer - This object contains all ther personal and address information of the customer.</p>\n</li>\n<li><p>product_questions - This object contains the product questions of the sale. A \"delete\" array passsed in this with product question identifiers, will remove existing product questions from the sale and an \"upsert\" array will insert/update product questions into the sale.</p>\n</li>\n<li><p>agreements - Agreemeent data need to be sent for orders. A \"delete\" array passsed in this with agreement idnetifiers, will remove existing agreements from the sale and an \"upsert\" array will insert/update agreements into the sale.</p>\n</li>\n<li><p>flow_heatpump - This array will contain the heapump flow specific information. It accepts one array called \"products\". These accept the add on products of the sale that can be modified. A sample json object os below</p>\n</li>\n</ol>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"products\": {\n        \"delete\": [\n                35,\n                20\n            ]\n        },\n        \"upsert\": [\n                12,\n                15\n            ]\n        }\n    }\n}\n\n</code></pre>\n<p>In the above request, the products in the delete array will be inserted and those in the upsert array will be updated or inserted.</p>\n<p>Other than addon products, heatpump specific information as below are also accepted inside this object:</p>\n<ul>\n<li><p>number_of_persons</p>\n</li>\n<li><p>electricity_usage</p>\n</li>\n<li><p>gas_usage</p>\n</li>\n<li><p>heating_system</p>\n</li>\n<li><p>gas_usage_tap_water_per_person</p>\n</li>\n<li><p>electricity_tariff</p>\n</li>\n<li><p>electricity_return_tariff</p>\n</li>\n<li><p>gas_tariff</p>\n</li>\n</ul>\n<p>The details of the data within these can be verified using the sample request</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","proposal","{{sale_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"71a806b7-9f6c-4fd4-9155-26c2a8057e54","name":"Update heatpump proposal","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"product_id\": \"792\",\n    \"valid_till\": \"20-12-2024\",\n    \"customer\": {\n        \"gender\": \"male\",\n        \"firstname\": \"Jane\",\n        \"lastname\": \"Doe\",\n        \"birthdate\": null,\n        \"email\": \"test@salesdock.nl\",\n        \"phone\": null,\n        \"business\": true,\n        \"company_name\": \"Test\",\n        \"contact_person\": \"Man\",\n        \"coc\": \"12345678\",\n        \"vat\": \"NL123456789B01\",\n        \"address\": {\n            \"postcode\": \"7511PG\",\n            \"housenumber\": \"9\",\n            \"streetname\": \"Neaat\",\n            \"city\": \"AMSTER\"\n        },\n        \"correspondence_address\": {\n            \"postcode\": \"7546MS\",\n            \"housenumber\": \"8\",\n            \"suffix\": \"A\",\n            \"streetname\": \"Neptunusstraat\",\n            \"city\": \"Enschede\"\n        }\n    },\n    \"product_questions\": {\n        \"delete\": [\n            \"ik-steun-bnnvara\",\n            \"test-2\"\n        ],\n        \"upsert\": {\n            \"ik-steun-bnnvara\": \"voor €10 in het eerste 1,5 jaar en daarna voor €10 per jaar\",\n            \"overstapdatum_switchdate_option\": \"Anders\",\n            \"overstapdatum\": \"05-06-2021\",\n            \"multi-selet-question\": [\"Three\", \"Two\", \"Three\"],\n            \"betaalwijze\": \"Automatische incasso\"\n        }\n    },\n    \"agreements\": {\n        \"delete\": [],\n        \"upsert\": {\n            \"info-bnnvara\": \"1\",\n            \"telefonisch-benaderen\": \"1\",\n            \"algemene-voorwaarden\": \"1\",\n            \"annulering\": \"1\"\n        }\n    },\n    \"flow_heatpump\": {\n        \"products\": {\n            \"delete\": {\n                \"test-part-add-ons\": [\n                    431\n                ]\n            },\n            \"upsert\": {\n                \"test-part-add-ons\": [\n                    {\n                        \"id\": 58542,\n                        \"quantity\": \"4\"\n                    }\n                ]\n            }\n        },\n        \"number_of_persons\": \"12\",\n        \"electricity_usage\": \"4000\",\n        \"gas_usage\": \"6000\",\n        \"heating_system\": \"underfloor-heating\",\n        \"gas_usage_tap_water_per_person\": \"110\",\n        \"electricity_tariff\": {\n            \"0-10000\": \"0.35\",\n            \"10001-50000\": \"0.3107\"\n        },\n        \"electricity_return_tariff\": \"0.16656\",\n        \"gas_tariff\": \"1.5\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/proposal/{{sale_id}}"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 23 Jan 2025 12:38:56 GMT"},{"key":"Server","value":"Apache/2.4.59 (Unix) OpenSSL/3.3.0 PHP/8.3.6"},{"key":"Vary","value":"Authorization,Origin"},{"key":"X-Powered-By","value":"PHP/8.3.6"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"phpdebugbar-id","value":"X275a7a19a40813b0b3e4a105aceb6027"},{"key":"x-robots-tag","value":"none"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com https://*.clarity.ms https://region1.analytics.google.com/g/collect https://public.flourish.studio/resources/embed.js; style-src 'self' 'unsafe-inline' https://cdnjs.cloudflare.com https://fonts.googleapis.com https://widget.freshworks.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com https://fonts.bunny.net https://www.googletagmanager.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://*.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io https://*.salesdock.nl https://*.clarity.ms; form-action 'self' https://outside-test3.salesdock.nl https://hub.zonatlas.nl; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com https://flo.uri.sh/; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Cross-Origin-Embedder-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Opener-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"sale_id\": 390\n    },\n    \"message\": \"Sale updated successfully\"\n}"}],"_postman_id":"51de3419-2bcd-4b3e-a2bc-a7424a7ae706"},{"name":"Update heatpump finalized sale","id":"b7f2c0e0-042b-4403-af71-7a6f3e8e0ae6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"product_id\": \"792\",\n    \"valid_till\": \"20-12-2024\",\n    \"customer\": {\n        \"gender\": \"male\",\n        \"firstname\": \"Jane\",\n        \"lastname\": \"Doe\",\n        \"birthdate\": null,\n        \"email\": \"test@salesdock.nl\",\n        \"phone\": null,\n        \"business\": true,\n        \"company_name\": \"Test\",\n        \"contact_person\": \"Man\",\n        \"coc\": \"12345678\",\n        \"vat\": \"NL123456789B01\",\n        \"address\": {\n            \"postcode\": \"7511PG\",\n            \"housenumber\": \"9\",\n            \"streetname\": \"Neaat\",\n            \"city\": \"AMSTER\"\n        },\n        \"correspondence_address\": {\n            \"postcode\": \"7546MS\",\n            \"housenumber\": \"8\",\n            \"suffix\": \"A\",\n            \"streetname\": \"Neptunusstraat\",\n            \"city\": \"Enschede\"\n        }\n    },\n    \"product_questions\": {\n        \"delete\": [\n            \"ik-steun-bnnvara\",\n            \"test-2\"\n        ],\n        \"upsert\": {\n            \"ik-steun-bnnvara\": \"voor €10 in het eerste 1,5 jaar en daarna voor €10 per jaar\",\n            \"overstapdatum_switchdate_option\": \"Anders\",\n            \"overstapdatum\": \"05-06-2021\",\n            \"multi-selet-question\": [\"Three\", \"Two\", \"Three\"],\n            \"betaalwijze\": \"Automatische incasso\"\n        }\n    },\n    \"agreements\": {\n        \"delete\": [],\n        \"upsert\": {\n            \"info-bnnvara\": \"1\",\n            \"telefonisch-benaderen\": \"1\",\n            \"algemene-voorwaarden\": \"1\",\n            \"annulering\": \"1\"\n        }\n    },\n    \"flow_heatpump\": {\n        \"products\": {\n            \"delete\": {\n                \"test-part-add-ons\": [\n                    431\n                ]\n            },\n            \"upsert\": {\n                \"test-part-add-ons\": [\n                    {\n                        \"id\": 58542,\n                        \"quantity\": \"4\"\n                    }\n                ]\n            }\n        },\n        \"number_of_persons\": \"12\",\n        \"electricity_usage\": \"4000\",\n        \"gas_usage\": \"6000\",\n        \"heating_system\": \"underfloor-heating\",\n        \"gas_usage_tap_water_per_person\": \"110\",\n        \"electricity_tariff\": {\n            \"0-10000\": \"0.35\",\n            \"10001-50000\": \"0.3107\"\n        },\n        \"electricity_return_tariff\": \"0.16656\",\n        \"gas_tariff\": \"1.5\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/account/sales/{{sale_id}}","description":"<p>This endpoint can be used to update the details of a sale that is finalized. So only accepted offers and direct orders can be updated with this API.</p>\n<p>The confirmation PDF is not regenerated once a sale is updated via this endpoint.</p>\n<p>This endpoint is only available for admin users.</p>\n<p>This endpoint can currently be only used to edit sales of specific flow types and also sales that are not:</p>\n<ul>\n<li><p>cancelled</p>\n</li>\n<li><p>sent</p>\n</li>\n<li><p>anonymised</p>\n</li>\n<li><p>locked</p>\n</li>\n<li><p>Salesdock integration sales</p>\n</li>\n</ul>\n<p>The endpoint accepts mainly the following:</p>\n<ol>\n<li><p>customer - This object contains all ther personal and address information of the customer.</p>\n</li>\n<li><p>product_questions - This object contains the product questions of the sale. A \"delete\" array passsed in this with product question identifiers, will remove existing product questions from the sale and an \"upsert\" array will insert/update product questions into the sale.</p>\n</li>\n<li><p>agreements - Agreemeent data need to be sent for orders. A \"delete\" array passsed in this with agreement idnetifiers, will remove existing agreements from the sale and an \"upsert\" array will insert/update agreements into the sale.</p>\n</li>\n<li><p>flow_heatpump - This array will contain the heapump flow specific information. It accepts one array called \"products\". These accept the add on products of the sale that can be modified. A sample json object os below</p>\n</li>\n</ol>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"products\": {\n        \"delete\": [\n                35,\n                20\n            ]\n        },\n        \"upsert\": [\n                12,\n                15\n            ]\n        }\n    }\n}\n\n</code></pre>\n<p>In the above request, the products in the delete array will be inserted and those in the upsert array will be updated or inserted.</p>\n<p>Other than addon products, heatpump specific information as below are also accepted inside this object:</p>\n<ul>\n<li><p>number_of_persons</p>\n</li>\n<li><p>electricity_usage</p>\n</li>\n<li><p>gas_usage</p>\n</li>\n<li><p>heating_system</p>\n</li>\n<li><p>gas_usage_tap_water_per_person</p>\n</li>\n<li><p>electricity_tariff</p>\n</li>\n<li><p>electricity_return_tariff</p>\n</li>\n<li><p>gas_tariff</p>\n</li>\n</ul>\n<p>The details of the data within these can be verified using the sample request</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","sales","{{sale_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"496f4390-d40d-4853-a9ca-5011a09e92cc","name":"Update heatpump finalized sale","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"product_id\": \"792\",\n    \"valid_till\": \"20-12-2024\",\n    \"customer\": {\n        \"gender\": \"male\",\n        \"firstname\": \"Jane\",\n        \"lastname\": \"Doe\",\n        \"birthdate\": null,\n        \"email\": \"test@salesdock.nl\",\n        \"phone\": null,\n        \"business\": true,\n        \"company_name\": \"Test\",\n        \"contact_person\": \"Man\",\n        \"coc\": \"12345678\",\n        \"vat\": \"NL123456789B01\",\n        \"address\": {\n            \"postcode\": \"7511PG\",\n            \"housenumber\": \"9\",\n            \"streetname\": \"Neaat\",\n            \"city\": \"AMSTER\"\n        },\n        \"correspondence_address\": {\n            \"postcode\": \"7546MS\",\n            \"housenumber\": \"8\",\n            \"suffix\": \"A\",\n            \"streetname\": \"Neptunusstraat\",\n            \"city\": \"Enschede\"\n        }\n    },\n    \"product_questions\": {\n        \"delete\": [\n            \"ik-steun-bnnvara\",\n            \"test-2\"\n        ],\n        \"upsert\": {\n            \"ik-steun-bnnvara\": \"voor €10 in het eerste 1,5 jaar en daarna voor €10 per jaar\",\n            \"overstapdatum_switchdate_option\": \"Anders\",\n            \"overstapdatum\": \"05-06-2021\",\n            \"multi-selet-question\": [\"Three\", \"Two\", \"Three\"],\n            \"betaalwijze\": \"Automatische incasso\"\n        }\n    },\n    \"agreements\": {\n        \"delete\": [],\n        \"upsert\": {\n            \"info-bnnvara\": \"1\",\n            \"telefonisch-benaderen\": \"1\",\n            \"algemene-voorwaarden\": \"1\",\n            \"annulering\": \"1\"\n        }\n    },\n    \"flow_heatpump\": {\n        \"products\": {\n            \"delete\": {\n                \"test-part-add-ons\": [\n                    431\n                ]\n            },\n            \"upsert\": {\n                \"test-part-add-ons\": [\n                    {\n                        \"id\": 58542,\n                        \"quantity\": \"4\"\n                    }\n                ]\n            }\n        },\n        \"number_of_persons\": \"12\",\n        \"electricity_usage\": \"4000\",\n        \"gas_usage\": \"6000\",\n        \"heating_system\": \"underfloor-heating\",\n        \"gas_usage_tap_water_per_person\": \"110\",\n        \"electricity_tariff\": {\n            \"0-10000\": \"0.35\",\n            \"10001-50000\": \"0.3107\"\n        },\n        \"electricity_return_tariff\": \"0.16656\",\n        \"gas_tariff\": \"1.5\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/account/sales/{{sale_id}}"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 23 Jan 2025 12:38:56 GMT"},{"key":"Server","value":"Apache/2.4.59 (Unix) OpenSSL/3.3.0 PHP/8.3.6"},{"key":"Vary","value":"Authorization,Origin"},{"key":"X-Powered-By","value":"PHP/8.3.6"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"phpdebugbar-id","value":"X275a7a19a40813b0b3e4a105aceb6027"},{"key":"x-robots-tag","value":"none"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com https://*.clarity.ms https://region1.analytics.google.com/g/collect https://public.flourish.studio/resources/embed.js; style-src 'self' 'unsafe-inline' https://cdnjs.cloudflare.com https://fonts.googleapis.com https://widget.freshworks.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com https://fonts.bunny.net https://www.googletagmanager.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://*.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io https://*.salesdock.nl https://*.clarity.ms; form-action 'self' https://outside-test3.salesdock.nl https://hub.zonatlas.nl; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com https://flo.uri.sh/; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Cross-Origin-Embedder-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Opener-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"sale_id\": 390\n    },\n    \"message\": \"Sale updated successfully\"\n}"}],"_postman_id":"b7f2c0e0-042b-4403-af71-7a6f3e8e0ae6"}],"id":"2cd2a92e-4c20-403e-8aa9-2a5537174e64","_postman_id":"2cd2a92e-4c20-403e-8aa9-2a5537174e64","description":""},{"name":"Get products","id":"69af7ce4-6d21-4abd-8c3e-92433d3d758d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/products?q&type&business&types&supplier_id&active&period_filter_on&period&period_start&period_end","description":"<p>This endpoint retrives the the list of products along with basic details.</p>\n<p>The product id obtained from this call can be used to get more details about the product in the \"Get product\" API call and also to create order and offer.</p>\n<p>Different parameters can be used to filter for only specific products as listed below.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","products"],"host":["{{url}}"],"query":[{"description":{"content":"<p>Free text to search by product name</p>\n","type":"text/plain"},"key":"q","value":null},{"description":{"content":"<p>To filter for a certain product type</p>\n","type":"text/plain"},"key":"type","value":null},{"description":{"content":"<p>To filter for business and consumer products. Possible values are 0 = consumer product, 1 = business product, 2 = business and consumer product</p>\n","type":"text/plain"},"key":"business","value":null},{"description":{"content":"<p>To filter for multiple product types. Send as array of product types</p>\n","type":"text/plain"},"key":"types","value":null},{"description":{"content":"<p>To filter products of a certain supplie, use the id of the supplier</p>\n","type":"text/plain"},"key":"supplier_id","value":null},{"description":{"content":"<p>1 = active product, 0 = inactive product (only available in account scope). By default only active products are returned</p>\n","type":"text/plain"},"key":"active","value":null},{"description":{"content":"<p>Possible values - 'created_date', 'updated_date'</p>\n","type":"text/plain"},"key":"period_filter_on","value":null},{"description":{"content":"<p>Possible values - 'today', 'yesterday', 'this_week', 'last_week', 'last_30_days', 'this_month', 'last_month', 'custom'</p>\n","type":"text/plain"},"key":"period","value":null},{"description":{"content":"<p>Date in yyyy-mm-dd when period is custom</p>\n","type":"text/plain"},"key":"period_start","value":null},{"description":{"content":"<p>Date in yyyy-mm-dd when period is custom</p>\n","type":"text/plain"},"key":"period_end","value":null}],"variable":[]}},"response":[{"id":"07399830-c221-4f88-8b45-ba0fc3cf7436","name":"Get products","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/products"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 03 Jun 2022 05:28:02 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=J3oYZj1s%2FyTjJQwXO1odRs6bGRgy3B%2BVLV%2B%2FU00FYmsZ9NWeYWTZg7Xrp2xZbQFPgbrlOaeZOG2EJlZiIYAqA8x1oE8AA2KIZEdF4br%2Bvu2%2Fcq5%2BhCM7eLOAwe8hHWDHF5g%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"715605e4d9789794-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"id\": 424,\n            \"name\": \"Test product 3 jaar\",\n            \"identifier\": \"test-product-3-jaar-1-1-1-1\",\n            \"supplier_id\": 38,\n            \"supplier_name\": \"Test\",\n            \"supplier_identifier\": \"test-1-1\",\n            \"type\": \"energy_e_g\",\n            \"usp\": \"Test, kies duurzaam voor een goede prijs\\r\\nToon voor slechts € 99,- (t.w.v. € 275,-)\",\n            \"description\": \"\",\n            \"cart_info\": \"\",\n            \"business\": \"1\",\n            \"active\": \"1\",\n            \"valid_from\": null,\n            \"valid_till\": null,\n            \"created_at\": \"2018-02-03 19:02:42\",\n            \"updated_at\": \"2022-04-04 11:11:18\"\n        },\n        {\n            \"id\": 425,\n            \"name\": \"Test product 5 jaar\",\n            \"identifier\": \"test-product-5-jaar-1-1\",\n            \"supplier_id\": 38,\n            \"supplier_name\": \"Test\",\n            \"supplier_identifier\": \"test-1-1\",\n            \"type\": \"energy_e_g\",\n            \"usp\": \"Test, kies duurzaam voor een goede prijs\\r\\nVoordeel 5 jaar Vast\",\n            \"description\": \"\",\n            \"cart_info\": \"\",\n            \"business\": \"1\",\n            \"active\": \"1\",\n            \"valid_from\": null,\n            \"valid_till\": null,\n            \"created_at\": \"2018-02-03 19:04:20\",\n            \"updated_at\": \"2021-06-01 12:14:58\"\n        },\n        {\n            \"id\": 426,\n            \"name\": \"Test Open voor MKB\",\n            \"identifier\": \"test-open-voor-mkb-1\",\n            \"supplier_id\": 39,\n            \"supplier_name\": \"Test\",\n            \"supplier_identifier\": \"test\",\n            \"type\": \"energy_e_g\",\n            \"usp\": \"prijs beweegt met markt mee\\r\\nflexibiliteit\\r\\nlage vaste leveringskosten\",\n            \"description\": \"\",\n            \"cart_info\": \"\",\n            \"business\": \"2\",\n            \"active\": \"1\",\n            \"valid_from\": null,\n            \"valid_till\": null,\n            \"created_at\": \"2018-02-03 19:07:18\",\n            \"updated_at\": \"2021-05-04 06:39:02\"\n        }\n    ],\n    \"message\": \"Producten succesvol opgehaald\"\n}"}],"_postman_id":"69af7ce4-6d21-4abd-8c3e-92433d3d758d"},{"name":"Get product","id":"41a0474b-cebf-47cf-b5ac-34b201fecc16","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/products/{{product_id}}","description":"<p>Get details of a product using the product id. Replace {{product_id}} in the URL with the id of the product.</p>\n<p>The product id can be obtained from the \"Get products\" API call.</p>\n<p>Few important details returned in this response are:</p>\n<ul>\n<li><p>id - The id of the product. Used when creating sale</p>\n</li>\n<li><p>type - Product type</p>\n</li>\n<li><p>price - One time price</p>\n</li>\n<li><p>price_action - One time promotion price</p>\n</li>\n<li><p>price_monthly - Monthly price</p>\n</li>\n<li><p>price_monthly_action - Monthly promotion price</p>\n</li>\n<li><p>price_monthly_action_type - If value is monthly, then denotes that the product has a monthly promotion price</p>\n</li>\n<li><p>price_monthly_action_value - Number of months for whic promotion is applicable</p>\n</li>\n<li><p>supplier_id - Id of the supplier of the product</p>\n</li>\n<li><p>supplier_name - Name of the supplier of the product</p>\n</li>\n<li><p>customfields - Array of custom fields of the product and their values</p>\n</li>\n</ul>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","products","{{product_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d45c6669-95f6-4f38-a1fd-33c541ad7a90","name":"Get product","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"}],"url":{"raw":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/products/{{product_id}}","host":["{{url}}"],"path":["api","{{domain}}","{{version}}","{{scope}}","products","{{product_id}}"],"query":[{"key":"api_token","value":"{{api_token}}","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 08 Jun 2023 08:57:11 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"57"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=WKxxNkI5vgNwes6jd2aHD45OWRb05UXSrtmk55kjifHHbRcx5uv6wsirPHNotGVhAKO6JhisGK9d1r73n912q%2BsXtyYu6rT6FzGLYXuFbMIsPxvuVPaiQM%2FtMfF4pQ9JFcQ%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7d3fed0639a61e85-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"id\": 3465,\n        \"name\": \"Test Energie 3 jaar\",\n        \"identifier\": \"test-energie-3-jaar\",\n        \"main\": 1,\n        \"type\": \"energy_e_g\",\n        \"image\": {\n            \"extension\": \"jpg\",\n            \"content\": \"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NsTBsaxoaL7zYb1CnfJa881p3n5udzQQQRcHIg8EYKxiHJ/hkpLjBzZPzb3MH2WnV7lO69TiOopG3Nv49KP/AGW4dfbN1c6P03Tdt9bZ/l5JDD+T/DInBwg5wjfI9zx9lx1e5N2m/EdReNubbw6Fna0AAAWAyAGyyhSfUBAQEBAQR2KYHS1HloWSHZrFvhAdDhmPSsZrE9cN2LUZcXsWmEL+zrC735g9XPTW/EsP0ady1601PxfaP4TmF4LS04tDCyLiWtGset209pWcViOpVy58mX27TLvrJpfHOABJyAzJ6EI6VexPHJLHmgGj5RFyeobAq9ss9i3jwV/qVmbTGsidclko3tc0DLoLbW71jGWy7XRYrx3Ljo1pBDWRF8eTmnVfGdrHf3B3HerNZ3h5+p018FtrfSe9LqVcQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEEDplWGOnaB8d4Yeqxd/wDIWrNO1VrSU5r+EKo/E/BtdVV6MXSrOL1IzUxC7ho/fJhXuZiTWg+DK17HDjZpe09hb3lWadDLieOLabfu2n+zbFtcwICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICCC01w189I8Ri8jCJWN4ltwQOktLh12WF680LWjyxjyxNuqeiWNOxfdmDstvvwIVfkl0fo6OqqwvWda7LFMcVXbkjwR76g1bgRHGHMYflSuFjboAv2uC21h5nFs8Vx/pR1z1+H+WurNzogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICCs6QaDUVU4yOa6KQ7ZIyAXHi4EEE9NrqJiJXtPxDNhjlid47pRdDyW0THXe+WYD4rnNaO3UAPeo5Yb78XzWjasRH+/NdaanZGxrGNDGNFmtaAABwACyeZa02nmtO8uVGIgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICD/2Q==\"\n        },\n        \"usp\": \"Eneco, kies duurzaam voor een goede prijs\\r\\nToon voor slechts € 99,- (t.w.v. € 275,-)\",\n        \"description\": \"\",\n        \"duration\": null,\n        \"business\": \"2\",\n        \"retention\": \"0\",\n        \"confirmation_pdf_layout\": \"pdf.sale\",\n        \"active\": \"1\",\n        \"price\": null,\n        \"price_action\": null,\n        \"price_action_type\": null,\n        \"price_action_value\": null,\n        \"price_monthly\": null,\n        \"price_monthly_action\": null,\n        \"price_monthly_action_type\": null,\n        \"price_monthly_action_value\": null,\n        \"valid_from\": \"2020-01-01\",\n        \"valid_till\": \"2023-12-31\",\n        \"created_at\": \"2019-12-27 06:52:51\",\n        \"updated_at\": \"2023-03-15 11:42:14\",\n        \"supplier_id\": 38,\n        \"supplier_name\": \"Eneco\",\n        \"supplier_identifier\": \"eneco-1-1\",\n        \"customfields\": {\n            \"product_type\": \"fixed\",\n            \"make_second_calculation\": true,\n            \"tariff_single\": \"0.03829\",\n            \"tariff_high\": \"0.04347\",\n            \"tariff_low\": \"0.03168\",\n            \"tariff_high_t2\": \"0.04347\",\n            \"tariff_low_t2\": \"0.03168\",\n            \"tariff_return\": \"0.03829\",\n            \"tariff_return_high\": \"0.03829\",\n            \"tariff_return_low\": \"0.03829\",\n            \"tariff_fixed_e\": \"14.99\",\n            \"g_region_tax_level\": \"supplier\",\n            \"tariff_g\": \"0.1448\",\n            \"tariff_g_g2\": \"0.2448\",\n            \"tariff_fixed_g\": \"15.99\",\n            \"future_return_tariff\": \"0.1\",\n            \"future_return_tariff_high\": \"0.2\",\n            \"future_return_tariff_low\": \"0.3\",\n            \"future_return_costs\": \"1\",\n            \"cashback\": \"\",\n            \"subtract_cashback_from_yearly\": \"\",\n            \"contractduur\": \"12 maanden\",\n            \"test\": \"\",\n            \"aanbieder\": \"Eneco\",\n            \"testaa\": \"\",\n            \"met-cadeau\": \"\",\n            \"erp-id\": \"\",\n            \"is-groene-stroom\": \"\",\n            \"testveld\": \"\",\n            \"tariefcode-energie-\": \"\",\n            \"door-2-door-product\": \"\"\n        },\n        \"documents\": [\n            {\n                \"name\": \"sample.pdf\",\n                \"location\": \"https://app.salesdock.nl/api/testomgeving/v1/user/products/3465/documents/download/eyJpdiI6InBNd0VIdDkwRHhYajRMNXZ2K2xPUGc9PSIsInZhbHVlIjoiVWk5OHFqVTA0eGVzOGhjM3JoZlYxZz09IiwibWFjIjoiMjUyN2Q1ZTIyY2QzMTI5NzRlYTMzOTg1Yjc4YjY3MGY0MWFhYzQyMTkzMGU2ZWYxMzNhZTdmZDYyMjUxYWE1MSIsInRhZyI6IiJ9\"\n            }\n        ]\n    },\n    \"message\": \"Product succesvol opgehaald\"\n}"}],"_postman_id":"41a0474b-cebf-47cf-b5ac-34b201fecc16"},{"name":"Get flows","id":"d2fca7fc-bfbc-48be-bf9f-74d1377cd5d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/flows","description":"<p>Get the list of flows along with basic details.</p>\n<p>The id obtained from this call can be used to get more details about the flow in the \"Get flow\" API call.</p>\n<p>The flow identifier and flow type are used in the \"Create offer\" and \"Create order\" API calls.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","flows"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"480bdb82-9e36-49b3-b3b6-cb94fed5cbba","name":"Get flows","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/flows"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 21 Feb 2020 13:35:40 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"200"},{"key":"X-RateLimit-Remaining","value":"197"},{"key":"Content-Security-Policy","value":"default-src 'none'; base-uri 'none'; connect-src 'self'; font-src 'self' https://fonts.gstatic.com data: https:; form-action 'self'; frame-ancestors 'self'; frame-src 'self'; img-src 'self' http://json-services.nutselect.nl https://files.delta.nl https://www.westbespaarcoach.nl data: https:; media-src 'none'; object-src 'self'; script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com"},{"key":"Feature-Policy","value":"accelerometer 'self'; ambient-light-sensor 'self'; autoplay 'self'; camera 'self'; display-capture 'self'; document-domain *; encrypted-media 'self'; fullscreen 'self'; geolocation 'self'; gyroscope 'self'; magnetometer 'self'; microphone 'self'; midi 'self'; payment 'self'; picture-in-picture *; speaker 'self'; sync-xhr *; usb 'self'; vr 'self'"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"56891acbcf42d5bb-BOM"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"id\": 4,\n            \"title\": \"Elektriciteit & gas\",\n            \"type\": \"energie-small-business\",\n            \"identifier\": \"energie\",\n            \"created_at\": null,\n            \"updated_at\": \"2020-01-01 12:50:21\"\n        }\n    ],\n    \"message\": \"Flows succesvol opgehaald\"\n}"}],"_postman_id":"d2fca7fc-bfbc-48be-bf9f-74d1377cd5d1"},{"name":"Get flow","id":"41e25e9b-aa66-49ab-9498-695c4d4f8749","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/flows/{{flow_id}}","description":"<p>Get flow details using flow id. Replace {{flow_id}} in the URL with the id of the flow.</p>\n<p>The flow id can be obtained from the \"Get flows\" API call.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","flows","{{flow_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"b45ccf9a-ce50-4fca-b747-246d08afb4b5","name":"Get flow","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/flows/{{flow_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 19 Aug 2020 12:30:42 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"200"},{"key":"X-RateLimit-Remaining","value":"199"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self'; form-action 'self'; frame-ancestors 'self'; frame-src 'self'; object-src 'self'"},{"key":"Feature-Policy","value":"accelerometer 'self'; ambient-light-sensor 'self'; autoplay 'self'; battery 'self'; camera 'self'; display-capture 'self'; document-domain *; encrypted-media 'self'; execution-while-not-rendered *; execution-while-out-of-viewport *; fullscreen 'self'; geolocation 'self'; gyroscope 'self'; layout-animations 'self'; legacy-image-formats 'self'; magnetometer 'self'; microphone 'self'; midi 'self'; navigation-override 'self'; oversized-images *; payment 'self'; picture-in-picture *; publickey-credentials 'self'; sync-xhr *; unoptimized-images 'self'; unsized-media *; usb 'self'; wake-lock 'self'; xr-spatial-tracking 'self'"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"Vary","value":"Authorization"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"04a84c4b77000019149b39d200000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"5c53e3258d8b1914-SIN"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"id\": 4,\n        \"title\": \"Elektriciteit & gas MKB\",\n        \"type\": \"energie-small-business\",\n        \"identifier\": \"energie\",\n        \"transaction_type\": \"all\",\n        \"verification_method\": \"signature\",\n        \"minimum_age_customer\": \"18\",\n        \"maximum_age_customer\": \"125\",\n        \"business_offer_iban_required\": false,\n        \"business_order_iban_required\": false,\n        \"created_at\": null,\n        \"updated_at\": \"2020-05-08T04:41:50.000000Z\"\n    },\n    \"message\": \"Flow succesvol opgehaald\"\n}"},{"id":"e5ffad39-8e3d-4eb0-a1b4-17aec69bb4c2","name":"Get default flow with sections","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/flows/1455"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 29 Oct 2024 12:25:45 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"150"},{"key":"X-RateLimit-Remaining","value":"149"},{"key":"x-robots-tag","value":"none"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com https://*.clarity.ms https://region1.analytics.google.com/g/collect https://public.flourish.studio/resources/embed.js; style-src 'self' 'unsafe-inline' https://cdnjs.cloudflare.com https://fonts.googleapis.com https://widget.freshworks.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com https://fonts.bunny.net https://www.googletagmanager.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://*.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io https://*.salesdock.nl https://*.clarity.ms; form-action 'self' https://outside.salesdock.nl https://hub.zonatlas.nl; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com https://flo.uri.sh/; object-src 'self'"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Cross-Origin-Embedder-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Opener-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"8da326698a2f0b6a-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"id\": 1455,\n        \"title\": \"Schilderwerkzaamheden\",\n        \"type\": \"default\",\n        \"identifier\": \"kozijnen\",\n        \"transaction_type\": \"all\",\n        \"verification_method\": \"signature\",\n        \"minimum_age_customer\": \"18\",\n        \"maximum_age_customer\": \"125\",\n        \"consumer_offer_iban_required\": false,\n        \"business_offer_iban_required\": false,\n        \"consumer_order_iban_required\": true,\n        \"business_order_iban_required\": true,\n        \"sections\": [\n            {\n                \"id\": 1677,\n                \"title\": \"Kozijnen buiten\",\n                \"identifier\": \"kozijnen-buiten\",\n                \"mandatory\": false,\n                \"mandatory_for_supplier_ids\": null,\n                \"mandatory_for_product_ids\": null,\n                \"products\": [\n                    {\n                        \"id\": 89727,\n                        \"name\": \"Kozijn 1 (per m2)\",\n                        \"identifier\": \"kozijn-1-per-m2\",\n                        \"maximum_quantity\": 1\n                    },\n                    {\n                        \"id\": 89728,\n                        \"name\": \"Kozijn 2 (per m2)\",\n                        \"identifier\": \"kozijn-1-per-m2-clone\",\n                        \"maximum_quantity\": 1\n                    },\n                    {\n                        \"id\": 89943,\n                        \"name\": \"Kozijn 3 (per m2)\",\n                        \"identifier\": \"kozijn-1-per-m2-clone-1\",\n                        \"maximum_quantity\": 1\n                    },\n                    {\n                        \"id\": 89944,\n                        \"name\": \"Kozijn 2 (per m2) (Kloon)\",\n                        \"identifier\": \"kozijn-1-per-m2-clone-clone\",\n                        \"maximum_quantity\": 1\n                    }\n                ]\n            },\n            {\n                \"id\": 1674,\n                \"title\": \"hal beneden\",\n                \"identifier\": \"hal-beneden\",\n                \"mandatory\": false,\n                \"mandatory_for_supplier_ids\": null,\n                \"mandatory_for_product_ids\": null,\n                \"products\": [\n                    {\n                        \"id\": 89740,\n                        \"name\": \"Kozijnen (Per m2)\",\n                        \"identifier\": \"kozijnen-binnen\",\n                        \"maximum_quantity\": 1\n                    },\n                    {\n                        \"id\": 89741,\n                        \"name\": \"Plafonds (per m2)\",\n                        \"identifier\": \"plafonds\",\n                        \"maximum_quantity\": 1\n                    },\n                    {\n                        \"id\": 89744,\n                        \"name\": \"Wanden (Per m2)\",\n                        \"identifier\": \"wanden-per-m2\",\n                        \"maximum_quantity\": 1\n                    },\n                    {\n                        \"id\": 89745,\n                        \"name\": \"Deuren\",\n                        \"identifier\": \"deuren\",\n                        \"maximum_quantity\": 1\n                    }\n                ]\n            },\n            {\n                \"id\": 1675,\n                \"title\": \"woonkamer\",\n                \"identifier\": \"woonkamer\",\n                \"mandatory\": false,\n                \"mandatory_for_supplier_ids\": null,\n                \"mandatory_for_product_ids\": null,\n                \"products\": [\n                    {\n                        \"id\": 89740,\n                        \"name\": \"Kozijnen (Per m2)\",\n                        \"identifier\": \"kozijnen-binnen\",\n                        \"maximum_quantity\": 1\n                    },\n                    {\n                        \"id\": 89741,\n                        \"name\": \"Plafonds (per m2)\",\n                        \"identifier\": \"plafonds\",\n                        \"maximum_quantity\": 1\n                    },\n                    {\n                        \"id\": 89744,\n                        \"name\": \"Wanden (Per m2)\",\n                        \"identifier\": \"wanden-per-m2\",\n                        \"maximum_quantity\": 1\n                    },\n                    {\n                        \"id\": 89745,\n                        \"name\": \"Deuren\",\n                        \"identifier\": \"deuren\",\n                        \"maximum_quantity\": 1\n                    }\n                ]\n            },\n            {\n                \"id\": 1676,\n                \"title\": \"keuken\",\n                \"identifier\": \"keuken\",\n                \"mandatory\": false,\n                \"mandatory_for_supplier_ids\": null,\n                \"mandatory_for_product_ids\": null,\n                \"products\": [\n                    {\n                        \"id\": 89740,\n                        \"name\": \"Kozijnen (Per m2)\",\n                        \"identifier\": \"kozijnen-binnen\",\n                        \"maximum_quantity\": 1\n                    },\n                    {\n                        \"id\": 89741,\n                        \"name\": \"Plafonds (per m2)\",\n                        \"identifier\": \"plafonds\",\n                        \"maximum_quantity\": 1\n                    },\n                    {\n                        \"id\": 89744,\n                        \"name\": \"Wanden (Per m2)\",\n                        \"identifier\": \"wanden-per-m2\",\n                        \"maximum_quantity\": 1\n                    },\n                    {\n                        \"id\": 89745,\n                        \"name\": \"Deuren\",\n                        \"identifier\": \"deuren\",\n                        \"maximum_quantity\": 1\n                    }\n                ]\n            }\n        ],\n        \"created_at\": \"2023-11-22 12:18:04\",\n        \"updated_at\": \"2024-06-21 11:36:35\"\n    },\n    \"message\": \"Flow retrieved successfully\"\n}"}],"_postman_id":"41e25e9b-aa66-49ab-9498-695c4d4f8749"},{"name":"Get product questions","id":"9c15dcd6-6c3c-4e37-9ce3-a41ce468af96","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/productquestions","description":"<p>Get the list of product questions along with basic details.</p>\n<p>The id obtained from this call can be used to get more details about the product question in the \"Get product question\" API call.</p>\n<p>Also the product question identifiers can be used in the \"Create offer\" and \"Create order\" API calls.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","productquestions"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"b0fd5544-647a-4ea9-8bbc-dbeeddb976bd","name":"Get product questions","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/productquestions"},"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"id\": 42,\n            \"name\": \"Inhuizing?\",\n            \"identifier\": \"inhuizing\",\n            \"input_type\": \"mc-single\",\n            \"description\": \"Betreft het een inhuizing\"\n        },\n        {\n            \"id\": 43,\n            \"name\": \"Datum inhuizing\",\n            \"identifier\": \"datum-inhuizing\",\n            \"input_type\": \"date\",\n            \"description\": \"\"\n        },\n        {\n            \"id\": 101,\n            \"name\": \"Ingangsdatum\",\n            \"identifier\": \"ingangsdatum\",\n            \"input_type\": \"date\",\n            \"description\": \"Max. 8 maanden in toekomst\"\n        },\n        {\n            \"id\": 815,\n            \"name\": \"Betaalwijze\",\n            \"identifier\": \"betaalwijze\",\n            \"input_type\": \"mc-single\",\n            \"description\": \"\"\n        },\n        {\n            \"id\": 816,\n            \"name\": \"Ik wil overstappen per\",\n            \"identifier\": \"ik-wil-overstappen-per\",\n            \"input_type\": \"mc-single\",\n            \"description\": \"\"\n        },\n        {\n            \"id\": 839,\n            \"name\": \"Overstaptest\",\n            \"identifier\": \"overstaptest\",\n            \"input_type\": \"switchdate\",\n            \"description\": \"\"\n        }\n    ],\n    \"message\": \"Product questions retrieved successfully\"\n}"}],"_postman_id":"9c15dcd6-6c3c-4e37-9ce3-a41ce468af96"},{"name":"Get product question","id":"2c7c3eae-a0e4-4913-861d-a09883582460","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"Bearer {{api_token}}"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/productquestions/{{productquestion_id}}","description":"<p>Get detailed information about a product question using the product question id</p>\n<p>The product question id is received from the \"Get product questions\" API call.</p>\n<p>The identifier can be used in the \"Create offer\" and \"Create order\" API calls along with the necessary answers.</p>\n<p>Some of the important information returned in the response of this API call are:</p>\n<ul>\n<li>identifier - The identifier of the product question, that can be used when creating a sale.</li>\n<li>input_type - The type of values that are supported by the product question. All the input types supprt text values except for \"mc-multi\", which support multiple array values</li>\n<li>options - Comma separated list of supported values</li>\n<li>extra - JSON array of product types that support this product question</li>\n</ul>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","productquestions","{{productquestion_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"816d19a4-f6f8-443b-96e7-948da1a73b75","name":"Get product question","originalRequest":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"Bearer {{api_token}}"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/productquestions/{{productquestion_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 24 Oct 2023 13:02:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"120"},{"key":"X-RateLimit-Remaining","value":"119"},{"key":"x-robots-tag","value":"none"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://*.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Cross-Origin-Embedder-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Opener-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=HI%2FOQgiA6LdTjK3MCScUJC22JF8ekM2mxU8z0hiTAQ%2FhLbazbnQYMoS6R8D09b6QcyvSKztcdugj9HvZVZbn1mp5Wkmzyt2MvuyUw3f3yQxFsDjbhy4Z7VMMY4Cqde%2Bwuzg%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"81b26a95af566632-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"id\": 815,\n        \"name\": \"Betaalwijze\",\n        \"identifier\": \"betaalwijze\",\n        \"input_type\": \"mc-single\",\n        \"description\": \"\",\n        \"required\": \"0\",\n        \"visible\": \"0\",\n        \"visible_customer\": \"0\",\n        \"rule\": {\n            \"type\": \"condition_group\",\n            \"criterion\": \"ANY\",\n            \"visibility\": true,\n            \"rules\": [\n                {\n                    \"type\": \"condition_group\",\n                    \"criterion\": \"ALL\",\n                    \"visibility\": true,\n                    \"rules\": [\n                        {\n                            \"type\": \"condition\",\n                            \"name\": \"Product type\",\n                            \"identifier\": \"product.type\",\n                            \"operator\": \"=\",\n                            \"value\": \"energy_e_g\"\n                        },\n                        {\n                            \"type\": \"condition\",\n                            \"name\": \"Inhuizing?\",\n                            \"identifier\": \"question.id\",\n                            \"operator\": \"=\",\n                            \"value\": \"\"\n                        }\n                    ]\n                },\n                {\n                    \"type\": \"condition_group\",\n                    \"criterion\": \"ALL\",\n                    \"visibility\": true,\n                    \"rules\": [\n                        {\n                            \"type\": \"condition\",\n                            \"name\": \"Product type\",\n                            \"identifier\": \"product.type\",\n                            \"operator\": \"=\",\n                            \"value\": \"energy_e_g\"\n                        },\n                        {\n                            \"type\": \"condition\",\n                            \"name\": \"Inhuizing?\",\n                            \"identifier\": \"question.id\",\n                            \"operator\": \"=\",\n                            \"value\": \"Ja\"\n                        }\n                    ]\n                },\n                {\n                    \"type\": \"condition_group\",\n                    \"criterion\": \"ANY\",\n                    \"visibility\": true,\n                    \"rules\": [\n                        {\n                            \"type\": \"condition\",\n                            \"name\": \"Supplier\",\n                            \"identifier\": \"supplier.id\",\n                            \"operator\": \"=\",\n                            \"value\": \"41\"\n                        },\n                        {\n                            \"type\": \"condition\",\n                            \"name\": \"Supplier\",\n                            \"identifier\": \"supplier.id\",\n                            \"operator\": \"=\",\n                            \"value\": \"992\"\n                        },\n                        {\n                            \"type\": \"condition\",\n                            \"name\": \"Supplier\",\n                            \"identifier\": \"supplier.id\",\n                            \"operator\": \"=\",\n                            \"value\": \"1690\"\n                        }\n                    ]\n                }\n            ]\n        },\n        \"rule_required\": \"1\",\n        \"rule_visible\": \"1\",\n        \"validator\": null,\n        \"options\": \"Automatische incasso\\r\\nFactuur\",\n        \"default_value\": \"\",\n        \"extra\": \"{\\\"product_types\\\":[\\\"energy_g\\\",\\\"energy_e\\\",\\\"energy_e_g\\\"]}\",\n        \"created_at\": \"2019-12-15 05:56:05\",\n        \"updated_at\": \"2022-11-09 15:37:02\"\n    },\n    \"message\": \"Product question retrieved successfully\"\n}"}],"_postman_id":"2c7c3eae-a0e4-4913-861d-a09883582460"},{"name":"Get agreements","id":"bf869931-a902-4dce-bb95-eb1c8fa4d5b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/agreements","description":"<p>This endpoint retrieves the list of agreements that would need to be accepted by the customer for completed offers/sales based on the flow settings.</p>\n<p>The agreement identifier needs to be sent along with value \"1\" for accepted agreements when creating sales.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","agreements"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0ef88aab-684d-4022-bea8-dcec96a1038b","name":"Get agreements","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/agreements"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 17 Jan 2022 09:14:07 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' https://bam.eu01.nr-data.net https://www.google-analytics.com https://widget.freshworks.com https://salesdock.freshdesk.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=X5rO5EIspovNKu2mHAllcHhAdBDPozE4ApVm%2FU8Ku79aICrmw6KhLJJmcGYqB70Tdh5e6eWHRuA%2BdhsEHnEmObM07XVS24dFxKdTNoTjlliJ1kbwuElac5ysy7curiwvs64%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"6cee78b35aa9fa84-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"id\": 1,\n            \"identifier\": \"energy-cer-en-car\",\n            \"name\": \"Energy Cer en Car\",\n            \"text\": \"Hierbij verklaar ik toestemming te hebben gegeven\\r\\nvoor opvraging van verbruiksgegevens en de einddatum\\r\\nvan mijn overeenkomst in het Centraal Aansluitingen-\\r\\nen Centraal Einddatum Register (CER en CAR) namens\\r\\nde leverancier van mijn keuze. Deze gegevens worden\\r\\neenmalig opgevraagd en uitsluitend en alleen gebruikt\\r\\nvoor het doen van een Aanbod op Maat.\"\n        },\n        {\n            \"id\": 521,\n            \"identifier\": \"optin\",\n            \"name\": \"Optin\",\n            \"text\": \"Opt-in 2\"\n        },\n        {\n            \"id\": 522,\n            \"identifier\": \"test\",\n            \"name\": \"Test\",\n            \"text\": \"Opt-in 3\"\n        },\n        {\n            \"id\": 694,\n            \"identifier\": \"zonnepanelen-optin-lead\",\n            \"name\": \"Mogen wij of een van onze partners u benaderen over zonnepanelen op uw dak?\",\n            \"text\": \"Test\"\n        },\n        {\n            \"id\": 1029,\n            \"identifier\": \"voorbeeld\",\n            \"name\": \"Voorbeeld\",\n            \"text\": \"Voorbeeld tekst\"\n        },\n        {\n            \"id\": 1158,\n            \"identifier\": \"annulering\",\n            \"name\": \"annulering\",\n            \"text\": \"Door het plaatsen van je bestelling ga je akkoord met de betalingsverplichting en alle voorwaarden (https://www.delta.nl/klantenservice/algemene-voorwaarden/) die op deze bestelling van toepassing zijn. Je machtigt Delta om de factuurbedragen van je rekening te innen.\\r\\n\\r\\nJe hebt het recht om tot en met 14 kalenderdagen na ontvangst van de bevestigingsbrief de bestelling zonder toelichting en zonder administratiekosten te annuleren. Bel daarvoor onze Klantenservice op telefoonnummer 1200 (gratis vanaf je vaste telefoonaansluiting van Delta) of 0900-1884 (normaal tarief).\"\n        }\n    ],\n    \"message\": \"Overeenkomsten succesvol opgehaald\"\n}"}],"_postman_id":"bf869931-a902-4dce-bb95-eb1c8fa4d5b3"},{"name":"Get agreement","id":"b6a513cd-1ac7-4497-9ff5-64292e1aa56d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/agreements/{{agreement_id}}","description":"<p>This endpoint can be used to fetch details of one particular agreement using the agreement id in the URL</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","agreements","{{agreement_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"fc7871ff-dead-4a8d-9923-d88a0b8411c0","name":"Get agreement","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/agreements/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 04 Jul 2024 09:20:56 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"150"},{"key":"X-RateLimit-Remaining","value":"149"},{"key":"x-robots-tag","value":"none"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://cdnjs.cloudflare.com https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com https://fonts.bunny.net https://www.googletagmanager.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://*.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io https://*.salesdock.nl; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Cross-Origin-Embedder-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Opener-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"89de0acb6a6e0b3c-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"id\": 1,\n        \"account_id\": 1,\n        \"name\": \"Energy Cer en Car\",\n        \"identifier\": \"energy-cer-en-car\",\n        \"text\": \"Hierbij verklaar ik toestemming te hebben gegeven\\r\\nvoor opvraging van verbruiksgegevens en de einddatum\\r\\nvan mijn overeenkomst in het Centraal Aansluitingen-\\r\\nen Centraal Einddatum Register (CER en CAR) namens\\r\\nde leverancier van mijn keuze. Deze gegevens worden\\r\\neenmalig opgevraagd en uitsluitend en alleen gebruikt\\r\\nvoor het doen van een Aanbod op Maat.\",\n        \"description\": null,\n        \"type\": \"agreement\",\n        \"archive\": \"0\",\n        \"required\": \"0\",\n        \"visible\": \"0\",\n        \"default_value\": \"0\",\n        \"contract_pdf_visibility\": \"1\",\n        \"rule\": {\n            \"type\": \"condition_group\",\n            \"criterion\": \"ANY\",\n            \"visibility\": true,\n            \"rules\": [\n                {\n                    \"type\": \"condition\",\n                    \"name\": \"Energy type\",\n                    \"identifier\": \"profile.type\",\n                    \"operator\": \"=\",\n                    \"value\": \"e\"\n                },\n                {\n                    \"type\": \"condition\",\n                    \"name\": \"Energy type\",\n                    \"identifier\": \"profile.type\",\n                    \"operator\": \"=\",\n                    \"value\": \"g\"\n                },\n                {\n                    \"type\": \"condition\",\n                    \"name\": \"Energy type\",\n                    \"identifier\": \"profile.type\",\n                    \"operator\": \"=\",\n                    \"value\": \"e_g\"\n                }\n            ]\n        },\n        \"rule_required\": \"1\",\n        \"rule_visible\": \"1\",\n        \"sort\": 1,\n        \"reference_id\": null,\n        \"source\": null,\n        \"salesdock_integration_id\": null,\n        \"created_at\": \"2018-11-07T02:57:49.000000Z\",\n        \"updated_at\": \"2022-11-24T10:53:33.000000Z\",\n        \"deleted_at\": null\n    },\n    \"message\": \"Agreement retrieved successfully\"\n}"}],"_postman_id":"b6a513cd-1ac7-4497-9ff5-64292e1aa56d"},{"name":"Get sales","id":"658e5f87-72b1-4db8-8c75-60c4a27eeefc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/sales","description":"<p>Get the list of sales during a specific period using different filters. Supported filters are described below. The id in the response, can be used in the \"Get sale\" API call to get more comprehensive details about the sale.</p>\n<p><strong>Extensive results</strong></p>\n<p>If the user also likes to see more details about the sales per row, this can be achieved by passing extended=true, in the request. This will fetch much more comprehensive results per sale.</p>\n<p><strong>Filter Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter Name</th>\n<th>Possible Value(s) or Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>period_filter_on</td>\n<td>'created_date', 'updated_date', 'finalized_at', 'cancelled_date', 'sent_date', 'deleted_date'</td>\n<td>The date field to filter on.  <br />created_date - Sale created date.  <br />updated_date - Sale last updated date.  <br />finalized_at - Sale signed date.  <br />cancelled_date - Sale cancelled date.  <br />sent_date - Sale processed date.  <br />deleted_date - Sale deleted date.  <br />  <br />finalized_at filters on signed sales. For integration sales it will return the sales that are handed over in the selected time period, but the finalized_at time will be filled with the signed data</td>\n</tr>\n<tr>\n<td>period</td>\n<td>'today', 'yesterday', 'this_week', 'last_week', 'last_30_days', 'this_month', 'last_month', 'custom'</td>\n<td>Possible periods to filter on</td>\n</tr>\n<tr>\n<td>period_start</td>\n<td>Date in YYYY-MM-DD hh:mm:ss format</td>\n<td>If period is custom</td>\n</tr>\n<tr>\n<td>period_end</td>\n<td>Date in YYYY-MM-DD hh:mm:ss format</td>\n<td>If period is custom</td>\n</tr>\n<tr>\n<td>type</td>\n<td>'sale', 'offer'</td>\n<td>To filter direct sales or offers</td>\n</tr>\n<tr>\n<td>flow_id</td>\n<td>integer</td>\n<td>The id of the flow of the transaction</td>\n</tr>\n<tr>\n<td>supplier_id</td>\n<td>integer</td>\n<td>The id of the supplier of the product of the transaction</td>\n</tr>\n<tr>\n<td>statuses</td>\n<td>array</td>\n<td>The possible statuses can be retrieved using the \"Get sale statuses list\" endpoint Multiple statuses can be passed. Eg: statuses[0]=new&amp;statuses[1]=sent</td>\n</tr>\n<tr>\n<td>offer_statuses</td>\n<td>'open', '1' (accepted), '0' (declined), '2' (expired)</td>\n<td>The status of the offers of the transactions. Multiple offer statuses can be filtered. Eg. offer_statuses[0]=open&amp;offer_statuses[1]=1</td>\n</tr>\n<tr>\n<td>product_types</td>\n<td>array</td>\n<td>The type of the product of the transaction. Multiple product types can be passed like: product_types[0]=simple&amp;product_types[1]=default</td>\n</tr>\n<tr>\n<td>sale_ids</td>\n<td>array</td>\n<td>The ids of the sales can be passed as an array to return specific sales like: sale_ids[0]=123456&amp;sale_ids[1]=5555555</td>\n</tr>\n<tr>\n<td>organisations</td>\n<td>array</td>\n<td>The ids of the organisations can be passed as an array to return sales of specific organisations like: organisations[0]=1&amp;organisations[1]=2</td>\n</tr>\n<tr>\n<td>extended</td>\n<td>boolean</td>\n<td>Send extended=true, to see more comprehensive results per sale</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","sales"],"host":["{{url}}"],"query":[{"disabled":true,"key":"period_filter_on","value":"updated_date"},{"disabled":true,"key":"period","value":"custom"},{"disabled":true,"key":"period_start","value":"{{start_date}}"},{"disabled":true,"key":"period_end","value":"{{end_date}}"},{"disabled":true,"key":"type","value":""},{"disabled":true,"key":"supplier_id","value":""},{"disabled":true,"key":"flow_id","value":""},{"disabled":true,"key":"statuses","value":""},{"disabled":true,"key":"offer_statuses","value":""},{"disabled":true,"key":"product_types","value":""},{"disabled":true,"key":"sale_ids[0]","value":""},{"disabled":true,"key":"sale_ids[1]","value":""},{"disabled":true,"key":"organisations[0]","value":""},{"disabled":true,"description":{"content":"<p>Only available in account scope. If draft sales need to be sent back, then send value as 1</p>\n","type":"text/plain"},"key":"include_concept_sales","value":null}],"variable":[]}},"response":[{"id":"7c3ef2fe-eb27-43f0-8983-dc830e88aae8","name":"Get transactions","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer hn76Dg5ISl6NEXrLbwZJ40VhJfqrje9Gef5euRsQJD6lDDcRTxE7tcRjz9eY","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.salesdock.nl/api/testomgeving/v1/user/sales?period_filter_on=created_date&period=custom&period_start=2019-12-01 00:00:00&period_end=2019-12-31 23:59:59&type=&supplier_id&flow_id&statuses","protocol":"https","host":["app","salesdock","nl"],"path":["api","testomgeving","v1","user","sales"],"query":[{"key":"period_filter_on","value":"created_date"},{"key":"period","value":"custom"},{"key":"period_start","value":"2019-12-01 00:00:00"},{"key":"period_end","value":"2019-12-31 23:59:59"},{"key":"type","value":""},{"key":"supplier_id","value":null},{"key":"flow_id","value":null},{"key":"statuses","value":null},{"key":"api_token","value":"","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 09 Apr 2020 05:45:15 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"200"},{"key":"X-RateLimit-Remaining","value":"199"},{"key":"Content-Security-Policy","value":"default-src 'none'; base-uri 'none'; connect-src 'self'; font-src 'self' https://fonts.gstatic.com data: https:; form-action 'self'; frame-ancestors 'self'; frame-src 'self'; img-src 'self' http://json-services.nutselect.nl https://files.delta.nl https://www.westbespaarcoach.nl data: https:; media-src 'none'; object-src 'self'; script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com"},{"key":"Feature-Policy","value":"accelerometer 'self'; ambient-light-sensor 'self'; autoplay 'self'; camera 'self'; display-capture 'self'; document-domain *; encrypted-media 'self'; fullscreen 'self'; geolocation 'self'; gyroscope 'self'; magnetometer 'self'; microphone 'self'; midi 'self'; payment 'self'; picture-in-picture *; speaker 'self'; sync-xhr *; usb 'self'; vr 'self'"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"5811ebbc5ed3eb79-LAX"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"current_page\": 1,\n        \"first_page_url\": \"https://app.salesdock.nl/api/testomgeving/v1/user/sales?page=1\",\n        \"from\": 1,\n        \"last_page\": 1,\n        \"last_page_url\": \"https://app.salesdock.nl/api/testomgeving/v1/user/sales?page=1\",\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"<< Previous\",\n                \"page\": null,\n                \"active\": false\n            },\n            {\n                \"url\": \"https://app.salesdock.nl/api/testomgeving/v1/user/sales?page=1\",\n                \"label\": \"1\",\n                \"page\": 1,\n                \"active\": true\n            },\n            {\n                \"url\": null,\n                \"label\": \"Next >>\",\n                \"page\": null,\n                \"active\": false\n            }\n        ],\n        \"next_page_url\": null,\n        \"path\": \"https://app.salesdock.nl/api/testomgeving/v1/user/sales\",\n        \"per_page\": 10,\n        \"prev_page_url\": null,\n        \"to\": 4,\n        \"total\": 4,\n        \"data\": [\n            {\n                \"id\": 7708151,\n                \"user_id\": 2916,\n                \"type\": \"sale\",\n                \"sub_type\": \"offer\",\n                \"offer\": \"1\",\n                \"offer_accepted\": \"2\",\n                \"status\": \"offer_expired\",\n                \"verification\": \"none\",\n                \"verified\": null,\n                \"flow_id\": 4,\n                \"product_id\": 90751,\n                \"incoming_id\": null,\n                \"created_at\": \"2026-02-06 17:29:12\",\n                \"last_published_at\": \"2026-02-06 17:29:12\",\n                \"finalized_at\": null,\n                \"updated_at\": \"2026-02-21 08:35:03\",\n                \"outgoing_at\": null,\n                \"offer_answered_at\": null,\n                \"verified_at\": null,\n                \"valid_till\": \"2026-02-20 00:00:00\",\n                \"cancelled_at\": null,\n                \"status_remark\": null,\n                \"cancelled_remark\": \"\",\n                \"user_firstname\": \"Shan\",\n                \"user_lastname\": \"Abdussalam\",\n                \"user_email\": \"shan@salesdock.nl\",\n                \"organisation_name\": \"Default\",\n                \"organisation_identifier\": \"default\",\n                \"gender\": \"male\",\n                \"initials\": \"J.\",\n                \"firstname\": \"Jogn\",\n                \"infix\": null,\n                \"lastname\": \"Doe\",\n                \"business\": \"1\",\n                \"company_name\": \"Salesdock B.V.\",\n                \"source\": null,\n                \"source_id\": null,\n                \"postcode\": \"7511JK\",\n                \"housenumber\": \"12\",\n                \"streetname\": \"M.H. Tromplaan\",\n                \"city\": \"Enschede\",\n                \"coc_branch_number\": \"000041069234\",\n                \"birthdate\": \"01-01-2000\",\n                \"phone\": \"+31648081451\",\n                \"email\": \"shan@salesdock.nl\",\n                \"iban\": \"\",\n                \"connection_postcode\": \"7521WC\",\n                \"connection_housenumber\": \"15 \",\n                \"connection_streetname\": \"Neptunusstraat\",\n                \"connection_city\": \"Enschede\",\n                \"product_name\": \"Engie Open voor MKB dynamic\",\n                \"product_identifier\": \"engie-open-voor-mkb-1-clone-clone\",\n                \"supplier_name\": \"Test supplier 1\",\n                \"lead_id\": null,\n                \"relation_id\": 6998645\n            },\n            {\n                \"id\": 7707168,\n                \"user_id\": 2916,\n                \"type\": \"sale\",\n                \"sub_type\": \"offer\",\n                \"offer\": \"1\",\n                \"offer_accepted\": \"1\",\n                \"status\": \"error\",\n                \"verification\": \"none\",\n                \"verified\": null,\n                \"flow_id\": 4,\n                \"product_id\": 90751,\n                \"incoming_id\": null,\n                \"created_at\": \"2026-02-06 15:32:07\",\n                \"last_published_at\": \"2026-02-06 15:32:07\",\n                \"finalized_at\": \"2026-02-06 17:28:13\",\n                \"updated_at\": \"2026-03-09 03:30:05\",\n                \"outgoing_at\": null,\n                \"offer_answered_at\": \"2026-02-06 17:28:13\",\n                \"verified_at\": null,\n                \"valid_till\": \"2026-02-20 00:00:00\",\n                \"cancelled_at\": null,\n                \"status_remark\": null,\n                \"cancelled_remark\": \"\",\n                \"user_firstname\": \"Shan\",\n                \"user_lastname\": \"Abdussalam\",\n                \"user_email\": \"shan@salesdock.nl\",\n                \"organisation_name\": \"Default\",\n                \"organisation_identifier\": \"default\",\n                \"gender\": \"male\",\n                \"initials\": \"\",\n                \"firstname\": \"*****\",\n                \"infix\": \"*****\",\n                \"lastname\": \"*****\",\n                \"business\": \"1\",\n                \"company_name\": \"Salesdock B.V.\",\n                \"source\": null,\n                \"source_id\": null,\n                \"postcode\": \"*****\",\n                \"housenumber\": \"***** *****\",\n                \"streetname\": \"M.H. Tromplaan\",\n                \"city\": \"Enschede\",\n                \"coc_branch_number\": \"000041069234\",\n                \"birthdate\": null,\n                \"phone\": null,\n                \"email\": \"****@******.***\",\n                \"iban\": \"*****\",\n                \"connection_postcode\": \"\",\n                \"connection_housenumber\": \"***** *****\",\n                \"connection_streetname\": \"Neptunusstraat\",\n                \"connection_city\": \"Enschede\",\n                \"product_name\": \"Engie Open voor MKB dynamic\",\n                \"product_identifier\": \"engie-open-voor-mkb-1-clone-clone\",\n                \"supplier_name\": \"Test supplier 1\",\n                \"lead_id\": null,\n                \"relation_id\": 6998645\n            },\n            {\n                \"id\": 7362418,\n                \"user_id\": 2916,\n                \"type\": \"sale\",\n                \"sub_type\": \"offer\",\n                \"offer\": \"1\",\n                \"offer_accepted\": \"1\",\n                \"status\": \"error\",\n                \"verification\": \"signature\",\n                \"verified\": null,\n                \"flow_id\": 4,\n                \"product_id\": 90751,\n                \"incoming_id\": null,\n                \"created_at\": \"2025-11-26 06:25:21\",\n                \"last_published_at\": \"2025-11-26 06:25:21\",\n                \"finalized_at\": \"2025-11-26 06:27:12\",\n                \"updated_at\": \"2025-12-27 03:30:05\",\n                \"outgoing_at\": null,\n                \"offer_answered_at\": \"2025-11-26 06:27:12\",\n                \"verified_at\": null,\n                \"valid_till\": \"2025-12-10 00:00:00\",\n                \"cancelled_at\": null,\n                \"status_remark\": null,\n                \"cancelled_remark\": \"\",\n                \"user_firstname\": \"Shan\",\n                \"user_lastname\": \"Abdussalam\",\n                \"user_email\": \"shan@salesdock.nl\",\n                \"organisation_name\": \"Default\",\n                \"organisation_identifier\": \"default\",\n                \"gender\": \"female\",\n                \"initials\": \"\",\n                \"firstname\": \"*****\",\n                \"infix\": \"*****\",\n                \"lastname\": \"*****\",\n                \"business\": \"1\",\n                \"company_name\": \"Test Co.\",\n                \"source\": null,\n                \"source_id\": null,\n                \"postcode\": \"*****\",\n                \"housenumber\": \"***** *****\",\n                \"streetname\": \"Willem Wilminkplein\",\n                \"city\": \"Enschede\",\n                \"coc_branch_number\": null,\n                \"birthdate\": null,\n                \"phone\": null,\n                \"email\": \"****@******.***\",\n                \"iban\": \"*****\",\n                \"connection_postcode\": \"\",\n                \"connection_housenumber\": \"***** *****\",\n                \"connection_streetname\": \"Willem Wilminkplein\",\n                \"connection_city\": \"Enschede\",\n                \"product_name\": \"Engie Open voor MKB dynamic\",\n                \"product_identifier\": \"engie-open-voor-mkb-1-clone-clone\",\n                \"supplier_name\": \"Test supplier 1\",\n                \"lead_id\": 67451529,\n                \"relation_id\": 2246163\n            },\n            {\n                \"id\": 7348583,\n                \"user_id\": 2916,\n                \"type\": \"sale\",\n                \"sub_type\": \"offer\",\n                \"offer\": \"1\",\n                \"offer_accepted\": \"1\",\n                \"status\": \"error\",\n                \"verification\": \"signature\",\n                \"verified\": null,\n                \"flow_id\": 4,\n                \"product_id\": 90751,\n                \"incoming_id\": null,\n                \"created_at\": \"2025-11-24 09:14:00\",\n                \"last_published_at\": \"2025-11-24 09:14:00\",\n                \"finalized_at\": \"2025-11-24 09:18:25\",\n                \"updated_at\": \"2025-12-25 03:30:06\",\n                \"outgoing_at\": null,\n                \"offer_answered_at\": \"2025-11-24 09:18:25\",\n                \"verified_at\": null,\n                \"valid_till\": \"2025-12-08 00:00:00\",\n                \"cancelled_at\": \"2025-11-24 09:18:46\",\n                \"status_remark\": null,\n                \"cancelled_remark\": \"no remark\",\n                \"user_firstname\": \"Shan\",\n                \"user_lastname\": \"Abdussalam\",\n                \"user_email\": \"shan@salesdock.nl\",\n                \"organisation_name\": \"Default\",\n                \"organisation_identifier\": \"default\",\n                \"gender\": \"male\",\n                \"initials\": \"\",\n                \"firstname\": \"*****\",\n                \"infix\": \"*****\",\n                \"lastname\": \"*****\",\n                \"business\": \"1\",\n                \"company_name\": \"Salesdock\",\n                \"source\": null,\n                \"source_id\": null,\n                \"postcode\": \"*****\",\n                \"housenumber\": \"***** *****\",\n                \"streetname\": \"Gaffelhoek\",\n                \"city\": \"Enschede\",\n                \"coc_branch_number\": null,\n                \"birthdate\": null,\n                \"phone\": null,\n                \"email\": \"****@******.***\",\n                \"iban\": \"*****\",\n                \"connection_postcode\": \"\",\n                \"connection_housenumber\": \"***** *****\",\n                \"connection_streetname\": \"Neptunusstraat\",\n                \"connection_city\": \"Enschede\",\n                \"product_name\": \"Engie Open voor MKB dynamic\",\n                \"product_identifier\": \"engie-open-voor-mkb-1-clone-clone\",\n                \"supplier_name\": \"Test supplier 1\",\n                \"lead_id\": null,\n                \"relation_id\": 4212319\n            }\n        ]\n    },\n    \"message\": \"Sales retrieved successfully\"\n}"},{"id":"09cdc98e-6540-448b-a505-2458e019c6e2","name":"Get transactions extended","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/sales?extended=true","host":["{{url}}"],"path":["api","{{domain}}","{{version}}","{{scope}}","sales"],"query":[{"key":"period_filter_on","value":"updated_date","disabled":true},{"key":"period","value":"custom","disabled":true},{"key":"period_start","value":"{{start_date}}","disabled":true},{"key":"period_end","value":"{{end_date}}","disabled":true},{"key":"type","value":"","disabled":true},{"key":"supplier_id","value":"","disabled":true},{"key":"flow_id","value":"","disabled":true},{"key":"statuses","value":"","disabled":true},{"key":"offer_statuses","value":"","disabled":true},{"key":"product_types","value":"","disabled":true},{"key":"sale_ids[0]","value":"","type":"text","disabled":true},{"key":"sale_ids[1]","value":"","type":"text","disabled":true},{"key":"extended","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 12 Aug 2024 06:01:51 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"150"},{"key":"X-RateLimit-Remaining","value":"149"},{"key":"x-robots-tag","value":"none"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com https://*.clarity.ms https://region1.analytics.google.com/g/collect; style-src 'self' 'unsafe-inline' https://cdnjs.cloudflare.com https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com https://fonts.bunny.net https://www.googletagmanager.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://*.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io https://*.salesdock.nl https://*.clarity.ms; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Cross-Origin-Embedder-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Opener-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"8b1e40c8d8136622-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"current_page\": 1,\n        \"first_page_url\": \"https://app.salesdock.nl/api/testomgeving/v1/user/sales?period=&period_filter_on=created_date&sort_by=created_date&mode=all&from=&till=&page=1\",\n        \"from\": 1,\n        \"last_page\": 1,\n        \"last_page_url\": \"https://app.salesdock.nl/api/testomgeving/v1/user/sales?period=&period_filter_on=created_date&sort_by=created_date&mode=all&from=&till=&page=55\",\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"<< Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://app.salesdock.nl/api/testomgeving/v1/user/sales?period=&period_filter_on=created_date&sort_by=created_date&mode=all&from=&till=&page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": \"https://app.salesdock.nl/api/testomgeving/v1/user/sales?period=&period_filter_on=created_date&sort_by=created_date&mode=all&from=&till=&page=1\",\n                \"label\": \"Next >>\",\n                \"active\": false\n            }\n        ],\n        \"next_page_url\": \"https://app.salesdock.nl/api/testomgeving/v1/user/sales?period=&period_filter_on=created_date&sort_by=created_date&mode=all&from=&till=&page=1\",\n        \"path\": \"https://app.salesdock.nl/api/testomgeving/v1/user/sales\",\n        \"per_page\": 10,\n        \"prev_page_url\": null,\n        \"to\": 2,\n        \"total\": 2,\n        \"data\": [\n            {\n                \"id\": 5069098,\n                \"type\": \"order\",\n                \"status\": {\n                    \"status_identifier\": \"new\",\n                    \"status\": \"New\",\n                    \"status_remark\": null\n                },\n                \"offer_accepted\": false,\n                \"offer_answered_at\": null,\n                \"offer_reject_message\": null,\n                \"offer_last_viewed_at\": null,\n                \"offer_last_viewed_ip\": null,\n                \"offer_views\": null,\n                \"offer_downloads\": null,\n                \"offer_last_download_at\": null,\n                \"offer_valid_till\": null,\n                \"created_at\": \"2024-06-11 10:16:52\",\n                \"last_published_at\": \"2026-02-06 17:29:12\",\n                \"finalized_at\": \"2024-06-11 10:16:52\",\n                \"updated_at\": \"2024-07-12 03:30:04\",\n                \"processed\": {\n                    \"processed_at\": \"2024-06-11 10:17:50\",\n                    \"outgoing_id\": null,\n                    \"outgoing_app\": null\n                },\n                \"cancelled\": null,\n                \"purchase_number\": null,\n                \"channel\": null,\n                \"source\": null,\n                \"customer\": {\n                    \"gender\": \"male\",\n                    \"initials\": null,\n                    \"firstname\": \"*****\",\n                    \"infix\": \"*****\",\n                    \"lastname\": \"*****\",\n                    \"birthdate\": null,\n                    \"email\": \"****@******.***\",\n                    \"phone\": null,\n                    \"business\": true,\n                    \"company_name\": \"Test\",\n                    \"contact_person\": null,\n                    \"coc\": null,\n                    \"vat\": null,\n                    \"iban\": \"*****\",\n                    \"iban_holder\": null,\n                    \"address\": {\n                        \"postcode\": \"\",\n                        \"housenumber\": \"*****\",\n                        \"suffix\": \"*****\",\n                        \"streetname\": \"Neptunusstraat\",\n                        \"city\": \"Enschede\"\n                    },\n                    \"correspondence_address\": {\n                        \"postcode\": \"*****\",\n                        \"housenumber\": \"***** *****\",\n                        \"suffix\": null,\n                        \"streetname\": \"Testl\",\n                        \"city\": \"Test\"\n                    }\n                },\n                \"created_by\": {\n                    \"user\": {\n                        \"id\": 2916,\n                        \"username\": \"test@salesdock.nl\",\n                        \"firstname\": \"John\",\n                        \"lastname\": \"Doe\"\n                    },\n                    \"organisation\": {\n                        \"id\": 1,\n                        \"identifier\": \"default\",\n                        \"label\": \"Default\"\n                    }\n                },\n                \"sales_representative\": null,\n                \"assigned_to\": null,\n                \"lead\": null,\n                \"relation\": {\n                    \"id\": 4569633,\n                    \"label\": \"Test\"\n                },\n                \"product\": {\n                    \"id\": 94425,\n                    \"identifier\": \"sepa-green-zakelijk-variabel\",\n                    \"label\": \"Sepa Green zakelijk variabel\"\n                },\n                \"products\": [\n                    {\n                        \"id\": 94425,\n                        \"name\": \"Sepa Green zakelijk variabel\",\n                        \"type\": \"energy_e_g\",\n                        \"quantity\": 1,\n                        \"vat_type\": \"exclusive\",\n                        \"vat_percentage\": 21,\n                        \"price_data\": {\n                            \"tariff_high\": 0.67416,\n                            \"tariff_low\": 0.5098,\n                            \"tariff_single\": 0.56881,\n                            \"tariff_return\": 0.06,\n                            \"tariff_return_high\": 0.06,\n                            \"tariff_return_low\": 0.06,\n                            \"tariff_fixed_e\": 4.92,\n                            \"tariff_g\": 1.91378,\n                            \"tariff_g_g2\": 1.91378,\n                            \"tariff_g_region_1\": 0,\n                            \"tariff_g_g2_region_1\": 0,\n                            \"tariff_g_region_2\": 0,\n                            \"tariff_g_g2_region_2\": 0,\n                            \"tariff_g_region_3\": 0,\n                            \"tariff_g_g2_region_3\": 0,\n                            \"tariff_g_region_4\": 0,\n                            \"tariff_g_g2_region_4\": 0,\n                            \"tariff_g_region_5\": 0,\n                            \"tariff_g_g2_region_5\": 0,\n                            \"tariff_g_region_6\": 0,\n                            \"tariff_g_g2_region_6\": 0,\n                            \"tariff_g_region_7\": 0,\n                            \"tariff_g_g2_region_7\": 0,\n                            \"tariff_g_region_8\": 0,\n                            \"tariff_g_g2_region_8\": 0,\n                            \"tariff_g_region_9\": 0,\n                            \"tariff_g_g2_region_9\": 0,\n                            \"tariff_g_region_10\": 0,\n                            \"tariff_g_g2_region_10\": 0,\n                            \"tariff_fixed_g\": 4.92,\n                            \"cashback\": 0\n                        }\n                    }\n                ],\n                \"additional_costs\": [],\n                \"discounts\": [],\n                \"totals\": {\n                    \"monthly\": 97.48,\n                    \"yearly\": 1169.72\n                },\n                \"supplier\": {\n                    \"id\": 2653,\n                    \"identifier\": \"sepa-green\",\n                    \"label\": \"Sepa Green\"\n                },\n                \"flow\": {\n                    \"id\": 4,\n                    \"identifier\": \"energie\",\n                    \"type\": \"energie-small-business\",\n                    \"label\": \"Elektriciteit & gas MKB\"\n                },\n                \"flow_data\": {\n                    \"additional_pricing\": [],\n                    \"product_questions\": [\n                        {\n                            \"id\": 42,\n                            \"identifier\": \"inhuizing\",\n                            \"type\": \"mc-single\",\n                            \"label\": \"Inhuizing?\",\n                            \"value\": \"Ja\"\n                        },\n                        {\n                            \"id\": 43,\n                            \"identifier\": \"datum-inhuizing\",\n                            \"type\": \"date\",\n                            \"label\": \"Datum inhuizing\",\n                            \"value\": \"2024-06-20\"\n                        },\n                        {\n                            \"id\": 815,\n                            \"identifier\": \"betaalwijze\",\n                            \"type\": \"mc-single\",\n                            \"label\": \"Betaalwijze\",\n                            \"value\": \"Automatische incasso\"\n                        },\n                        {\n                            \"id\": 816,\n                            \"identifier\": \"ik-wil-overstappen-per\",\n                            \"type\": \"switchdate\",\n                            \"label\": \"Overstapdatum\",\n                            \"value\": \"2024-07-11\"\n                        }\n                    ],\n                    \"agreements\": [\n                        {\n                            \"id\": 1,\n                            \"identifier\": \"energy-cer-en-car\",\n                            \"type\": \"agreement\",\n                            \"label\": \"Energy Cer en Car\",\n                            \"text\": \"Hierbij verklaar ik toestemming te hebben gegeven\\r\\nvoor opvraging van verbruiksgegevens en de einddatum\\r\\nvan mijn overeenkomst in het Centraal Aansluitingen-\\r\\nen Centraal Einddatum Register (CER en CAR) namens\\r\\nde leverancier van mijn keuze. Deze gegevens worden\\r\\neenmalig opgevraagd en uitsluitend en alleen gebruikt\\r\\nvoor het doen van een Aanbod op Maat.\",\n                            \"value\": true\n                        },\n                        {\n                            \"id\": 2286,\n                            \"identifier\": \"abc\",\n                            \"type\": \"agreement\",\n                            \"label\": \"ABC\",\n                            \"text\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\",\n                            \"value\": false\n                        },\n                        {\n                            \"id\": 2506,\n                            \"identifier\": \"test-dubbele-meter\",\n                            \"type\": \"agreement\",\n                            \"label\": \"Test Dubbele Meter\",\n                            \"text\": \"{{product.extrafield.tariff_high}}1\\r\\n{{product.extrafield.tariff_low}}2\\r\\n{{product.extrafield.tariff_single}}3\\r\\nTest\",\n                            \"value\": false\n                        },\n                        {\n                            \"id\": 2605,\n                            \"identifier\": \"test-agreement-hala-1010001\",\n                            \"type\": \"agreement\",\n                            \"label\": \"Test agreement hala 10/10/001\",\n                            \"text\": \"Test agreement for test\\r\\nBecause descriptive text is so powerful, many examples of it can be found in famous literature and poetry. In this excerpt from Jamaica Inn by Daphne du Maurier, notice the writer’s choice of adjectives, adverbs, and verbs.\",\n                            \"value\": true\n                        }\n                    ],\n                    \"introduction\": null,\n                    \"additional_notes\": null,\n                    \"product_subsidies\": []\n                },\n                \"flow_data_energy\": {\n                    \"multisite\": false,\n                    \"sites\": [\n                        {\n                            \"usage_origin\": \"manual\",\n                            \"living_working_function\": true,\n                            \"bag_function\": \"kantoorfunctie\",\n                            \"address\": {\n                                \"postcode\": \"\",\n                                \"housenumber\": \"*****\",\n                                \"suffix\": \"*****\",\n                                \"streetname\": \"Neptunusstraat\",\n                                \"city\": \"Enschede\"\n                            },\n                            \"electricity\": {\n                                \"ean_code\": \"*****\",\n                                \"metering_number\": null,\n                                \"double_meter\": false,\n                                \"usage_single\": 500,\n                                \"usage_normal\": 0,\n                                \"usage_low\": 0,\n                                \"return_single\": null,\n                                \"return_normal\": null,\n                                \"return_low\": null,\n                                \"connection\": \"E_3X25A\",\n                                \"sjv_e_single\": null,\n                                \"sjv_e_high\": null,\n                                \"sjv_e_low\": null,\n                                \"sjv_e_return\": null,\n                                \"sjv_e_return_high\": null,\n                                \"sjv_e_return_low\": null,\n                                \"estimated_cost\": {\n                                    \"yearly\": 228.89560000000006,\n                                    \"monthly\": 19.074633333333338\n                                }\n                            },\n                            \"gas\": {\n                                \"ean_code\": \"*****\",\n                                \"metering_number\": null,\n                                \"usage\": 300,\n                                \"connection\": \"G_G6_500\",\n                                \"gasregion\": 4,\n                                \"sjv_g\": null,\n                                \"estimated_cost\": {\n                                    \"yearly\": 940.8252,\n                                    \"monthly\": 78.4021\n                                }\n                            },\n                            \"estimated_cost\": {\n                                \"yearly\": 1169.7208,\n                                \"monthly\": 97.47673333333334\n                            }\n                        }\n                    ]\n                },\n                \"extrafields\": {\n                    \"sale\": null,\n                    \"products\": null\n                },\n                \"bundle\": null\n            },\n            {\n                \"id\": 440,\n                \"type\": \"offer\",\n                \"status\": {\n                    \"status_identifier\": \"new\",\n                    \"status\": \"New\",\n                    \"status_remark\": null\n                },\n                \"offer_accepted\": false,\n                \"offer_answered_at\": null,\n                \"offer_reject_message\": null,\n                \"offer_last_viewed_at\": null,\n                \"offer_last_viewed_ip\": null,\n                \"offer_views\": null,\n                \"offer_downloads\": null,\n                \"offer_last_download_at\": null,\n                \"offer_valid_till\": \"2024-05-08 00:00:00\",\n                \"created_at\": \"2024-03-20 08:34:07\",\n                \"last_published_at\": \"2026-02-06 17:29:12\",\n                \"finalized_at\": null,\n                \"updated_at\": \"2024-04-15 13:04:26\",\n                \"processed\": null,\n                \"cancelled\": null,\n                \"purchase_number\": null,\n                \"channel\": \"telemarketing\",\n                \"source\": null,\n                \"customer\": {\n                    \"gender\": \"male\",\n                    \"initials\": null,\n                    \"firstname\": \"Jane\",\n                    \"infix\": null,\n                    \"lastname\": \"Doe\",\n                    \"birthdate\": \"01-01-2000\",\n                    \"email\": \"test@salesdock.nl\",\n                    \"phone\": \"+31611111111\",\n                    \"business\": false,\n                    \"company_name\": \"Test\",\n                    \"contact_person\": null,\n                    \"coc\": \"12345678\",\n                    \"vat\": \"NL123456789B01\",\n                    \"iban\": \"NL91ABNA0417164300\",\n                    \"iban_holder\": \"John Doe\",\n                    \"address\": {\n                        \"postcode\": \"7511PG\",\n                        \"housenumber\": \"9\",\n                        \"suffix\": \"15\",\n                        \"streetname\": \"Neptunusstraat\",\n                        \"city\": \"Enschede\"\n                    },\n                    \"correspondence_address\": {\n                        \"postcode\": \"7511PG\",\n                        \"housenumber\": \"8\",\n                        \"suffix\": \"A\",\n                        \"streetname\": \"Neptunusstraat\",\n                        \"city\": \"Enschede\"\n                    }\n                },\n                \"created_by\": {\n                    \"user\": {\n                        \"id\": 2916,\n                        \"username\": \"shan@salesdock.nl\",\n                        \"firstname\": \"Shan\",\n                        \"lastname\": \"Abdussalam\"\n                    },\n                    \"organisation\": {\n                        \"id\": 1,\n                        \"identifier\": \"default\",\n                        \"label\": \"Default\"\n                    }\n                },\n                \"sales_representative\": {\n                    \"name\": \"Shan Abdussalam\",\n                    \"organisation\": \"Default\",\n                    \"account\": null\n                },\n                \"assigned_to\": null,\n                \"lead\": null,\n                \"relation\": {\n                    \"id\": 205,\n                    \"label\": \"John Doe\"\n                },\n                \"product\": {\n                    \"id\": 3791,\n                    \"identifier\": \"koffie-test\",\n                    \"label\": \"Koffie test\"\n                },\n                \"products\": [\n                    {\n                        \"id\": 3791,\n                        \"name\": \"Koffie test\",\n                        \"type\": \"koffiecontracten\",\n                        \"quantity\": 1,\n                        \"vat_type\": \"exclusive\",\n                        \"vat_percentage\": 21,\n                        \"price_data\": {\n                            \"onetime\": {\n                                \"price\": 50,\n                                \"promotion_price\": null,\n                                \"subtotal_exclusive_vat\": 50,\n                                \"subtotal_inclusive_vat\": 60.5,\n                                \"subtotal_promotion_exclusive_vat\": 0,\n                                \"subtotal_promotion_inclusive_vat\": 0\n                            },\n                            \"monthly\": {\n                                \"price\": 30,\n                                \"promotion_price\": null,\n                                \"promotion_months\": null,\n                                \"subtotal_exclusive_vat\": 30,\n                                \"subtotal_inclusive_vat\": 36.3,\n                                \"subtotal_promotion_exclusive_vat\": 0,\n                                \"subtotal_promotion_inclusive_vat\": 0\n                            }\n                        }\n                    }\n                ],\n                \"additional_costs\": [],\n                \"discounts\": [],\n                \"totals\": {\n                    \"monthly\": 36.3,\n                    \"onetime\": 60.5\n                },\n                \"supplier\": {\n                    \"id\": 122,\n                    \"identifier\": \"troskompas-gids\",\n                    \"label\": \"TROSKOMPAS\"\n                },\n                \"flow\": {\n                    \"id\": 22,\n                    \"identifier\": \"koffie-bestelformulier\",\n                    \"type\": \"default\",\n                    \"label\": \"Koffie bestelformulier\"\n                },\n                \"flow_data\": {\n                    \"additional_pricing\": [],\n                    \"product_questions\": [\n                        {\n                            \"id\": 815,\n                            \"identifier\": \"betaalwijze\",\n                            \"type\": \"mc-single\",\n                            \"label\": \"Betaalwijze\",\n                            \"value\": \"Factuur\"\n                        },\n                        {\n                            \"id\": 4965,\n                            \"identifier\": \"donatiebedrag-in-euros\",\n                            \"type\": \"text\",\n                            \"label\": \"Donatiebedrag (in euro's)\",\n                            \"value\": \"3998\"\n                        }\n                    ],\n                    \"agreements\": null,\n                    \"introduction\": null,\n                    \"additional_notes\": null,\n                    \"product_subsidies\": []\n                },\n                \"extrafields\": {\n                    \"sale\": [\n                        {\n                            \"id\": 2423,\n                            \"identifier\": \"sale-file\",\n                            \"type\": \"text\",\n                            \"label\": \"Sale text\",\n                            \"value\": \"COREHEM84\"\n                        }\n                    ],\n                    \"products\": null\n                },\n                \"bundle\": null\n            }\n        ]\n    },\n    \"message\": \"Sales retrieved successfully\"\n}"}],"_postman_id":"658e5f87-72b1-4db8-8c75-60c4a27eeefc"},{"name":"Get sale","id":"5aff5c51-28c7-460d-b10b-65536774e8ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/sales/{{sale_id}}","description":"<p>Get the details of a sale using the sale_id.</p>\n<p>The sale id can be obtained from the \"Get sales\" API call.</p>\n<p>The response retrieves comprehensive details about the sale including the following information:</p>\n<p><strong>Basic sale details</strong></p>\n<ul>\n<li><p>id - Sale id</p>\n</li>\n<li><p>type - If sale is offer or order</p>\n</li>\n<li><p>offer_accepted - true if offer is accepted, else false</p>\n</li>\n<li><p>offer_answered_at - Date time at which offer was answered.</p>\n</li>\n<li><p>created_at - Date time at which sale was created</p>\n</li>\n<li><p>updated_at - Date time at which sale was last updated</p>\n</li>\n<li><p>finalized_at - Date time at which sale was signed. For integration sales it will return the sales that are handed over in the selected time period when using finalized_at filter, but the finalized_at time will be filled with the signed data</p>\n</li>\n<li><p>channel - The sales channel used to create the sale</p>\n</li>\n</ul>\n<p><strong>Processed</strong></p>\n<p>Array with details regarding sale sent details. If null, then sale is not processed as yet. Response values are:</p>\n<ul>\n<li><p>processed_at - Date time at which sale was sent</p>\n</li>\n<li><p>outgoing_id - Unique id from the destination to which sale was sent</p>\n</li>\n<li><p>outgoing_app - Identifier of the destination to which sale was sent</p>\n</li>\n</ul>\n<p><strong>Cancelled</strong></p>\n<p>Array with details regarding sale cancellation details. If null, then sale is not cancelled as yet. Response values are:</p>\n<ul>\n<li><p>cancelled_at - Date time at which sale was cancelled</p>\n</li>\n<li><p>reason - Cancelled remarks</p>\n</li>\n<li><p>cancelled_by - User array with details of user who cancelled the sale</p>\n</li>\n</ul>\n<p><strong>Source</strong></p>\n<p>Array with details of the dialer row source of the sale. null if sale was not created via dialer row. Response can contain:</p>\n<ul>\n<li><p>id - ID of the dialer row source</p>\n</li>\n<li><p>label - Dialer row source</p>\n</li>\n</ul>\n<p><strong>Customer</strong></p>\n<p>The basic details regarding the custom for whom the sale was done.</p>\n<ul>\n<li><p>gender - Gender of the customer</p>\n</li>\n<li><p>firstname - Firstname of the customer</p>\n</li>\n<li><p>lastname - Last name of the customer</p>\n</li>\n<li><p>email - Customer's email</p>\n</li>\n<li><p>phone - Customer's phone</p>\n</li>\n<li><p>business - true if business sale and false if consumer sale</p>\n</li>\n<li><p>company_name - Name of the company if business sale</p>\n</li>\n<li><p>contact_person - Contact person of the company for business sale</p>\n</li>\n<li><p>address - array containing details of the deliver address</p>\n</li>\n<li><p>correspondence_address - array containing details of the correspondence address. If correspondence address is same as delivery address, then null is returned.</p>\n</li>\n</ul>\n<p><strong>Created by</strong></p>\n<p>created_by returns an array with two sub arrays containing information about the entity that created the sale -</p>\n<ul>\n<li><p>user - array with id, username, firstname and lastname of the user who created the sale</p>\n</li>\n<li><p>organisation - array with id, identifier and label of the organisation who created the sale</p>\n</li>\n</ul>\n<p><strong>Lead</strong></p>\n<p>If sale was created from a lead, this will return an array with details regarding the lead. By default, the response will be null.</p>\n<p><strong>Relation</strong></p>\n<p>Following details of the relation of the sale is returned:</p>\n<ul>\n<li><p>id - ID of the relation</p>\n</li>\n<li><p>label - Name of the relation</p>\n</li>\n</ul>\n<p><strong>Product</strong></p>\n<p>Following details of the product of the sale is returned:</p>\n<ul>\n<li><p>id - ID of the product</p>\n</li>\n<li><p>identifier - Product identifier</p>\n</li>\n<li><p>label - Product name</p>\n</li>\n</ul>\n<p><strong>Supplier</strong></p>\n<p>Following detals of the supplier of the product of the sale is returned:</p>\n<ul>\n<li><p>id - ID of the supplier</p>\n</li>\n<li><p>identifier - Supplier identifier</p>\n</li>\n<li><p>label - Supplier name</p>\n</li>\n</ul>\n<p><strong>Flow</strong></p>\n<p>Following details of the flow of the sale is returned:</p>\n<ul>\n<li><p>id - ID of the flow</p>\n</li>\n<li><p>identifier - Flow identifier</p>\n</li>\n<li><p>label - Flow title</p>\n</li>\n<li><p>type- Flow type</p>\n</li>\n</ul>\n<p><strong>Flow data</strong></p>\n<p>flow_data is an array that contains specific information with regards to the sale. There are five items that are returned in this response:</p>\n<ul>\n<li><p>additional_pricing - Any additional prices added in the sale</p>\n</li>\n<li><p>product_questions - The details of the product questions and answers of the sale</p>\n</li>\n<li><p>agreements - The details of the agreements that are accepted and not accepted in the sale</p>\n</li>\n<li><p>introduction - The PDF introductory notes added in the sale</p>\n</li>\n</ul>\n<p>In product_questions array, if the product question is of type file, then it will return an API URL to download the file. The structure of the response will look something like below:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"id\": 6682,\n    \"identifier\": \"file-question\",\n    \"type\": \"file\",\n    \"label\": \"File question\",\n    \"value\": [\n        {\n            \"name\": \"sample.pdf\",\n            \"extension\": \"pdf\",\n            \"location\": \"https://app.salesdock.nl/api/testomgeving/v1/user/sales/396/question/6682/download/eyJpdiI6IlFpVU5nQmU2ekxpNXVQSERtTkppdmc9PSIsInZhbHVlIjoia2hZdnZJMzFkVnRjenF1UXptT0NNdz09IiwibWFjIjoiNjU4MzY1MjhjYjY1ZjAyM2M3NmI0ZGM2MjEzOGQyN2M0OTI5YjI4NjlhOTA3Yjk0YWIyOTlkMmM4MTAxMWJiYyIsInRhZyI6IiJ9\"\n        },\n        {\n            \"name\": \"unnamed.jpg\",\n            \"extension\": \"jpg\",\n            \"location\": \"https://app.saesldock.nl/api/testomgeving/v1/user/sales/396/question/6682/download/eyJpdiI6IjNhTThyN0pCOGVPNG1IMGt1TjZ1cVE9PSIsInZhbHVlIjoiUVV5WWxJVXU2RWpUdk9xaWVHRzV3QT09IiwibWFjIjoiYWYzZGYyZjUzNjUyMGVlZmE0NjNmM2Q1MWM5ZmFiYjVkZDVhODQ0NTgzNmRiNGU0YTVhMGU0NmRlYjc1Mzg1MCIsInRhZyI6IiJ9\"\n        }\n    ]\n}\n\n</code></pre>\n<p><strong>Flow data (flow specific)</strong></p>\n<p>flow_data_(flow_type_identifier} is an array that returns flow specific response for the sale. For eg: if the sale flow is solar panels, then the response will be flow_data_solar_panel. Below the details of the response for each supported flow type.</p>\n<p>Energy - flow_data_energie</p>\n<ul>\n<li><p>multisite - true if the sale has multi site and false if the sale does not have multi-sites</p>\n</li>\n<li><p>sites - an array for each of the site in the sale with the following information per site</p>\n<ul>\n<li><p>usage_origin - If the usage is estimated using the estimation tool, then 'estimated' and if the usage is manually entered by the agent, then 'manual'</p>\n</li>\n<li><p>living_working_function - true if the site has a living function and false if it does not</p>\n</li>\n<li><p>bag_function - The bag function returned from the BAG API for the sale</p>\n</li>\n<li><p>address - array of information containing the connection address (postcode, housenumber, suffix, streetname and city)</p>\n</li>\n<li><p>electricity - array containing the following information of the site's eletricity data:</p>\n<ul>\n<li><p>ean_code</p>\n</li>\n<li><p>double_meter - true if site has double meter or else false</p>\n</li>\n<li><p>usage_single - Single meter usage</p>\n</li>\n<li><p>usage_normal - Normal usage if double meter is selected</p>\n</li>\n<li><p>usage_low - Low usage if double meter is selected</p>\n</li>\n<li><p>return_single - Electricity return for single meter</p>\n</li>\n<li><p>return_normal - Normal return if double meter is selected</p>\n</li>\n<li><p>return_low - Low return if double meter is selected</p>\n</li>\n<li><p>connection - Electricity connection type (eg: 3x25A, 3x35A etc.)</p>\n</li>\n<li><p>sjv_e_single - SJV Single meter usage</p>\n</li>\n<li><p>sjv_e_high - SJV Normal usage if double meter is selected</p>\n</li>\n<li><p>sjv_e_low - SJV Low usage if double meter is selected</p>\n</li>\n<li><p>sjv_e_return - SJV Electricity return for single meter</p>\n</li>\n<li><p>sjv_e_return_high - SJV Normal return if double meter is selected</p>\n</li>\n<li><p>sjv_e_return_low - SJV Low return if double meter is selected</p>\n</li>\n</ul>\n</li>\n<li><p>gas - array containing the following information of the site's gas data:</p>\n<ul>\n<li><p>ean_code</p>\n</li>\n<li><p>usage - Gas usage for the site</p>\n</li>\n<li><p>connection - Gas connection type (Onbemeten, G10, G16 etc)</p>\n</li>\n<li><p>gasregion - Gas region (G1, G2 etc)</p>\n</li>\n<li><p>sjv_g - SJV Gas usage</p>\n</li>\n</ul>\n</li>\n<li><p>estimated_cost - array containing the following estimated costs for the site:</p>\n<ul>\n<li><p>yearly - Total yearly cost</p>\n</li>\n<li><p>monthly - Total monthly cost</p>\n</li>\n<li><p>yearly_prijsplafond - Total yearly cost with price cap</p>\n</li>\n<li><p>monthly_prijsplafond - Total monthly cost with price cap</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<p>Solar panels (flow_data_solar_panels)</p>\n<ul>\n<li><p>type - 'rent' or 'buy'</p>\n</li>\n<li><p>is_package - true if a package is selected or else false</p>\n</li>\n<li><p>package_content - Comma separated list of products in the package</p>\n</li>\n<li><p>options - Comma separated list of options selected</p>\n</li>\n<li><p>laying_plan - array with below information regarding the laying plan documents uploaded for the sale -</p>\n<ul>\n<li><p>name - Document name</p>\n</li>\n<li><p>extension - Document extension</p>\n</li>\n<li><p>url - Link to download the document</p>\n</li>\n</ul>\n</li>\n<li><p>profile - array with following information about the sale:</p>\n<ul>\n<li><p>usage_in_kwh - Estimate of usage</p>\n</li>\n<li><p>tariff_energy - Electricity tariff</p>\n</li>\n<li><p>tariff_energy_return - Electricity return tariff</p>\n</li>\n<li><p>fusebox_capacity - Capacity of the selected fuse box</p>\n</li>\n</ul>\n</li>\n<li><p>roof - array with following information regarding the roof</p>\n<ul>\n<li>sections<ul>\n<li><p>number_of_panels - Number of panels needed</p>\n</li>\n<li><p>orientation - Roof orientation (north, south, east etc)</p>\n</li>\n<li><p>type - Roof type (flat or sloping)</p>\n</li>\n<li><p>material - Material used in roofing (Roof tiles, Slates, Steel, Zinc etc)</p>\n</li>\n<li><p>surface - Total roof area</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p>yield - array with yield information</p>\n<ul>\n<li>yearly_in_kwh - Yearly yield in KWH</li>\n</ul>\n</li>\n<li><p>savings - Array of savings after installation of solar panels</p>\n<ul>\n<li><p>per_year - Total savings per year</p>\n</li>\n<li><p>roi_in_years - Return of investment after a period</p>\n</li>\n</ul>\n</li>\n</ul>\n<p>Heat pumps (flow_data_heat_pump)</p>\n<ul>\n<li><p>type - rent or buy</p>\n</li>\n<li><p>household_size - number of people in the household</p>\n</li>\n<li><p>electricity_usage - Electricity usage in kWh</p>\n</li>\n<li><p>electricity_tariff - Array of electricity tariff per kWh for aplicable ranges</p>\n</li>\n<li><p>electricity_return_tariff - Electricity tariff per kWh for electricity produced</p>\n</li>\n<li><p>gas_usage - Gas usage in m3</p>\n</li>\n<li><p>gas_tariff - Gas tariff per m3</p>\n</li>\n<li><p>dispensing_system - The heating system used (underfloor-heating, underfloor-heating-and-radiators, radiators-and-underfloor-heating, radiators and convectors)</p>\n</li>\n<li><p>gas_consumption_tapwater_per_person - Gas for tap water per person</p>\n</li>\n</ul>\n<p><strong>Customfields</strong></p>\n<p>extrafields, will return sale, product and supplier extra fields that are saved in the sale.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","sales","{{sale_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c05f2424-a17d-4525-a657-c58dced3f4d9","name":"Get default sale","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer hn76Dg5ISl6NEXrLbwZJ40VhJfqrje9Gef5euRsQJD6lDDcRTxE7tcRjz9eY","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.salesdock.nl/api/testomgeving/v1/user/sales/1562580"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 12 Aug 2024 05:33:49 GMT"},{"key":"Server","value":"Apache/2.4.59 (Unix) OpenSSL/3.3.0 PHP/8.3.6"},{"key":"Vary","value":"Authorization,Origin"},{"key":"X-Powered-By","value":"PHP/8.3.6"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"phpdebugbar-id","value":"X3569f6c7abca1e059f4a0f9dcddba7d3"},{"key":"x-robots-tag","value":"none"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com https://*.clarity.ms https://region1.analytics.google.com/g/collect; style-src 'self' 'unsafe-inline' https://cdnjs.cloudflare.com https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com https://fonts.bunny.net https://www.googletagmanager.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://*.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io https://*.salesdock.nl https://*.clarity.ms; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Cross-Origin-Embedder-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Opener-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"id\": 440,\n        \"type\": \"offer\",\n        \"status\": {\n            \"status_identifier\": \"new\",\n            \"status\": \"New\",\n            \"status_remark\": null\n        },\n        \"offer_accepted\": false,\n        \"offer_answered_at\": null,\n        \"offer_reject_message\": null,\n        \"offer_last_viewed_at\": null,\n        \"offer_last_viewed_ip\": null,\n        \"offer_views\": null,\n        \"offer_downloads\": null,\n        \"offer_last_download_at\": null,\n        \"offer_valid_till\": \"2024-05-08 00:00:00\",\n        \"created_at\": \"2024-03-20 08:34:07\",\n        \"last_published_at\": \"2026-02-06 17:29:12\",\n        \"finalized_at\": null,\n        \"updated_at\": \"2024-04-15 13:04:26\",\n        \"processed\": null,\n        \"cancelled\": null,\n        \"purchase_number\": null,\n        \"channel\": \"telemarketing\",\n        \"source\": null,\n        \"customer\": {\n            \"gender\": \"male\",\n            \"initials\": null,\n            \"firstname\": \"Jane\",\n            \"infix\": null,\n            \"lastname\": \"Doe\",\n            \"birthdate\": \"01-01-2000\",\n            \"email\": \"test@salesdock.nl\",\n            \"phone\": \"+31611111111\",\n            \"business\": false,\n            \"company_name\": \"Test\",\n            \"contact_person\": null,\n            \"coc\": \"12345678\",\n            \"vat\": \"NL123456789B01\",\n            \"iban\": \"NL91ABNA0417164300\",\n            \"iban_holder\": \"John Doe\",\n            \"address\": {\n                \"postcode\": \"7511PG\",\n                \"housenumber\": \"9\",\n                \"suffix\": \"15\",\n                \"streetname\": \"Neptunusstraat\",\n                \"city\": \"Enschede\"\n            },\n            \"correspondence_address\": {\n                \"postcode\": \"7511PG\",\n                \"housenumber\": \"8\",\n                \"suffix\": \"A\",\n                \"streetname\": \"Neptunusstraat\",\n                \"city\": \"Enschede\"\n            }\n        },\n        \"created_by\": {\n            \"user\": {\n                \"id\": 2916,\n                \"username\": \"shan@salesdock.nl\",\n                \"firstname\": \"Shan\",\n                \"lastname\": \"Abdussalam\"\n            },\n            \"organisation\": {\n                \"id\": 1,\n                \"identifier\": \"default\",\n                \"label\": \"Default\"\n            },\n            \"team\": {\n                \"id\": 1,\n                \"identifier\": \"default\",\n                \"label\": \"Default\"\n            }\n        },\n        \"sales_representative\": {\n            \"name\": \"Shan Abdussalam\",\n            \"organisation\": \"Default\",\n            \"account\": null\n        },\n        \"assigned_to\": null,\n        \"lead\": null,\n        \"relation\": {\n            \"id\": 205,\n            \"label\": \"John Doe\"\n        },\n        \"product\": {\n            \"id\": 3791,\n            \"identifier\": \"koffie-test\",\n            \"label\": \"Koffie test\"\n        },\n        \"products\": [\n            {\n                \"id\": 3791,\n                \"name\": \"Koffie test\",\n                \"type\": \"koffiecontracten\",\n                \"quantity\": 1,\n                \"vat_type\": \"exclusive\",\n                \"vat_percentage\": 21,\n                \"price_data\": {\n                    \"onetime\": {\n                        \"price\": 50,\n                        \"promotion_price\": null,\n                        \"subtotal_exclusive_vat\": 50,\n                        \"subtotal_inclusive_vat\": 60.5,\n                        \"subtotal_promotion_exclusive_vat\": 0,\n                        \"subtotal_promotion_inclusive_vat\": 0\n                    },\n                    \"monthly\": {\n                        \"price\": 30,\n                        \"promotion_price\": null,\n                        \"promotion_months\": null,\n                        \"subtotal_exclusive_vat\": 30,\n                        \"subtotal_inclusive_vat\": 36.3,\n                        \"subtotal_promotion_exclusive_vat\": 0,\n                        \"subtotal_promotion_inclusive_vat\": 0\n                    }\n                }\n            }\n        ],\n        \"additional_costs\": [],\n        \"discounts\": [],\n        \"totals\": {\n            \"monthly\": 36.3,\n            \"onetime\": 60.5\n        },\n        \"supplier\": {\n            \"id\": 122,\n            \"identifier\": \"troskompas-gids\",\n            \"label\": \"TROSKOMPAS\"\n        },\n        \"flow\": {\n            \"id\": 22,\n            \"identifier\": \"koffie-bestelformulier\",\n            \"type\": \"default\",\n            \"label\": \"Koffie bestelformulier\"\n        },\n        \"flow_data\": {\n            \"additional_pricing\": [],\n            \"product_questions\": [\n                {\n                    \"id\": 815,\n                    \"identifier\": \"betaalwijze\",\n                    \"type\": \"mc-single\",\n                    \"label\": \"Betaalwijze\",\n                    \"value\": \"Factuur\"\n                },\n                {\n                    \"id\": 4965,\n                    \"identifier\": \"donatiebedrag-in-euros\",\n                    \"type\": \"text\",\n                    \"label\": \"Donatiebedrag (in euro's)\",\n                    \"value\": \"3998\"\n                }\n            ],\n            \"agreements\": null,\n            \"introduction\": null,\n            \"additional_notes\": null,\n            \"product_subsidies\": []\n        },\n        \"extrafields\": {\n            \"sale\": [\n                {\n                    \"id\": 2423,\n                    \"identifier\": \"sale-file\",\n                    \"type\": \"text\",\n                    \"label\": \"Sale text\",\n                    \"value\": \"COREHEM84\"\n                }\n            ],\n            \"products\": null\n        },\n        \"bundle\": null\n    },\n    \"message\": \"Sale retrieved successfully\"\n}"},{"id":"1b979800-049c-4e90-8d2f-74753325778b","name":"Get energie sale","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/sales/{{sale_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 21 Aug 2023 13:07:46 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"120"},{"key":"X-RateLimit-Remaining","value":"118"},{"key":"x-robots-tag","value":"none"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Cross-Origin-Embedder-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Opener-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=9%2Fn%2BgZojzI6vA8pvO9735FxQ8e%2BtznFavdCOHd6wR%2F38oSowFawN%2BjooJVQPHSpnVPC1WcRHP%2BARno7G82XCawD1THDpEeF86E9FTV%2Bi3evtIyzuW4%2F0GBhfMxf2hyXXpl0%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7fa319d33f981cb3-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"id\": 3141628,\n        \"type\": \"offer\",\n        \"status\": {\n            \"status_identifier\": \"new\",\n            \"status\": \"Nieuw\",\n            \"status_remark\": null\n        },\n        \"offer_accepted\": false,\n        \"offer_answered_at\": null,\n        \"offer_reject_message\": null,\n        \"offer_last_viewed_at\": null,\n        \"offer_last_viewed_ip\": null,\n        \"offer_views\": null,\n        \"offer_downloads\": null,\n        \"offer_last_download_at\": null,\n        \"offer_valid_till\": \"2023-01-04 00:00:00\",\n        \"created_at\": \"2022-12-21 07:55:43\",\n        \"last_published_at\": \"2026-02-06 17:29:12\",\n        \"finalized_at\": null,\n        \"updated_at\": \"2022-12-21 07:55:47\",\n        \"processed\": null,\n        \"cancelled\": null,\n        \"purchase_number\": null,\n        \"channel\": \"telemarketing\",\n        \"source\": null,\n        \"customer\": {\n            \"gender\": \"male\",\n            \"firstname\": \"John\",\n            \"lastname\": \"Doe\",\n            \"birthdate\": null,\n            \"email\": \"test@salesdock.nl\",\n            \"phone\": \"+3164808XX1\",\n            \"business\": false,\n            \"company_name\": null,\n            \"contact_person\": null,\n            \"coc\": null,\n            \"vat\": null,\n            \"iban\": null,\n            \"iban_holder\": \"John Doe\",\n            \"address\": {\n                \"postcode\": \"7511PG\",\n                \"housenumber\": \"9\",\n                \"suffix\": null,\n                \"streetname\": \"Willem Wilminkplein\",\n                \"city\": \"Enschede\"\n            },\n            \"correspondence_address\": null\n        },\n        \"created_by\": {\n            \"user\": {\n                \"id\": 2916,\n                \"username\": \"test@salesdock.nl\",\n                \"firstname\": \"John\",\n                \"lastname\": \"Doe\"\n            },\n            \"organisation\": {\n                \"id\": 1,\n                \"identifier\": \"default\",\n                \"label\": \"Default\"\n            },\n            \"team\": {\n                \"id\": 1,\n                \"identifier\": \"default\",\n                \"label\": \"Default\"\n            }\n        },\n        \"sales_representative\": {\n            \"name\": \"Jane Doe\",\n            \"organisation\": \"ABC Sales\",\n            \"account\": \"ABC Inc.\"\n        },\n        \"assigned_to\": null,\n        \"lead\": null,\n        \"relation\": {\n            \"id\": 2812985,\n            \"label\": \"John Doe\"\n        },\n        \"product\": {\n            \"id\": 424,\n            \"identifier\": \"xyz-voordeel-vast-3-jaar\",\n            \"label\": \"XYZ MKB Voordeel Vast 3 jaar\"\n        },\n        \"supplier\": {\n            \"id\": 38,\n            \"identifier\": \"xyz-1\",\n            \"label\": \"XYZ\"\n        },\n        \"flow\": {\n            \"id\": 4,\n            \"identifier\": \"energie\",\n            \"type\": \"energie-small-business\",\n            \"label\": \"Elektriciteit & gas MKB\"\n        },\n        \"flow_data\": {\n            \"additional_pricing\": [],\n            \"product_questions\": [\n                {\n                    \"id\": 816,\n                    \"identifier\": \"ik-wil-overstappen-per\",\n                    \"type\": \"switchdate\",\n                    \"label\": \"Overstapdatum\",\n                    \"value\": \"2023-08-19\"\n                },\n                {\n                    \"id\": 42,\n                    \"identifier\": \"inhuizing\",\n                    \"type\": \"mc-single\",\n                    \"label\": \"Inhuizing?\",\n                    \"value\": \"Nee\"\n                }\n            ],\n            \"agreements\": null,\n            \"introduction\": null,\n            \"additional_notes\": \"Test notities\\r\\n\\r\\nOrg: Default\\r\\nFlow:Elektriciteit & gas MKB\\r\\nAccount:  Testomgeving\\r\\n\\r\\nSale firstname: Test\\r\\nSale phone: +31 6 48081451\"\n        },\n        \"flow_data_energy\": {\n            \"multisite\": false,\n            \"sites\": [\n                {\n                    \"usage_origin\": \"manual\",\n                    \"living_working_function\": true,\n                    \"bag_function\": \"kantoorfunctie\",\n                    \"address\": {\n                        \"postcode\": \"7511PG\",\n                        \"housenumber\": \"9\",\n                        \"suffix\": null,\n                        \"streetname\": \"Neptunusstraat\",\n                        \"city\": \"Enschede\"\n                    },\n                    \"electricity\": {\n                        \"ean_code\": \"871694840009017697\",\n                        \"metering_number\": null,\n                        \"double_meter\": false,\n                        \"double_low_tariff\": \"23.00\",\n                        \"usage_single\": 500,\n                        \"usage_normal\": 0,\n                        \"usage_low\": 0,\n                        \"return_single\": null,\n                        \"return_normal\": null,\n                        \"return_low\": null,\n                        \"connection\": \"E_3X25A\",\n                        \"sjv_e_single\": null,\n                        \"sjv_e_high\": null,\n                        \"sjv_e_low\": null,\n                        \"sjv_e_return\": null,\n                        \"sjv_e_return_high\": null,\n                        \"sjv_e_return_low\": null,\n                        \"estimated_cost\": {\n                            \"yearly\": 66.360,\n                            \"monthly\": 5.530\n                        }\n                    },\n                    \"gas\": {\n                        \"ean_code\": \"871694840015349157\",\n                        \"metering_number\": null,\n                        \"usage\": 300,\n                        \"connection\": \"G_G6_500\",\n                        \"gasregion\": 4,\n                        \"sjv_g\": null,\n                        \"estimated_cost\": {\n                            \"yearly\": 25.360,\n                            \"monthly\": 15.530\n                        }\n                    },\n                    \"estimated_cost\": {\n                        \"yearly\": 746.3335,\n                        \"monthly\": 62.19445833333333,\n                        \"yearly_prijsplafond\": 619.3446691680033,\n                        \"monthly_prijsplafond\": 51.612055764000274\n                    }\n                }\n            ]\n        },\n        \"extrafields\": {\n            \"sale\": null,\n            \"products\": null\n        },\n        \"bundle\": null\n    },\n    \"message\": \"Sale succesvol opgehaald\"\n}"},{"id":"db12bdb3-74da-4e84-8900-cb9670fc383f","name":"Get solar sale","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/sales/{{sale_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 Dec 2022 06:56:58 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=EgIT%2BB8GRuIlAQq05Y%2FUZz3RAgHZtg4aHwx3eyEUE09PXXwboep3oUHJkCMZXyWfReSO7K72VTgX685XApV%2BuMpiJlu0yVNuTdwHxA%2F5ZRHV2THu84t%2BdBK5e9sFFSn8jJo%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"77ceb88a2e46b701-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"id\": 3141628,\n        \"type\": \"offer\",\n        \"status\": {\n            \"status_identifier\": \"new\",\n            \"status\": \"Nieuw\",\n            \"status_remark\": null\n        },\n        \"offer_accepted\": false,\n        \"offer_answered_at\": null,\n        \"offer_reject_message\": null,\n        \"offer_last_viewed_at\": null,\n        \"offer_last_viewed_ip\": null,\n        \"offer_views\": null,\n        \"offer_downloads\": null,\n        \"offer_last_download_at\": null,\n        \"offer_valid_till\": \"2023-01-04 00:00:00\",\n        \"created_at\": \"2022-12-21 07:55:43\",\n        \"last_published_at\": \"2026-02-06 17:29:12\",\n        \"finalized_at\": null,\n        \"updated_at\": \"2022-12-21 07:55:47\",\n        \"processed\": null,\n        \"cancelled\": null,\n        \"purchase_number\": null,\n        \"channel\": \"telemarketing\",\n        \"source\": null,\n        \"customer\": {\n            \"gender\": \"male\",\n            \"firstname\": \"John\",\n            \"lastname\": \"Doe\",\n            \"birthdate\": null,\n            \"email\": \"test@salesdock.nl\",\n            \"phone\": \"+3164808XX1\",\n            \"business\": false,\n            \"company_name\": null,\n            \"contact_person\": null,\n            \"coc\": null,\n            \"vat\": null,\n            \"iban\": null,\n            \"iban_holder\": \"John Doe\",\n            \"address\": {\n                \"postcode\": \"7511PG\",\n                \"housenumber\": \"9\",\n                \"suffix\": null,\n                \"streetname\": \"Willem Wilminkplein\",\n                \"city\": \"Enschede\"\n            },\n            \"correspondence_address\": null\n        },\n        \"created_by\": {\n            \"user\": {\n                \"id\": 2916,\n                \"username\": \"test@salesdock.nl\",\n                \"firstname\": \"John\",\n                \"lastname\": \"Doe\"\n            },\n            \"organisation\": {\n                \"id\": 1,\n                \"identifier\": \"default\",\n                \"label\": \"Default\"\n            },\n            \"team\": {\n                \"id\": 1,\n                \"identifier\": \"default\",\n                \"label\": \"Default\"\n            }\n        },\n        \"sales_representative\": {\n            \"name\": \"Jane Doe\",\n            \"organisation\": \"ABC Sales\",\n            \"account\": \"ABC Inc.\"\n        },\n        \"assigned_to\": null,\n        \"lead\": null,\n        \"relation\": {\n            \"id\": 2812985,\n            \"label\": \"John Doe\"\n        },\n        \"product\": {\n            \"id\": 22266,\n            \"identifier\": \"xyz-solar-320-wp\",\n            \"label\": \"XYZ Solar 320 Wp\"\n        },\n        \"products\": [\n            {\n                \"id\": 3791,\n                \"name\": \"Koffie test\",\n                \"type\": \"koffiecontracten\",\n                \"quantity\": 1,\n                \"vat_type\": \"exclusive\",\n                \"vat_percentage\": 21,\n                \"price_data\": {\n                    \"onetime\": {\n                        \"price\": 50,\n                        \"promotion_price\": null,\n                        \"subtotal_exclusive_vat\": 50,\n                        \"subtotal_inclusive_vat\": 60.5,\n                        \"subtotal_promotion_exclusive_vat\": 0,\n                        \"subtotal_promotion_inclusive_vat\": 0\n                    },\n                    \"monthly\": {\n                        \"price\": 30,\n                        \"promotion_price\": null,\n                        \"promotion_months\": null,\n                        \"subtotal_exclusive_vat\": 30,\n                        \"subtotal_inclusive_vat\": 36.3,\n                        \"subtotal_promotion_exclusive_vat\": 0,\n                        \"subtotal_promotion_inclusive_vat\": 0\n                    }\n                }\n            }\n        ],\n        \"additional_costs\": [],\n        \"discounts\": [],\n        \"totals\": {\n            \"monthly\": 36.3,\n            \"onetime\": 60.5\n        },\n        \"supplier\": {\n            \"id\": 879,\n            \"identifier\": \"test-supplier\",\n            \"label\": \"Test Supplier\"\n        },\n        \"flow\": {\n            \"id\": 324,\n            \"identifier\": \"nieuwe-flow\",\n            \"type\": \"solar-panels\",\n            \"label\": \"Zonnepanelen\"\n        },\n        \"flow_data\": {\n            \"additional_pricing\": [],\n            \"product_questions\": [\n                {\n                    \"id\": 4932,\n                    \"identifier\": \"daktype\",\n                    \"type\": \"mc-multi\",\n                    \"label\": \"Daktype\",\n                    \"value\": [\n                        \"Bitumen\",\n                        \"Riet\"\n                    ]\n                }\n            ],\n            \"agreements\": null,\n            \"introduction\": null,\n            \"additional_notes\": null\n        },\n        \"flow_data_solar_panel\": {\n            \"type\": \"buy\",\n            \"is_package\": false,\n            \"package_content\": null,\n            \"options\": \"Zonnesysteem\",\n            \"laying_plan\": [\n                {\n                    \"name\": \"Testomgeving Zonnepaneel ontwerp.pdf\",\n                    \"extension\": \"pdf\",\n                    \"url\": \"https://app.salesdock.test/api/testomgeving/v1/account/sales/3686646/documents/eyJpdiI6IkJUY3JLSnFYWm52d1owSml1bkVkOWc9PSIsInZhbHVlIjoiU1VRLzFiQXhIaHBkMlpVaVFuaWMvdz09IiwibWFjIjoiMTI2Yzc2ZTMzZjJkYTUyZmExMjcwNWUwZTcyNjk5NmZmYTIwZGEyOTAwMTUxNGU4ZTRkOTQ1MTViMTRlNDYyNSIsInRhZyI6IiJ91222\"\n                }\n            ],\n            \"profile\": {\n                \"usage_in_kwh\": 5000,\n                \"tariff_energy\": 0.23,\n                \"tariff_energy_return\": 0.07,\n                \"fusebox_capacity\": null\n            },\n            \"roof\": {\n                \"sections\": [\n                    {\n                        \"number_of_panels\": 15,\n                        \"orientation\": \"south\",\n                        \"type\": \"sloping\",\n                        \"material\": \"\",\n                        \"surface\": null\n                    }\n                ]\n            },\n            \"yield\": {\n                \"yearly_in_kwh\": 4704\n            },\n            \"savings\": {\n                \"per_year\": 1081.92,\n                \"roi_in_years\": 548.8729008754918\n            }\n        },\n        \"extrafields\": {\n            \"sale\": null,\n            \"products\": [\n                {\n                    \"product_id\": 22266,\n                    \"product_identifier\": \"xyz-solar-320-wp\",\n                    \"extrafields\": [\n                        {\n                            \"id\": 2907,\n                            \"identifier\": \"inkoopprijs\",\n                            \"type\": \"price\",\n                            \"label\": \"Inkoopprijs\",\n                            \"value\": \"350\"\n                        }\n                    ]\n                },\n                {\n                    \"product_id\": 22267,\n                    \"product_identifier\": \"xyz-3600-mtl-s\",\n                    \"extrafields\": [\n                        {\n                            \"id\": 2907,\n                            \"identifier\": \"inkoopprijs\",\n                            \"type\": \"price\",\n                            \"label\": \"Inkoopprijs\",\n                            \"value\": \"75\"\n                        }\n                    ]\n                }\n            ]\n        },\n        \"bundle\": null\n    },\n    \"message\": \"Sale succesvol opgehaald\"\n}"},{"id":"4669e260-5e46-4a68-8c34-a10cb5cb9f55","name":"Get heat pump sale","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/sales/{{sale_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 22 Aug 2023 11:22:40 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"120"},{"key":"X-RateLimit-Remaining","value":"119"},{"key":"x-robots-tag","value":"none"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Cross-Origin-Embedder-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Opener-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=DBMqmlxPcHLCENhXKTf37ZRoD9Ban4YbDnT3GnWg7%2FN%2FRF8iJv%2FBbgYh%2FhofD2cI%2FXwsSUplf6soZebrqBp12i6XZRMtZGSq2YQVuvcqpTg%2F3yrM0Nnbewj46SXWIaKCcMQ%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7faabd3ffed81c99-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"id\": 3141628,\n        \"type\": \"offer\",\n        \"status\": {\n            \"status_identifier\": \"new\",\n            \"status\": \"Nieuw\",\n            \"status_remark\": null\n        },\n        \"offer_accepted\": false,\n        \"offer_answered_at\": null,\n        \"offer_reject_message\": null,\n        \"offer_last_viewed_at\": null,\n        \"offer_last_viewed_ip\": null,\n        \"offer_views\": null,\n        \"offer_downloads\": null,\n        \"offer_last_download_at\": null,\n        \"offer_valid_till\": \"2023-01-04 00:00:00\",\n        \"created_at\": \"2022-12-21 07:55:43\",\n        \"last_published_at\": \"2026-02-06 17:29:12\",\n        \"finalized_at\": null,\n        \"updated_at\": \"2022-12-21 07:55:47\",\n        \"processed\": null,\n        \"cancelled\": null,\n        \"purchase_number\": null,\n        \"channel\": \"telemarketing\",\n        \"source\": null,\n        \"customer\": {\n            \"gender\": \"male\",\n            \"firstname\": \"John\",\n            \"lastname\": \"Doe\",\n            \"birthdate\": null,\n            \"email\": \"test@salesdock.nl\",\n            \"phone\": \"+3164808XX1\",\n            \"business\": false,\n            \"company_name\": null,\n            \"contact_person\": null,\n            \"coc\": null,\n            \"vat\": null,\n            \"iban\": null,\n            \"iban_holder\": \"John Doe\",\n            \"address\": {\n                \"postcode\": \"7511PG\",\n                \"housenumber\": \"9\",\n                \"suffix\": null,\n                \"streetname\": \"Willem Wilminkplein\",\n                \"city\": \"Enschede\"\n            },\n            \"correspondence_address\": null\n        },\n        \"created_by\": {\n            \"user\": {\n                \"id\": 2916,\n                \"username\": \"test@salesdock.nl\",\n                \"firstname\": \"John\",\n                \"lastname\": \"Doe\"\n            },\n            \"organisation\": {\n                \"id\": 1,\n                \"identifier\": \"default\",\n                \"label\": \"Default\"\n            },\n            \"team\": {\n                \"id\": 1,\n                \"identifier\": \"default\",\n                \"label\": \"Default\"\n            }\n        },\n        \"sales_representative\": {\n            \"name\": \"Jane Doe\",\n            \"organisation\": \"ABC Sales\",\n            \"account\": \"ABC Inc.\"\n        },\n        \"assigned_to\": null,\n        \"lead\": null,\n        \"relation\": {\n            \"id\": 2812985,\n            \"label\": \"John Doe\"\n        },\n        \"product\": {\n            \"id\": 40960,\n            \"identifier\": \"heat-pump-test\",\n            \"label\": \"Heat pump test\"\n        },\n        \"products\": [\n            {\n                \"id\": 3791,\n                \"name\": \"Koffie test\",\n                \"type\": \"koffiecontracten\",\n                \"quantity\": 1,\n                \"vat_type\": \"exclusive\",\n                \"vat_percentage\": 21,\n                \"price_data\": {\n                    \"onetime\": {\n                        \"price\": 50,\n                        \"promotion_price\": null,\n                        \"subtotal_exclusive_vat\": 50,\n                        \"subtotal_inclusive_vat\": 60.5,\n                        \"subtotal_promotion_exclusive_vat\": 0,\n                        \"subtotal_promotion_inclusive_vat\": 0\n                    },\n                    \"monthly\": {\n                        \"price\": 30,\n                        \"promotion_price\": null,\n                        \"promotion_months\": null,\n                        \"subtotal_exclusive_vat\": 30,\n                        \"subtotal_inclusive_vat\": 36.3,\n                        \"subtotal_promotion_exclusive_vat\": 0,\n                        \"subtotal_promotion_inclusive_vat\": 0\n                    }\n                }\n            }\n        ],\n        \"additional_costs\": [],\n        \"discounts\": [],\n        \"totals\": {\n            \"monthly\": 36.3,\n            \"onetime\": 60.5\n        },\n        \"supplier\": {\n            \"id\": 47,\n            \"identifier\": \"xyz\",\n            \"label\": \"XYZ\"\n        },\n        \"flow\": {\n            \"id\": 942,\n            \"identifier\": \"heat-pump-flow\",\n            \"type\": \"heat-pump\",\n            \"label\": \"Heat pump flow\"\n        },\n        \"flow_data\": {\n            \"additional_pricing\": [],\n            \"product_questions\": [],\n            \"agreements\": null,\n            \"introduction\": null,\n            \"additional_notes\": null\n        },\n        \"flow_data_heat_pump\": {\n            \"type\": \"rent\",\n            \"household_size\": 5,\n            \"electricity_usage\": 2000,\n            \"electricity_tariff\": {\n                \"0-10000\": \"0.35\",\n                \"10001-50000\": \"0.3107\"\n            },\n            \"electricity_return_tariff\": 0.16656,\n            \"gas_usage\": 100,\n            \"gas_tariff\": 1.5,\n            \"dispensing_system\": \"underfloor-heating\",\n            \"gas_consumption_tapwater_per_person\": 90\n        },\n        \"extrafields\": {\n            \"sale\": null,\n            \"products\": null\n        },\n        \"bundle\": null\n    },\n    \"message\": \"Sale succesvol opgehaald\"\n}"}],"_postman_id":"5aff5c51-28c7-460d-b10b-65536774e8ae"},{"name":"Get sale contract","id":"c123872b-1690-4ff5-9182-cd1901a6eeaf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/sales/contract/{{sale_id}}","description":"<p>Fetches the contract pdf of a sale in base64 format using the sale id.</p>\n<p>This endpoint is only available for admin users</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","sales","contract","{{sale_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"875fab91-79b3-456a-bda3-3bd5e0009b0a","name":"Get sale contract","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/sales/contract/{{sale_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 30 Jul 2021 06:41:00 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' https://bam.eu01.nr-data.net https://www.google-analytics.com https://widget.freshworks.com https://salesdock.freshdesk.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=AaO2%2FRrs2zBLXctNvODugwB%2B3sWTStGldllLh8aVN2o9bTHc135ySl09eyERAy2L31Otx9msGw2BrgiitOeDPE3kxmB1wyG7sD%2FBkcecOzXIMCIzhwDLTTPJ%2FwZhmq5V7Es%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"676c994a2dbc4c13-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"id\": 1562580,\n        \"contract\": {\n            \"content\": \"JVBERi0xLjQKMSAwIG9iago8PAovVGl0bGUgKP7/KQovQ3JlYXRvciAo/v8AdwBrAGgAdABtAGwAdABvAHAAZABmACAAMAAuADEAMgAuADUpCi9Qcm9kdWNlciAo/v8AUQB0ACAANAAuADgALgA3KQovQ3JlYXRpb25EYXRlIChEOjIwMjEwNTI5MDIwMDA2KzAyJzAwJykKPj4KZW5kb2JqCjMgMCBvYmoKPDwKL1R5cGUgL0V4dEdTdGF0ZQovU0EgdHJ1ZQovU00gMC4wMgovY2EgMS4wCi9DQSAxLjAKL0FJUyBmYWxzZQovU01hc2sgL05vbmU+PgplbmRvYmoKNCAwIG9iagpbL1BhdHRlcm4gL0RldmljZVJHQl0KZW5kb2JqCjYgMCBvYmoKPDwKL1R5cGUgL1hPYmplY3QKL1N1YnR5cGUgL0ltYWdlCi9XaWR0aCA0MDAKL0hlaWdodCAyMDAKL0JpdHNQZXJDb21wb25lbnQgOAovQ29sb3JTcGFjZSAvRGV2aWNlR3JheQovTGVuZ3RoIDcgMCBSCi9GaWx0ZXIgL0ZsYXRlRGVjb2RlCj4+CnN0cmVhbQp4nO3YMUoDYRRG0bS2FkKqVFZWLipgHRCshCxAmA1kDe7H1iqdYDWV7uF3YC7jOSv44MIr3m4HsAE37xNLu0zjQaYfFvcy3uNt7e1b9KxHih4terTo0aJHix4terTo0aJHix4terTo0aJHix4terTo0aJHix4terTo0aJHix4terTo0aJHix4terTo0aJHix4terTo0aJHix4terTo0aJHix4terTo0aJHix4terTo0aJHix4terTo0aJHix4terTo0aJHix4terTo0aJHix4terTo0aJHix4terTo0aJHix4terTo0aJHix4terTo0aJHix4terTo0aJHix4terTo0aJHix4terTo0aJHy0mPFD1a/nCvLmtv36LzeI/XpyMLOx3HewAAAPAvHb4/Wdr1Y7jHw9qvnk2ah3vcrz19k656pOjRokeLHi16tOjRokeLHi16tOjRokeLHi16tOjRokeLHi16tOjRokeLHi16tOjRokeLHi16tOjRokeLHi16tOjRokeLHi16tOjRokeLHi16tOjRokeLHi16tOjRokeLHi16tOjRokeLHi16tOjRokeLHi16tOjRokeLHi16tOjR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8t/2vv8Agsf8Yv2sY7nTf7VHg7wvcZU6VortF5yH+GWb/WSfTIU/3elfKLMXYkkkk5JPU16uGyNt82JfyX6v/L7z9p4Z8HLNV86nf+5F/wDpUv0j/wCBHsH7Xv7dXxF/ba8Zf2p411l5rO3djY6VbjyrHT1J6Ig6nHV2yx9e1ePUUV9DTpxhFRgrJH7nhMHQwtGOHw0FCEdklZIKKKKs6QooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAAcGvXvgh+3t8Yv2dCieEfiF4k020Q5+xSXJubQ/8AbGXcn4gZ968hoqJ04zVpq6ObFYOhiYeyxEFOPaSTX3M/RD4T/wDBx38VvCUMUPirwt4V8WxJjfJGZNPuHH+8u5B/3xX0H4D/AODlL4eauka+IvAHivRZW++bW5hvok+hPlsf++a/GyiuCplGFlry29D4vHeGfDuJfM8Pyv8Autx/C9vwP3n8O/8ABfL9nXXAvn634i0snr9q0aUhf+/e6untf+C2P7M1yPm+JKQn0fRtQ/pAa/nxorneRUOjf3r/ACPBqeDORyd41Ki/7ej+sT+gjUP+C3f7NFjGzJ8QnuSP4YtFvsn/AL6iFcX4q/4ODfgBoUbfYZfFusyDoINK8sH8XYfyr8K6KayPDrdt/P8A4BVLwayKDvKdSXrJfpFH66fET/g5i0GzV08KfC3VdQYjCy6rqyWqqfXZGkhP03Cvm34wf8HAXx3+Isc0OiTeHvBdvJwDptl50yD2eYvz74r4dorpp5XhYaqF/XU+jwHh1w9hHzQwyk+8m5fhJtfgdh8Vv2gvHPx01I3fjHxd4i8TTk5B1G/knVPZVY4UewAArj6KK74xUVZI+yo0adKCp0oqKXRKy+5BRRRTNAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKA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bmJmcmFuZ2UKPDAwMDA+IDwwMDAwPiA8MDAwMD4KPDAwMDE+IDwwMDIwPiBbPDAwNEY+IDwwMDY2PiA8MDA2NT4gPDAwNzI+IDwwMDc0PiA8MDA0Mj4gPDAwNzU+IDwwMDY0PiA8MDA2Nz4gPDAwMjA+IDwwMDQ1PiA8MDA2RT4gPDAwNjk+IDwwMDREPiA8MDA0Qj4gPDAwMzE+IDwwMDZBPiA8MDA2MT4gPDAwNzY+IDwwMDczPiA8MDA0Mz4gPDAwNkY+IDwwMDcwPiA8MDA2Mz4gPDAwNTM+IDwwMDZEPiA8MDA1Nj4gPDAwNjI+IDwwMDZDPiA8MDA0Nj4gPDAwNzg+IDwwMDQ3PiBdCmVuZGJmcmFuZ2UKZW5kY21hcApDTWFwTmFtZSBjdXJyZW50ZGljdCAvQ01hcCBkZWZpbmVyZXNvdXJjZSBwb3AKZW5kCmVuZAoKZW5kc3RyZWFtCmVuZG9iagoxNCAwIG9iago8PCAvVHlwZSAvRm9udAovU3VidHlwZSAvVHlwZTAKL0Jhc2VGb250IC9Tb3VyY2VTYW5zUHJvLVJlZ3VsYXIKL0VuY29kaW5nIC9JZGVudGl0eS1ICi9EZXNjZW5kYW50Rm9udHMgWzY1IDAgUl0KL1RvVW5pY29kZSA2NiAwIFI+PgplbmRvYmoKNjggMCBvYmoKPDwgL1R5cGUgL0ZvbnREZXNjcmlwdG9yCi9Gb250TmFtZSAvUVFDQUFBK0RlamFWdVNhbnMKL0ZsYWdzIDQgCi9Gb250QkJveCBbLTEwMjAuNTA3ODEgLTQ2Mi44OTA2MjUgMTc5My40NTcwMyAxMjMyLjQyMTg3IF0KL0l0YWxpY0FuZ2xlIDAgCi9Bc2NlbnQgOTI4LjIyMjY1NiAKL0Rlc2NlbnQgLTIzNS44Mzk4NDMgCi9DYXBIZWlnaHQgOTI4LjIyMjY1NiAKL1N0ZW1WIDQzLjk0NTMxMjUgCi9Gb250RmlsZTIgNjkgMCBSCj4+CmVuZG9iago2OSAwIG9iago8PAovTGVuZ3RoMSAyMzA4OCAKL0xlbmd0aCA3MiAwIFIKL0ZpbHRlciAvRmxhdGVEZWNvZGUKPj4Kc3RyZWFtCnic7XwLXFPn3fDznFygR1tFEKqu9QAiWhEURBSnEm4ShIBJuKpISE4gAklMAkhR8dKKt1atVatS6qx1fqxzrms7te221rZe233V+XbOtZtS5/au63z7Xj6H5PD9n+eckwREZ63t+v1+X9KTPOc5z/O/354/sQgjhILRSqRAqMCQkFg2sXEizGyCq7i6rtn6akTCVRh/htCIL2p4k8VaoLUgNPI3MDe1BiYe0g4+h9CowXA/pqbes3TZZ+O2wP0khPC0OofZNHijejxC36uB5x31pqVOpEdWhB4JhnvObqrnRzvyX4T7cQjNDEZY+RDeglQIqZJUuwDCo+K34mNkZYYhxAxSKxTBSoZRXkP23nPI28uOqRyvRNzgQmuWBaUhrrdXHSaE4d1B9birEuHeP/Qi8mKQVdihtKr2A5dBCIWGRIbERIZEWpWox60Y1XNV2BH00I0vXUApg04BdqPqAopAUUBBeER4RGi0Ymzs2OjokOiQSGVE+HB1kBqHJCWmTE0h04qn0mbPnPXBxV/mZs1p+v1pfBKjFStwWoZ3g7A1T4uxNm8r82bEnJwVQg1u3Z442btedQEvrv3tUwsXMgXeLzIz1qzOTAe8zt4rylZlCxqJogHv8EjAnEJwEHSxXOzY0KFwkxgRHkSQRgWpg5StPa8MqrH+3MabqyzVtsXCf+7pwNuf7bnyxOqfM3rDuj3zKx5kKsp/WcXjkSOSDz0WHoHb2zGLh724F2995t2d5eUlpc8DKpQAArqhDkPDCV4CevjwyOGRwG10clLylJSpScyNw5aYWJwgfHT08OGSkrfUYbvGja82b+5JUHy0WfdGcRGBcgz0lAv0EyhAYiyQPRxgJA2fChCIGBW5XPTYCc/rjUePpi5csDY0IvwRxavDHgjC2GL9hfcVZeUha+JkjJVKCZrSAtAi4AagEJ4DAaYAQKXlCJ45a9mOouKjR9PLSxvfNpuZ/d4FTEdHYQGuqHzR2wYgLUkAsnEpQHT2dimuAcRIwqUMLywiPClcEnJ0VOzYECZlKpG84ppOV1jwMzO8flZQqNPl6w0LhWe34+e246CieYXK5JcfixiOna4PPnS6cERYXOeYYcNeeAE/hEM6nsdDQwkHYEd4G9gR+FVoUkj0qdOnVRe6JxBbPNXbqzoMT1gqq5AkLmVqKBM7NjImkosIDx0apI6JxNv+CydveRrjp7cIZ4R0/AL+6dnT+OxZoVAwqRJuNm3aiBNw3KaNB159XVglrHjtdQxwrwO048po0cZTkoYTWUVfPw8vQVBGC0DTZZBqOcWMUiJDVMkxSSGgaQHnCrswfxrn9uzvVLpzjuR0X+iE1R1gkRZYHQMcEIOQFRkWpI5Ug4aTwyXpyRb5iWKEd++EiRMmdj+zFe/YIfx9UaW5uryysvZlq4Vo+WV9wTxwrU7hmSHBQXjd+n//8om1OGQodyYx4mG8YH77ngXzh4XGACebAfMO1XU0BJE4EiUqKgVQJU+JHStqDyYVhCDwiOFAUKwSlAceEgn3zP71usJC3fp1hQUFhfiB/Dxd3klb7UOp5aV1l9esXrf+stCzbv3BH+LvwQPFjIUL9/1g4SKMFy38wT5wyeYj0WGhbW3C30sS4tet/+ufNm7C+OT7uBmbfnNuyBCQyg6QYS7QNgahGJBKMrHGqQFCSJbERKgib7yeebsnz3Xy/SRTbAzG+qInF9lqm5prbWV/3rAhKnr+yCfXdnZ2Np4+MaMuPze3MW9uZGTG2UkjR2B3w9sL9AbnIxs2gUY39HYpN0oSSQOZyMZLIgTIJAawp0wR/YIilr6JTaeMhXmFWlxMBEhck9m4RW8w6LdsMeix3iC8tGZOLl7Z+umnK1tzclduNcx7Yu3/3FizFmOD/plcnJuzZnWuVpu7ek1OLvMezstvW5eXr8tra8vPKxldXrrqFVs1xtW2V1aVlo+OrrI8/Tu3x+P+3dOWqmg8uyFNo0lrcKenYZyWTqx/Leh2M+VktKjbUEbUbchQIA3UFwIeEAv2FQq+yGxs1xViXKhrbwcvLGzvXvvEE2u7b4LZ4LVPqAp37RE+EM4+twfjPc/hKThpz669758U2oS2909KWms++b4Y05VPUbun8cRntDHE1yOI70Oww9uEp/LzMLD3lDANn+xe3Ypx6+pu4bQqwftrnKttezJXewB8/tKnziXegwB1CXDSABHFx4lPI2NFTkIZkRNimIx7e1FxcdH2bcVFGBcVb7u+fh0GF7j+Zdv69W2KP7g9p04RqZ060eB+vr1d+Fz4W3sHxh3tOBSHtbdL2MohSocRywMeIDqTzBAlgid+gMP8Oqb+se/IkRklZcvOtK5c2XpmWVmJ96RRv21rkdFYtHWb3qh4nan4x+cH+YREvG8fDsbB+/ZNShTCzxAyzpxucLsbwNp/DHZXqqwkcgsFnDKDMnpiX4eOzJq5/NnSInzkSGZJWcM7Zh4fYw54TS8UFC6qeIlpubn3ZevkxKUkBqeAAXyp6hDjHgkpBB4EKYCSTLJNCG7CLcKTY8d43nrrwrx5bW2qDuGdzd6962NjdxcWnGMqN+NZkGZIBFV+TvUZjsZTWDLb/mFsZCwJBhEB3hALcRVn7iOWtE94E0/YlpuTk7tNuHAaCorly3CapuVZo37d+m7vn5lT3k8y0zdtzExnrMKsaSku5/QUfKCy8qfr5+lDIy3VO0/W2zGx5iVCsbKc2sAUoENyLtkOIsCSI6PkSEnooipT+1UWkZyk2Kc3Prt9nsEwbztgP9K6UrhZVVQ8DwKY4bXy8tTSsmUfroDXh8vKSlOPMDNPOOoxrnecAALs9f8uXN6waciDo38WN3z4oopfzjdPTqQ2o8SKjucnJ1Z1inkIIscFNEiK4tJ1SnHYO5I54Z3O3OiZRWJydqe3qxM4ehv4aAY7EyulJJpxo98+Ai9l5c296rC/iDDVowHmYAITY1IrYBB99Ck8ES/HrXjie0LrGaH1XdWFnmDFje4JqtE9SIm6L0t5UbVYzEEAHZPtZOdppgMrvaMUI4X/8SZBqvSuZ5q8OT1dzK+9kxHTe0koplQ9iELoPhLbwGDCqS0S+uYZXs2ebBsbgymdmz5eVNmOEyftUo/7C/D0OPjORNDSg6TWCcwnKckpkh+BUpIhUCZFJku1gRjISTr5xR+LijVpjl0L5wPw2RWL2n5sseKVK25iBuuNOyvnLzBYKivm/+fSpUxSUlJL1fQZGNvrXh2f513VaZ0ECqmq3PdWZeWwFXOyoJyM74wNC12xgkhiJmimFXxLTTjCOAlHzzyOK3DFcWFBt7Kyx6h4+eZess7Re0VxAqhPkiqXWMIAxPOICNmu+9gYWRE7Vor7QL9io85oLN+QkQXy2D77XYO+ZfnH5aaqOqu5qmrVnGw8OelHaT/Ky8d4ifNDa3mZcvahcWGh+LHHjJrosdxDj+Xp1rXPX4CHDR3zi6kjRk2coM8dHzt2yJi52jXPlxRhSIlAYRvIdx/EdJnCaEnElELigTF9KJwiUUiLS6BQmePhqysOlJZ/P/WHj1+pW4y3bhP+XNvY3Pp4U6Pr5UUVGZm7W7os/KaN/11jr1ftfy9l1Kg0TYNlctLoEXG19td+51iCH3444X9nR0VnZrTWz57JPTyxsvJH77tcoWHER4+Bj+4H+dHIGeOrSaVUEw2axwE0EwqxG2rUstKWsytbW1eebSktY6ZB4iZBkwZQ/UHvITXbaU6ctG+fcEO4AeEzMQF/TmPmaRo/QSZ+P6JeBB6kDvvH50RaQ8EDasADQO+RmCqeyfW+fx5fxL875z2hunAzQvkXUili1A5ydYNcp4gnEVKlxsiVV4qsa3CDgKDvqz9IWlPM3mKYh3c+J/x5URVvM/Bm+1u8Gc9f+NKh158tLJhn2GmsWORy85ayq21PYpydo4jhTFVbPml+HOOwkLHHEx8eiefO3fzEXC0+8P3UJe5ZM6E8e3V0yFCS7Jcbi4FCC/4D08qsoVxCVLEwo7xXmTX7QepwSlTuBy4Z8DoETq5IIo5KzlDJCrXAYCFZuHDhlLdCFdPTpfigJ+mgsBdXHidcu3uvqGKBa7lSj+XEIiFGPg5Fy8UesKmKtbo9q4XetvUYr2/DeLXHba1taHpC+PFxeGHDk0sbVVUXKibF4/YO4aLwWzgjJcRXns8ZMwZ/9GtcjavhMypGPHEEPQJW8hhglU4YEUDtFP/JY8oApxrl+KzKRWt+sqgCH50+vQFqqqPTUxufhq+js8pKHm8uKVKsXzYjFePmlivkaLK3QCceTZiOfTqoNeRjCjn5zJxFYoJQRGMCRDkVCUuiclNSqJ0w2wq0ucu21eU99lhSpDBDDBY1J2fOwrvHjFlrVOp6nlXUAfm93SD7v4DsIYIrxKNcpFr5d+8XZ7xfQKjvvqCi1jWTyVUcBzkDLqxSBRHPUMXGxKSoILvHKI7DmaA6VTjsEg6n4mphVyoudOFC5R/eOV51RmjDzWeqjr9jPoObhbYzoGOis4u+qk4tKoyQTk42sZxYC8Vwot4UsZ+sXIPxmpWf/H4VKbJW/R5Pf+sNjN94SzghvPvGW2+9ocrDL+4XrgpXX9y//0U8Co/a/+JL534jvCC8cO43+Nw5XEXKcerb4CH7wcuG0Kqovxv3c/NYciRSXO3jyt7NfRw99ehRJiHAkRl9Xy/nDwIykN1BkLDkw2D3kPwiDyp+5b1yHgveJNWF4u5VIGLG5+kMyXYk0UGMV0Qqopk3hS+YGKHlKjP93DrvonUXVA95RygOdU/ArcIqKUcCGPQAza+gDpoi8VBmx7vCde9iyKs3Rysvd09QXr45WsqpSpJTVTTWkOx+mvm4ZxEcOOEgB9hXgpTaQDscOU+lyNEjNDDvgYpCGDFQ44BwQkR5OU+nm3ui1jZkRmlZ3R9XrwE/68IKqF8PHBSu5ufr8Cx60lpHT12jj4wJDcMQTkKL4xPAJdd+fnXTRlqUE9UNGcLshAPX3kULFy7aC8ctoP0SMHAICSSCkDPrJXJapecEYU/QEtU+0CxEEhxw/iNkYan0JRkkRayjyPGUZhY5f6ulLCk3UiKkPbHyWUmyDppFwUJUTPec7OUtc7JztM2PZ+cwkTPzdNU/XlxXV/ejap1uxuatRv1oLs327M6fLHMuqewoKcMzptltG9Z3rFq+rKZ8+bbtO4+9+FLryoxMDFloZef/euv8z19rgWT5wgvCn5kRm+cZ4DQ1b/NGox7OW9r8MWPx8mUnT6xYhmPG5q3xcsOXOH66eFFF4WqoEkZHpllf+uGvXti4yVYzdRqOmzDPUZWYjNPTViw78OIvXjvw0vLWzIySkr1Vbs/jwo2dz6l9HRMwzgE6JiF33TFRh3k75JaJBLMdYEq1GsQgUuUdO8rE/NV7iKm97j1xVB3WY8Nd3v/yvsxEez+BPYeFL5kW9TAaVaRaOCJaSvYpTEtbmiY9be3endq5udrn1MP+dPnytWtXuq7+tevK5U+7rtD8uB8gOEQIoXImC4qWztj79+6YS7pqc3fsfVI8VKqHfX6l69PLV7r+erXryrVrly+TE8KxXqX6gmoMjIJJlRoTEhmigro3JAgufEZx46ZNldJ9yqUeFa7o6VHuVX2/+12XmvvHH+UKdYZUMYM3kbMOfJIS9dPTp71RpDhtZyzdE0j1TNaXAsJLELMfEGMBaQrgyCWKxd485tWe5cyrXl5ZebDn0raDCpJniqF2TobVpHZOCqX/QVBQRBcf+dPVi3+6ekS4dPE/vrwI9d8OxWJy3dyr2NGzWIx1Ik+DiI5jwpIiE5NDpkRHRg1XhAyNjORC6CeO+0zh+Oyznq2fuXCxwoGLhc6erUJn+WefKTwwvUnhoVObBHI2WACcjpbjjEy5W7m9p1Bx4uZMxeGeatWF3TcdnbuVW2H1RVh9SaUkchFPbySXR4YoDjETvecPes8zE1VK7/lOMuhkJsqZnHQtYqgGYK26b6cmghaLkN5DhkaER4J/K48LrzPDGp56aq/wg3fff/9dvGjrk6udS5av2Cj8bd2GDetw6OIiwwW89YC31fBYHMYfnsX1uP7Ds2PGZH9cMXnSrl3CR8K5Xbtw2DDAngkZ/YB0SqFlFgm/YMKZZ3Eqnt5FPj4Q1gvCe8I7AkTUYcovyAWnlaHdpJXW2wPWfw32B4N+6WZgWHkRd+A9F73Xz4AV7GasPV/CCeoE4RVJfY2ZATVwUGRQJAlC6oiwCBhK9a9Yw0DgVUSnJE1JJoX6lGQYDpNKis0LDMV8h8U6mtGkeP/EMBjD9YtpwobRVksHX2xYUD5/YeXfdu8Zdz5lI3n4Tkr7uD27/2aqmA+Vjm3iRAt/rGVE+MNRgO/hljct/MSJNlrvPLMFK1vCR4RHRsHTFoye2SpWPh29w/BxiMAqGoEV0aHXz+9fpRdeFn6FSasJzQA5NIPFEr1jKkEqTKVFqMWdF4VjwrGL+GeC6yIej8crK71/8L6Njwg5TC4TLizBm8X806USQDaD0SwxKoBExKCMaa2VRDwcR8dKHQWSkFLkKO0zEykb4S8XjAfN19p+UGHU5wotuCc1KlJ9bPCU5AU4omdzjcu9+svndkEMXjtpxEjssB/VG+cVlxQUZixOS3/0e4pofcG80mdMVZh7VMNs9t4orba4n1i1aoXQta1sQtyGdb9tdTnNs2fPnLnPbMLDho15PX7kwynTSpOSkoGPbWAJh4EPBQLzjoFsFRpNaSWp5JZzI+3DBcmZCLedOfPeL/Ej3ysvnz5yBIStusLSctPCqkU1P1/iGDOmvDQhdDgU7ApBwFt3W9LTSsqmTIpPLJ2WgqOiM96c9sj3TFUd+RnZRcWTRowaMfzRR8mRAP0U5DoeLHS4eCaWciQELNJ4IH8zeOVMScnxt0tLzmx5RrgmfLb5GQxH8obrtloiwOuKjT0LhEvPbt/+LAY76N0hWGnH+kEKbah4wia1wKnT1por+bOfnJYCFcU24T+aH++cO/cdavPpzCtij5v4FhPc6b3Rqbrwj3qQ1UVcqbqk2Cf1ESKH0/dFSLICuRT7Dl6XuxPRvggkdieiTynKvU6m0Hv4NGlM5HR6U2j0qVBdUh4gFRdY4XCcjFWXbt5QBhN4iuvCVmHb6/ijA/gj8vceLF7R85+qXjTk+/9N/sDV/wXcFgUdgNyGCUTpBXuC6oVHEBqS1AvvoAMUUuBLp/wAWVWb0Snl52gJ8xFKUOSiY6ph6JjSCvcbwdgXoFPq8egU8wq6ropAl+HqgGszXDvg2ghXm/I87L+KlqjC4BqGDimiUYpqOTpF7x+CvdPR2+prcD+bjHsvKa+hFuWbaKZyAnLAmja4jpE1qmY0FOC1M13IAt8W1Q7kDjoDtJC1Xb3dSoRmqvOQm6yH5wfp+h7A3QCwI9AqoPcSSKaN0r8PHVOMRofh2h+0GR1TK2FdEipVb0TF5F7VghaoX0UX1UmA4y8oE+D3AAwEMDoA3wz1TLRKORttU11CrzALencA/4isV+4GebxKcgdY6Tz0NPop+i3obzq8s7ELr8G78cdMDFPJvMf0Kh5TmBTtiuOKa8o45XLlduUPle8p/6jsVeWqKlQ/UQnq6eps9Xz1y+qj6n8LCgkyBjUFbQg6HPR58LjgGcElwY7g1uAPgi8+sOSBPQ+89sC/PXCDDWfj2Sy2it3I7mPfYLsHjRw0edDTgzoG/XJw9ODawc8M/tHgo4PPDr48+P9INqNDPLFl6a7/aySe5Zt/DidKY4wG4S5pzCAl/oc0VqBBTLg0hpzJpEpjFRrMVEpjNWLh7CyOg1EIyEwcD0KPKGQaHhz2/LhyafwQmjKjShoPRYNm/EQahyDljPcAI1aCH+FJFDsZYxSOz0hjBgXjv0tjBcwL0liJwpkoaaxCDzPZ0liNwph6aRyMopinpfEglMq8K40fjElVPCqNH0I1qTek8VAUPmOnNA5BwTPeQBnIgZyoGbmQDVWjGuSBs8g4ZEbj4TsRTiWTUBKMqmAFh9JhjQe54XKBPkyoHsXBrBbZYX08jDSoDt4c0vtguekdD9887GmETwusZO8C61QfViNgagRci2GPHVYTOkyw56thzITRYthXjBpghRnWmig0nu4wUY44gGKHTyesqQK4NljHwX4HYDfRZ1BvZziczS5bdY2HG2cezyVOmpTEVTVz6TaP2+PiTfVxnNZujuc0dXWcnqxyc3rezbsaeUs8e8vWqWSr0dRYv9hhr+bSTTW32ZjJLzYVN3DmGpO9mndzJhfP2eycs6GqzmbmLI56k80OlPVl0UAZdMO0uNlgssNNOjDjQLUwcDhq727L3awpptJ2g4wcVIKJIPMk8leFYt7ltjnsXGJ8UkpfUP0ADYTLSqGJOvVIFifjtTrsICIPSBxRvXtAa6koAd4WCUYjwIiHvQ74doEmeQrPRXUeD3B52INqPB5nakKCBYA2NsS7HQ0uM291uKr5eDsPj7MDKJBtRLbTW72BPCN2x1Pb5cGCHKgJ1hJLvT/2RyDNgSfNsKaG7rTBMyfly0NtnUjNRXcQ7yBQG/tJsj8ffv9q6ONft+OGhfdAvIs2YIJRoNRu9XQWarR7f7N3FT3uf8waWN9+nm3whKUjD50hVlhPZV0Lcw7QwD+jhXBWSOHVU2h+b7JRmmroM17iq5pisUtaj5P0LmpLxCbamGjvcZQuB9W+ne53Sh4rYnAAVI9kYzbJCkwUhihpVoLpoVT0tyczXUfsUIQuQyCrRdpFW+apw4u2FxVgJVFUc2SvhX67KV1m2GOS+GOpF5jBQuspFA99IsvHCqM6yZPG+Wj0YyBRi9DvAfsVrZ9g9MuEzDip11gAg5nulqmxUA481Naq4KmHPhVxsHfAECd5sxkoa6BQRJk0URuooVHJI0mmns4FciTz4OpjlSK1DVSGcQHaIeN6qk9R12xABHHD7rjb8BHn4zOBRhCOQhb9QYRtk6TaV/t35lqWnEit02fRHkqX3+r8HDVRedTfFQbZG6w0qtslDvkAjBb6SXDE0W8iicWwwkzhiWtk/RE7rpMim6whM8VtoRTbJEpTqXcaJepMANFBI4NfB4GxyC+BWyOBHdZ7JG9w91kr+4pfYoExIHAfR3k2UcpZGpv72pooDTGXmO6gTwfNgpyk+3r67Y8fd6MLD81EJLOaJI7i+0jqTnuJTJql3CJiJzK3UhotkiXVUTt1+WZESolMLQE6D7Q6OYOaaEa00ZhRR+9YH0cWSinRlz1AGtV98qqISY6hJmo9ou3KOPrLx/1PeZKpZCUO/BZmojq6ewr64ukvj4Foi5P0XUf32W4TzVmfdlw0zppoXPHDlWfcPouU/aV/9uClOMdTLmRMTZQrC90fNUA+jPLx3X8HC8/kbBsVYGWiz+T1yy9V1N8dAbQ2SH4g20kjPLUNIDEeLaVytkue7IS3mL1MNKLyvh2BehdplmfYAT2lhkZ4jn67JRp5akm3sxM51g0Uuy00E9ip3gPlNZBU2QDJBerwXn3VTaOmnKv93iZ7Eqkc6ny1h0va0Reik1p0LXxWSxoT8yGxKtYXVb/JSHV7rqokH/FI+dDqk1QOyqJ4CpAO7gieArgzohKoI/X0mRbmOKjj9PCkGO4yYTaT6kVDn5DnUdQbS2BMIBagIgpLhKGHTwK7DGYIbI7ek7u5sF4HsMjeLFRKcWQBNANQVgBjAjsfZvPgO0taR3ZkwEwR3JPxHESqUBGfDnYZqe+QfYQWkVIjzPux9qVKSzHKlOXDnR7g50hPNQBbS+ER+uNofUTGOolOUXJ6Cp3IiEAmMDOAojx6R2aL4LsQ1hmoPDWUZ5FaHeUhG56LvGRRCkRNiBRlwHch4CYr5gBdRioFgskorYyjeiT8ZNL9BOtcukqkrEDSMhn7ocRLshTpIPIv9mE2UP7z4M1R/o0wY6S60QB8Ga5sO3MoBEI3S6VRRPnTUDkUUAzpdB2RIpFnns/i9AFayaDyInojlGdSTBoqEcOAnMjQArUzkHWwPgxzKH9ZVFJ5dLUB5JgF67W+GdEetZTXDEnWIkzR7kWbyAuQbgblkWh2HmDNkmxKQ2XXlwuipxJKv58LUQMa6TMjQGZ+7esk7cr0GClm4wBSKaG+mEVXaaiuDT4fyab+my9RXuSzMH8MKJLss8BHWV/5yn4kr7ub2CHCknH31WAmtac8iUKDTxriCvYOcMXYlQV5zUzPOR5f3O6buQOrRn81Glh3xgXE2sBKQIzCc+ja+n7r/LPiaUnMWf6zTmDtNtAJWz4di7W8XPX6qw8xdotnosCq10Lrc7EGdPuqEgetAx2+yqSJPvXndKfUO3H0OecRzCaa++N8uORc5Icl1pUmWi0QbO4BpHn7DMXecjJ00nwvYmmiY49UmRD+GqS1ZP7xfqdhuf9zqw64AXUg8zJQ5RAofxfVt1M6S9mohEk9GS/BdSH5XOaXCZGA2Her76d1v/URaKmof1eByKA6gHILlTWLxB4ewcnSeCX3uP71Xaf73bP+LvWD2D79oP6V1zfXD2IH7Adx33I/iL2rflDfSt4cQJO/1yGvvLsO6kAdFvZf1lfibukrsf+/rxTQV/J3GP7f7CuxfTLsv66vxA5wWvsu9JXYAftKfo6+nb4Se4d+wbfTV2LRV+0r+f/qdD/7Sn5/69tXul32vX13STyfi5XEd627xKK+3aWBuxvfTneJvYN0uQAJfre7TCy1sVurmW+/y8R+h7tMbL8uk/+s+212mdh/2mXivrUuE/sVukzcN9ZlYqkMigFqLqVWlLYGnn97vSN2QJ3/q3pH7C29I+5f1jtib9s78veAvvneEfsVekd3gvvN9o7kyHr7jHJrx4e9h45PYJfmfnZ82K/V8bn1zHZvHR82oONzp77D/ejQeG6Bn4b8nQaW4iF38Qhl0x9okZ+qkR+7+X4fx41z8zxXxdc5msbHc3fxw7Z4bk5ds7PGzdnqnQ6Xh7dwVpejntO4+EbpR2AyDvpDugbxh3SBaFjWj72Yd5k4kTTfr/HYiXd8sbf+bu+uf/LH9cNsc7MmzuMyWfh6k6uWc1j7Q2HZQt5Vb3PTH83Z3FwN7+IBV7XLZAfW44B3YAu2gcRc1Xwc53FwJnsz5+RdbtjgqPKAxGwgAhNnBqJZWOmp4WU5mc2OeicsJws8NQAdpMzb3SC9KCqSqPEAzMKZ3G6H2WYCfKzFYW6o5+0ek4fQY7XVgZLGEYh0A2dwWD1NIP6o8ZQSF+90OSwNZp6CsdiAMVtVg4cnNLB9NsSBms11DRZCSZPNU+No8AAx9TYJEcHgEkUJYBvcsJ6wE8fV84RrlhqIuyYuAEccwZngcHFuHvQAq21AqsR+P9SEOADrJIL2sKLoKKKmGjCsWzYQNVgbXHZAyNONFgfndsRx7oaqxbzZQ2YIf1ZHHRgbYcjssFtshA93KssaAZypytHIUw5EK6IE+IzA7vCAGtziLNGK028B4jPOXWOqq2OreElqQAZ4iakPnw472IWLq3e4+AHZ5jzNTt5qAkTxIlF9n9abmsFbYLvFZrURQzPVecD0YABATRYL5VwUHXFQkwvoaqgzuViCyMK7bdV2Ska16KuwiVioyQxA3GSHTI+7PyYCkgUEVGCmuoEBSHtkOvzQgDx7XTNnCzBzlrDj4sn/woquJQM3ESTRi+wePNgc76Kbmhwui5uL8vlhFMEtP2CjiNtGUZGBZvIkf6niwZMI1AbQAZFJo8PmI4xf6gGP4UxOJ7iXqaqOJw9E3gEyGbB+pdSYPFyNyQ0QeXsfmRCr81u3hWuwWySC/aSylDiRwztp1e2oI15N1UaUZOLqSPQAX5EXOk3mWlM1MAZ+aHewxFS/mlH1QQUBC0jk66yEqJwsLrtAZ+QMBdnGEo0+i9MauEJ9QbE2MyuTi9IY4D4qjivRGnMKiowcrNBrdMYyriCb0+jKuLlaXWYcl1VaqM8yGNgCPafNL8zTZsGcVpeRV5Sp1c3h0mGfrsDI5WnztUYAaiygWyVQ2iwDAZafpc/IgVtNujZPayyLY7O1Rh3ABOL0nIYr1OiN2oyiPI2eKyzSFxYYsgBGJoDVaXXZesCSlZ8FTACgjILCMr12To4xDjYZYTKONeo1mVn5Gv3cOA6AFQDLeo4uiQcqAQaXVUw2G3I0eXlcutZoMOqzNPlkLZHOHF1BfhabXVCky9QYtQU6Lj0LWNGk52WJtAErGXkabX4cl6nJ18wh7MhIyDKRHb84WLJhTpYuS6/Ji+MMhVkZWjIAOWr1WRlGuhJkD5LIo+RmFOgMWfOKYALWySji2JKcLIoCGNDAfxmUMsq+DtglcIwFeqOPlBKtISuO0+i1BqKRbH0BkEv0WZBNLaAI5EmUp5PoJToic7daB6wiuyUGM7M0eQDQQMiACbbPWrCurKVm3ukhti05txgaaRgVY2cctVoxCIAJz7GD44pzdAhpCTyLZh0xuvkTNknHcWLopeEDrBsykRh6LY08REA3CSUOF+sgwaTJ5qaeDimw3iHmPM5tqgNksIt4EV0FsdJUB9vcPjL7OBQrJ0OnywZbmlw2DwQTztQAsy7b41IadklpinLA+TkgWPzBQaTfxbudkKVsjXxdczysdZFcRimx2a0OV73EOhWf2ZMqlwoerpoCtzg8rMNVHc+xLK24vnbpdLf/5OH+1EGsWAdx91IHsf46iLvHOoi9tQ6SgryZQnLLOWOAAtVfsLBfp1bi5FqJ/W7USqyoh2+sVmJFh/1atRJ7H2sl1l8rcfdYK7F96oJ7qJXY29VK3N3XSmxArRTovn3KJcjnECTuV7nESuUS97XKJbYPufTceL9LJtbu4L52ycTe15KJlUom7t5LJrZ/ycTdS8nEDlgycV+lZGKNmuL83AJCtibnnqoj1s/516mOWLk64r5OdcQGVkfcPVVH7IDVEfd1qiNirH0cxVf4sLctfLivUPiwdy58uLsofFha+PStHf55QeOR16fRooGNh6/4r/NvBhNo364WrgTaO7PQv+rF07+vOmGu718L7/wvDBOabLW2BBsEq6XxzhpnghQx7+Xfcv5f/yHNuwplbmRzdHJlYW0KZW5kb2JqCjcyIDAgb2JqCjk3NjIKZW5kb2JqCjcwIDAgb2JqCjw8IC9UeXBlIC9Gb250Ci9TdWJ0eXBlIC9DSURGb250VHlwZTIKL0Jhc2VGb250IC9EZWphVnVTYW5zCi9DSURTeXN0ZW1JbmZvIDw8IC9SZWdpc3RyeSAoQWRvYmUpIC9PcmRlcmluZyAoSWRlbnRpdHkpIC9TdXBwbGVtZW50IDAgPj4KL0ZvbnREZXNjcmlwdG9yIDY4IDAgUgovQ0lEVG9HSURNYXAgL0lkZW50aXR5Ci9XIFswIFs1OTUgNjg5IDYxMCAzNDkgNDA4IDYyOSA1NDUgMzE1IDI5MyA3NjQgMzM0IDYzMSA2MzEgNjMxIDYzMSA2MzEgNjMxIDU5OCA2MDcgNjMwIDYyOSAzODkgNjgxIDYzMCA2MjcgMjc2IDg1NiA2NTEgMjc2IDYwOCA1ODcgNTE3IDYzMCA2MzAgMjc2IDY3OSA2MzEgMzU4IDYzMSA2OTMgOTY2IDU4NyA2MDYgNDk2IDc4MSA2MzAgNjMxIDY3OSA3NDIgNTUzIDYzMSAzMTUgOTkyIDYyOSA1NzQgMzg3IDM4NyA5MzcgNzQ2IDUyMSA4MTEgOTM3IDY4MCA4MzEgNzY5IDk4MSA2MDYgNjMxIDMxNSA1ODcgNzc0IDUyNyA3MjYgMjkzIDMzNCA4MzEgNTcxIDgzMSBdCl0KPj4KZW5kb2JqCjcxIDAgb2JqCjw8IC9MZW5ndGggOTAzID4+CnN0cmVhbQovQ0lESW5pdCAvUHJvY1NldCBmaW5kcmVzb3VyY2UgYmVnaW4KMTIgZGljdCBiZWdpbgpiZWdpbmNtYXAKL0NJRFN5c3RlbUluZm8gPDwgL1JlZ2lzdHJ5IChBZG9iZSkgL09yZGVyaW5nIChVQ1MpIC9TdXBwbGVtZW50IDAgPj4gZGVmCi9DTWFwTmFtZSAvQWRvYmUtSWRlbnRpdHktVUNTIGRlZgovQ01hcFR5cGUgMiBkZWYKMSBiZWdpbmNvZGVzcGFjZXJhbmdlCjwwMDAwPiA8RkZGRj4KZW5kY29kZXNwYWNlcmFuZ2UKMiBiZWdpbmJmcmFuZ2UKPDAwMDA+IDwwMDAwPiA8MDAwMD4KPDAwMDE+IDwwMDREPiBbPDAwNTI+IDwwMDY1PiA8MDA2Nj4gPDAwNzI+IDwwMDZFPiA8MDA2Mz4gPDAwMjA+IDwwMDQ5PiA8MDA0ND4gPDAwM0E+IDwwMDMxPiA8MDAzNT4gPDAwMzY+IDwwMDMyPiA8MDAzOD4gPDAwMzA+IDwwMDUwPiA8MDA2Rj4gPDAwNjQ+IDwwMDc1PiA8MDA3ND4gPDAwNDI+IDwwMDY3PiA8MDA0NT4gPDAwNjk+IDwwMDREPiA8MDA0Qj4gPDAwNkE+IDwwMDYxPiA8MDA3Nj4gPDAwNzM+IDwwMDUzPiA8MDA3MD4gPDAwNkM+IDwwMDU2PiA8MDAzMz4gPDAwMkQ+IDwwMDM0PiA8MDA0Mz4gPDAwNkQ+IDwwMDc5PiA8MDA1ND4gPDAwMkE+IDwwMDRGPiA8MDA2Mj4gPDAwMzc+IDwwMDQxPiA8MDA0RT4gPDAwNEM+IDwwMDM5PiA8MDAyRT4gPDAwNDA+IDwwMDY4PiA8MDA2Qj4gPDAwMjg+IDwwMDI5PiA8MjVBMz4gPDAwNDg+IDwwMDdBPiA8MDA3Nz4gPDI1QTI+IDwwMDVBPiA8MDAyQj4gPDAwNDc+IDwwMDU3PiA8MDA1OT4gPDIwQUM+IDwwMDJDPiA8MDA3OD4gPDAwMjY+IDwwMDNGPiA8MDA1NT4gPDAwNEE+IDwwMDJGPiA8MDAzRD4gPDAwNDY+IDwwMDNDPiBdCmVuZGJmcmFuZ2UKZW5kY21hcApDTWFwTmFtZSBjdXJyZW50ZGljdCAvQ01hcCBkZWZpbmVyZXNvdXJjZSBwb3AKZW5kCmVuZAoKZW5kc3RyZWFtCmVuZG9iagoxNSAwIG9iago8PCAvVHlwZSAvRm9udAovU3VidHlwZSAvVHlwZTAKL0Jhc2VGb250IC9EZWphVnVTYW5zCi9FbmNvZGluZyAvSWRlbnRpdHktSAovRGVzY2VuZGFudEZvbnRzIFs3MCAwIFJdCi9Ub1VuaWNvZGUgNzEgMCBSPj4KZW5kb2JqCjczIDAgb2JqCjw8IC9UeXBlIC9Gb250RGVzY3JpcHRvcgovRm9udE5hbWUgL1FWQ0FBQStEZWphVnVTYW5zLUJvbGQKL0ZsYWdzIDQgCi9Gb250QkJveCBbLTEwNjkuMzM1OTMgLTQxNS4wMzkwNjIgMTk3NS4wOTc2NSAxMTc0LjMxNjQwIF0KL0l0YWxpY0FuZ2xlIDAgCi9Bc2NlbnQgOTI4LjIyMjY1NiAKL0Rlc2NlbnQgLTIzNS44Mzk4NDMgCi9DYXBIZWlnaHQgOTI4LjIyMjY1NiAKL1N0ZW1WIDQzLjk0NTMxMjUgCi9Gb250RmlsZTIgNzQgMCBSCj4+CmVuZG9iago3NCAwIG9iago8PAovTGVuZ3RoMSAyMDU5MiAKL0xlbmd0aCA3NyAwIFIKL0ZpbHRlciAvRmxhdGVEZWNvZGUKPj4Kc3RyZWFtCnic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NjkgNTg4IDY3MyA1OTAgNzEwIDcxMCAzNDUgNzI3IDY0NyAxMDM0IDM0MCAzNDAgNzY4IDcxMCA2NzggODMwIDM3NyA3NTYgNzA2IDY3OCA3MTkgNjYwIDM0MCA4MTQgNjQ3IDY0MCA0MzIgODIzIDgzMSA4NDMgNjkwIDY5MCAzNzcgNjkwIDY5MCA2OTAgNjkwIDY3NyA0MTIgNjkwIDY5MCA2OTAgXQpdCj4+CmVuZG9iago3NiAwIG9iago8PCAvTGVuZ3RoIDY5MyA+PgpzdHJlYW0KL0NJREluaXQgL1Byb2NTZXQgZmluZHJlc291cmNlIGJlZ2luCjEyIGRpY3QgYmVnaW4KYmVnaW5jbWFwCi9DSURTeXN0ZW1JbmZvIDw8IC9SZWdpc3RyeSAoQWRvYmUpIC9PcmRlcmluZyAoVUNTKSAvU3VwcGxlbWVudCAwID4+IGRlZgovQ01hcE5hbWUgL0Fkb2JlLUlkZW50aXR5LVVDUyBkZWYKL0NNYXBUeXBlIDIgZGVmCjEgYmVnaW5jb2Rlc3BhY2VyYW5nZQo8MDAwMD4gPEZGRkY+CmVuZGNvZGVzcGFjZXJhbmdlCjIgYmVnaW5iZnJhbmdlCjwwMDAwPiA8MDAwMD4gPDAwMDA+CjwwMDAxPiA8MDAyRj4gWzwwMDQzPiA8MDA2Rj4gPDAwNkU+IDwwMDc0PiA8MDA3Mj4gPDAwNjE+IDwwMDYzPiA8MDA2NT4gPDAwNzM+IDwwMDcwPiA8MDA2ND4gPDAwMjA+IDwwMDUwPiA8MDA3OT4gPDAwNkQ+IDwwMDY5PiA8MDA2Qz4gPDAwNDE+IDwwMDY3PiA8MDA0Nj4gPDAwNEU+IDwwMDJFPiA8MDA0Mj4gPDAwNzU+IDwwMDQ1PiA8MDA1QT4gPDAwNkI+IDwwMDZBPiA8MDA0Nz4gPDAwNzY+IDwwMDc4PiA8MDA2Nj4gPDAwNDQ+IDwwMDJCPiA8MDA0Rj4gPDIwQUM+IDwwMDMwPiA8MDAyQz4gPDAwMzE+IDwwMDM5PiA8MDAzND4gPDAwMzg+IDwwMDU0PiA8MDAyRD4gPDAwMzY+IDwwMDM3PiA8MDAzMj4gXQplbmRiZnJhbmdlCmVuZGNtYXAKQ01hcE5hbWUgY3VycmVudGRpY3QgL0NNYXAgZGVmaW5lcmVzb3VyY2UgcG9wCmVuZAplbmQKCmVuZHN0cmVhbQplbmRvYmoKMTYgMCBvYmoKPDwgL1R5cGUgL0ZvbnQKL1N1YnR5cGUgL1R5cGUwCi9CYXNlRm9udCAvRGVqYVZ1U2Fucy1Cb2xkCi9FbmNvZGluZyAvSWRlbnRpdHktSAovRGVzY2VuZGFudEZvbnRzIFs3NSAwIFJdCi9Ub1VuaWNvZGUgNzYgMCBSPj4KZW5kb2JqCjIgMCBvYmoKPDwKL1R5cGUgL1BhZ2VzCi9LaWRzIApbCjUgMCBSCjM2IDAgUgpdCi9Db3VudCAyCi9Qcm9jU2V0IFsvUERGIC9UZXh0IC9JbWFnZUIgL0ltYWdlQ10KPj4KZW5kb2JqCnhyZWYKMCA3OAowMDAwMDAwMDAwIDY1NTM1IGYgCjAwMDAwMDAwMDkgMDAwMDAgbiAKMDAwMDEwOTk2OSAwMDAwMCBuIAowMDAwMDAwMTYzIDAwMDAwIG4gCjAwMDAwMDAyNTggMDAwMDAgbiAKMDAwMDA3MjcxNCAwMDAwMCBuIAowMDAwMDAwMjk1IDAwMDAwIG4gCjAwMDAwMDEwMTQgMDAwMDAgbiAKMDAwMDAwMTAzMyAwMDAwMCBuIAowMDAwMDIwMTM0IDAwMDAwIG4gCjAwMDAwMjAxNTUgMDAwMDAgbiAKMDAwMDAzNDc2MyAwMDAwMCBuIAowMDAwMDM0Nzg1IDAwMDAwIG4gCjAwMDAwNzExNjkgMDAwMDAgbiAKMDAwMDA4ODU2MiAwMDAwMCBuIAowMDAwMTAwMzIyIDAwMDAwIG4gCjAwMDAxMDk4MjcgMDAwMDAgbiAKMDAwMDA3MTE5MSAwMDAwMCBuIAowMDAwMDcxNzI2IDAwMDAwIG4gCjAwMDAwNzE3NDYgMDAwMDAgbiAKMDAwMDA3MjEyOSAwMDAwMCBuIAowMDAwMDcyMTQ5IDAwMDAwIG4gCjAwMDAwNzIyMDEgMDAwMDAgbiAKMDAwMDA3MjI1MyAwMDAwMCBuIAowMDAwMDcyMzA1IDAwMDAwIG4gCjAwMDAwNzIzNTcgMDAwMDAgbiAKMDAwMDA3MjQwOSAwMDAwMCBuIAowMDAwMDcyNDYxIDAwMDAwIG4gCjAwMDAwNzI1MTMgMDAwMDAgbiAKMDAwMDA3MjU2NSAwMDAwMCBuIAowMDAwMDcyNjE3IDAwMDAwIG4gCjAwMDAwNzI2NjkgMDAwMDAgbiAKMDAwMDA3MzA4NCAwMDAwMCBuIAowMDAwMDc3MDU5IDAwMDAwIG4gCjAwMDAwNzI4MzUgMDAwMDAgbiAKMDAwMDA3MzA2NCAwMDAwMCBuIAowMDAwMDc5ODU1IDAwMDAwIG4gCjAwMDAwNzcwODAgMDAwMDAgbiAKMDAwMDA3NzEzMiAwMDAwMCBuIAowMDAwMDc3MTg0IDAwMDAwIG4gCjAwMDAwNzcyMzYgMDAwMDAgbiAKMDAwMDA3NzI4OCAwMDAwMCBuIAowMDAwMDc5Njg4IDAwMDAwIG4gCjAwMDAwNzg5OTMgMDAwMDAgbiAKMDAwMDA3OTQ5OSAwMDAwMCBuIAowMDAwMDc3NjI1IDAwMDAwIG4gCjAwMDAwNzc3NjkgMDAwMDAgbiAKMDAwMDA3Nzg5NiAwMDAwMCBuIAowMDAwMDc4MDI5IDAwMDAwIG4gCjAwMDAwNzgxODYgMDAwMDAgbiAKMDAwMDA3ODMyOSAwMDAwMCBuIAowMDAwMDc4NDYyIDAwMDAwIG4gCjAwMDAwNzg1ODUgMDAwMDAgbiAKMDAwMDA3ODcyNiAwMDAwMCBuIAowMDAwMDc4ODYxIDAwMDAwIG4gCjAwMDAwNzkxMzYgMDAwMDAgbiAKMDAwMDA3OTI3MCAwMDAwMCBuIAowMDAwMDc5Mzk1IDAwMDAwIG4gCjAwMDAwNzk3NTEgMDAwMDAgbiAKMDAwMDA4MDE4OSAwMDAwMCBuIAowMDAwMDgzNDUxIDAwMDAwIG4gCjAwMDAwNzk5NzcgMDAwMDAgbiAKMDAwMDA4MDE2OSAwMDAwMCBuIAowMDAwMDgzNDcyIDAwMDAwIG4gCjAwMDAwODM2ODcgMDAwMDAgbiAKMDAwMDA4NzU2OSAwMDAwMCBuIAowMDAwMDg3OTIyIDAwMDAwIG4gCjAwMDAwODc1NDggMDAwMDAgbiAKMDAwMDA4ODcxMCAwMDAwMCBuIAowMDAwMDg4OTcwIDAwMDAwIG4gCjAwMDAwOTg4NDUgMDAwMDAgbiAKMDAwMDA5OTM2NyAwMDAwMCBuIAowMDAwMDk4ODI0IDAwMDAwIG4gCjAwMDAxMDA0NTkgMDAwMDAgbiAKMDAwMDEwMDcyNCAwMDAwMCBuIAowMDAwMTA4Njc0IDAwMDAwIG4gCjAwMDAxMDkwODIgMDAwMDAgbiAKMDAwMDEwODY1MyAwMDAwMCBuIAp0cmFpbGVyCjw8Ci9TaXplIDc4Ci9JbmZvIDEgMCBSCi9Sb290IDU4IDAgUgo+PgpzdGFydHhyZWYKMTEwMDc0CiUlRU9GCg==\",\n            \"name\": \"Offerte 1562580.pdf\",\n            \"mime-type\": \"application/pdf\"\n        }\n    },\n    \"message\": \"Sale contract succesvol opgehaald\"\n}"}],"_postman_id":"c123872b-1690-4ff5-9182-cd1901a6eeaf"},{"name":"Get sale answers","id":"25fa04e1-4db6-4528-93d9-26c401e093ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/sales/answers/{{sale_id}}","description":"<p>This endpoint retrieves all the product questions answers of a sale. The sale id needs to be passed in the URL</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","sales","answers","{{sale_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"8513b060-14ce-4f88-9b0f-6775ce7d09b6","name":"Get sale answers","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/sales/answers/{{sale_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 26 Aug 2022 06:17:21 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=iGTafstsVVXyRoACHNP%2FSHaN2yWpPt8I5zkB1l7u0q3J7HgPcbh7nLe2AMiq8vYWosBDdoLyGgzupKdaqh%2Bvou0J03EXDJSVgtfkmMkZxVCDY9%2B5W%2BiW8ubWYGIoddISkN0%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"740a71a26dd28558-BOM"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"inhuizing\": \"Ja\",\n        \"datum-inhuizing\": \"29-04-2021\",\n        \"opmerkingen\": \"RTest\",\n        \"betaalwijze\": \"Automatische incasso\",\n        \"ik-wil-overstappen-per\": \"02-06-2021\"\n    },\n    \"message\": \"Productvragen van de sale succesvol opgehaald\"\n}"}],"_postman_id":"25fa04e1-4db6-4528-93d9-26c401e093ab"},{"name":"Get sales by export template","id":"2a91aed0-edeb-4095-ad5d-29aa964e9fd4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/{{domain}}/{{version}}/account/sales/export/{{export_template}}","description":"<p>Get all sales in the format of different export templates using different filters. The response format is dependent on the {{export_template}} parameter. Possible values for {{export_template}} include 'default', 'energie', 'telecom' etc.<br />This endpoint is only available for admin users.</p>\n<p><strong>Filter Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter Name</th>\n<th>Possible Value(s) or Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>period_filter_on</td>\n<td>'created_date', 'updated_date', 'finalized_at', 'cancelled_date', 'sent_date', 'deleted_date'</td>\n<td>The date field to filter on.  <br />created_date - Sale created date.  <br />updated_date - Sale last updated date.  <br />finalized_at - Sale signed date.  <br />cancelled_date - Sale cancelled date.  <br />sent_date - Sale processed date.  <br />deleted_date - Sale deleted date.  <br /></td>\n</tr>\n<tr>\n<td>period</td>\n<td>'today', 'yesterday', 'this_week', 'last_week', 'last_30_days', 'this_month', 'last_month', 'custom'</td>\n<td>Possible periods to filter on</td>\n</tr>\n<tr>\n<td>period_start</td>\n<td>Date in YYYY-MM-DD hh:mm:ss format</td>\n<td>If period is custom</td>\n</tr>\n<tr>\n<td>period_end</td>\n<td>Date in YYYY-MM-DD hh:mm:ss format</td>\n<td>If period is custom</td>\n</tr>\n<tr>\n<td>type</td>\n<td>'sale', 'offer'</td>\n<td>To filter direct sales or offers</td>\n</tr>\n<tr>\n<td>flow_id</td>\n<td>integer</td>\n<td>The id of the flow of the transaction</td>\n</tr>\n<tr>\n<td>supplier_id</td>\n<td>integer</td>\n<td>The id of the supplier of the product of the transaction</td>\n</tr>\n<tr>\n<td>statuses</td>\n<td>array</td>\n<td>The possible statuses can be retrieved using the \"Get sale statuses list\" endpoint Multiple statuses can be passed. Eg: statuses[0]=new&amp;statuses[1]=sent</td>\n</tr>\n<tr>\n<td>offer_statuses</td>\n<td>'open', '1' (accepted), '0' (declined), '2' (expired)</td>\n<td>The status of the offers of the transactions. Multiple offer statuses can be filtered. Eg. offer_statuses[0]=open&amp;offer_statuses[1]=1</td>\n</tr>\n<tr>\n<td>product_types</td>\n<td>array</td>\n<td>The type of the product of the transaction. Multiple product types can be passed like: product_types[0]=simple&amp;product_types[1]=default</td>\n</tr>\n<tr>\n<td>sale_ids</td>\n<td>array</td>\n<td>The ids of the sales can be passed as an array to return specific sales like: sale_ids[0]=123456&amp;sale_ids[1]=5555555</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","{{domain}}","{{version}}","account","sales","export","{{export_template}}"],"host":["{{url}}"],"query":[{"disabled":true,"key":"period_filter_on","value":"updated_date"},{"disabled":true,"key":"period","value":"custom"},{"disabled":true,"key":"period_start","value":"{{start_date}}"},{"disabled":true,"key":"period_end","value":"{{end_date}}"},{"disabled":true,"key":"type","value":""},{"disabled":true,"key":"supplier_id","value":""},{"disabled":true,"key":"flow_id","value":""},{"disabled":true,"key":"statuses","value":""},{"disabled":true,"key":"offer_statuses","value":""},{"disabled":true,"key":"product_types","value":""},{"disabled":true,"key":"sale_ids[0]","value":""},{"disabled":true,"key":"sale_ids[1]","value":null}],"variable":[]}},"response":[{"id":"827ecfd1-57ba-4276-b5c7-8f3820f8b295","name":"Get energy transactions by export template","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"{{url}}/api/{{domain}}/{{version}}/account/sales/export/energie?period_filter_on=updated_date&period=custom&period_start=2020-02-19 05:00:49&period_end=2020-02-19 05:55:49&type=&supplier_id&flow_id&statuses","host":["{{url}}"],"path":["api","{{domain}}","{{version}}","account","sales","export","energie"],"query":[{"key":"period_filter_on","value":"updated_date"},{"key":"period","value":"custom"},{"key":"period_start","value":"2020-02-19 05:00:49"},{"key":"period_end","value":"2020-02-19 05:55:49"},{"key":"type","value":""},{"key":"supplier_id","value":null},{"key":"flow_id","value":null},{"key":"statuses","value":null},{"key":"api_token","value":"{{api_token}}","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 17 Aug 2020 08:34:59 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"200"},{"key":"X-RateLimit-Remaining","value":"198"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self'; form-action 'self'; frame-ancestors 'self'; frame-src 'self'; object-src 'self'"},{"key":"Feature-Policy","value":"accelerometer 'self'; ambient-light-sensor 'self'; autoplay 'self'; battery 'self'; camera 'self'; display-capture 'self'; document-domain *; encrypted-media 'self'; execution-while-not-rendered *; execution-while-out-of-viewport *; fullscreen 'self'; geolocation 'self'; gyroscope 'self'; layout-animations 'self'; legacy-image-formats 'self'; magnetometer 'self'; microphone 'self'; midi 'self'; navigation-override 'self'; oversized-images *; payment 'self'; picture-in-picture *; publickey-credentials 'self'; sync-xhr *; unoptimized-images 'self'; unsized-media *; usb 'self'; wake-lock 'self'; xr-spatial-tracking 'self'"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"049d27c99b00006b6b032a2200000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"5c420f229a456b6b-LHR"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"current_page\": 1,\n        \"data\": [\n            {\n                \"Sale ID\": 228838,\n                \"Flow ID\": 4,\n                \"Titel\": \"Elektriciteit & gas MKB\",\n                \"Geverifieerd\": null,\n                \"Tijdstip geverifieerd\": null,\n                \"Geverifieerd IP\": null,\n                \"Saletype\": \"offer\",\n                \"Status\": \"Afgewezen\",\n                \"Opmerking bij status\": null,\n                \"Geldig tot\": \"31-12-2019\",\n                \"Tijdstip aangemaakt\": \"15-12-2019 05:33:35\",\n                \"Tijdstip geüpdated\": \"19-02-2020 05:51:49\",\n                \"Verificatie\": \"signature\",\n                \"Opmerking annulering\": \"\",\n                \"Geannuleerd door\": null,\n                \"Finalized datetime\": null,\n                \"Cancelled datetime\": null,\n                \"Outgoing datetime\": null,\n                \"Product ID\": 424,\n                \"Productnaam\": \"Test Product\",\n                \"Product identifier\": \"test-product\",\n                \"Organisatie\": \"Default\",\n                \"Organisatie identifier\": \"default\",\n                \"Gebruikers ID\": 2916,\n                \"Gebruikersnaam\": \"test@salesdock.nl\",\n                \"Agent\": \"Test User\",\n                \"Oorspronkelijk account\": \"Demo Company\",\n                \"Oorspronkelijke organisatie\": \"Default\",\n                \"Oorspronkelijke verkoper\": \"Test User\",\n                \"Relatie ID\": 116488,\n                \"Voornaam\": \"*****\",\n                \"Achternaam\": \"*****\",\n                \"Zakelijk\": \"Ja\",\n                \"Bedrijfsnaam\": \"Test\",\n                \"Contactpersoon\": \"*****\",\n                \"Nummer Kamer van Koophandel (KvK)\": \"12345678\",\n                \"btw\": null,\n                \"Geslacht\": \"Dhr.\",\n                \"Postcode\": \"*****\",\n                \"Huisnummer\": \"*****\",\n                \"Toevoeging\": \"*****\",\n                \"Straatnaam\": \"Neptunusstraat\",\n                \"Woonplaats\": \"Enschede\",\n                \"Postcode aansluiting\": \"*****\",\n                \"Huisnummer aansluiting\": \"*****\",\n                \"Huisnummer toevoeging aansluiting\": \"*****\",\n                \"Straatnaam aansluiting\": \"Neptunusstraat\",\n                \"Plaatsnaam aansluiting\": \"Enschede\",\n                \"Geboortedatum\": null,\n                \"E-mail\": \"****@******.***\",\n                \"Telefoon\": null,\n                \"IBAN nummer\": \"*****\",\n                \"IBAN tenaamstelling\": \"*****\",\n                \"Offerte\": \"Ja\",\n                \"Offerte geaccepteerd\": \"Afgewezen\",\n                \"Offer answered datetime\": \"15-12-2019 05:35:34\",\n                \"Offer answered IP\": \"137.97.109.126\",\n                \"Tijdstip offerte laatst bekeken\": \"15-12-2019 05:35:35\",\n                \"IP adres offerte laatst bekeken\": \"137.97.109.126\",\n                \"Offerte downloads\": null,\n                \"Tijdstip offerte laatst gedownload\": null,\n                \"Bron\": null,\n                \"Bron ID\": null,\n                \"Signed contract date\": \"\",\n                \"Signed IP\": \"\",\n                \"AI / Acceptgiro\": \"AG\",\n                \"Double meter\": \"Nee\",\n                \"Double meter low tariff 21.00/23.00\": null,\n                \"Estimation\": \"Manual\",\n                \"Electricity usage single\": 200,\n                \"Electricity usage peak\": null,\n                \"Electricity usage off-peak\": null,\n                \"Gas usage\": 100,\n                \"Electricity return\": null,\n                \"Verblijfsfunctie\": \"Ja\",\n                \"EAN Code E\": \"*****\",\n                \"EAN Code G\": \"*****\",\n                \"Desired start date\": \"\",\n                \"Price gas\": \"0.24480\",\n                \"Price electricity single\": \"0.04829\",\n                \"Price electricity peak\": \"0.05347\",\n                \"Price electricity off-peak\": \"0.04168\",\n                \"Gas region\": \"Gasregio 4\",\n                \"Profile electricity\": \"E_3X25A\",\n                \"Profile gas\": \"G_G6_500_4000\",\n                \"Supplier Name\": \"Test Supplier\",\n                \"Outgoing Id\": \"\",\n                \"Outgoing app\": \"\",\n                \"Is de levering vooral of volledig voor privégebruik?\": null,\n                \"Estimated yearly costs\": 309.73,\n                \"Estimated monthly costs\": 25.81,\n                \"Type of energy\": \"Stroom en gas\",\n                \"Fixed costs electricity\": \"5.99\",\n                \"Fixed costs gas\": \"5.99\",\n                \"Contract duration\": \"\"\n            },\n            {\n                \"Sale ID\": 228839,\n                \"Flow ID\": 4,\n                \"Titel\": \"Elektriciteit & gas MKB\",\n                \"Geverifieerd\": null,\n                \"Tijdstip geverifieerd\": null,\n                \"Geverifieerd IP\": null,\n                \"Saletype\": \"offer\",\n                \"Status\": \"Geannuleerd na Happy Call\",\n                \"Opmerking bij status\": null,\n                \"Geldig tot\": \"31-12-2019\",\n                \"Tijdstip aangemaakt\": \"15-12-2019 05:51:12\",\n                \"Tijdstip geüpdated\": \"19-02-2020 05:51:49\",\n                \"Verificatie\": \"signature\",\n                \"Opmerking annulering\": \"Test\",\n                \"Geannuleerd door\": null,\n                \"Finalized datetime\": \"15-12-2019 05:52:24\",\n                \"Cancelled datetime\": \"15-12-2019 06:00:28\",\n                \"Outgoing datetime\": \"15-12-2019 06:00:09\",\n                \"Product ID\": 3329,\n                \"Productnaam\": \"TestProduct\",\n                \"Product identifier\": \"testproduct\",\n                \"Organisatie\": \"Default\",\n                \"Organisatie identifier\": \"default\",\n                \"Gebruikers ID\": 2916,\n                \"Gebruikersnaam\": \"test@salesdock.nl\",\n                \"Agent\": \"Test User\",\n                \"Oorspronkelijk account\": \"Demo Company\",\n                \"Oorspronkelijke organisatie\": \"Default\",\n                \"Oorspronkelijke verkoper\": \"Test User\",\n                \"Relatie ID\": 116488,\n                \"Voornaam\": \"*****\",\n                \"Achternaam\": \"*****\",\n                \"Zakelijk\": \"Ja\",\n                \"Bedrijfsnaam\": \"Test\",\n                \"Contactpersoon\": \"*****\",\n                \"Nummer Kamer van Koophandel (KvK)\": \"12345678\",\n                \"btw\": null,\n                \"Geslacht\": \"Dhr.\",\n                \"Postcode\": \"*****\",\n                \"Huisnummer\": \"*****\",\n                \"Toevoeging\": \"*****\",\n                \"Straatnaam\": \"Neptunusstraat\",\n                \"Woonplaats\": \"Enschede\",\n                \"Postcode aansluiting\": \"*****\",\n                \"Huisnummer aansluiting\": \"*****\",\n                \"Huisnummer toevoeging aansluiting\": \"*****\",\n                \"Straatnaam aansluiting\": \"Neptunusstraat\",\n                \"Plaatsnaam aansluiting\": \"Enschede\",\n                \"Geboortedatum\": null,\n                \"E-mail\": \"****@******.***\",\n                \"Telefoon\": null,\n                \"IBAN nummer\": \"*****\",\n                \"IBAN tenaamstelling\": \"*****\",\n                \"Offerte\": \"Ja\",\n                \"Offerte geaccepteerd\": \"Geaccepteerd\",\n                \"Offer answered datetime\": \"15-12-2019 05:52:24\",\n                \"Offer answered IP\": \"137.97.109.126\",\n                \"Tijdstip offerte laatst bekeken\": \"15-12-2019 05:52:25\",\n                \"IP adres offerte laatst bekeken\": \"137.97.109.126\",\n                \"Offerte downloads\": null,\n                \"Tijdstip offerte laatst gedownload\": null,\n                \"Bron\": null,\n                \"Bron ID\": null,\n                \"Signed contract date\": \"15-12-2019 05:52:24\",\n                \"Signed IP\": \"137.97.109.126\",\n                \"AI / Acceptgiro\": \"AI\",\n                \"Double meter\": \"Nee\",\n                \"Double meter low tariff 21.00/23.00\": null,\n                \"Estimation\": \"Manual\",\n                \"Electricity usage single\": 200,\n                \"Electricity usage peak\": null,\n                \"Electricity usage off-peak\": null,\n                \"Gas usage\": 100,\n                \"Electricity return\": null,\n                \"Verblijfsfunctie\": \"Ja\",\n                \"EAN Code E\": \"*****\",\n                \"EAN Code G\": \"*****\",\n                \"Desired start date\": \"\",\n                \"Price gas\": \"80\",\n                \"Price electricity single\": \"10\",\n                \"Price electricity peak\": \"20\",\n                \"Price electricity off-peak\": \"30\",\n                \"Gas region\": \"Gasregio 4\",\n                \"Profile electricity\": \"E_3X25A\",\n                \"Profile gas\": \"G_G6_500_4000\",\n                \"Supplier Name\": \"TestSupplier\",\n                \"Outgoing Id\": \"228840\",\n                \"Outgoing app\": \"salesdock\",\n                \"Is de levering vooral of volledig voor privégebruik?\": null,\n                \"Estimated yearly costs\": 11091.83,\n                \"Estimated monthly costs\": 924.32,\n                \"Type of energy\": \"Stroom en gas\",\n                \"Fixed costs electricity\": \"70\",\n                \"Fixed costs gas\": \"10\",\n                \"Contract duration\": \"\"\n            },\n            {\n                \"Sale ID\": 225006,\n                \"Flow ID\": 4,\n                \"Titel\": \"Elektriciteit & gas MKB\",\n                \"Geverifieerd\": null,\n                \"Tijdstip geverifieerd\": null,\n                \"Geverifieerd IP\": null,\n                \"Saletype\": \"offer\",\n                \"Status\": \"Afgewezen\",\n                \"Opmerking bij status\": null,\n                \"Geldig tot\": \"31-12-2019\",\n                \"Tijdstip aangemaakt\": \"12-12-2019 10:29:10\",\n                \"Tijdstip geüpdated\": \"19-02-2020 05:50:52\",\n                \"Verificatie\": \"signature\",\n                \"Opmerking annulering\": \"\",\n                \"Geannuleerd door\": null,\n                \"Finalized datetime\": null,\n                \"Cancelled datetime\": null,\n                \"Outgoing datetime\": null,\n                \"Product ID\": 424,\n                \"Productnaam\": \"Test Product\",\n                \"Product identifier\": \"test-product\",\n                \"Organisatie\": \"Default\",\n                \"Organisatie identifier\": \"default\",\n                \"Gebruikers ID\": 2916,\n                \"Gebruikersnaam\": \"test@salesdock.nl\",\n                \"Agent\": \"Test User\",\n                \"Oorspronkelijk account\": \"Demo Company\",\n                \"Oorspronkelijke organisatie\": \"Default\",\n                \"Oorspronkelijke verkoper\": \"Test User\",\n                \"Relatie ID\": 116488,\n                \"Voornaam\": \"*****\",\n                \"Achternaam\": \"*****\",\n                \"Zakelijk\": \"Ja\",\n                \"Bedrijfsnaam\": \"Test\",\n                \"Contactpersoon\": \"*****\",\n                \"Nummer Kamer van Koophandel (KvK)\": \"12345678\",\n                \"btw\": null,\n                \"Geslacht\": \"Dhr.\",\n                \"Postcode\": \"*****\",\n                \"Huisnummer\": \"*****\",\n                \"Toevoeging\": \"*****\",\n                \"Straatnaam\": \"Neptunusstraat\",\n                \"Woonplaats\": \"Enschede\",\n                \"Postcode aansluiting\": \"*****\",\n                \"Huisnummer aansluiting\": \"*****\",\n                \"Huisnummer toevoeging aansluiting\": \"*****\",\n                \"Straatnaam aansluiting\": \"Neptunusstraat\",\n                \"Plaatsnaam aansluiting\": \"Enschede\",\n                \"Geboortedatum\": null,\n                \"E-mail\": \"****@******.***\",\n                \"Telefoon\": null,\n                \"IBAN nummer\": \"*****\",\n                \"IBAN tenaamstelling\": \"*****\",\n                \"Offerte\": \"Ja\",\n                \"Offerte geaccepteerd\": \"Afgewezen\",\n                \"Offer answered datetime\": \"12-12-2019 12:32:54\",\n                \"Offer answered IP\": \"117.221.64.66\",\n                \"Tijdstip offerte laatst bekeken\": \"12-12-2019 12:32:56\",\n                \"IP adres offerte laatst bekeken\": \"117.221.64.66\",\n                \"Offerte downloads\": null,\n                \"Tijdstip offerte laatst gedownload\": null,\n                \"Bron\": null,\n                \"Bron ID\": null,\n                \"Signed contract date\": \"\",\n                \"Signed IP\": \"\",\n                \"AI / Acceptgiro\": \"AG\",\n                \"Double meter\": \"Nee\",\n                \"Double meter low tariff 21.00/23.00\": null,\n                \"Estimation\": \"Manual\",\n                \"Electricity usage single\": 200,\n                \"Electricity usage peak\": null,\n                \"Electricity usage off-peak\": null,\n                \"Gas usage\": 100,\n                \"Electricity return\": null,\n                \"Verblijfsfunctie\": \"Ja\",\n                \"EAN Code E\": \"*****\",\n                \"EAN Code G\": \"*****\",\n                \"Desired start date\": \"\",\n                \"Price gas\": \"0.24480\",\n                \"Price electricity single\": \"0.04829\",\n                \"Price electricity peak\": \"0.05347\",\n                \"Price electricity off-peak\": \"0.04168\",\n                \"Gas region\": \"Gasregio 4\",\n                \"Profile electricity\": \"E_3X25A\",\n                \"Profile gas\": \"G_G6_500_4000\",\n                \"Supplier Name\": \"Test Supplier\",\n                \"Outgoing Id\": \"\",\n                \"Outgoing app\": \"\",\n                \"Is de levering vooral of volledig voor privégebruik?\": null,\n                \"Estimated yearly costs\": 309.73,\n                \"Estimated monthly costs\": 25.81,\n                \"Type of energy\": \"Stroom en gas\",\n                \"Fixed costs electricity\": \"5.99\",\n                \"Fixed costs gas\": \"5.99\",\n                \"Contract duration\": \"\"\n            }\n        ],\n        \"first_page_url\": \"https://app.salesdock.nl/api/demo/v1/user/sales/energy?page=1\",\n        \"from\": 1,\n        \"last_page\": 1,\n        \"last_page_url\": \"https://app.salesdock.nl/api/demo/v1/user/sales/energy?page=1\",\n        \"next_page_url\": null,\n        \"path\": \"https://app.salesdock.nl/api/demo/v1/user/sales/energy\",\n        \"per_page\": 20,\n        \"prev_page_url\": null,\n        \"to\": 3,\n        \"total\": 3\n    },\n    \"message\": \"Sales succesvol opgehaald\"\n}\n"}],"_postman_id":"2a91aed0-edeb-4095-ad5d-29aa964e9fd4"},{"name":"Create default sale","id":"11eb025f-0d3d-4492-8894-7cbac074565d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"transaction_type\": \"offer\",\n    \"postcode\": \"7546MS\",\n    \"housenumber\": \"8\",\n    \"suffix\": null,\n    \"streetname\": \"Test\",\n    \"city\": \"Test\",\n    \"gender\": \"male\",\n    \"firstname\": \"Test\",\n    \"lastname\": \"Test\",\n    \"email\": \"test@salesdock.nl\",\n    \"phone\": \"0611XXXXX\",\n    \"sale_channel\": \"online\",\n    \"product_id\": \"1\",\n    \"connection_postcode\": \"7546MS\",\n    \"connection_housenumber\": \"8\",\n    \"connection_suffix\": null,\n    \"connection_streetname\": \"Test\",\n    \"connection_city\": \"Test\",\n    \"business\": \"0\",\n    \"questionData\": {\n        \"betaalwijze\": \"Automatische incasso\",\n        \"overstapdatum_switchdate_option\": \"Anders\",\n        \"overstapdatum\": \"04-06-2021\"\n    },\n    \"agreements\": {\n        \"privacy-statement\": \"1\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/sales/flow/{{flow_type_identifier}}/{{flow_identifier}}","description":"<p>Create sale (order or offer) for default flow.</p>\n<p>Replace {{flow_dentifier}} with the identifier of the flow.</p>\n<p>Replace {{flow_type_identifier}} with the identifier of the flow type.</p>\n<p>In the questionData object, the product question identifiers needed for the flow should be sent along with the corresponding answers</p>\n<p>In the agreements object, the agreement identifiers needed for the flow should be sent along with value \"1\" for accepted agreements.</p>\n<h4 id=\"completed-and-uncompleted-offers\">Completed and uncompleted offers</h4>\n<p>The API endpoint can be used to create both completed and uncompleted offers. Uncompleted offers result in a new contract pdf being generated and an email being sent to the customer to accept the offer. A completed offer will not send an offer acceptance email. An offer via the API is considered as a completed offer if it contains the \"contract_date\" parameter.</p>\n<h4 id=\"completed-and-uncompleted-orders\">Completed and uncompleted orders</h4>\n<p>The API endpoint can be used to create both completed and uncompleted orders. Uncompleted orders result in a new contract pdf being generated and also a confirmation/verification email being sent to customers based on flow settings. A completed order will not send an email. An order via the API is considered as a completed order if it contains the \"contract_date\" parameter.</p>\n<p><strong>Body Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Mandatory</th>\n<th>Possible Value(s)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>transaction_type</td>\n<td>string</td>\n<td>Y</td>\n<td>offer, order</td>\n<td></td>\n</tr>\n<tr>\n<td>connection_postcode</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Connection postcode</td>\n</tr>\n<tr>\n<td>connection_housenumber</td>\n<td>integer</td>\n<td>Y</td>\n<td></td>\n<td>Connection house number</td>\n</tr>\n<tr>\n<td>connection_suffix</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Connection house number extension</td>\n</tr>\n<tr>\n<td>connection_streetname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Connection street name</td>\n</tr>\n<tr>\n<td>connection_city</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Connection city</td>\n</tr>\n<tr>\n<td>postcode</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Contractant postcode</td>\n</tr>\n<tr>\n<td>housenumber</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence house number</td>\n</tr>\n<tr>\n<td>suffix</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence house number extension</td>\n</tr>\n<tr>\n<td>streetname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence street name</td>\n</tr>\n<tr>\n<td>city</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Correspondence city</td>\n</tr>\n<tr>\n<td>gender</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>firstname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>lastname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>birthdate</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>DOB in format dd-mm-yyyy</td>\n</tr>\n<tr>\n<td>email</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>phone</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>iban</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required according to flow settings</td>\n</tr>\n<tr>\n<td>iban_holder</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required according to flow settings</td>\n</tr>\n<tr>\n<td>sale_channel</td>\n<td>string</td>\n<td>N</td>\n<td>'d2d', 'retail', 'telemarketing', 'online', 'f2f'</td>\n<td></td>\n</tr>\n<tr>\n<td>product_id</td>\n<td>integer</td>\n<td>Y</td>\n<td></td>\n<td>ID of product</td>\n</tr>\n<tr>\n<td>business</td>\n<td>integer</td>\n<td>Y</td>\n<td>1, 0</td>\n<td>1 = business, 0 = consumer</td>\n</tr>\n<tr>\n<td>contact_person</td>\n<td>string</td>\n<td>Y, if business = 1</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>company_name</td>\n<td>string</td>\n<td>Y, if business = 1</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>company_coc</td>\n<td>string</td>\n<td>Y, if business = 1</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>company_vat</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>If business = 1, Required according to flow settings</td>\n</tr>\n<tr>\n<td>contract_date</td>\n<td>date</td>\n<td>N</td>\n<td></td>\n<td>In DD-MM-YYYY format. If not empty, then signifies that it is a completed offer.</td>\n</tr>\n<tr>\n<td>contract_pdf</td>\n<td>array</td>\n<td>N</td>\n<td></td>\n<td>Required if contract_date is not empty. Array expects 3 keys. First one is \"content\", which is the Base64 string of the contract pdf. Second one is \"extension\", which should always be 'pdf'. Third one is \"created_at\", which is the file created date time in \"YYYY-mm-dd hh:mm:ss\" format</td>\n</tr>\n<tr>\n<td>signature</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required based on flow settings, Base64 encoded string of image</td>\n</tr>\n<tr>\n<td>questionData</td>\n<td>array</td>\n<td>Y</td>\n<td></td>\n<td>Product question identifiers along with corresponding answers</td>\n</tr>\n<tr>\n<td>agreements</td>\n<td>array</td>\n<td>Y</td>\n<td></td>\n<td>Agreement identifiers with answer as \"1\" for accepted agreements</td>\n</tr>\n<tr>\n<td>initial_user_firstname</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>The first name of the user who did the sale</td>\n</tr>\n<tr>\n<td>initial_user_lastname</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>The last name of the user who did the sale</td>\n</tr>\n<tr>\n<td>initial_organisation_name</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>The name of the organisation which did the sale</td>\n</tr>\n<tr>\n<td>initial_created_at</td>\n<td>datetime</td>\n<td>N</td>\n<td></td>\n<td>In YYYY-mm-dd hh:mm:ss format. The date and time on which the sale was originally created. If the sale is a completed direct order, then this date time (if not empty), is considered as the contract signed date.</td>\n</tr>\n<tr>\n<td>external_reference</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>An order reference identifier that can be used by the API partners</td>\n</tr>\n<tr>\n<td>relation_id</td>\n<td>integer</td>\n<td>N</td>\n<td></td>\n<td>The ID of the relation that needs to be linked to the sale. This has to be a valid relation ID that is accessible to the user. If relation_id is not sent, then a new relation will be created and linked to the sale.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","{{domain}}","{{version}}","sales","flow","{{flow_type_identifier}}","{{flow_identifier}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"7deea3aa-abb8-45c1-97d3-db7b3947452c","name":"Create default offer","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"transaction_type\": \"offer\",\n    \"postcode\": \"7546MS\",\n    \"housenumber\": \"8\",\n    \"suffix\": null,\n    \"streetname\": \"Test\",\n    \"city\": \"Test\",\n    \"gender\": \"male\",\n    \"firstname\": \"Test\",\n    \"lastname\": \"Test\",\n    \"email\": \"test@salesdock.nl\",\n    \"phone\": \"0611XXXXX\",\n    \"sale_channel\": \"online\",\n    \"product_id\": \"1\",\n    \"connection_postcode\": \"7546MS\",\n    \"connection_housenumber\": \"8\",\n    \"connection_suffix\": null,\n    \"connection_streetname\": \"Test\",\n    \"connection_city\": \"Test\",\n    \"business\": \"0\",\n    \"questionData\": {\n        \"betaalwijze\": \"Automatische incasso\",\n        \"overstapdatum_switchdate_option\": \"Anders\",\n        \"overstapdatum\": \"04-06-2021\",\n        \"file-question\": [\n            {\n                \"name\": \"Image\",\n                \"content\": \"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNk+M9QDwADhgGAWjR9awAAAABJRU5ErkJggg==\",\n                \"extension\": \"png\"\n            }\n        ]\n    },\n    \"agreements\": {\n        \"privacy-statement\": \"1\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/sales/flow/{{flow_type_identifier}}/{{flow_identifier}}"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 Apr 2021 12:50:27 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' https://bam.eu01.nr-data.net https://www.google-analytics.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"0996146dfc000040c62209d000000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"group\":\"cf-nel\",\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report?s=3BLpYPSOBGOixgcu2c9JuXLdq1Wu%2FLBXTsiZoCsQ%2FzXwF3lk72BOscG0rXqhFnVPfdLY8BfPd4iHn%2Bb%2B6cImSPwHv5ceuEV4XSPt4z%2FOakG8\"}],\"max_age\":604800}"},{"key":"NEL","value":"{\"max_age\":604800,\"report_to\":\"cf-nel\"}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"6436bcf65f1e40c6-LHR"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"sale_id\": 1\n    },\n    \"message\": \"Sale created successfully.\"\n}"},{"id":"43a42c45-ef66-44a4-a9f8-26c79d306eb6","name":"Create default sale with Optin","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"transaction_type\": \"offer\",\n    \"postcode\": \"7546MS\",\n    \"housenumber\": \"8\",\n    \"suffix\": null,\n    \"streetname\": \"Test\",\n    \"city\": \"Test\",\n    \"gender\": \"male\",\n    \"firstname\": \"Test\",\n    \"lastname\": \"Test\",\n    \"email\": \"test@salesdock.nl\",\n    \"phone\": \"0611XXXXX\",\n    \"sale_channel\": \"online\",\n    \"product_id\": \"1\",\n    \"connection_postcode\": \"7546MS\",\n    \"connection_housenumber\": \"8\",\n    \"connection_suffix\": null,\n    \"connection_streetname\": \"Test\",\n    \"connection_city\": \"Test\",\n    \"business\": \"0\",\n    \"questionData\": {\n        \"betaalwijze\": \"Automatische incasso\",\n        \"overstapdatum_switchdate_option\": \"Anders\",\n        \"overstapdatum\": \"04-06-2021\"\n    },\n    \"agreements\": {\n        \"privacy-statement\": \"1\"\n    },\n    \"optin\": {\n        \"source\": \"Example source\",\n        \"channels\": [\n            {\n                \"type\": \"phone\",\n                \"value\": \"0031648081451\",\n                \"verified_at\": \"2024-01-27 18:40:45\",\n                \"verified_ip\": \"22.33.44.4444\"\n            },\n            {\n                \"type\": \"email\",\n                \"value\": \"test@test.nl\"\n            }\n        ],\n        \"obtained_via_url\": \"https://testexample.nl/form\",\n        \"client_ip\": \"11.22.33.4444\",\n        \"withdrawn_at\": \"2025-01-25 18:32:45\",\n        \"valid_till\": \"2025-01-25 18:32:45\",\n        \"remarks\": \"Remark opt-in\",\n        \"campaign_code\": \"SD4344\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/sales/flow/{{flow_type_identifier}}/{{flow_identifier}}"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 11 Jun 2024 12:15:05 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"150"},{"key":"X-RateLimit-Remaining","value":"149"},{"key":"x-robots-tag","value":"none"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://cdnjs.cloudflare.com https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com https://fonts.bunny.net; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://*.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io https://*.salesdock.nl; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Cross-Origin-Embedder-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Opener-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"89218649c9b066db-AMS"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"message\": \"Invalid product\",\n    \"code\": \"400\"\n}"}],"_postman_id":"11eb025f-0d3d-4492-8894-7cbac074565d"},{"name":"Create default sale (multiple products)","id":"a9de6f3c-dece-4942-9ade-06a8b3557abf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"transaction_type\": \"offer\",\n    \"postcode\": \"7546MS\",\n    \"housenumber\": \"8\",\n    \"suffix\": null,\n    \"streetname\": \"Test\",\n    \"city\": \"Test\",\n    \"gender\": \"male\",\n    \"firstname\": \"Test\",\n    \"lastname\": \"Test\",\n    \"email\": \"test@salesdock.nl\",\n    \"phone\": \"0611XXXXX\",\n    \"sale_channel\": \"online\",\n    \"product_id\": \"15163\",\n    \"connection_postcode\": \"7546MS\",\n    \"connection_housenumber\": \"8\",\n    \"connection_suffix\": null,\n    \"connection_streetname\": \"Test\",\n    \"connection_city\": \"Test\",\n    \"business\": \"1\",\n    \"contact_person\": \"Test Manager\",\n    \"company_name\": \"Test Co.\",\n    \"company_coc\": \"12345678\",\n    \"related_products\": [\n        {\n            \"product_id\": 1,\n            \"quantity\": 2,\n            \"section_identifier\": \"abc\"\n        },\n        {\n            \"product_id\": 2,\n            \"quantity\": 6,\n            \"section_identifier\": \"xyz\"\n        }\n    ],\n    \"questionData\": {\n        \"betaalwijze\": \"Automatische incasso\",\n        \"overstapdatum_switchdate_option\": \"Anders\",\n        \"overstapdatum\": \"05-06-2021\"\n    },\n    \"agreements\": {\n        \"privacy-statement\": \"1\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/sales/flow/{{flow_type_identifier}}/{{flow_identifier}}","description":"<p>Default flows (based on the flow settings), can accept multiple products. This request shows an example of how to create a default sale with multiple products using the API end point.</p>\n<p>The sub-products can be sent in the array called related_products as shown in this request. The product id, quantity of products and the category of the product (section-identifier) has to be sent in the request.</p>\n<p>Replace {{flow_dentifier}} with the identifier of the flow.</p>\n<p>Replace {{flow_type_identifier}} with the identifier of the flow type.</p>\n<p>In the questionData object, the product question identifiers needed for the flow should be sent along with the corresponding answers</p>\n<p>In the agreements object, the agreement identifiers needed for the flow should be sent along with value \"1\" for accepted agreements.</p>\n<h4 id=\"completed-and-uncompleted-offers\">Completed and uncompleted offers</h4>\n<p>The API endpoint can be used to create both completed and uncompleted offers. Uncompleted offers result in a new contract pdf being generated and an email being sent to the customer to accept the offer. A completed offer will not send an offer acceptance email. An offer via the API is considered as a completed offer if it contains the \"contract_date\" parameter.</p>\n<h4 id=\"completed-and-uncompleted-orders\">Completed and uncompleted orders</h4>\n<p>The API endpoint can be used to create both completed and uncompleted orders. Uncompleted orders result in a new contract pdf being generated and also a confirmation/verification email being sent to customers based on flow settings. A completed order will not send an email. An order via the API is considered as a completed order if it contains the \"contract_date\" parameter.</p>\n<p><strong>Body Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Mandatory</th>\n<th>Possible Value(s)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>transaction_type</td>\n<td>string</td>\n<td>Y</td>\n<td>offer, order</td>\n<td></td>\n</tr>\n<tr>\n<td>connection_postcode</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Connection postcode</td>\n</tr>\n<tr>\n<td>connection_housenumber</td>\n<td>integer</td>\n<td>Y</td>\n<td></td>\n<td>Connection house number</td>\n</tr>\n<tr>\n<td>connection_suffix</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Connection house number extension</td>\n</tr>\n<tr>\n<td>connection_streetname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Connection street name</td>\n</tr>\n<tr>\n<td>connection_city</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Connection city</td>\n</tr>\n<tr>\n<td>postcode</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Contractant postcode</td>\n</tr>\n<tr>\n<td>housenumber</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Contractant house number</td>\n</tr>\n<tr>\n<td>suffix</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Contractant house number extension</td>\n</tr>\n<tr>\n<td>streetname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Contractant street name</td>\n</tr>\n<tr>\n<td>city</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>Contractant city</td>\n</tr>\n<tr>\n<td>gender</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>firstname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>lastname</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>birthdate</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td>DOB in format dd-mm-yyyy</td>\n</tr>\n<tr>\n<td>email</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>phone</td>\n<td>string</td>\n<td>Y</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>iban</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required according to flow settings</td>\n</tr>\n<tr>\n<td>iban_holder</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required according to flow settings</td>\n</tr>\n<tr>\n<td>sale_channel</td>\n<td>string</td>\n<td>N</td>\n<td>'d2d', 'retail', 'telemarketing', 'online', 'f2f'</td>\n<td></td>\n</tr>\n<tr>\n<td>product_id</td>\n<td>integer</td>\n<td>Y</td>\n<td></td>\n<td>ID of product</td>\n</tr>\n<tr>\n<td>business</td>\n<td>integer</td>\n<td>Y</td>\n<td>1, 0</td>\n<td>1 = business, 0 = consumer</td>\n</tr>\n<tr>\n<td>contact_person</td>\n<td>string</td>\n<td>Y, if business = 1</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>company_name</td>\n<td>string</td>\n<td>Y, if business = 1</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>company_coc</td>\n<td>string</td>\n<td>Y, if business = 1</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>company_vat</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>If business = 1, Required according to flow settings</td>\n</tr>\n<tr>\n<td>contract_date</td>\n<td>date</td>\n<td>N</td>\n<td></td>\n<td>In DD-MM-YYYY format. If not empty, then signifies that it is a completed offer.</td>\n</tr>\n<tr>\n<td>contract_pdf</td>\n<td>array</td>\n<td>N</td>\n<td></td>\n<td>Required if contract_date is not empty. Array expects 3 keys. First one is \"content\", which is the Base64 string of the contract pdf. Second one is \"extension\", which should always be 'pdf'. Third one is \"created_at\", which is the file created date time in \"YYYY-mm-dd hh:mm:ss\" format</td>\n</tr>\n<tr>\n<td>signature</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required based on flow settings, Base64 encoded string of image</td>\n</tr>\n<tr>\n<td>questionData</td>\n<td>array</td>\n<td>Y</td>\n<td></td>\n<td>Product question identifiers along with corresponding answers</td>\n</tr>\n<tr>\n<td>agreements</td>\n<td>array</td>\n<td>Y</td>\n<td></td>\n<td>Agreement identifiers with answer as \"1\" for accepted agreements</td>\n</tr>\n<tr>\n<td>initial_user_firstname</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>The first name of the user who did the sale</td>\n</tr>\n<tr>\n<td>initial_user_lastname</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>The last name of the user who did the sale</td>\n</tr>\n<tr>\n<td>initial_organisation_name</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>The name of the organisation which did the sale</td>\n</tr>\n<tr>\n<td>external_reference</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>An order reference identifier that can be used by the API partners</td>\n</tr>\n<tr>\n<td>initial_created_at</td>\n<td>datetime</td>\n<td>N</td>\n<td></td>\n<td>In YYYY-mm-dd hh:mm:ss format. The date and time on which the sale was originally created</td>\n</tr>\n<tr>\n<td>related_products</td>\n<td>array</td>\n<td>N</td>\n<td></td>\n<td>This object contains the details of the sub products (if any) that are being sold in this sale.</td>\n</tr>\n<tr>\n<td>relation_id</td>\n<td>integer</td>\n<td>N</td>\n<td></td>\n<td>The ID of the relation that needs to be linked to the sale. This has to be a valid relation ID that is accessible to the user. If relation_id is not sent, then a new relation will be created and linked to the sale.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","{{domain}}","{{version}}","sales","flow","{{flow_type_identifier}}","{{flow_identifier}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"216bc6df-b5db-47a9-9eb8-7a542ced5cdc","name":"Create default sale (multiple products)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"transaction_type\": \"offer\",\n    \"postcode\": \"7546MS\",\n    \"housenumber\": \"8\",\n    \"suffix\": null,\n    \"streetname\": \"Test\",\n    \"city\": \"Test\",\n    \"gender\": \"male\",\n    \"firstname\": \"Test\",\n    \"lastname\": \"Test\",\n    \"email\": \"test@salesdock.nl\",\n    \"sale_channel\": \"online\",\n    \"phone\": \"0611XXXXX\",\n    \"product_id\": \"15163\",\n    \"connection_postcode\": \"7546MS\",\n    \"connection_housenumber\": \"8\",\n    \"connection_suffix\": null,\n    \"connection_streetname\": \"Test\",\n    \"connection_city\": \"Test\",\n    \"business\": \"1\",\n    \"contact_person\": \"Test Manager\",\n    \"company_name\": \"Test Co.\",\n    \"company_coc\": \"12345678\",\n    \"related_products\": [\n        {\n            \"product_id\": 1,\n            \"quantity\": 2,\n            \"section_identifier\": \"abc\"\n        },\n        {\n            \"product_id\": 2,\n            \"quantity\": 6,\n            \"section_identifier\": \"xyz\"\n        }\n    ],\n    \"questionData\": {\n        \"betaalwijze\": \"Automatische incasso\",\n        \"overstapdatum_switchdate_option\": \"Anders\",\n        \"overstapdatum\": \"05-06-2021\",\n        \"file-question\": [\n            {\n                \"name\": \"Image\",\n                \"content\": \"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNk+M9QDwADhgGAWjR9awAAAABJRU5ErkJggg==\",\n                \"extension\": \"png\"\n            }\n        ]\n    },\n    \"agreements\": {\n        \"privacy-statement\": \"1\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/sales/flow/{{flow_type_identifier}}/{{flow_identifier}}"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 09 May 2021 10:47:10 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' https://bam.eu01.nr-data.net https://www.google-analytics.com https://widget.freshworks.com https://salesdock.freshdesk.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"09f2560a0700002d132ea38000000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report?s=fUn0FGA0M1GsfdAeSZolrE5kj%2F6ai8wrgGQNuaWShKORyV9HKhbcygMEelV8vNR2MA1eC8qlEwKN7tcjVeyI6hsLbERnNFLYtT4R5rHiWRwk\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"64ca59233bc82d13-LHR"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"sale_id\": 2\n    },\n    \"message\": \"Sale created successfully.\"\n}"}],"_postman_id":"a9de6f3c-dece-4942-9ade-06a8b3557abf"},{"name":"Update default proposal","id":"acf09c44-b8b3-441d-a069-ed3b5110fff0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"customer\": {\n        \"business\": false,\n        \"gender\": \"male\",\n        \"firstname\": \"Jane\",\n        \"lastname\": \"Doe\",\n        \"birthdate\": null,\n        \"email\": \"test@salesdock.nl\",\n        \"phone\": \"0611111111\",\n        \"company_name\": \"Test\",\n        \"contact_person\": \"Man\",\n        \"coc\": \"12345678\",\n        \"vat\": \"NL123456789B01\",\n        \"address\": {\n            \"postcode\": \"7511PG\",\n            \"housenumber\": \"9\",\n            \"suffix\": \"15\",\n            \"streetname\": \"Neptunusstraat\",\n            \"city\": \"Enschede\"\n        },\n        \"correspondence_address\": {\n            \"postcode\": \"7511PG\",\n            \"housenumber\": \"8\",\n            \"suffix\": \"A\",\n            \"streetname\": \"Neptunusstraat\",\n            \"city\": \"Enschede\"\n        }\n    },\n    \"product_questions\": {\n        \"delete\": [\n            \"test-2\",\n            \"betaalwijze\"\n        ],\n        \"upsert\": {\n            \"overstapdatum_switchdate_option\": \"Anders\",\n            \"overstapdatum\": \"05-06-2021\",\n            \"betaalwijze\": \"Factuur\",\n            \"payment-address\": \"Test payment\"\n        }\n    },\n    \"agreements\": {\n        \"delete\": [],\n        \"upsert\": {\n            \"info-bnnvara\": \"1\",\n            \"telefonisch-benaderen\": \"1\",\n            \"algemene-voorwaarden\": \"1\",\n            \"annulering\": \"1\"\n        }\n    },\n    \"flow_default\": {\n        \"products\": {\n            \"delete\": {\n                \"section-identifier-1\": [\n                    35,\n                    20\n                ],\n                \"section-identifier-2\": [\n                    1\n                ]\n            },\n            \"upsert\": {\n                \"section-identifier-1\": [\n                    {\n                        \"id\": 431,\n                        \"quantity\": \"0\"\n                    }\n                ],\n                \"section-identifier-2\": [\n                    {\n                        \"id\": 792,\n                        \"quantity\": \"1\"\n                    }\n                ]\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/proposal/{{sale_id}}","description":"<p>This endpoint can be used to update the details of a sale already created. The endpoint is available for both admin and agent users.</p>\n<p>This endpoint can currently be only used to edit sales of specific flow types and also sales that are not:</p>\n<ul>\n<li><p>cancelled</p>\n</li>\n<li><p>sent</p>\n</li>\n<li><p>anonymised</p>\n</li>\n<li><p>locked</p>\n</li>\n<li><p>Salesdock integration sales</p>\n</li>\n</ul>\n<p>The endpoint accepts mainly the following:</p>\n<ol>\n<li><p>customer - This object contains all ther personal and address information of the customer.</p>\n</li>\n<li><p>product_questions - This object contains the product questions of the sale. A \"delete\" array passsed in this with product question identifiers, will remove existing product questions from the sale and an \"upsert\" array will insert/update product questions into the sale.</p>\n</li>\n<li><p>agreements - Agreemeent data need to be sent for orders. A \"delete\" array passsed in this with agreement idnetifiers, will remove existing agreements from the sale and an \"upsert\" array will insert/update agreements into the sale.</p>\n</li>\n<li><p>flow_default - This array will contain default flow specific information. Right now, it accepts one array called \"products\". These accept the add on products of the sale that can be modified. A sample json object os below</p>\n</li>\n</ol>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"products\": {\n        \"delete\": {\n            \"section-identifier-1\": [\n                35,\n                20\n            ],\n            \"section-identifier-2\": [\n                1\n            ]\n        },\n        \"upsert\": {\n            \"section-identifier-1\": [\n                {\n                    \"id\": 431,\n                    \"quantity\": \"0\"\n                }\n            ],\n            \"section-identifier-2\": [\n                {\n                    \"id\": 792,\n                    \"quantity\": \"1\"\n                }\n            ]\n        }\n    }\n}\n\n</code></pre>\n<p>In the above request, the products in the delete array will be inserted and those in the upsert array will be updated or inserted. The identifier of the section needs to be also passed in these arrays (eg: section-identifier-1, section-identifier-2). Please also refer <a href=\"https://developer.salesdock.nl/#a9de6f3c-dece-4942-9ade-06a8b3557abf\">https://developer.salesdock.nl/#a9de6f3c-dece-4942-9ade-06a8b3557abf</a> for more information on how sales are inserted with multiple products.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","proposal","{{sale_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"ab8ec793-b79b-43bc-96a7-7e27edc1a621","name":"Update default sale proposal","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"customer\": {\n        \"business\": false,\n        \"gender\": \"male\",\n        \"firstname\": \"Jane\",\n        \"lastname\": \"Doe\",\n        \"birthdate\": null,\n        \"email\": \"test@salesdock.nl\",\n        \"phone\": \"0611111111\",\n        \"company_name\": \"Test\",\n        \"contact_person\": \"Man\",\n        \"coc\": \"12345678\",\n        \"vat\": \"NL123456789B01\",\n        \"address\": {\n            \"postcode\": \"7511PG\",\n            \"housenumber\": \"9\",\n            \"suffix\": \"15\",\n            \"streetname\": \"Neptunusstraat\",\n            \"city\": \"Enschede\"\n        },\n        \"correspondence_address\": {\n            \"postcode\": \"7511PG\",\n            \"housenumber\": \"8\",\n            \"suffix\": \"A\",\n            \"streetname\": \"Neptunusstraat\",\n            \"city\": \"Enschede\"\n        }\n    },\n    \"product_questions\": {\n        \"delete\": [\n            \"test-2\",\n            \"betaalwijze\"\n        ],\n        \"upsert\": {\n            \"overstapdatum_switchdate_option\": \"Anders\",\n            \"overstapdatum\": \"05-06-2021\",\n            \"betaalwijze\": \"Factuur\",\n            \"payment-address\": \"Test payment\"\n        }\n    },\n    \"agreements\": {\n        \"delete\": [],\n        \"upsert\": {\n            \"info-bnnvara\": \"1\",\n            \"telefonisch-benaderen\": \"1\",\n            \"algemene-voorwaarden\": \"1\",\n            \"annulering\": \"1\"\n        }\n    },\n    \"flow_default\": {\n        \"products\": {\n            \"delete\": {\n                \"section-identifier-1\": [\n                    35,\n                    20\n                ],\n                \"section-identifier-2\": [\n                    1\n                ]\n            },\n            \"upsert\": {\n                \"section-identifier-1\": [\n                    {\n                        \"id\": 431,\n                        \"quantity\": \"0\"\n                    }\n                ],\n                \"section-identifier-2\": [\n                    {\n                        \"id\": 792,\n                        \"quantity\": \"1\"\n                    }\n                ]\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/proposal/{{sale_id}}"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 04 Dec 2023 10:13:42 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"120"},{"key":"X-RateLimit-Remaining","value":"119"},{"key":"x-robots-tag","value":"none"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://*.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Cross-Origin-Embedder-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Opener-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=WWYMhq4phqTr4R4ApAhtd2ZuR2ltYk%2FaL4PwWGOlGVoA7q9qVARHLyR7mmF4fWeIa%2BmRAufypWAsbTlv5B%2B3OGOLwtJV4bthSNw%2Bjj9fzRo9svCCJvUGl%2Bg8qsisiNQHSFE%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"83034737ba3e0b4e-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"sale_id\": 390\n    },\n    \"message\": \"Sale updated successfully\"\n}"}],"_postman_id":"acf09c44-b8b3-441d-a069-ed3b5110fff0"},{"name":"Update default finalized sale","id":"0625c537-770a-4662-94f1-36ea961c814c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"customer\": {\n        \"business\": false,\n        \"gender\": \"male\",\n        \"firstname\": \"Jane\",\n        \"lastname\": \"Doe\",\n        \"birthdate\": null,\n        \"email\": \"test@salesdock.nl\",\n        \"phone\": \"0611111111\",\n        \"company_name\": \"Test\",\n        \"contact_person\": \"Man\",\n        \"coc\": \"12345678\",\n        \"vat\": \"NL123456789B01\",\n        \"address\": {\n            \"postcode\": \"7511PG\",\n            \"housenumber\": \"9\",\n            \"suffix\": \"15\",\n            \"streetname\": \"Neptunusstraat\",\n            \"city\": \"Enschede\"\n        },\n        \"correspondence_address\": {\n            \"postcode\": \"7511PG\",\n            \"housenumber\": \"8\",\n            \"suffix\": \"A\",\n            \"streetname\": \"Neptunusstraat\",\n            \"city\": \"Enschede\"\n        }\n    },\n    \"product_questions\": {\n        \"delete\": [\n            \"test-2\",\n            \"betaalwijze\"\n        ],\n        \"upsert\": {\n            \"overstapdatum_switchdate_option\": \"Anders\",\n            \"overstapdatum\": \"05-06-2021\",\n            \"betaalwijze\": \"Factuur\",\n            \"payment-address\": \"Test payment\"\n        }\n    },\n    \"agreements\": {\n        \"delete\": [],\n        \"upsert\": {\n            \"info-bnnvara\": \"1\",\n            \"telefonisch-benaderen\": \"1\",\n            \"algemene-voorwaarden\": \"1\",\n            \"annulering\": \"1\"\n        }\n    },\n    \"flow_default\": {\n        \"products\": {\n            \"delete\": {\n                \"section-identifier-1\": [\n                    35,\n                    20\n                ],\n                \"section-identifier-2\": [\n                    1\n                ]\n            },\n            \"upsert\": {\n                \"section-identifier-1\": [\n                    {\n                        \"id\": 431,\n                        \"quantity\": \"0\"\n                    }\n                ],\n                \"section-identifier-2\": [\n                    {\n                        \"id\": 792,\n                        \"quantity\": \"1\"\n                    }\n                ]\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/account/sales/{{sale_id}}","description":"<p>This endpoint can be used to update the details of a sale that is finalized. So only accepted offers and direct orders can be updated with this API.</p>\n<p>The confirmation PDF is not regenerated once a sale is updated via this endpoint.</p>\n<p>This endpoint is only available for admin users. This endpoint can currently be only used to edit sales of specific flow types and also sales that are not:</p>\n<ul>\n<li><p>cancelled</p>\n</li>\n<li><p>sent</p>\n</li>\n<li><p>anonymised</p>\n</li>\n<li><p>locked</p>\n</li>\n<li><p>Salesdock integration sales</p>\n</li>\n</ul>\n<p>The endpoint accepts mainly the following:</p>\n<ol>\n<li><p>customer - This object contains all ther personal and address information of the customer.</p>\n</li>\n<li><p>product_questions - This object contains the product questions of the sale. A \"delete\" array passsed in this with product question identifiers, will remove existing product questions from the sale and an \"upsert\" array will insert/update product questions into the sale.</p>\n</li>\n<li><p>agreements - Agreemeent data need to be sent for orders. A \"delete\" array passsed in this with agreement idnetifiers, will remove existing agreements from the sale and an \"upsert\" array will insert/update agreements into the sale.</p>\n</li>\n<li><p>flow_default - This array will contain default flow specific information. Right now, it accepts one array called \"products\". These accept the add on products of the sale that can be modified. A sample json object os below</p>\n</li>\n</ol>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"products\": {\n        \"delete\": {\n            \"section-identifier-1\": [\n                35,\n                20\n            ],\n            \"section-identifier-2\": [\n                1\n            ]\n        },\n        \"upsert\": {\n            \"section-identifier-1\": [\n                {\n                    \"id\": 431,\n                    \"quantity\": \"0\"\n                }\n            ],\n            \"section-identifier-2\": [\n                {\n                    \"id\": 792,\n                    \"quantity\": \"1\"\n                }\n            ]\n        }\n    }\n}\n\n</code></pre>\n<p>In the above request, the products in the delete array will be inserted and those in the upsert array will be updated or inserted. The identifier of the section needs to be also passed in these arrays (eg: section-identifier-1, section-identifier-2). Please also refer <a href=\"https://developer.salesdock.nl/#a9de6f3c-dece-4942-9ade-06a8b3557abf\">https://developer.salesdock.nl/#a9de6f3c-dece-4942-9ade-06a8b3557abf</a> for more information on how sales are inserted with multiple products.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","sales","{{sale_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f53b3bca-afd0-4bb0-9eed-9202e3d51d45","name":"Update default finalized sale","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"customer\": {\n        \"business\": false,\n        \"gender\": \"male\",\n        \"firstname\": \"Jane\",\n        \"lastname\": \"Doe\",\n        \"birthdate\": null,\n        \"email\": \"test@salesdock.nl\",\n        \"phone\": \"0611111111\",\n        \"company_name\": \"Test\",\n        \"contact_person\": \"Man\",\n        \"coc\": \"12345678\",\n        \"vat\": \"NL123456789B01\",\n        \"address\": {\n            \"postcode\": \"7511PG\",\n            \"housenumber\": \"9\",\n            \"suffix\": \"15\",\n            \"streetname\": \"Neptunusstraat\",\n            \"city\": \"Enschede\"\n        },\n        \"correspondence_address\": {\n            \"postcode\": \"7511PG\",\n            \"housenumber\": \"8\",\n            \"suffix\": \"A\",\n            \"streetname\": \"Neptunusstraat\",\n            \"city\": \"Enschede\"\n        }\n    },\n    \"product_questions\": {\n        \"delete\": [\n            \"test-2\",\n            \"betaalwijze\"\n        ],\n        \"upsert\": {\n            \"overstapdatum_switchdate_option\": \"Anders\",\n            \"overstapdatum\": \"05-06-2021\",\n            \"betaalwijze\": \"Factuur\",\n            \"payment-address\": \"Test payment\"\n        }\n    },\n    \"agreements\": {\n        \"delete\": [],\n        \"upsert\": {\n            \"info-bnnvara\": \"1\",\n            \"telefonisch-benaderen\": \"1\",\n            \"algemene-voorwaarden\": \"1\",\n            \"annulering\": \"1\"\n        }\n    },\n    \"flow_default\": {\n        \"products\": {\n            \"delete\": {\n                \"section-identifier-1\": [\n                    35,\n                    20\n                ],\n                \"section-identifier-2\": [\n                    1\n                ]\n            },\n            \"upsert\": {\n                \"section-identifier-1\": [\n                    {\n                        \"id\": 431,\n                        \"quantity\": \"0\"\n                    }\n                ],\n                \"section-identifier-2\": [\n                    {\n                        \"id\": 792,\n                        \"quantity\": \"1\"\n                    }\n                ]\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/account/sales/{{sale_id}}"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 04 Dec 2023 10:13:42 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"120"},{"key":"X-RateLimit-Remaining","value":"119"},{"key":"x-robots-tag","value":"none"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://*.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Cross-Origin-Embedder-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Opener-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=WWYMhq4phqTr4R4ApAhtd2ZuR2ltYk%2FaL4PwWGOlGVoA7q9qVARHLyR7mmF4fWeIa%2BmRAufypWAsbTlv5B%2B3OGOLwtJV4bthSNw%2Bjj9fzRo9svCCJvUGl%2Bg8qsisiNQHSFE%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"83034737ba3e0b4e-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"sale_id\": 390\n    },\n    \"message\": \"Sale updated successfully\"\n}"}],"_postman_id":"0625c537-770a-4662-94f1-36ea961c814c"},{"name":"Get sale statuses list","id":"70d955bb-ef63-4b76-ad8d-1b8639501a33","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/statuses?status_source=sale","description":"<p>This endpoint returns the list of sale statuses that are available in the application. The status identifier can be used to update the status of the sale.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","statuses"],"host":["{{url}}"],"query":[{"key":"status_source","value":"sale"}],"variable":[]}},"response":[{"id":"bfbeda83-4fdc-48e1-9a64-3ba258d7cf9f","name":"Get statuses","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/statuses"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 17 Nov 2020 11:50:01 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"200"},{"key":"X-RateLimit-Remaining","value":"199"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' https://bam.eu01.nr-data.net https://www.google-analytics.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self'; object-src 'self'"},{"key":"Feature-Policy","value":"accelerometer 'self'; ambient-light-sensor 'self'; autoplay 'self'; battery 'self'; camera 'self'; display-capture 'self'; document-domain *; encrypted-media 'self'; execution-while-not-rendered *; execution-while-out-of-viewport *; fullscreen 'self'; geolocation 'self'; gyroscope 'self'; layout-animations 'self'; legacy-image-formats 'self'; magnetometer 'self'; microphone 'self'; midi 'self'; navigation-override 'self'; oversized-images *; payment 'self'; picture-in-picture *; publickey-credentials 'self'; sync-xhr *; unoptimized-images 'self'; unsized-media *; usb 'self'; wake-lock 'self'; xr-spatial-tracking 'self'"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"Vary","value":"Authorization"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"0677a3646300001a66ae2e6000000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report?s=dVzR7npbQZPjNnBrNUZrUJnLyutyUdkK7lJjhn%2BS4hvNvRTKgiRT%2FxlZ%2FBUyFOluPqiOKSj1fMYV3JeT5rz%2FfIprzCrx4hoHWnI6ma0WBckQ\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"5f393b4d6e0b1a66-SIN"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"source\": \"sale\",\n            \"id\": \"new\",\n            \"name\": \"Nieuw\",\n            \"text\": \"Nieuw\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"sent\",\n            \"name\": \"Verzonden\",\n            \"text\": \"Verzonden\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"cancelled\",\n            \"name\": \"Geannuleerd\",\n            \"text\": \"Geannuleerd\",\n            \"type\": \"cancelled\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"error\",\n            \"name\": \"Actie vereist\",\n            \"text\": \"Actie vereist\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"verification_pending\",\n            \"name\": \"Verificatie\",\n            \"text\": \"Verificatie\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"verification_expired\",\n            \"name\": \"Verificatie verlopen\",\n            \"text\": \"Verificatie verlopen\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"verified\",\n            \"name\": \"Geverifieerd\",\n            \"text\": \"Geverifieerd\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"offer_pending\",\n            \"name\": \"Openstaande offerte\",\n            \"text\": \"Openstaande offerte\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"offer_accepted\",\n            \"name\": \"Geaccepteerd\",\n            \"text\": \"Geaccepteerd\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"offer_rejected\",\n            \"name\": \"Afgewezen\",\n            \"text\": \"Afgewezen\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"offer_expired\",\n            \"name\": \"Verlopen\",\n            \"text\": \"Verlopen\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"offer_rejected_alternative\",\n            \"name\": \"Geweigerd alternatief\",\n            \"text\": \"Geweigerd alternatief\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"accepted_by_supplier\",\n            \"name\": \"Geaccepteerd door leverancier\",\n            \"text\": \"Geaccepteerd door leverancier\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"netto\",\n            \"name\": \"Netto\",\n            \"text\": \"Netto\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"resolved\",\n            \"name\": \"Opgelost\",\n            \"text\": \"Opgelost\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"reminder-1\",\n            \"name\": \"Herinnering 1\",\n            \"text\": \"Herinnering 1\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"reminder-2\",\n            \"name\": \"Herinnering 2\",\n            \"text\": \"Herinnering 2\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"reminder-3\",\n            \"name\": \"Herinnering 3\",\n            \"text\": \"Herinnering 3\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"invoiced\",\n            \"name\": \"Gefactureerd\",\n            \"text\": \"Gefactureerd\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"paid\",\n            \"name\": \"Betaald\",\n            \"text\": \"Betaald\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"contract_terminated\",\n            \"name\": \"Contract beëindigd\",\n            \"text\": \"Contract beëindigd\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"cancelled_within_happy_call\",\n            \"name\": \"Geannuleerd na Happy Call\",\n            \"text\": \"Geannuleerd na Happy Call\",\n            \"type\": \"cancelled\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"concept\",\n            \"name\": \"Concept\",\n            \"text\": \"Concept\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"open\",\n            \"name\": \"Openstaand\",\n            \"text\": \"Openstaand\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"default\",\n            \"name\": \"Default\",\n            \"text\": \"Default\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"closed\",\n            \"name\": \"Gesloten\",\n            \"text\": \"Gesloten\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"open_cancellation_proposal\",\n            \"name\": \"Open annuleringsverzoeken\",\n            \"text\": \"Open annuleringsverzoeken\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"synced_cancellation_request\",\n            \"name\": \"Gesynchroniseerde annuleringsverzoeken\",\n            \"text\": \"Gesynchroniseerde annuleringsverzoeken\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"completed\",\n            \"name\": \"Voltooid\",\n            \"text\": \"Voltooid\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"saved\",\n            \"name\": \"Opgeslagen\",\n            \"text\": \"Opgeslagen\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"waiting_for_client\",\n            \"name\": \"Wachten op klant\",\n            \"text\": \"Wachten op klant\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"fnalized\",\n            \"name\": \"Finalized\",\n            \"text\": \"Finalized\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"unfinalized\",\n            \"name\": \"Unfinalized\",\n            \"text\": \"Unfinalized\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"abid-status\",\n            \"name\": \"Abid Status\",\n            \"text\": \"Abid Status\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"geaccepteerd-1\",\n            \"name\": \"Geaccepteerd\",\n            \"text\": \"Geaccepteerd\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"geaccepteerd\",\n            \"name\": \"Geaccepteerd\",\n            \"text\": \"Geaccepteerd\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"cancel-sale\",\n            \"name\": \"Cancel sale\",\n            \"text\": \"Cancel sale\",\n            \"type\": \"cancelled\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"test-offer-status\",\n            \"name\": \"Test offer status\",\n            \"text\": \"Test offer status\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"is-al-verwerkt-in-product-selector\",\n            \"name\": \"Is al verwerkt in product selector\",\n            \"text\": \"Is al verwerkt in product selector\",\n            \"type\": \"cancelled\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"test-ar\",\n            \"name\": \"Test AR\",\n            \"text\": \"Test AR\",\n            \"type\": \"action_required\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"aanbieding-bekeken\",\n            \"name\": \"Aanbieding bekeken\",\n            \"text\": \"Aanbieding bekeken\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"test-delta\",\n            \"name\": \"Test Delta\",\n            \"text\": \"Test Delta\",\n            \"type\": \"cancelled\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"netto-test\",\n            \"name\": \"Netto test\",\n            \"text\": \"Netto test\",\n            \"type\": \"netto\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"testnetto\",\n            \"name\": \"Testnetto\",\n            \"text\": \"Testnetto\",\n            \"type\": \"netto\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"test-sale-status\",\n            \"name\": \"Test sale status\",\n            \"text\": \"Test sale status\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"testorganisatie\",\n            \"name\": \"Testorganisatie\",\n            \"text\": \"Testorganisatie\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"sale\",\n            \"id\": \"test\",\n            \"name\": \"test\",\n            \"text\": \"test\",\n            \"type\": \"closed\",\n            \"source_data\": null\n        }\n    ],\n    \"message\": \"Statuses retrieved successfully\"\n}"}],"_postman_id":"70d955bb-ef63-4b76-ad8d-1b8639501a33"},{"name":"Update sale status","id":"71659bea-d0bc-4e9d-874f-35a9bcae39f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/sales/updatestatus/{{sale_id}}?status={{status_identifier}}&remark={{status_remarks}}&mark_processed=0","description":"<p>The update sale status endpoint can be used to update the status of a sale.</p>\n<p>The parameters that are needed for this are:</p>\n<p>{{sale_id}} - The id of the sale</p>\n<p>{{status_identifier}} - The identifier of the status to which the sale needs to be changed to</p>\n<p>{{status_remarks}} - Remarks if any while changing the status (optional)</p>\n<p>The sale can also be mark as processed, if mark_processed=1, is sent in the request. Mark as processed will only work if the sale is in a status that can be processed.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","sales","updatestatus","{{sale_id}}"],"host":["{{url}}"],"query":[{"description":{"content":"<p>The identifier of the status</p>\n","type":"text/plain"},"key":"status","value":"{{status_identifier}}"},{"description":{"content":"<p>Remarks to add if any</p>\n","type":"text/plain"},"key":"remark","value":"{{status_remarks}}"},{"description":{"content":"<p>1=Sale is mark as processed, 0 or empty means sale is not mark as processed. Mark as processed will only work for certain sale statuses</p>\n","type":"text/plain"},"key":"mark_processed","value":"0"}],"variable":[]}},"response":[{"id":"4ef67b22-854d-4bff-b553-18278f890590","name":"Update sale status","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/sales/updatestatus/{{sale_id}}status={{status_identifier}}&remark={{status_remarks}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 17 Nov 2020 11:42:26 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"200"},{"key":"X-RateLimit-Remaining","value":"197"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' https://bam.eu01.nr-data.net https://www.google-analytics.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self'; object-src 'self'"},{"key":"Feature-Policy","value":"accelerometer 'self'; ambient-light-sensor 'self'; autoplay 'self'; battery 'self'; camera 'self'; display-capture 'self'; document-domain *; encrypted-media 'self'; execution-while-not-rendered *; execution-while-out-of-viewport *; fullscreen 'self'; geolocation 'self'; gyroscope 'self'; layout-animations 'self'; legacy-image-formats 'self'; magnetometer 'self'; microphone 'self'; midi 'self'; navigation-override 'self'; oversized-images *; payment 'self'; picture-in-picture *; publickey-credentials 'self'; sync-xhr *; unoptimized-images 'self'; unsized-media *; usb 'self'; wake-lock 'self'; xr-spatial-tracking 'self'"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"Vary","value":"Authorization"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"06779c72350000cc24b3a77000000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report?s=8BkDk0d1xndPpfvXOj4FzL41L9IiiDHeDZ8pYCj4ydh97wwNuFOrC4d1uOKdp%2Bf6fqaWlQK6R6bbIhCVuC%2F11sRXg6X6Gx9On2ri4PnLjTUv\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"5f3930305ac6cc24-SIN"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [],\n    \"message\": \"Sale updated successfully\"\n}"}],"_postman_id":"71659bea-d0bc-4e9d-874f-35a9bcae39f3"},{"name":"Update sale status by incoming id","id":"c2a311ec-b4a2-4daf-b437-c174c9095b75","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/sales/updatestatus/incoming/{{incoming_id}}?status={{status_identifier}}&remark={{status_remarks}}&mark_processed=0","description":"<p>The update sale status endpoint can be used to update the status of a sale.</p>\n<p>The parameters that are needed for this are:</p>\n<p>{{incoming_id}} - The incoming id of the sale</p>\n<p>{{status_identifier}} - The identifier of the status to which the sale needs to be changed to</p>\n<p>{{status_remarks}} - Remarks if any while changing the status (optional)</p>\n<p>The sale can also be mark as processed, if mark_processed=1, is sent in the request. Mark as processed will only work if the sale is in a status that can be processed.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","sales","updatestatus","incoming","{{incoming_id}}"],"host":["{{url}}"],"query":[{"description":{"content":"<p>The identifier of the status</p>\n","type":"text/plain"},"key":"status","value":"{{status_identifier}}"},{"description":{"content":"<p>Remarks to add if any</p>\n","type":"text/plain"},"key":"remark","value":"{{status_remarks}}"},{"description":{"content":"<p>1=Sale is mark as processed, 0 or empty means sale is not mark as processed. Mark as processed will only work for certain sale statuses</p>\n","type":"text/plain"},"key":"mark_processed","value":"0"}],"variable":[]}},"response":[{"id":"944cadc2-ea4e-4bb7-82bb-1f9acf332cc5","name":"Update sale status","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/sales/updatestatus/{{sale_id}}status={{status_identifier}}&remark={{status_remarks}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 17 Nov 2020 11:42:26 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"200"},{"key":"X-RateLimit-Remaining","value":"197"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' https://bam.eu01.nr-data.net https://www.google-analytics.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self'; object-src 'self'"},{"key":"Feature-Policy","value":"accelerometer 'self'; ambient-light-sensor 'self'; autoplay 'self'; battery 'self'; camera 'self'; display-capture 'self'; document-domain *; encrypted-media 'self'; execution-while-not-rendered *; execution-while-out-of-viewport *; fullscreen 'self'; geolocation 'self'; gyroscope 'self'; layout-animations 'self'; legacy-image-formats 'self'; magnetometer 'self'; microphone 'self'; midi 'self'; navigation-override 'self'; oversized-images *; payment 'self'; picture-in-picture *; publickey-credentials 'self'; sync-xhr *; unoptimized-images 'self'; unsized-media *; usb 'self'; wake-lock 'self'; xr-spatial-tracking 'self'"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"Vary","value":"Authorization"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"06779c72350000cc24b3a77000000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report?s=8BkDk0d1xndPpfvXOj4FzL41L9IiiDHeDZ8pYCj4ydh97wwNuFOrC4d1uOKdp%2Bf6fqaWlQK6R6bbIhCVuC%2F11sRXg6X6Gx9On2ri4PnLjTUv\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"5f3930305ac6cc24-SIN"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [],\n    \"message\": \"Sale updated successfully\"\n}"}],"_postman_id":"c2a311ec-b4a2-4daf-b437-c174c9095b75"},{"name":"Update sale extra field values","id":"0675dc24-fedd-48cd-814d-205184bee944","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"sjv_e_single\": \"123\",\n    \"sjv_e_high\": \"111\",\n    \"sjv_e_low\": \"111\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/account/sales/updatefields/{{sale_id}}","description":"<p>This endpoint can be used by admin users to update the values of the sale extra fields.</p>\n<p>Within the request body, send a json array with the extra field identifier as key and the value.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","sales","updatefields","{{sale_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"a4bd777b-e84e-4d95-aa54-f314dd4b4ac4","name":"Update sale extra field values","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"sjv_e_single\": \"200\",\n    \"sjv_e_high\": \"300\",\n    \"sjv_e_low\": \"100\",\n    \"sjv_e_return\": \"100\",\n    \"sjv_e_return_high\": \"150\",\n    \"sjv_e_return_low\": \"50\",\n    \"sjv_g\": \"500\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/account/sales/updatefields/{{sale_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 29 Apr 2021 14:21:10 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' https://bam.eu01.nr-data.net https://www.google-analytics.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"09bf9a5536000001e34e215000000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"max_age\":604800,\"group\":\"cf-nel\",\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report?s=gvrzxQ7lZeKCqRjwJAC6QRTqYJiozew0S%2BcMGoe%2BEbpoqXGy6FGqc2eEdmKdqIsEnroV57NZCR%2BawaOkcDEEb3hY1IWLBiQi0wQhOvJDWGfY\"}]}"},{"key":"NEL","value":"{\"max_age\":604800,\"report_to\":\"cf-nel\"}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"64792cceba4d01e3-ZRH"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [],\n    \"message\": \"Sale velden succesvol geupdatet.\"\n}"}],"_postman_id":"0675dc24-fedd-48cd-814d-205184bee944"},{"name":"Update sale extra field values by incoming id","id":"edf490fc-e0e7-469f-bd1f-b40fa2963da0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"sjv_e_single\": \"123\",\n    \"sjv_e_high\": \"111\",\n    \"sjv_e_low\": \"111\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/account/sales/updatefields/incoming/{{incoming_id}}","description":"<p>This endpoint can be used by admin users to update the values of the sale extra fields.</p>\n<p>Within the request body, send a json array with the extra field identifier as key and the value.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","sales","updatefields","incoming","{{incoming_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0ec1a32a-6920-4af1-8a4b-cafb2c3418f6","name":"Update sale extra field values","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"sjv_e_single\": \"200\",\n    \"sjv_e_high\": \"300\",\n    \"sjv_e_low\": \"100\",\n    \"sjv_e_return\": \"100\",\n    \"sjv_e_return_high\": \"150\",\n    \"sjv_e_return_low\": \"50\",\n    \"sjv_g\": \"500\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/account/sales/updatefields/{{sale_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 29 Apr 2021 14:21:10 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' https://bam.eu01.nr-data.net https://www.google-analytics.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"09bf9a5536000001e34e215000000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"max_age\":604800,\"group\":\"cf-nel\",\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report?s=gvrzxQ7lZeKCqRjwJAC6QRTqYJiozew0S%2BcMGoe%2BEbpoqXGy6FGqc2eEdmKdqIsEnroV57NZCR%2BawaOkcDEEb3hY1IWLBiQi0wQhOvJDWGfY\"}]}"},{"key":"NEL","value":"{\"max_age\":604800,\"report_to\":\"cf-nel\"}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"64792cceba4d01e3-ZRH"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [],\n    \"message\": \"Sale velden succesvol geupdatet.\"\n}"}],"_postman_id":"edf490fc-e0e7-469f-bd1f-b40fa2963da0"},{"name":"Cancel sale","id":"da4e5d4d-58c5-41e7-b0d0-f0923168e2d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/user/sales/cancel/{{sale_id}}?status={{status_identifier}}&remark={{status_remarks}}","description":"<p>The cancel sale status endpoint can be used to cancel a sale.</p>\n<p>The parameters that are needed for this are:</p>\n<p>{{sale_id}} - The id of the sale</p>\n<p>{{status_identifier}} - The identifier of the cancelled status to which the sale needs to be changed to</p>\n<p>{{status_remarks}} - Remarks if any while changing the status (optional)</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","user","sales","cancel","{{sale_id}}"],"host":["{{url}}"],"query":[{"description":{"content":"<p>The identifier of the status of type cancelled</p>\n","type":"text/plain"},"key":"status","value":"{{status_identifier}}"},{"description":{"content":"<p>Remarks to add if any</p>\n","type":"text/plain"},"key":"remark","value":"{{status_remarks}}"}],"variable":[]}},"response":[{"id":"3dc494d7-84ef-4eb6-95ab-20fc655af183","name":"Cancel sale","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/user/sales/cancel/{{sale_id}}status={{status_identifier}}&remark={{status_remarks}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 17 Nov 2020 11:42:26 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"200"},{"key":"X-RateLimit-Remaining","value":"197"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' https://bam.eu01.nr-data.net https://www.google-analytics.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self'; object-src 'self'"},{"key":"Feature-Policy","value":"accelerometer 'self'; ambient-light-sensor 'self'; autoplay 'self'; battery 'self'; camera 'self'; display-capture 'self'; document-domain *; encrypted-media 'self'; execution-while-not-rendered *; execution-while-out-of-viewport *; fullscreen 'self'; geolocation 'self'; gyroscope 'self'; layout-animations 'self'; legacy-image-formats 'self'; magnetometer 'self'; microphone 'self'; midi 'self'; navigation-override 'self'; oversized-images *; payment 'self'; picture-in-picture *; publickey-credentials 'self'; sync-xhr *; unoptimized-images 'self'; unsized-media *; usb 'self'; wake-lock 'self'; xr-spatial-tracking 'self'"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"Vary","value":"Authorization"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"06779c72350000cc24b3a77000000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report?s=8BkDk0d1xndPpfvXOj4FzL41L9IiiDHeDZ8pYCj4ydh97wwNuFOrC4d1uOKdp%2Bf6fqaWlQK6R6bbIhCVuC%2F11sRXg6X6Gx9On2ri4PnLjTUv\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"5f3930305ac6cc24-SIN"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [],\n    \"message\": \"Sale updated successfully\"\n}"}],"_postman_id":"da4e5d4d-58c5-41e7-b0d0-f0923168e2d1"},{"name":"Get sale of lead","id":"076e20fa-455f-4ae4-87ff-25dbe18e15d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/leads/{{lead_id}}/sale","description":"<p>This endpoint can be used by users to fetch the details of the sale that is associated with a lead.</p>\n<p>If there is no sale for the lead, it will return an empty response.</p>\n<p>Replace {{lead_id}} in the request URL with the id of the lead for whose sale the details need to be retrieved.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","leads","{{lead_id}}","sale"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0706437a-4cb5-45c1-b75e-0df1e01368fc","name":"Get sale of lead for admin user","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://localhost.salesdock.app/api/testomgeving/{{version}}/account/leads/{{lead_id}}/sale"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 24 Apr 2021 07:29:26 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' https://bam.eu01.nr-data.net https://www.google-analytics.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"09a4619c010000406c45b14000000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report?s=N%2BcWI%2F6Pv5pGqHmE665nwoA4Q1xrwnadY5rg6RNHx8hPMWxInhwEQUYMZGLtoSszNurkVN802am%2F8Pnw6MX2xtiv32hdSIlxrmnVDRzMv0Hp\"}],\"max_age\":604800,\"group\":\"cf-nel\"}"},{"key":"NEL","value":"{\"max_age\":604800,\"report_to\":\"cf-nel\"}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"644d9ed999e2406c-LHR"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"id\": 12,\n        \"user_id\": 2,\n        \"gender\": \"female\",\n        \"firstname\": \"Jane\",\n        \"lastname\": \"Doe\",\n        \"email\": \"test@salesdock.nl\",\n        \"birthdate\": \"01-01-1990\",\n        \"phone\": \"+316XXXXXXXX\",\n        \"postcode\": \"7511PG\",\n        \"housenumber\": \"9\",\n        \"suffix\": null,\n        \"streetname\": \"Willem Wilminkplein\",\n        \"city\": \"Enschede\",\n        \"business\": \"1\",\n        \"company_name\": \"Test Co.\",\n        \"contact_person\": \"John Doe\",\n        \"coc\": \"01234567\",\n        \"vat\": \"NL123456789B01\",\n        \"remarks\": null,\n        \"type\": \"offer\",\n        \"status\": \"new\",\n        \"status_remark\": null,\n        \"verification\": \"signature\",\n        \"verified\": null,\n        \"flow_id\": 4,\n        \"incoming_id\": null,\n        \"offer\": \"1\",\n        \"offer_accepted\": null,\n        \"offer_reject_message\": null,\n        \"cancelled_remark\": \"\",\n        \"created_at\": \"2021-04-24 09:25:41\",\n        \"finalized_at\": null,\n        \"updated_at\": \"2021-04-24 09:25:45\",\n        \"outgoing_at\": null,\n        \"offer_answered_at\": null,\n        \"verified_at\": null,\n        \"cancelled_at\": null,\n        \"product_name\": \"Budget Energie MKB 1 jaar vast\",\n        \"supplier_name\": \"BudgetEnergie\",\n        \"user_firstname\": \"Jane\",\n        \"user_lastname\": \"Doe\",\n        \"user_email\": \"test@salesdock.nl\",\n        \"organisation_name\": \"Default\",\n        \"source\": null,\n        \"source_id\": null,\n        \"lead_id\": 1\n    },\n    \"message\": \"Sale for lead retrieved successfully\"\n}"},{"id":"c4c1b838-6daf-4d41-8644-20972b802237","name":"Get sale of lead for reseller user","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/user/leads/{{lead_id}}/sale"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 14 May 2021 10:42:08 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' https://bam.eu01.nr-data.net https://www.google-analytics.com https://widget.freshworks.com https://salesdock.freshdesk.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"0a0c1139b4000053ece12bc000000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report?s=ro0B7YuECbA66wDr4mY98JDTAhfdwonsVo3SNK%2Fk8sWlUocbKZP9993VQrkXy5SNQQdsXw8pbLrENSfzbN4orSR4Oissk38%2FyyoF7ZtjoDFw\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"64f384a2bfac53ec-LHR"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"firstname\": \"Jane\",\n        \"lastname\": \"Doe\",\n        \"company_name\": \"Test Co.\",\n        \"postcode\": \"7511PG\",\n        \"housenumber\": \"9\",\n        \"suffix\": null,\n        \"streetname\": \"Willem Wilminkplein\",\n        \"city\": \"Enschede\",\n        \"status\": \"offer_expired\",\n        \"offer_accepted\": \"2\",\n        \"created_at\": \"2021-04-24 09:25:41\"\n    },\n    \"message\": \"Sale for lead retrieved successfully\"\n}"}],"_postman_id":"076e20fa-455f-4ae4-87ff-25dbe18e15d1"},{"name":"Get sale products","id":"fba14d09-1ab6-4f52-839b-b3b09b6bea88","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/sales/{{sale_id}}/products","description":"<p>This endpoint can be used to fetch all products information related to a sale.</p>\n<p>Replace {{sale_id}} with the id of the sale in the URL.</p>\n<p>The response contains mainly two objects:</p>\n<ol>\n<li>products - This contains the different products sold in the sale. There are additional information like the type of product, quantity sold etc also available. For each product, there is also a price_data object. This contains all the pricing information of the product.</li>\n<li>additional_costs - Any additional costs that are entered in the sale are shown in this object. An additional_cost can be of type 'monthly' or 'onetime'. If an additional_cost is monthly, then 'number_months' parameter specifies the number of months the price is applicable for.</li>\n<li>discounts - Discounts that are applied during the sale.</li>\n<li>totals - This will show the total amounts of the sale.</li>\n</ol>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","sales","{{sale_id}}","products"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f0f3bd19-eea3-451c-9e50-d515bf288f40","name":"Get sale products","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/sales/3460070/products"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 24 Apr 2023 05:44:02 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=qVc%2BrsaojvPpyhk1aovwK%2Bz2s2bUinfdsQ8F0ul64iCsXCTVxfBL1dc%2FMpTsKDVi0wUWpF53iaIsNeaUKsT4d9ZzWDR5h9M5dJyEw87OT6jh8UFrrrIYUAO1ksUh0QE7Qo4%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7bcc08339b4a4c95-SIN"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"sale_id\": 3460070,\n        \"products\": [\n            {\n                \"id\": null,\n                \"name\": \"Zonnesysteem\",\n                \"type\": \"pv_dynamic_package\",\n                \"quantity\": 1,\n                \"vat_type\": \"exclusive\",\n                \"vat_percentage\": 0,\n                \"price_data\": {\n                    \"onetime\": {\n                        \"price\": 235.53,\n                        \"promotion_price\": null,\n                        \"subtotal_exclusive_vat\": 235.53,\n                        \"subtotal_inclusive_vat\": 235.53,\n                        \"subtotal_promotion_exclusive_vat\": 0,\n                        \"subtotal_promotion_inclusive_vat\": 0\n                    },\n                    \"monthly\": {\n                        \"price\": null,\n                        \"promotion_price\": null,\n                        \"promotion_months\": null,\n                        \"subtotal_exclusive_vat\": 0,\n                        \"subtotal_inclusive_vat\": 0,\n                        \"subtotal_promotion_exclusive_vat\": 0,\n                        \"subtotal_promotion_inclusive_vat\": 0\n                    }\n                },\n                \"package_data\": [\n                    {\n                        \"id\": 22266,\n                        \"name\": \"Trina Solar 320 Wp\",\n                        \"quantity\": 3\n                    },\n                    {\n                        \"id\": 22267,\n                        \"name\": \"Growatt 3600 MTL-S\",\n                        \"quantity\": 2\n                    },\n                    {\n                        \"id\": 22268,\n                        \"name\": \"ClickFit Evo - Schuin dak\",\n                        \"quantity\": 1\n                    }\n                ]\n            },\n            {\n                \"id\": 43152,\n                \"name\": \"Home battery 2\",\n                \"type\": \"pv_battery\",\n                \"quantity\": 1,\n                \"vat_type\": \"inclusive\",\n                \"vat_percentage\": 21,\n                \"price_data\": {\n                    \"onetime\": {\n                        \"price\": 5000,\n                        \"promotion_price\": null,\n                        \"subtotal_exclusive_vat\": 4132.23,\n                        \"subtotal_inclusive_vat\": 5000,\n                        \"subtotal_promotion_exclusive_vat\": 0,\n                        \"subtotal_promotion_inclusive_vat\": 0\n                    },\n                    \"monthly\": {\n                        \"price\": null,\n                        \"promotion_price\": null,\n                        \"promotion_months\": null,\n                        \"subtotal_exclusive_vat\": 0,\n                        \"subtotal_inclusive_vat\": 0,\n                        \"subtotal_promotion_exclusive_vat\": 0,\n                        \"subtotal_promotion_inclusive_vat\": 0\n                    }\n                }\n            }\n        ],\n        \"additional_costs\": [\n            {\n                \"description\": \"One time installation charge\",\n                \"type\": \"onetime\",\n                \"number_months\": null,\n                \"price\": 100,\n                \"vat_type\": \"inclusive\",\n                \"vat_percentage\": 0\n            }\n        ],\n        \"discounts\": [{\n\t\t\t\"description\": \"Fixed monthly\",\n\t\t\t\"type\": \"monthly\",\n\t\t\t\"type_of_discount\": \"percentage\",\n\t\t\t\"number_months\": null,\n\t\t\t\"value\": 1.00\n\t\t}, {\n\t\t\t\"description\": \"New discount\",\n\t\t\t\"type\": \"onetime\",\n\t\t\t\"type_of_discount\": \"percentage\",\n\t\t\t\"number_months\": null,\n\t\t\t\"value\": 11.10\n\t\t}, {\n\t\t\t\"description\": \"fixed\",\n\t\t\t\"type\": \"onetime\",\n\t\t\t\"type_of_discount\": \"fixed\",\n\t\t\t\"number_months\": null,\n\t\t\t\"value\": 223.10\n\t\t}],\n        \"totals\": {\n            \"monthly_excluding_vat\": 0,\n            \"monthly_including_vat\": 52.07,\n            \"onetime_excluding_vat\": 4467.76,\n            \"onetime_including_vat\": 5335.53,\n            \"vat_lump_sum\": 20,\n            \"net_investment\": 4487.76\n        }\n    },\n    \"message\": \"Producten van de sale succesvol opgehaald\"\n}"}],"_postman_id":"fba14d09-1ab6-4f52-839b-b3b09b6bea88"},{"name":"Get sales of form instance","id":"818b06f7-3eae-4d10-8079-8a5cf8f05eed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{url}}/api/{{domain}}/v1/{{scope}}/sales/form_instance/{{form_instance_id}}","description":"<p>This endpoint helps in retrieving all the sales that are connected to a form instance. In the request URL, replace {{form_instance_id}} with the ID of the form instance whose sales need to be retrieved.</p>\n<p>The response will fetch back all the sale IDs that are connected to the form as an array.</p>\n<p>The endpoint is available for both account and user scope</p>\n","urlObject":{"path":["api","{{domain}}","v1","{{scope}}","sales","form_instance","{{form_instance_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"7649c112-12c6-438a-bcdf-c2bd48741f73","name":"Get sales of form instance","originalRequest":{"method":"GET","header":[],"url":"https://app.salesdock.nl/api/{{domain}}/v1/account/sales/form_instance/51009"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 13 Jan 2023 06:36:52 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=7BraVen%2Fvw7PsS84ITIpiSh2U1if2nRHsCNI8zy2FlaBRJSXgpXS%2FozTGXLoPpglpN69jmHJL8lyp2ctdumKk8ko%2BtqB4QOQb2uIAIBNA1y06vl8c8fx0D2Zk5r7vryfu%2Fk%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"788c1ebc4e750e5c-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        2939367\n    ],\n    \"message\": \"Sale succesvol opgehaald\"\n}"}],"_postman_id":"818b06f7-3eae-4d10-8079-8a5cf8f05eed"},{"name":"Get sale documents","id":"e6b94361-ce42-488a-b247-eb88c3d1e894","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/sales/{{sale_id}}/documents","description":"<p>This endpoint, available for only admin users, retrieves the documents that are associated with a sale. Replace {{sale_id}} in the URL with the ID of the sale.</p>\n<p>The response structure contains, multiple arrays with the following parameters. Each array specifies one document.</p>\n<ul>\n<li>name - Name of the document with extension</li>\n<li>location - API URL to download the document</li>\n</ul>\n<p>The following documents related to the sale are returned:</p>\n<ol>\n<li>Sale contract PDFs</li>\n<li>PDF attachments uploaded in the checkout page</li>\n<li>Proxy forms linked to the sale.</li>\n</ol>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","sales","{{sale_id}}","documents"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"29761be5-fe6a-433f-a7cf-409651c79c6d","name":"Get sale documents","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/sales/{{sale_id}}/documents"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 21 Apr 2023 08:43:15 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"57"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=PewAXL3fYyF62frUSAk6%2FOStZXXeu3e5QJJ08SM8SL3eQ76vsLDbt2vLM3HOM%2Bez3Z3vzUy87VRY2kxvgg8aISKOcQq9SEOp%2FPSw1CZCHMh0m3WPIwXJ9IaaVQqx3OBI7h0%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7bb4569abfe00baa-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"name\": \"Offerte 1562580.pdf\",\n            \"location\": \"https://app.salesdock.nl/api/testomgeving/v1/account/sales/1562580/documents/eyJpdiI6IkhWRyt6VUErSHhENEtsYWpMWmMvckE9PSIsInZhbHVlIjoiZURNZXJGKytCWHQyVzhvWi9PTjB1dz09IiwibWFjIjoiMTNiYjVkODMyNzcxZTQ1YzhiOTBkYzM0YjMyZDAzMmQyYjQ3MjhkNWQ3OWExYWFkYzc2ODQ0MGE3NjBkZTUxZSIsInRhZ\"\n        }\n    ],\n    \"message\": \"Sale documents retrieved successfully\"\n}"}],"_postman_id":"e6b94361-ce42-488a-b247-eb88c3d1e894"},{"name":"Get sale history","id":"d1c5a07e-155f-4769-b7e5-15e8a104887e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/sales/{{sale_id}}/history","description":"<p>This API endpoint fetches all the historical changes done to a sale. This endpoint is only available for admin users using account scope.</p>\n<p>In the request URL, replace {{sale_id}} with the id of the sale.</p>\n<p>The response body can contain the following parameters:</p>\n<ul>\n<li>type (string) - The type of activity done on the sale. Some examples are - created, updated, changeddata, assigned, resolved, cancelled etc.</li>\n<li>modified_at (date time in the format yyyy-mm-dd hh:mm:ss) - The time at which the history record was updated</li>\n<li>previous_status (string) - The status identifier of the sale at the time of the history update</li>\n<li>new_status (string) - The status identifier of the sale after the history update</li>\n<li>user (array) - User object with user id and name of the user who modified the sale</li>\n<li>type_data (array) - Miscellaneous information concerning the type of sale update</li>\n</ul>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","sales","{{sale_id}}","history"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"7be4b90b-eef8-425e-821c-b257629796fa","name":"Get sale history","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/sales/{{sale_id}}/history"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 May 2023 10:41:40 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=pOD2FUnpEEdiQ9%2BS%2FHgfimVhcG1dS0BCYUJnhDg29Q%2B1Xfb5Dv11hH0Wyp99GIfV8qjWrFK0FKB8G%2FEKpHONRP%2Fqozl3gk7tYwnr40BfiaUK7diRRG5uoDnmspkv2W0Ve88%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7c4954d35a780bc2-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"type\": \"created\",\n            \"modified_at\": \"2021-04-28 06:35:50\",\n            \"previous_status\": null,\n            \"new_status\": \"new\",\n            \"remark\": null,\n            \"user\": null,\n            \"type_data\": null\n        },\n        {\n            \"type\": \"sent\",\n            \"modified_at\": \"2021-04-28 06:37:55\",\n            \"previous_status\": \"new\",\n            \"new_status\": \"sent\",\n            \"remark\": \"ContractID: 23654\",\n            \"user\": {\n                \"id\": 2916,\n                \"name\": \"John Doe\"\n            },\n            \"type_data\": {\n                \"updated_ip\": \"185.10.50.106\",\n                \"activities\": [\n                    \"Added value 'ContractID: 1562581' to field 'status_remark'\"\n                ]\n            }\n        },\n        {\n            \"type\": \"updated\",\n            \"modified_at\": \"2021-04-28 06:54:14\",\n            \"previous_status\": \"sent\",\n            \"new_status\": \"test-sale-status\",\n            \"remark\": null,\n            \"user\": {\n                \"id\": 23914,\n                \"name\": \"Jane Doe\"\n            },\n            \"type_data\": {\n                \"updated_ip\": \"103.94.139.26\",\n                \"activities\": [\n                    \"Removed value 'ContractID: 1562581' from field 'status_remark'\"\n                ]\n            }\n        },\n        {\n            \"type\": \"sync.updated\",\n            \"modified_at\": \"2021-04-29 00:30:28\",\n            \"previous_status\": \"test-sale-status\",\n            \"new_status\": \"offer_accepted\",\n            \"remark\": null,\n            \"user\": null,\n            \"type_data\": {\n                \"updated_ip\": \"127.0.0.1\"\n            }\n        }\n    ],\n    \"message\": \"Sale history retrieved successfully\"\n}"}],"_postman_id":"d1c5a07e-155f-4769-b7e5-15e8a104887e"},{"name":"Create opt-in for sale","id":"92776563-f55a-4fc9-a47a-577ffb930acc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"source","value":"","description":"<p>Free text regarding the source of the opt-in.</p>\n","type":"text"},{"key":"obtained_at","value":"","description":"<p>Date time in which opt-in was obtains. Format - yyyy-mm-dd HH:mm:ss</p>\n","type":"text"},{"key":"obtained_by","value":"","description":"<p>The person or organisation that obtained the optin.</p>\n","type":"text"},{"key":"obtained_system","value":"SalesEngine Platform","description":"<p>Free text with information on the name of the system use to to obtain opt-in</p>\n","type":"text"},{"key":"obtained_via_url","value":"http://example.com","description":"<p>Valid URL used to obtain the Opt-in</p>\n","type":"text"},{"key":"client_ip","value":"127.0.0.1","description":"<p>Valid IP address used to obtain the Opt-in</p>\n","type":"text"},{"key":"valid_till","value":"2022-01-01 01:01:01","description":"<p>The validtilty of the Opt-in. Format - yyyy-mm-dd HH:mm:ss</p>\n","type":"text"},{"key":"withdrawn_at","value":"2021-12-24 12:01:01","description":"<p>The date time when Opt-in was withdrawn. Format - yyyy-mm-dd HH:mm:ss</p>\n","type":"text"},{"key":"proof[content]","value":"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mP8z/C/HgAGgwJ/lK3Q6wAAAABJRU5ErkJggg==","description":"<p>Proof of optin as an base64 file. </p>\n","type":"text"},{"key":"proof[extension]","value":"png","description":"<p>The extension of the file for the Opt-in proof. Can be png,jpg,pdf,jpeg</p>\n","type":"text"},{"key":"channels[0][type]","value":"email","description":"<p>What the user has opted in for. Possible values - 'email' or 'phone'.</p>\n","type":"text"},{"key":"channels[0][value]","value":"test@salesdock.nl","description":"<p>Valid email or phone number based on Opt-in type.</p>\n","type":"text"},{"key":"channels[0][topic]","value":"Solar panels, Aircon","description":"<p>The topics that the user has opted in for.</p>\n","type":"text"},{"key":"channels[1][type]","value":"phone","description":"<p>What the user has opted in for. Possible values - 'email' or 'phone'.</p>\n","type":"text"},{"key":"channels[1][value]","value":"0611XXXXXX","description":"<p>Valid email or phone number based on Opt-in type.</p>\n","type":"text"},{"key":"remarks","value":"","description":"<p>Remarks about the opt-in if any</p>\n","type":"text"},{"key":"campaign_code","value":"","description":"<p>The code of the campign to which the opt-in belongs to</p>\n","type":"text"},{"key":"channels[1][verified_at]","value":"2024-12-24 12:01:01","description":"<p>The verified time in yyyy-mm-dd hh:mm:ss format. This is only applicable if the chanel type is phone</p>\n","type":"text"},{"key":"channels[1][verified_ip]","value":"127.0.0.1","description":"<p>The ip address using which the opt-in was verified. This is only appplicable when opt-in type is phone</p>\n","type":"text"},{"key":"optin_channels[1][verified_method]","value":"sms","type":"text","uuid":"afbb9ff5-87d9-4936-be14-2b58a3c24545"}]},"url":"{{url}}/api/{{domain}}/{{version}}/account/sales/{{sale_id}}/optin","description":"<p>This endpoint can be used to create an optin and attach it with the sale.</p>\n<p>In the URL, pass the sale_id, to connect the newly created optin with. If the sale already has an optin, then the optin will not be created.</p>\n<p>This endpoint is only available for admin users.</p>\n<p>Atleast one opt-in channel needs to be sent for an opt-in to be created</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","sales","{{sale_id}}","optin"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"622c2f1a-f163-4852-ac80-9b69c2d0999d","name":"Create optin for sale","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"source","value":"","description":"Free text regarding the source of the opt-in.","type":"text"},{"key":"obtained_at","value":"","description":"Date time in which opt-in was obtains. Format - yyyy-mm-dd HH:mm:ss","type":"text"},{"key":"obtained_by","value":"","description":"The person or organisation that obtained the optin.","type":"text"},{"key":"obtained_system","value":"SalesEngine Platform","description":"Free text with information on the name of the system use to to obtain opt-in","type":"text"},{"key":"obtained_via_url","value":"http://example.com","description":"Valid URL used to obtain the Opt-in","type":"text"},{"key":"client_ip","value":"127.0.0.1","description":"Valid IP address used to obtain the Opt-in","type":"text"},{"key":"valid_till","value":"2022-01-01 01:01:01","description":"The validtilty of the Opt-in. Format - yyyy-mm-dd HH:mm:ss","type":"text"},{"key":"withdrawn_at","value":"2021-12-24 12:01:01","description":"The date time when Opt-in was withdrawn. Format - yyyy-mm-dd HH:mm:ss","type":"text"},{"key":"proof[content]","value":"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mP8z/C/HgAGgwJ/lK3Q6wAAAABJRU5ErkJggg==","description":"Proof of optin as an base64 file. ","type":"text"},{"key":"proof[extension]","value":"png","description":"The extension of the file for the Opt-in proof. Can be png,jpg,pdf,jpeg","type":"text"},{"key":"channels[0][type]","value":"email","description":"What the user has opted in for. Possible values - 'email' or 'phone'.","type":"text"},{"key":"channels[0][value]","value":"test@salesdock.nl","description":"Valid email or phone number based on Opt-in type.","type":"text"},{"key":"channels[0][topic]","value":"Solar panels, Aircon","description":"The topics that the user has opted in for.","type":"text"},{"key":"channels[1][type]","value":"phone","description":"What the user has opted in for. Possible values - 'email' or 'phone'.","type":"text"},{"key":"channels[1][value]","value":"0611XXXXXX","description":"Valid email or phone number based on Opt-in type.","type":"text"},{"key":"remarks","value":"","description":"Remarks about the opt-in if any","type":"text"},{"key":"campaign_code","value":"","description":"The code of the campign to which the opt-in belongs to","type":"text"},{"key":"channels[1][verified_at]","value":"","description":"The verified time in dd-mm-yyyy hh:mm:ss format. This is only applicable if the chanel type is phone","type":"text"},{"key":"channels[1][verified_ip]","value":"","description":"The ip address using which the opt-in was verified. This is only appplicable when opt-in type is phone","type":"text"}]},"url":"{{url}}/api/{{domain}}/{{version}}/account/sales/{saleId}/optin"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 02 Apr 2024 09:20:39 GMT"},{"key":"Server","value":"Apache/2.4.54 (Unix) OpenSSL/1.1.1w PHP/8.2.11"},{"key":"Vary","value":"Authorization,Origin"},{"key":"X-Powered-By","value":"PHP/8.2.11"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"phpdebugbar-id","value":"X03e4d6731ce252cd03d1e2331e8f6451"},{"key":"x-robots-tag","value":"none"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com https://fonts.bunny.net; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://*.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io https://*.salesdock.nl; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Cross-Origin-Embedder-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Opener-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [],\n    \"message\": \"Opt-in record successfully added to 1190\"\n}"}],"_postman_id":"92776563-f55a-4fc9-a47a-577ffb930acc"}],"id":"f716e23e-368a-4804-ace5-4395b6c8f6cc","_postman_id":"f716e23e-368a-4804-ace5-4395b6c8f6cc","description":""},{"name":"Dialer API","item":[{"name":"Create concept transaction","id":"6bea2561-b34e-4bf2-9b8f-e6f585f561cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"source","value":"","description":"<p>Source of the row</p>\n","type":"text"},{"key":"source_id","value":"","description":"<p>External reference ID - Unique id of the row</p>\n","type":"text"},{"key":"source_version","value":"","description":"<p>Integer which specifies the version of the source</p>\n","type":"text"},{"key":"source_metadata","value":"","description":"<p>Array with metadata pertaining to the source</p>\n","type":"text"},{"key":"gender","value":"","type":"text","description":"<p>Possible values - 'male', 'female'</p>\n"},{"key":"firstname","value":"","type":"text"},{"key":"lastname","value":"","type":"text"},{"key":"birthdate","value":"","description":"<p>dd-mm-yyyy</p>\n","type":"text"},{"key":"email","value":"","type":"text"},{"key":"customer_type","value":"","description":"<p>‘1’ for business and ‘0’ for consumer</p>\n","type":"text"},{"key":"company_name","value":"","type":"text"},{"key":"contact_person","value":"","type":"text"},{"key":"coc","value":"","type":"text"},{"key":"postcode","value":"","type":"text"},{"key":"housenumber","value":"","type":"text"},{"key":"suffix","value":"","type":"text"},{"key":"city","value":"","type":"text"},{"key":"country","value":"","description":"<p>‘NL’ or ‘BE’</p>\n","type":"text"},{"key":"phone","value":"","type":"text"},{"key":"mobile","value":"","type":"text"}]},"url":"{{url}}/api/{{domain}}/{{version}}/account/concepttransaction","description":"<p>A concept transaction is a temporary transaction that can be created using this API with the customer's basic information. The link in the response can then be clicked to open the Salesdock application and do a sale where all the information is already prefilled</p>\n<p>Concept transactions are usually used via Dialer software.</p>\n<p>The information that is accepted, when creating a concept transaction is shown in the request params below. Apart from the customer personal information, four other parameters can be sent.</p>\n<ul>\n<li>source - This is to identify the dialer row software source</li>\n<li>source_id - This is the unique id of the concept transaction at the source</li>\n<li>souce_version - If the dialer row changes their information, they can update the source_version number so that Salesdock know what to expect</li>\n<li>source_metadata - This is an array of data that is unique to the dialer row.</li>\n</ul>\n<p>If sale extra fields need to be also sent via the API, it can be sent in the format cf_{identifier}, where identifier is the identifier of the extra field.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","concepttransaction"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f7025623-1f4e-4d1e-a931-286742839f6a","name":"Create concept transaction","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{api_token}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"source","value":"test_source","description":"Source of the row","type":"text"},{"key":"source_id","value":"3456123","description":"External reference ID - Unique id of the row","type":"text"},{"key":"source_metadata[code]","value":"123","type":"text"},{"key":"source_metadata[identifier]","value":"test-identifier","type":"text"},{"key":"gender","value":"male","type":"text"},{"key":"firstname","value":"John","type":"text"},{"key":"lastname","value":"Doe","type":"text"},{"key":"birthdate","value":"31-01-2000","description":"dd-mm-yyyy","type":"text"},{"key":"email","value":"test@salesdock.nl","type":"text"},{"key":"customer_type","value":"0","description":"‘1’ for business and ‘0’ for consumer","type":"text"},{"key":"company_name","value":"","type":"text"},{"key":"contact_person","value":"","type":"text"},{"key":"coc","value":"","type":"text"},{"key":"postcode","value":"","type":"text"},{"key":"housenumber","value":"","type":"text"},{"key":"suffix","value":"","type":"text"},{"key":"city","value":"","type":"text"},{"key":"country","value":"","description":"‘NL’ or ‘BE’","type":"text"},{"key":"phone","value":"","type":"text"},{"key":"mobile","value":"","type":"text"},{"key":"source_version","value":"1","type":"text"}]},"url":"{{url}}/api/{{domain}}/{{version}}/account/concepttransaction"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 26 Mar 2020 07:18:50 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"200"},{"key":"X-RateLimit-Remaining","value":"199"},{"key":"Content-Security-Policy","value":"default-src 'none'; base-uri 'none'; connect-src 'self'; font-src 'self' https://fonts.gstatic.com data: https:; form-action 'self'; frame-ancestors 'self'; frame-src 'self'; img-src 'self' http://json-services.nutselect.nl https://files.delta.nl https://www.westbespaarcoach.nl data: https:; media-src 'none'; object-src 'self'; script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com"},{"key":"Feature-Policy","value":"accelerometer 'self'; ambient-light-sensor 'self'; autoplay 'self'; camera 'self'; display-capture 'self'; document-domain *; encrypted-media 'self'; fullscreen 'self'; geolocation 'self'; gyroscope 'self'; magnetometer 'self'; microphone 'self'; midi 'self'; payment 'self'; picture-in-picture *; speaker 'self'; sync-xhr *; usb 'self'; vr 'self'"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"579f199149276ad3-BOM"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"uuid\": \"h7pR0zlSOHUE27KjKjKIdd2s8fdIsGQxIHGM62O7\",\n        \"order_url\": \"https://app.salesdock.nl/demo/flow?dialer_uuid=h7pR0zlSOHUE27KjKjKIdd2s8fdIsGQxIHGM62O7\",\n        \"offer_url\": \"https://app.salesdock.nl/demo/flow?offer=1&dialer_uuid=h7pR0zlSOHUE27KjKjKIdd2s8fdIsGQxIHGM62O7\"\n    },\n    \"message\": \"Row created successfully.\"\n}"}],"_postman_id":"6bea2561-b34e-4bf2-9b8f-e6f585f561cf"},{"name":"Get concept transaction fields","id":"7832ea8b-125b-4b2c-9a4d-c94e7a2fa79b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/concepttransaction/fields","description":"<p>Get the list of fields along with the validation that are supported when creating concept transaction.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","concepttransaction","fields"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"a73e8b1f-adee-41f2-87ef-c2337e8be50b","name":"Get concept transaction fields","originalRequest":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/concepttransaction/fields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 13 May 2022 09:23:51 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=ZD0nPPCLQ3Z7FG0LcExZG6%2FTn61glHWG9J%2Bcpp6w7vbzWaaeJ7rnFJJFAHy0etTX7ijVEt1RiEXRcfwIgyPmaNs9SzEtyEiqdGhPG6K%2Bxi3BIZbYJ%2FtXklr4sPEQofeDpQ0%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"70aa5671daba4260-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"fields\": [\n            {\n                \"name\": \"source\",\n                \"type\": \"string\",\n                \"required\": true,\n                \"description\": \"The name of the dialer company in lower case. This string should be the same for all records created by the same dialer.\",\n                \"validations\": [\n                    \"max:20\"\n                ]\n            },\n            {\n                \"name\": \"source_id\",\n                \"type\": \"string\",\n                \"required\": true,\n                \"description\": \"A unique identifier for the record on the dialer platform.\",\n                \"validations\": []\n            },\n            {\n                \"name\": \"source_version\",\n                \"type\": \"integer\",\n                \"required\": false,\n                \"description\": \"The version fields helps identifies if there has been a change in the records coming from the source. Version numbers should be sent as integers between 1 and 255.\",\n                \"validations\": [\n                    \"integer\"\n                ]\n            },\n            {\n                \"name\": \"source_metadata\",\n                \"type\": \"array\",\n                \"required\": false,\n                \"description\": \"The metadata field can contain information from the dialer row source that can be  used by Salesdock for different purposes.\",\n                \"validations\": [\n                    \"array\"\n                ]\n            },\n            {\n                \"name\": \"gender\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Gender of the customer.\",\n                \"validations\": [\n                    \"in:male,female\"\n                ]\n            },\n            {\n                \"name\": \"firstname\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"First name of the customer.\",\n                \"validations\": []\n            },\n            {\n                \"name\": \"lastname\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Last name of the customer.\",\n                \"validations\": []\n            },\n            {\n                \"name\": \"birthdate\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Date of birth of the customer.\",\n                \"validations\": [\n                    \"date_format:d-m-Y\",\n                    \"before:today\"\n                ]\n            },\n            {\n                \"name\": \"postcode\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Postal code of the customer. Should be in the format of the country - Netherlands.\",\n                \"validations\": [\n                    \"postcode\"\n                ]\n            },\n            {\n                \"name\": \"housenumber\",\n                \"type\": \"integer\",\n                \"required\": false,\n                \"description\": \"House number of the customer.\",\n                \"validations\": [\n                    \"integer\"\n                ]\n            },\n            {\n                \"name\": \"suffix\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"House number suffix of the customer.\",\n                \"validations\": []\n            },\n            {\n                \"name\": \"streetname\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Street name of the customer.\",\n                \"validations\": []\n            },\n            {\n                \"name\": \"city\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"City of the customer.\",\n                \"validations\": []\n            },\n            {\n                \"name\": \"email\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Email of the customer.\",\n                \"validations\": [\n                    \"email\"\n                ]\n            },\n            {\n                \"name\": \"phone\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Phone number of the customer. Should be in the format of the country - Netherlands.\",\n                \"validations\": [\n                    \"phonenumber\"\n                ]\n            },\n            {\n                \"name\": \"mobile\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Mobile number of the customer. Should be in the format of the country - Netherlands.\",\n                \"validations\": [\n                    \"phonenumber\"\n                ]\n            },\n            {\n                \"name\": \"customer_type\",\n                \"type\": \"integer\",\n                \"required\": false,\n                \"description\": \"If customer is of type business then 1 and 0 for consumer\",\n                \"validations\": [\n                    \"in:1,0\"\n                ]\n            },\n            {\n                \"name\": \"iban\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Bank account IBAN of the customer.\",\n                \"validations\": [\n                    \"iban\"\n                ]\n            },\n            {\n                \"name\": \"iban_holder\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Name of the IBAN holder for the bank account.\",\n                \"validations\": []\n            },\n            {\n                \"name\": \"company_name\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Company name of the customer. Only applicable if customer_type = 1\",\n                \"validations\": []\n            },\n            {\n                \"name\": \"contact_person\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Contact person of the customer. Only applicable if customer_type = 1\",\n                \"validations\": []\n            },\n            {\n                \"name\": \"coc\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Chamber of commerce number of the customer. Only applicable if customer_type = 1\",\n                \"validations\": [\n                    \"numeric\"\n                ]\n            },\n            {\n                \"name\": \"cf_commissie\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Extra field: Commissie\",\n                \"validations\": [\n                    \"numeric\"\n                ]\n            },\n            {\n                \"name\": \"cf_steam-record-id\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Extra field: Steam record ID\",\n                \"validations\": []\n            },\n            {\n                \"name\": \"cf_t-mobile-upsell\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Extra field: T-Mobile upsell\",\n                \"validations\": [\n                    \"in:Ja,Nee\"\n                ]\n            },\n            {\n                \"name\": \"cf_transaction-image\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Extra field: Transaction image\",\n                \"validations\": []\n            },\n            {\n                \"name\": \"cf_transaction-field-extra\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Extra field: Transaction field extra\",\n                \"validations\": []\n            },\n            {\n                \"name\": \"optin\",\n                \"type\": \"integer\",\n                \"required\": false,\n                \"description\": \"If an opt-in needs to be created or not.\",\n                \"validations\": [\n                    \"in:1,0\"\n                ]\n            },\n            {\n                \"name\": \"optin_source\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"The source of obtaining the opt-in information.\",\n                \"validations\": [\n                    \"max:255\"\n                ]\n            },\n            {\n                \"name\": \"optin_obtained_at\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Time at which the opt-in information was obtained\",\n                \"validations\": [\n                    \"date_format:Y-m-d H:m:s\",\n                    \"before:now\"\n                ]\n            },\n            {\n                \"name\": \"optin_obtained_system\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"The system used to obtain opt-in information.\",\n                \"validations\": [\n                    \"max:255\"\n                ]\n            },\n            {\n                \"name\": \"optin_obtained_by\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"The person or agency that obtained the opt-in information.\",\n                \"validations\": [\n                    \"max:255\"\n                ]\n            },\n            {\n                \"name\": \"optin_obtained_via_url\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"The web url used to obtain the opt-in information.\",\n                \"validations\": [\n                    \"max:255\"\n                ]\n            },\n            {\n                \"name\": \"optin_client_ip\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"The IP address used by the client to fill in the opt-in information.\",\n                \"validations\": [\n                    \"ip\"\n                ]\n            },\n            {\n                \"name\": \"optin_withdrawn_at\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"The time at which the opt-in was withdrawn.\",\n                \"validations\": [\n                    \"date_format:Y-m-d H:m:s\",\n                    \"before:now\"\n                ]\n            },\n            {\n                \"name\": \"optin_valid_till\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"The time till which the opt-in is valid.\",\n                \"validations\": [\n                    \"date_format:Y-m-d H:m:s\",\n                    \"before:now\"\n                ]\n            },\n            {\n                \"name\": \"optin_remarks\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Remarks (if any) regarding the opt-in.\",\n                \"validations\": []\n            },\n            {\n                \"name\": \"optin_proof[content]\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Base 64 string of an image or document that contains proof of the opt-in.\",\n                \"validations\": [\n                    \"base64\"\n                ]\n            },\n            {\n                \"name\": \"optin_proof[extension]\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"A valid file extension of the opt-in proof document.\",\n                \"validations\": [\n                    \"in:pdf,jpg,jpeg,png\"\n                ]\n            },\n            {\n                \"name\": \"optin_campaign_code\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"The code of the campign to which the opt-in belongs to.\",\n                \"validations\": [\n                    \"max:255\"\n                ]\n            },\n            {\n                \"name\": \"optin_channels\",\n                \"type\": \"array\",\n                \"required\": true,\n                \"description\": \"This array contains the channels (email/sms) for which the customer has opted in.\",\n                \"validations\": [\n                    \"array\"\n                ]\n            },\n            {\n                \"name\": \"optin_channels[*][type]\",\n                \"type\": \"string\",\n                \"required\": true,\n                \"description\": \"The type of channel used for opt-in. At least 1 channel is required for opt-in\",\n                \"validations\": [\n                    \"in:email,phone\"\n                ]\n            },\n            {\n                \"name\": \"optin_channels[*][value]\",\n                \"type\": \"string\",\n                \"required\": true,\n                \"description\": \"The value of the channel opted in for. So if type is email, then email opted in\",\n                \"validations\": [\n                    \"email\",\n                    \"phonenumber\"\n                ]\n            },\n            {\n                \"name\": \"optin_channels[*][topic]\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"The topic for which the opt-in is valid for.\",\n                \"validations\": []\n            },\n            {\n                \"name\": \"optin_channels[*][verified_at]\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"The date when the opt-in is verified by phone (double opt-in).\",\n                \"validations\": [\n                    \"date_format:Y-m-d H:m:s\"\n                ]\n            },\n            {\n                \"name\": \"optin_channels[*][verified_ip]\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"The IP address from where the phone number has been confirmed.\",\n                \"validations\": [\n                    \"ip\"\n                ]\n            }\n        ],\n        \"validators\": {\n            \"max:20\": \"The maximum length of the string should be 20.\",\n            \"in:male,female\": \"Values that are accepted are male, female.\",\n            \"date_format:d-m-Y\": \"Date should be in the format d-m-Y. Eg: 21-12-1990.\",\n            \"before:today\": \"Date should be before today.\",\n            \"postcode\": \"Should be in a valid postcode format of the country - Netherlands\",\n            \"integer\": \"Only numbers are accepted.\",\n            \"email\": \"Should be in a valid email address format.\",\n            \"phonenumber\": \"Should be in a valid phone number format of the country - Netherlands.\",\n            \"in:1,0\": \"Values that are accepted are 1, 0.\",\n            \"iban\": \"Should be in a valid bank IBAN format of the country - Netherlands.\",\n            \"date_format:Y-m-d H:m:s\": \"Date should be in the format Y-m-d H:m:s. Eg: 2021-12-21 14:20:00.\",\n            \"before:now\": \"Date time should be before this instant.\",\n            \"in:email,phone\": \"Values that are accepted are email, phone.\",\n            \"max:255\": \"A maximum of 255 characters are accepted.\",\n            \"base64\": \"A valid base64 encoded string.\",\n            \"in:pdf,jpg,jpeg,png\": \"Accepted values are pdf, jpg, jpeg, png.\",\n            \"array\": \"Multiple key value pairs\"\n        }\n    },\n    \"message\": \"Concept transaction fields retrieved successfully.\"\n}"}],"_postman_id":"7832ea8b-125b-4b2c-9a4d-c94e7a2fa79b"},{"name":"Get concept transaction fields with optin","id":"b6a86e1e-7f62-4a51-94b9-3d56960d2b4f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/concepttransaction/fields/optin","description":"<p>Get the list of fields along with the validation that are supported when creating concept transaction. Also provides information on the fields that can be sent for saving optin information for the concept transaction.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","concepttransaction","fields","optin"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"ca3fed13-4751-4bbd-9de0-c2a973c36436","name":"Get concept transaction fields with optin","originalRequest":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/concepttransaction/fields/optin"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Aug 2022 11:43:41 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=9Ftd9xX8%2FicDXfdoQAtT9K5URkhmAXdXrpXFhDLvAei7Ip1%2F3UentRINZgaLB%2BY8YiDvy%2BO2xaA5xIL%2B9Ib8nBItLb6mZCEZFZXKNt5vjLdg34oTWKn01MrAihd8VOEXGJQ%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"73803c494d9c3228-BOM"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"fields\": [\n            {\n                \"name\": \"source\",\n                \"type\": \"string\",\n                \"required\": true,\n                \"description\": \"The name of the dialer company in lower case. This string should be the same for all records created by the same dialer.\",\n                \"validations\": [\n                    \"max:20\"\n                ]\n            },\n            {\n                \"name\": \"source_id\",\n                \"type\": \"string\",\n                \"required\": true,\n                \"description\": \"A unique identifier for the record on the dialer platform.\",\n                \"validations\": []\n            },\n            {\n                \"name\": \"source_version\",\n                \"type\": \"integer\",\n                \"required\": false,\n                \"description\": \"The version fields helps identifies if there has been a change in the records coming from the source. Version numbers should be sent as integers between 1 and 255.\",\n                \"validations\": [\n                    \"integer\"\n                ]\n            },\n            {\n                \"name\": \"source_metadata\",\n                \"type\": \"array\",\n                \"required\": false,\n                \"description\": \"The metadata field can contain information from the dialer row source that can be  used by Salesdock for different purposes.\",\n                \"validations\": [\n                    \"array\"\n                ]\n            },\n            {\n                \"name\": \"gender\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Gender of the customer.\",\n                \"validations\": [\n                    \"in:male,female\"\n                ]\n            },\n            {\n                \"name\": \"firstname\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"First name of the customer.\",\n                \"validations\": []\n            },\n            {\n                \"name\": \"lastname\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Last name of the customer.\",\n                \"validations\": []\n            },\n            {\n                \"name\": \"birthdate\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Date of birth of the customer.\",\n                \"validations\": [\n                    \"date_format:d-m-Y\",\n                    \"before:today\"\n                ]\n            },\n            {\n                \"name\": \"postcode\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Postal code of the customer. Should be in the format of the country - Nederland.\",\n                \"validations\": [\n                    \"postcode\"\n                ]\n            },\n            {\n                \"name\": \"housenumber\",\n                \"type\": \"integer\",\n                \"required\": false,\n                \"description\": \"House number of the customer.\",\n                \"validations\": [\n                    \"integer\"\n                ]\n            },\n            {\n                \"name\": \"suffix\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"House number suffix of the customer.\",\n                \"validations\": []\n            },\n            {\n                \"name\": \"streetname\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Street name of the customer.\",\n                \"validations\": []\n            },\n            {\n                \"name\": \"city\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"City of the customer.\",\n                \"validations\": []\n            },\n            {\n                \"name\": \"email\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Email of the customer.\",\n                \"validations\": [\n                    \"email\"\n                ]\n            },\n            {\n                \"name\": \"phone\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Phone number of the customer. Should be in the format of the country - Nederland.\",\n                \"validations\": [\n                    \"phonenumber\"\n                ]\n            },\n            {\n                \"name\": \"mobile\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Mobile number of the customer. Should be in the format of the country - Nederland.\",\n                \"validations\": [\n                    \"phonenumber\"\n                ]\n            },\n            {\n                \"name\": \"customer_type\",\n                \"type\": \"integer\",\n                \"required\": false,\n                \"description\": \"If customer is of type business then 1 and 0 for consumer\",\n                \"validations\": [\n                    \"in:1,0\"\n                ]\n            },\n            {\n                \"name\": \"iban\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Bank account IBAN of the customer.\",\n                \"validations\": [\n                    \"iban\"\n                ]\n            },\n            {\n                \"name\": \"iban_holder\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Name of the IBAN holder for the bank account.\",\n                \"validations\": []\n            },\n            {\n                \"name\": \"company_name\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Company name of the customer. Only applicable if customer_type = 1\",\n                \"validations\": []\n            },\n            {\n                \"name\": \"contact_person\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Contact person of the customer. Only applicable if customer_type = 1\",\n                \"validations\": []\n            },\n            {\n                \"name\": \"coc\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Chamber of commerce number of the customer. Only applicable if customer_type = 1\",\n                \"validations\": [\n                    \"numeric\"\n                ]\n            },\n            {\n                \"name\": \"optin\",\n                \"type\": \"integer\",\n                \"required\": false,\n                \"description\": \"If an opt-in needs to be created or not.\",\n                \"validations\": [\n                    \"in:1,0\"\n                ]\n            },\n            {\n                \"name\": \"optin_source\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"The source of obtaining the opt-in information.\",\n                \"validations\": [\n                    \"max:255\"\n                ]\n            },\n            {\n                \"name\": \"optin_obtained_at\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Time at which the opt-in information was obtained\",\n                \"validations\": [\n                    \"date_format:Y-m-d H:m:s\",\n                    \"before:now\"\n                ]\n            },\n            {\n                \"name\": \"optin_obtained_system\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"The system used to obtain opt-in information.\",\n                \"validations\": [\n                    \"max:255\"\n                ]\n            },\n            {\n                \"name\": \"optin_obtained_by\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"The person or agency that obtained the opt-in information.\",\n                \"validations\": [\n                    \"max:255\"\n                ]\n            },\n            {\n                \"name\": \"optin_obtained_via_url\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"The web url used to obtain the opt-in information.\",\n                \"validations\": [\n                    \"max:255\"\n                ]\n            },\n            {\n                \"name\": \"optin_client_ip\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"The IP address used by the client to fill in the opt-in information.\",\n                \"validations\": [\n                    \"ip\"\n                ]\n            },\n            {\n                \"name\": \"optin_withdrawn_at\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"The time at which the opt-in was withdrawn.\",\n                \"validations\": [\n                    \"date_format:Y-m-d H:m:s\",\n                    \"before:now\"\n                ]\n            },\n            {\n                \"name\": \"optin_valid_till\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"The time till which the opt-in is valid.\",\n                \"validations\": [\n                    \"date_format:Y-m-d H:m:s\",\n                    \"before:now\"\n                ]\n            },\n            {\n                \"name\": \"optin_remarks\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Remarks (if any) regarding the opt-in.\",\n                \"validations\": []\n            },\n            {\n                \"name\": \"optin_proof[content]\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Base 64 string of an image or document that contains proof of the opt-in.\",\n                \"validations\": [\n                    \"base64\"\n                ]\n            },\n            {\n                \"name\": \"optin_proof[extension]\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"A valid file extension of the opt-in proof document.\",\n                \"validations\": [\n                    \"in:pdf,jpg,jpeg,png\"\n                ]\n            },\n            {\n                \"name\": \"optin_channels\",\n                \"type\": \"array\",\n                \"required\": true,\n                \"description\": \"This array contains the channels (email/sms) for which the customer has opted in.\",\n                \"validations\": [\n                    \"array\"\n                ]\n            },\n            {\n                \"name\": \"optin_channels[*][type]\",\n                \"type\": \"string\",\n                \"required\": true,\n                \"description\": \"The type of channel used for opt-in. At least 1 channel is required for opt-in\",\n                \"validations\": [\n                    \"in:email,phone\"\n                ]\n            },\n            {\n                \"name\": \"optin_channels[*][value]\",\n                \"type\": \"string\",\n                \"required\": true,\n                \"description\": \"The value of the channel opted in for. So if type is email, then email opted in\",\n                \"validations\": [\n                    \"email\",\n                    \"phonenumber\"\n                ]\n            },\n            {\n                \"name\": \"optin_channels[*][topic]\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"The topic for which the opt-in is valid for.\",\n                \"validations\": []\n            }\n        ],\n        \"validators\": {\n            \"max:20\": \"The maximum length of the string should be 20.\",\n            \"in:male,female\": \"Values that are accepted are male, female.\",\n            \"date_format:d-m-Y\": \"Date should be in the format d-m-Y. Eg: 21-12-1990.\",\n            \"before:today\": \"Date should be before today.\",\n            \"postcode\": \"Should be in a valid postcode format of the country - Nederland\",\n            \"integer\": \"Only numbers are accepted.\",\n            \"email\": \"Should be in a valid email address format.\",\n            \"phonenumber\": \"Should be in a valid phone number format of the country - Nederland.\",\n            \"in:1,0\": \"Values that are accepted are 1, 0.\",\n            \"iban\": \"Should be in a valid bank IBAN format of the country - Nederland.\",\n            \"date_format:Y-m-d H:m:s\": \"Date should be in the format Y-m-d H:m:s. Eg: 2021-12-21 14:20:00.\",\n            \"before:now\": \"Date time should be before this instant.\",\n            \"in:email,phone\": \"Values that are accepted are email, phone.\",\n            \"max:255\": \"A maximum of 255 characters are accepted.\",\n            \"base64\": \"A valid base64 encoded string.\",\n            \"in:pdf,jpg,jpeg,png\": \"Accepted values are pdf, jpg, jpeg, png.\",\n            \"array\": \"Multiple key value pairs\"\n        }\n    },\n    \"message\": \"Concept transaction fields retrieved successfully.\"\n}"}],"_postman_id":"b6a86e1e-7f62-4a51-94b9-3d56960d2b4f"},{"name":"Create concept transaction with opt-in","id":"9ffb6555-9d70-4541-b411-b0d7145b4298","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"source","value":"","description":"<p>Source of the row</p>\n","type":"text"},{"key":"source_id","value":"","description":"<p>External reference ID - Unique id of the row</p>\n","type":"text"},{"key":"gender","value":"","type":"text","description":"<p>Possible values = 'male', 'female'</p>\n"},{"key":"firstname","value":"","type":"text"},{"key":"lastname","value":"","type":"text"},{"key":"birthdate","value":"","description":"<p>dd-mm-yyyy</p>\n","type":"text"},{"key":"email","value":"","type":"text"},{"key":"customer_type","value":"","description":"<p>‘1’ for business and ‘0’ for consumer</p>\n","type":"text"},{"key":"company_name","value":"","type":"text"},{"key":"contact_person","value":"","type":"text"},{"key":"coc","value":"","type":"text"},{"key":"postcode","value":"","type":"text"},{"key":"housenumber","value":"","type":"text"},{"key":"suffix","value":"","type":"text"},{"key":"city","value":"","type":"text"},{"key":"country","value":"","description":"<p>‘NL’ or ‘BE’</p>\n","type":"text"},{"key":"phone","value":"","type":"text"},{"key":"mobile","value":"","type":"text"},{"key":"optin","value":"1","description":"<p>Possible values - '1' or '0'. 1 implies that an opt-in is present.</p>\n","type":"text"},{"key":"optin_source","value":"","description":"<p>Free text regarding the source of the opt-in.</p>\n","type":"text"},{"key":"optin_obtained_at","value":"","description":"<p>Date time in which opt-in was obtains. Format - yyyy-mm-dd HH:mm:ss</p>\n","type":"text"},{"key":"optin_obtained_by","value":"","description":"<p>The person or organisation that obtained the optin.</p>\n","type":"text"},{"key":"optin_obtained_system","value":"SalesEngine Platform","description":"<p>Free text with information on the name of the system use to to obtain opt-in</p>\n","type":"text"},{"key":"optin_obtained_via_url","value":"http://example.com","description":"<p>Valid URL used to obtain the Opt-in</p>\n","type":"text"},{"key":"optin_client_ip","value":"127.0.0.1","description":"<p>Valid IP address used to obtain the Opt-in</p>\n","type":"text"},{"key":"optin_valid_till","value":"2022-01-01 01:01:01","description":"<p>The validtilty of the Opt-in. Format - yyyy-mm-dd HH:mm:ss</p>\n","type":"text"},{"key":"optin_withdrawn_at","value":"2021-12-24 12:01:01","description":"<p>The date time when Opt-in was withdrawn. Format - yyyy-mm-dd HH:mm:ss</p>\n","type":"text"},{"key":"optin_proof[content]","value":"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mP8z/C/HgAGgwJ/lK3Q6wAAAABJRU5ErkJggg==","description":"<p>Proof of optin as an base64 file. </p>\n","type":"text"},{"key":"optin_proof[extension]","value":"png","description":"<p>The extension of the file for the Opt-in proof.</p>\n","type":"text"},{"key":"optin_channels[0][type]","value":"email","description":"<p>What the user has opted in for. Possible values - 'email' or 'phone'.</p>\n","type":"text"},{"key":"optin_channels[0][value]","value":"test@salesdock.nl","description":"<p>Valid email or phone number based on Opt-in type.</p>\n","type":"text"},{"key":"optin_channels[0][topic]","value":"Solar panels, Aircon","description":"<p>The topics that the user has opted in for.</p>\n","type":"text"},{"key":"optin_channels[1][type]","value":"phone","description":"<p>What the user has opted in for. Possible values - 'email' or 'phone'.</p>\n","type":"text"},{"key":"optin_channels[1][value]","value":"0611XXXXXX","description":"<p>Valid email or phone number based on Opt-in type.</p>\n","type":"text"},{"key":"optin_remarks","value":"","description":"<p>Remarks about the opt-in if any</p>\n","type":"text"},{"key":"optin_campaign_code","value":"","description":"<p>The code of the campign to which the opt-in belongs to</p>\n","type":"text"},{"key":"optin_channels[1][verified_at]","value":"2024-12-24 12:01:01","description":"<p>The verified time in yyyy-mm-dd hh:mm:ss format. This is only applicable if the chanel type is phone</p>\n","type":"text"},{"key":"optin_channels[1][verified_ip]","value":"127.0.0.1","description":"<p>The ip address using which the opt-in was verified. This is only appplicable when opt-in type is phone</p>\n","type":"text"},{"key":"optin_channels[1][verified_method]","value":"sms","description":"<p>The verification method when verifying the option via phone. Possible values are sms,call,whatsapp</p>\n","type":"text"}]},"url":"{{url}}/api/{{domain}}/{{version}}/account/concepttransaction","description":"<p>A concept transaction is a temporary transaction that can be created using this API with the customer's basic information. The link in the response can then be clicked to open the Salesdock application and do a sale where all the information is already prefilled</p>\n<p>Concept transactions are usually used via Dialer software.</p>\n<p>The information that is accepted, when creating a concept transaction is shown in the request params below. Apart from the customer personal information, four other parameters can be sent.</p>\n<ul>\n<li><p>source - This is to identify the dialer row software source</p>\n</li>\n<li><p>source_id - This is the unique id of the concept transaction at the source</p>\n</li>\n<li><p>souce_version - If the dialer row changes their information, they can update the source_version number so that Salesdock know what to expect</p>\n</li>\n<li><p>source_metadata - This is an array of data that is unique to the dialer row.</p>\n</li>\n</ul>\n<p>If sale extra fields need to be also sent via the API, it can be sent in the format cf_{identifier}, where identifier is the identifier of the extra field.</p>\n<p>This endpoint can also be used to send optin information that can then be attached to the sale created from the concept transaction. In order to create an opt-in, send a parameter \"optin\", with value 1.</p>\n<p>An opt-in can have multiple channels. Each channel should be of type 'email' or 'phone'. Atleast one channel is mandatory in order to create an opt-in</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","concepttransaction"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"ec6dcc9a-a36e-453a-b162-dc9c7405688a","name":"Create concept transaction with optin","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{api_token}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"source","value":"test_source","description":"Source of the row","type":"text"},{"key":"source_id","value":"345612227","description":"External reference ID - Unique id of the row","type":"text"},{"key":"gender","value":"male","type":"text"},{"key":"firstname","value":"John","type":"text"},{"key":"lastname","value":"Doe","type":"text"},{"key":"birthdate","value":"31-01-2000","description":"dd-mm-yyyy","type":"text"},{"key":"email","value":"test@salesdock.nl","type":"text"},{"key":"customer_type","value":"0","description":"‘1’ for business and ‘0’ for consumer","type":"text"},{"key":"company_name","value":"","type":"text"},{"key":"contact_person","value":"","type":"text"},{"key":"coc","value":"","type":"text"},{"key":"postcode","value":"","type":"text"},{"key":"housenumber","value":"","type":"text"},{"key":"suffix","value":"","type":"text"},{"key":"city","value":"","type":"text"},{"key":"country","value":"","description":"‘NL’ or ‘BE’","type":"text"},{"key":"phone","value":"","type":"text"},{"key":"mobile","value":"","type":"text"},{"key":"optin","value":"1","description":"'1' or '0'","type":"text"},{"key":"optin_source","value":"email","type":"text"},{"key":"optin_obtained_at","value":"2021-09-12 13:01:01","description":"yyyy-mm-dd HH:mm:ss","type":"text"},{"key":"optin_obtained_by","value":"Jane Doe","type":"text"},{"key":"optin_obtained_system","value":"SalesEngine Platform","type":"text"},{"key":"optin_obtained_via_url","value":"http://example.com","description":"Valid URL","type":"text"},{"key":"optin_client_ip","value":"127.0.0.1","description":"Valid IP address","type":"text"},{"key":"optin_valid_till","value":"2022-01-01 01:01:01","description":"yyyy-mm-dd HH:mm:ss","type":"text"},{"key":"optin_withdrawn_at","value":"2021-12-24 12:01:01","description":"yyyy-mm-dd HH:mm:ss","type":"text"},{"key":"optin_proof[content]","value":"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mP8z/C/HgAGgwJ/lK3Q6wAAAABJRU5ErkJggg==","type":"text"},{"key":"optin_proof[extension]","value":"png","type":"text"},{"key":"optin_channels[0][type]","value":"email","description":"'email' or 'phone'","type":"text"},{"key":"optin_channels[0][value]","value":"test@salesdock.nl","description":"Valid email or phone number based on optin type","type":"text"},{"key":"optin_channels[0][topic]","value":"Solar panels, Aircon","type":"text"},{"key":"optin_channels[1][type]","value":"phone","description":"'email' or 'phone'","type":"text"},{"key":"optin_channels[1][value]","value":"0611XXXXXX","description":"Valid email or phone number based on optin type","type":"text"},{"key":"optin_remarks","value":"Test","type":"text"}]},"url":"{{url}}/api/{{domain}}/{{version}}/account/concepttransaction"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Dec 2021 11:46:12 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' https://bam.eu01.nr-data.net https://www.google-analytics.com https://widget.freshworks.com https://salesdock.freshdesk.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Eb96Kch4HNMb38pU86bSd%2FChmpymE3NGphGfCJUrFsvmH2CBOPmsUTxy7GzOvFvVsho3rvxa41jqq9lZrVIU232IjXCtSZLCj7fY1x2WNjxsVxGC8dzVTzf5kmqt5Lkl6bI%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"6ba5c079ffad4c55-AMS"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"uuid\": \"*********************************\",\n        \"order_url\": \"https://app.salesdock.nl/testomgeving/flow?dialer_uuid=*********************************\",\n        \"offer_url\": \"https://app.salesdock.nl/testomgeving/flow?dialer_uuid=*********************************&offer=1\"\n    },\n    \"message\": \"Row created successfully.\"\n}"}],"_postman_id":"9ffb6555-9d70-4541-b411-b0d7145b4298"},{"name":"Create concept lead","id":"460e64d3-01cd-4541-b02b-ae275967bebb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"source","value":"","description":"<p>Source of the row</p>\n","type":"text"},{"key":"source_id","value":"","description":"<p>External reference ID - Unique id of the row</p>\n","type":"text"},{"key":"gender","value":"","type":"text","description":"<p>Possible values - 'male', 'female'</p>\n"},{"key":"firstname","value":"","type":"text"},{"key":"lastname","value":"","type":"text"},{"key":"birthdate","value":"","description":"<p>dd-mm-yyyy</p>\n","type":"text"},{"key":"email","value":"","type":"text"},{"key":"customer_type","value":"","description":"<p>‘1’ for business and ‘0’ for consumer</p>\n","type":"text"},{"key":"company_name","value":"","type":"text"},{"key":"contact_person","value":"","type":"text"},{"key":"coc","value":"","type":"text"},{"key":"postcode","value":"","type":"text"},{"key":"housenumber","value":"","type":"text"},{"key":"suffix","value":"","type":"text"},{"key":"city","value":"","type":"text"},{"key":"streetname","value":"","type":"text","uuid":"4328486d-659f-4eab-b5da-a0932cf7d55c"},{"key":"country","value":"","description":"<p>‘NL’ or ‘BE’</p>\n","type":"text"},{"key":"phone","value":"","type":"text"},{"key":"mobile","value":"","type":"text"}]},"url":"{{url}}/api/{{domain}}/{{version}}/account/conceptlead","description":"<p><em>A concept lead is a temporary lead that can be created using this endpoint with the basic lead information. The links in the response can then be used to open the agenda or lead module in the Salesdock application and create a lead where this information will already be prefilled.</em></p>\n<p>If lead extra fields need to be also sent via the API, it can be sent in the format cf_{identifier}, where identifier is the identifier of the extra field.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","conceptlead"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0ea719e3-d221-4f69-8436-751c445c2e3b","name":"Create concept lead","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"Source of the row","key":"source","type":"text","value":"lead_source"},{"description":"External reference ID - Unique id of the row","key":"source_id","type":"text","value":"3456123"},{"key":"gender","type":"text","value":"male"},{"key":"firstname","type":"text","value":"John"},{"key":"lastname","type":"text","value":"Doe"},{"description":"dd-mm-yyyy","key":"birthdate","type":"text","value":"01-01-2000"},{"key":"email","type":"text","value":"test@salesdock.nl"},{"description":"‘1’ for business and ‘0’ for consumer","key":"customer_type","type":"text","value":"0"},{"key":"company_name","type":"text","value":""},{"key":"contact_person","type":"text","value":""},{"key":"coc","type":"text","value":""},{"key":"postcode","type":"text","value":""},{"key":"housenumber","type":"text","value":""},{"key":"suffix","type":"text","value":""},{"key":"city","type":"text","value":""},{"description":"‘NL’ or ‘BE’","key":"country","type":"text","value":""},{"key":"phone","type":"text","value":""},{"key":"mobile","type":"text","value":""}]},"url":"{{url}}/api/{{domain}}/{{version}}/account/conceptlead"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 26 Mar 2020 07:22:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"200"},{"key":"X-RateLimit-Remaining","value":"199"},{"key":"Content-Security-Policy","value":"default-src 'none'; base-uri 'none'; connect-src 'self'; font-src 'self' https://fonts.gstatic.com data: https:; form-action 'self'; frame-ancestors 'self'; frame-src 'self'; img-src 'self' http://json-services.nutselect.nl https://files.delta.nl https://www.westbespaarcoach.nl data: https:; media-src 'none'; object-src 'self'; script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com"},{"key":"Feature-Policy","value":"accelerometer 'self'; ambient-light-sensor 'self'; autoplay 'self'; camera 'self'; display-capture 'self'; document-domain *; encrypted-media 'self'; fullscreen 'self'; geolocation 'self'; gyroscope 'self'; magnetometer 'self'; microphone 'self'; midi 'self'; payment 'self'; picture-in-picture *; speaker 'self'; sync-xhr *; usb 'self'; vr 'self'"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"579f1e8c9a846ad3-BOM"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"uuid\": \"GBqYq8WpyHio6uUVmk99mpn0FTYTAQzJNpw6sgw4\",\n        \"agenda_url\": \"https://app.salesdock.nl/demo/leads/agenda?uuid=GBqYq8WpyHio6uUVmk99mpn0FTYTAQzJNpw6sgw4\",\n        \"lead_url\": \"https://app.salesdock.nl/demo/leads?uuid=GBqYq8WpyHio6uUVmk99mpn0FTYTAQzJNpw6sgw4\"\n    },\n    \"message\": \"Row created successfully.\"\n}"}],"_postman_id":"460e64d3-01cd-4541-b02b-ae275967bebb"},{"name":"Get concept lead fields","id":"93a08c2a-ae6c-495f-842e-d7d504837ebd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/conceptlead/fields","description":"<p>Get the list of fields along with the validation that are supported when creating a concept lead.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","conceptlead","fields"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"90c55bd3-96f1-43ac-8fff-bc3b714c5ae4","name":"Get concept lead fields","originalRequest":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"Bearer {{api_token}}"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/conceptlead/fields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 07 Oct 2020 12:21:35 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"200"},{"key":"X-RateLimit-Remaining","value":"199"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' https://bam.eu01.nr-data.net https://www.google-analytics.com; form-action 'self'; frame-ancestors 'self'; frame-src 'self'; object-src 'self'"},{"key":"Feature-Policy","value":"accelerometer 'self'; ambient-light-sensor 'self'; autoplay 'self'; battery 'self'; camera 'self'; display-capture 'self'; document-domain *; encrypted-media 'self'; execution-while-not-rendered *; execution-while-out-of-viewport *; fullscreen 'self'; geolocation 'self'; gyroscope 'self'; layout-animations 'self'; legacy-image-formats 'self'; magnetometer 'self'; microphone 'self'; midi 'self'; navigation-override 'self'; oversized-images *; payment 'self'; picture-in-picture *; publickey-credentials 'self'; sync-xhr *; unoptimized-images 'self'; unsized-media *; usb 'self'; wake-lock 'self'; xr-spatial-tracking 'self'"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"Vary","value":"Authorization"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"05a49b8f960000cc1004128200000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"5de7952c2f9acc10-SIN"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"fields\": [\n            {\n                \"name\": \"source\",\n                \"type\": \"string\",\n                \"required\": true,\n                \"description\": \"The name of the dialer company in lower case. This string should be the same for all records created by the same dialer.\",\n                \"validations\": [\n                    \"max:20\"\n                ]\n            },\n            {\n                \"name\": \"source_id\",\n                \"type\": \"string\",\n                \"required\": true,\n                \"description\": \"A unique identifier for the record on the dialer platform.\",\n                \"validations\": []\n            },\n            {\n                \"name\": \"gender\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Gender of the lead.\",\n                \"validations\": [\n                    \"in:male,female\"\n                ]\n            },\n            {\n                \"name\": \"firstname\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"First name of the lead.\",\n                \"validations\": []\n            },\n            {\n                \"name\": \"lastname\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Last name of the lead.\",\n                \"validations\": []\n            },\n            {\n                \"name\": \"birthdate\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Date of birth of the lead.\",\n                \"validations\": [\n                    \"date_format:d-m-Y\",\n                    \"before:today\"\n                ]\n            },\n            {\n                \"name\": \"country\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Country code of the lead.\",\n                \"validations\": [\n                    \"in:NL,BE\"\n                ]\n            },\n            {\n                \"name\": \"postcode\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Postal code of the lead. Should be in the format of the country given.\",\n                \"validations\": [\n                    \"postcode\"\n                ]\n            },\n            {\n                \"name\": \"housenumber\",\n                \"type\": \"integer\",\n                \"required\": false,\n                \"description\": \"House number of the lead.\",\n                \"validations\": [\n                    \"integer\"\n                ]\n            },\n            {\n                \"name\": \"suffix\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"House number suffix of the lead.\",\n                \"validations\": []\n            },\n            {\n                \"name\": \"streetname\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Street name of the lead.\",\n                \"validations\": []\n            },\n            {\n                \"name\": \"city\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"City of the lead.\",\n                \"validations\": []\n            },\n            {\n                \"name\": \"email\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Email of the lead.\",\n                \"validations\": [\n                    \"email\"\n                ]\n            },\n            {\n                \"name\": \"phone\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Phone number of the lead. Should be in the format of the country.\",\n                \"validations\": [\n                    \"phonenumber\"\n                ]\n            },\n            {\n                \"name\": \"mobile\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Mobile number of the lead. Should be in the format of the country.\",\n                \"validations\": [\n                    \"phonenumber\"\n                ]\n            },\n            {\n                \"name\": \"customer_type\",\n                \"type\": \"integer\",\n                \"required\": false,\n                \"description\": \"If lead is of type business then 1 and 0 for consumer\",\n                \"validations\": [\n                    \"in:1,0\"\n                ]\n            },\n            {\n                \"name\": \"iban\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Bank account IBAN of the lead.\",\n                \"validations\": [\n                    \"iban\"\n                ]\n            },\n            {\n                \"name\": \"iban_holder\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Name of the IBAN holder for the bank account.\",\n                \"validations\": []\n            },\n            {\n                \"name\": \"company_name\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Company name of the lead. Only applicable if customer_type = 1\",\n                \"validations\": []\n            },\n            {\n                \"name\": \"contact_person\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Contact person of the lead. Only applicable if customer_type = 1\",\n                \"validations\": []\n            },\n            {\n                \"name\": \"coc\",\n                \"type\": \"string\",\n                \"required\": false,\n                \"description\": \"Chamber of commerce number of the lead. Only applicable if customer_type = 1\",\n                \"validations\": [\n                    \"max:20\"\n                ]\n            }\n        ],\n        \"validators\": {\n            \"max:20\": \"The maximum length of the string should be 20.\",\n            \"in:male,female\": \"Values that are accepted are male, female.\",\n            \"date_format:d-m-Y\": \"Date should be in the format d-m-Y. Eg: 21-12-1990.\",\n            \"before:today\": \"Date should be before today.\",\n            \"postcode\": \"For NL, postcode should be in the format - [0-9]{4}[a-zA-Z]{2}. For BE, [1-9]{1}[0-9]{3}.\",\n            \"integer\": \"Only numbers are accepted.\",\n            \"in:NL,BE\": \"Values that are accepted are NL, BE.\",\n            \"email\": \"Should be in a valid email address format.\",\n            \"phonenumber\": \"Should be in a valid phone number format for the country selected.\",\n            \"in:1,0\": \"Values that are accepted are 1, 0.\",\n            \"iban\": \"Should be in a valid bank IBAN format.\"\n        }\n    },\n    \"message\": \"Concept lead fields retrieved successfully.\"\n}"}],"_postman_id":"93a08c2a-ae6c-495f-842e-d7d504837ebd"},{"name":"Get last sale of concept transaction","id":"51bcbe2b-d9e7-4b5c-bafc-c5811ac17450","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/concepttransaction/sale_id/{{source}}?source_id={{source_id}}&uuid={{uuid}}","description":"<p>This endpoint can be used by admin users to get the last sale id that was created from a concept transaction.</p>\n<p>In order to get this, the user has to pass the source of the concept transaction in the URL. This is the source that was used to create the concept transaction.</p>\n<p>Also <em>atleast</em> one of the following two parameters are needed in the request:</p>\n<p>source_id - This is the source id that was used to create the concept transaction.</p>\n<p>uuid - This is the uuid that was returned on creating the concept transaction</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","concepttransaction","sale_id","{{source}}"],"host":["{{url}}"],"query":[{"key":"source_id","value":"{{source_id}}"},{"key":"uuid","value":"{{uuid}}"}],"variable":[]}},"response":[{"id":"4eb89977-c016-4cdb-8e83-8b82f5179ba7","name":"Get concept transaction sale id","originalRequest":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"}],"url":{"raw":"{{url}}/api/{{domain}}/{{version}}/account/concepttransaction/sale_id/{{source}}?source_id={{source_id}}","host":["{{url}}"],"path":["api","{{domain}}","{{version}}","account","concepttransaction","sale_id","{{source}}"],"query":[{"key":"source_id","value":"{{source_id}}"},{"key":"uuid","value":"{{uuid}}","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 06 May 2022 09:35:50 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=%2FPqfk13p6Lv9iexPyehaJoQxqI%2FWUlW5TxzZGIqt%2FLV4FpPCr%2FXgp2j%2F3A9Ku2To%2BV06XXKiYsDmWNxEs%2BEGiYyikRichf5lZhwaomN6KsVym6KtDB7StVe8p0DRICQSRCI%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7070ba61bd394c00-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"sale_id\": 2522805\n    },\n    \"message\": \"Sale succesvol opgehaald\"\n}"},{"id":"390a7df7-080a-4c35-aaa1-872b51a3dfab","name":"Get concept transaction sale id - validation for required parameter","originalRequest":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"}],"url":{"raw":"{{url}}/api/{{domain}}/{{version}}/account/concepttransaction/sale_id/{{source}}","host":["{{url}}"],"path":["api","{{domain}}","{{version}}","account","concepttransaction","sale_id","{{source}}"],"query":[{"key":"source_id","value":"{{source_id}}","disabled":true},{"key":"uuid","value":"{{uuid}}","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 06 May 2022 09:36:24 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"57"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=4yl4%2FJ8V4y4hqNi6n5T37rEhOc8jsJpGd64WZRefMrmJ9Eg5PA96T1HW5V38%2FxJEOICX0RHKNUfkei%2BOVtPlJMHdZxXwZfh3ehqhHmRVmAm6L3hLHZt59SWCBO2FiKc0jAQ%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7070bb36d8c54c00-AMS"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"message\": \"Het uuid of source_id is noodzakelijk\",\n    \"code\": 400\n}"}],"_postman_id":"51bcbe2b-d9e7-4b5c-bafc-c5811ac17450"},{"name":"Get sales of concept transaction","id":"c3cdaea5-605a-4cdf-b487-bf25209c5af3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/concepttransaction/sales/{{source}}?source_id={{source_id}}","description":"<p>This endpoint can be used by admin users to get the sales that were created from a concept transaction.</p>\n<p>In order to get this, the user has to pass the source of the concept transaction in the URL. This is the source that was used to create the concept transaction.</p>\n<p>Also <em>atleast</em> one of the following two parameters are needed in the request:</p>\n<p>source_id - This is the source id that was used to create the concept transaction.</p>\n<p>uuid - This is the uuid that was returned on creating the concept transaction</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","concepttransaction","sales","{{source}}"],"host":["{{url}}"],"query":[{"key":"source_id","value":"{{source_id}}"},{"disabled":true,"key":"uuid","value":"{{uuid}}"}],"variable":[]}},"response":[{"id":"ebef1ee8-6f15-428f-a1b8-8e5ba6d3b83d","name":"Get sales of concept transaction","originalRequest":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"}],"url":{"raw":"{{url}}/api/{{domain}}/{{version}}/account/concepttransaction/sales/{{source}}?source_id={{source_id}}","host":["{{url}}"],"path":["api","{{domain}}","{{version}}","account","concepttransaction","sales","{{source}}"],"query":[{"key":"source_id","value":"{{source_id}}"},{"key":"uuid","value":"{{uuid}}","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 16 May 2022 11:54:16 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=l6daxKBK5D4A2%2FB0%2Fascoxui1xJ%2FORi6zfolXA9um%2F%2BlcQ0XMagxe4Wbq8v0zu7JdrXEjRydS4BVtbXqQayeXBsK7bgSb9OTPdWQ%2B%2FTjxrmndhjEUBllStW4v%2Blag0MxN%2FA%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"70c3eaec88210125-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"sale_ids\": [\n            1575388,\n            1575389,\n            1575390,\n            1575391\n        ]\n    },\n    \"message\": \"Sales succesvol opgehaald\"\n}"}],"_postman_id":"c3cdaea5-605a-4cdf-b487-bf25209c5af3"},{"name":"Get sale view URL","id":"e6a24958-9715-46e2-802f-9cc596f59b38","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/sales/url/{{sale_id}}","description":"<p>This endpoint can be used by admin users to retrieve the URL that can be used to view the sale in Salesdock.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","sales","url","{{sale_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d275a978-a6b2-4164-aa51-d1aebeee5fd4","name":"Get sale view URL","originalRequest":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/sales/url/{{sale_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 13 May 2022 09:20:31 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=41SqBRbvi4zJJrlTk7JS7NxMQwecfXhqLEqDAuApagkmcKn3g52LzWj1XHc4VwWM2nIq68h9LosZCvJGI9bpjTBhEOWeoOkpSPlSodS3m07hpWa38%2F8GYv%2F0AliPRrw1%2BL8%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"70aa51935f5f4260-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"admin\": \"https://app.salesdock.nl/testom/admin/sales/21562580\",\n        \"reseller\": \"https://app.salesdock.nl/testom/sales/21562580\"\n    },\n    \"message\": \"Sale URL succesvol opgehaald\"\n}"}],"_postman_id":"e6a24958-9715-46e2-802f-9cc596f59b38"}],"id":"d988ac67-d439-42c5-aca6-777f478eb309","_postman_id":"d988ac67-d439-42c5-aca6-777f478eb309","description":""},{"name":"Users API","item":[{"name":"Organisations","item":[{"name":"Get organisations","id":"a0ec1ab7-4e38-4fa0-bfd0-c40d039f5472","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/organisations","description":"<p>API endpoint to fetch the basic details of the organisations along with the extra field values.</p>\n<p>This endpoint is only available for admin users.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","organisations"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f06a9b00-1bbe-468f-a2e0-3e6854dbda93","name":"Get organisations","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer rI8FE5kywonNCMv16QCZsBFh4srXxve5hb3yF5beQzP11IT0Q8eoDNiJ7A6x","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://localhost.salesdock.app/api/testomgeving/{{version}}/account/organisations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 16 Apr 2021 12:18:59 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' https://bam.eu01.nr-data.net https://www.google-analytics.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"097c37d1e50000568fa2088000000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report?s=Jl0p6nsbfltRIsx%2BHAVShuQ%2BAQVCt3hzV5LjgK3uWjBhyTJWW9bRNki3RZvjL80UliolB%2BZ3V0TKna0teKILOV93WD5g4ySQvFp2X32avBfM\"}],\"max_age\":604800,\"group\":\"cf-nel\"}"},{"key":"NEL","value":"{\"max_age\":604800,\"report_to\":\"cf-nel\"}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"640d5bfcad99568f-SIN"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"current_page\": 1,\n        \"data\": [\n            {\n                \"id\": 1,\n                \"name\": \"Default\",\n                \"identifier\": \"default\",\n                \"company_name\": \"Testdefault\",\n                \"contact_person\": \"\",\n                \"email\": \"\",\n                \"phone\": \"\",\n                \"extrafields\": {\n                    \"Test\": \"\",\n                    \"Type organisatie\": [\n                        \"D2D\"\n                    ]\n                }\n            },\n            {\n                \"id\": 21,\n                \"name\": \"TestCompany\",\n                \"identifier\": \"testcompany\",\n                \"company_name\": \"Test Company Ltd\",\n                \"contact_person\": \"Jonh Doe\",\n                \"email\": \"test@salesdock.nl\",\n                \"phone\": \"\",\n                \"extrafields\": null\n            },\n            {\n                \"id\": 28,\n                \"name\": \"Salesdock\",\n                \"identifier\": \"salesdock\",\n                \"company_name\": \"Salesdock\",\n                \"contact_person\": \"Jane Doe\",\n                \"email\": \"test@salesdock.nl\",\n                \"phone\": \"\",\n                \"extrafields\": null\n            }\n        ],\n        \"first_page_url\": \"https://app.salesdock.nl/api/testomgeving/v1/account/organisations?page=1\",\n        \"from\": 1,\n        \"last_page\": 1,\n        \"last_page_url\": \"https://app.salesdock.nl/api/testomgeving/v1/account/organisations?page=1\",\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"pagination.previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://app.salesdock.nl/api/testomgeving/v1/account/organisations?page=1\",\n                \"label\": 1,\n                \"active\": true\n            },\n            {\n                \"url\": \"https://app.salesdock.nl/api/testomgeving/v1/account/organisations?page=1\",\n                \"label\": 1,\n                \"active\": false\n            },\n            {\n                \"url\": \"https://app.salesdock.nl/api/testomgeving/v1/account/organisations?page=1\",\n                \"label\": 1,\n                \"active\": false\n            },\n            {\n                \"url\": \"https://app.salesdock.nl/api/testomgeving/v1/account/organisations?page=2\",\n                \"label\": \"pagination.next\",\n                \"active\": false\n            }\n        ],\n        \"next_page_url\": \"https://app.salesdock.nl/api/testomgeving/v1/account/organisations?page=1\",\n        \"path\": \"https://app.salesdock.nl/api/testomgeving/v1/account/organisations\",\n        \"per_page\": 10,\n        \"prev_page_url\": null,\n        \"to\": 10,\n        \"total\": 3\n    },\n    \"message\": \"Organisaties succesvol opgehaald\"\n}"}],"_postman_id":"a0ec1ab7-4e38-4fa0-bfd0-c40d039f5472"},{"name":"Get organisation","id":"928b4847-1a63-4745-9ffe-7748002e5204","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/organisations/{{organisation_id}}","description":"<p>This endpoint gets all the details of an organisation using the organisation_id.</p>\n<p>Replace {{organisation_id}} in the URL with the id of the organisation.</p>\n<p>This is available only for admin users.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","organisations","{{organisation_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"1cb993f7-58ab-44cc-b8e9-0ecb0013fbaa","name":"Get organisation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/organisations/{{organisation_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 03 Jun 2022 12:37:38 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=P4YfB4U6Gomgu2l%2FVfwEChhvG%2FB7ZS7DQX13vnTYf%2BylyjcJAuxG1nW1caH3H8rQcCkErV09Fh6IW2j5Gvq%2FdKjMLsZsB24edceDywVOkAqRlOcfD5UO3EOlWo7fDHkxSAk%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"71587b30ac89856c-BOM"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"id\": 1,\n        \"name\": \"Default\",\n        \"text\": \"Default\",\n        \"identifier\": \"default\",\n        \"description\": \"Default organisation\",\n        \"partner\": \"yes\",\n        \"sales_channel\": \"telemarketing\",\n        \"contractor\": \"no\",\n        \"company_name\": \"Testdefault\",\n        \"contact_person\": \"\",\n        \"postcode\": null,\n        \"housenumber\": \"\",\n        \"suffix\": null,\n        \"streetname\": \"\",\n        \"city\": \"\",\n        \"email\": \"\",\n        \"phone\": null,\n        \"coc\": null,\n        \"vat\": null,\n        \"website\": null,\n        \"created_at\": \"11-02-2019 02:36:23\",\n        \"updated_at\": \"13-04-2022 08:27:36\",\n        \"logo\": {\n            \"extension\": \"png\",\n            \"content\": \"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\"\n        },\n        \"extrafields\": {\n            \"Test\": \"\",\n            \"Test speakup\": \"\",\n            \"Type organisatie\": [\n                \"D2D\"\n            ]\n        }\n    },\n    \"message\": \"Organisatie succesvol opgehaald\"\n}"}],"_postman_id":"928b4847-1a63-4745-9ffe-7748002e5204"},{"name":"Create organisation","id":"d0305205-8b49-43b8-a6e8-de9d19765825","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"name","value":"","description":"<p>The name of the organisation</p>\n","type":"text"},{"key":"identifier","value":"","description":"<p>Unique identifier slug for the organisation</p>\n","type":"text"},{"key":"description","value":"","type":"text"},{"key":"sales_channel","value":"","description":"<p>The sales channel the organisation will be using for sales. Options are - 'd2d','retail','telemarketing','online','f2f'</p>\n","type":"text"},{"key":"contractor","value":"","description":"<p>'yes- If organisation is a contractor. 'no' - If organisation is not a contractor.</p>\n","type":"text"},{"key":"company_name","value":"","description":"<p>Required if contractor = yes</p>\n","type":"text"},{"key":"email","value":"","description":"<p>Required if contractor = yes</p>\n","type":"text"},{"key":"phone","value":"","type":"text"},{"key":"contact_person","value":"","description":"<p>Required if contractor = yes</p>\n","type":"text"},{"key":"postcode","value":"","description":"<p>Required if contractor = yes</p>\n","type":"text"},{"key":"housenumber","value":"","description":"<p>Required if contractor = yes</p>\n","type":"text"},{"key":"suffix","value":"","type":"text"},{"key":"streetname","value":"","description":"<p>Required if contractor = yes</p>\n","type":"text"},{"key":"city","value":"","description":"<p>Required if contractor = yes</p>\n","type":"text"},{"key":"coc","value":"","description":"<p>Chamber of commerce number of contractor = yes</p>\n","type":"text"},{"key":"vat","value":"","description":"<p>BTW number of contractor = yes</p>\n","type":"text"},{"key":"website","value":"","type":"text"},{"key":"logo[content]","value":"","description":"<p>Base64 string of the organisation logo</p>\n","type":"text"},{"key":"logo[extension]","value":"","description":"<p>Extension of the logo image. Possible values - png.gif,jpg,jpeg</p>\n","type":"text"}]},"url":"{{url}}/api/{{domain}}/{{version}}/account/organisations","description":"<p>This endpoint can be used to create organisations in Salesdock.</p>\n<p>This is available only for admin users.</p>\n<p>Organisation extra fields can be sent using the parameter cf_{identifier} where identifier is the identifier of the extra field.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","organisations"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"4894492c-ad39-4703-acd1-54c1ded7138e","name":"Create organisation","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Accept-Encoding","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Test organisation\",\n    \"identifier\": \"test-organisation\",\n    \"contractor\": \"no\",\n    \"email\": \"test@salesdock.nl\",\n    \"sales_channel\": \"retail\",\n    \"cf_test\": \"Test extrafield\",\n    \"logo\": {\n        \"content\" : \"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mP8z/C/HgAGgwJ/lK3Q6wAAAABJRU5ErkJggg==\",\n        \"extension\": \"png\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/account/organisations"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 03 Jun 2022 12:51:15 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Ji5XqQJpMAQ9qDLtv49mevKfpf%2BDCZZuDjYeUsNdK3OnEX1ncDhGuWG4QVzchejXsCe47QNUuNPm0p8nwnMsfArCqAlRuXIeeQj06CNnGQiuGklzF0dj58w4XpHwAbOCALc%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"71588f229d7484d7-BOM"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"organisation_id\": 3186\n    },\n    \"message\": \"Organisatie succesvol aangemaakt\"\n}"}],"_postman_id":"d0305205-8b49-43b8-a6e8-de9d19765825"},{"name":"Update organisation","id":"9267efe8-1323-4df8-93fd-f77e2e438897","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"name","value":"","description":"<p>The name of the organisation</p>\n","type":"text"},{"key":"identifier","value":"","description":"<p>Unique identifier slug for the organisation</p>\n","type":"text"},{"key":"description","value":"","type":"text"},{"key":"sales_channel","value":"","description":"<p>The sales channel the organisation will be using for sales. Options are - 'd2d','retail','telemarketing','online','f2f'</p>\n","type":"text"},{"key":"contractor","value":"","description":"<p>'yes- If organisation is a contractor. 'no' - If organisation is not a contractor.</p>\n","type":"text"},{"key":"company_name","value":"","description":"<p>Required if contractor = yes</p>\n","type":"text"},{"key":"email","value":"","description":"<p>Required if contractor = yes</p>\n","type":"text"},{"key":"phone","value":"","type":"text"},{"key":"contact_person","value":"","description":"<p>Required if contractor = yes</p>\n","type":"text"},{"key":"postcode","value":"","description":"<p>Required if contractor = yes</p>\n","type":"text"},{"key":"housenumber","value":"","description":"<p>Required if contractor = yes</p>\n","type":"text"},{"key":"suffix","value":"","type":"text"},{"key":"streetname","value":"","description":"<p>Required if contractor = yes</p>\n","type":"text"},{"key":"city","value":"","description":"<p>Required if contractor = yes</p>\n","type":"text"},{"key":"coc","value":"","description":"<p>Chamber of commerce number of contractor = yes</p>\n","type":"text"},{"key":"vat","value":"","description":"<p>BTW number of contractor = yes</p>\n","type":"text"},{"key":"website","value":"","type":"text"},{"key":"logo[content]","value":"","description":"<p>Base64 string of the organisation logo</p>\n","type":"text"},{"key":"logo[extension]","value":"","description":"<p>Extension of the logo image. Possible values - png.gif,jpg,jpeg</p>\n","type":"text"}]},"url":"{{url}}/api/{{domain}}/{{version}}/account/organisations/{{organisation_id}}","description":"<p>This endpoint can be used to update an organisation in Salesdock. The organisation_id needs to be passed in the URL.</p>\n<p>This is available only for admin users.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","organisations","{{organisation_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f4f9448e-2288-4865-93d6-8769b9e45aa2","name":"Update organisation","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Accept-Encoding","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Test organisation\",\n    \"identifier\": \"test-organisation\",\n    \"contractor\": \"no\",\n    \"email\": \"test@salesdock.nl\",\n    \"sales_channel\": \"retail\",\n    \"cf_test\": \"Test extrafield\",\n    \"logo\": {\n        \"content\" : \"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mP8z/C/HgAGgwJ/lK3Q6wAAAABJRU5ErkJggg==\",\n        \"extension\": \"png\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/account/organisations/3187"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 03 Jun 2022 13:01:10 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=6OqHxpTWXRXdB4nsCnjIWsr8K2YFmSuGKerhX0rHPbUIViQDr4Iiixgs3a4DQKFhzV62tmkHO0uFMztLQ31t%2FNXlnEW%2BVFaEee8FkhtNyQI%2FIB4t50Dyh0zOziyrFNxx7ro%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"71589da59c293218-BOM"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"organisation_id\": 3187\n    },\n    \"message\": \"Organisatie succesvol geupdatet\"\n}"}],"_postman_id":"9267efe8-1323-4df8-93fd-f77e2e438897"},{"name":"Delete organisation","id":"411ec10b-657e-4e6c-916c-adc6dba4d0f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/organisations/{{organisation_id}}","description":"<p>This endpoint can be used to delete an organisation. An organisation can only be deleted if it does not have any users. The organisation_id needs to be passed in the URL.</p>\n<p>This endpoint is available only for admin users.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","organisations","{{organisation_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"90384542-73e3-4342-b24b-de7dffbad9d5","name":"Delete organisation","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/organisations/3186"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 03 Jun 2022 12:52:35 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=bSyR5lxmY354f62zXk6DDiZlLTnpU5x0CeJo3ZfGzH9C%2F5sn879Sw9HT9gsvttxcBTkcWoeoLwWDxytlZVeh94PLSyKjrzDdqsLN3r2eseYSLd93xDObgllRQbJZ62j5rJg%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"71589112ddd084d7-BOM"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"organisation_id\": 3186\n    },\n    \"message\": \"Organisatie succesvol verwijderd\"\n}"}],"_postman_id":"411ec10b-657e-4e6c-916c-adc6dba4d0f5"},{"name":"Get organisation products","id":"9ad54d60-646f-4579-a910-1d43fea2fea8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/organisations/{{organisation_id}}/products","description":"<p>This endpoints retrieves the list of product ids that are accessible to user's of an organisation. Replace organisation_id in the URL with ID of the organisation.</p>\n<p>This endpoint is only available in account scope.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","organisations","{{organisation_id}}","products"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"7cab71dc-ba7f-405d-99ad-2f9554195c53","name":"Get organisation products","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/organisations/{{organisation_id}}/products"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 17 Jul 2023 11:29:21 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"120"},{"key":"X-RateLimit-Remaining","value":"119"},{"key":"x-robots-tag","value":"none"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Cross-Origin-Embedder-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Opener-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=bI1VkJywohmsWEj41KGBM7Rzhgir2CtBXAxtLLZwUnEGGW8cXm%2BPTbTXJ%2BVVP3VuAV5eBQbi2b9rXcg10LCm%2FG1TpelBCL%2B%2F6vqy4bEoVzXl2futCf85vDv12FPYkYIIBuY%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7e82258acb4eb91e-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"products\": [\n            424,\n            425,\n            426,\n            428,\n            429,\n            430,\n            431,\n            432,\n            433,\n            434,\n            435,\n            436,\n            440,\n            446,\n            447,\n            449,\n            450,\n            451,\n            687,\n            688,\n            689,\n            690,\n            691,\n            692,\n            717,\n            776,\n            777,\n            792,\n            881,\n            882,\n            883,\n            884,\n            1357,\n            1358,\n            1359,\n            1360,\n            3313,\n            3316,\n            3317,\n            3330,\n            3465,\n            3466,\n            3467,\n            3522,\n            3523,\n            3608,\n            3609,\n            3610,\n            3611,\n            3612,\n            3613,\n            3614,\n            3789,\n            3790,\n            3791,\n            4231,\n            4232,\n            4233,\n            4811,\n            4892,\n            5377,\n            5378,\n            5379,\n            5380,\n            5381,\n            5382,\n            5383,\n            5384,\n            5385,\n            5663,\n            5664,\n            5818,\n            5870,\n            5871,\n            6798,\n            10603,\n            10604,\n            10705,\n            11444,\n            11445,\n            11462,\n            12175,\n            13269,\n            17699,\n            18176,\n            18822,\n            19892,\n            20374,\n            21065,\n            21066,\n            21067,\n            21068,\n            21071,\n            21072,\n            21073,\n            21250,\n            21251,\n            21252,\n            21253,\n            21254,\n            21255,\n            21256,\n            21257,\n            21258,\n            21259,\n            21341,\n            21650,\n            21653,\n            21676,\n            21878,\n            21926,\n            22266,\n            22267,\n            22268,\n            22269,\n            24314,\n            24315,\n            24316,\n            24317,\n            24797,\n            24798,\n            24799,\n            24912,\n            24913,\n            25461,\n            25462,\n            25463,\n            25551,\n            25562,\n            28398,\n            31256,\n            31257,\n            31258,\n            31260,\n            31261,\n            31262,\n            31263,\n            31264,\n            34747,\n            34748,\n            35974,\n            35975,\n            39300,\n            39302,\n            39417,\n            40192,\n            40797,\n            40960,\n            43151,\n            43152,\n            49786,\n            49789,\n            49800,\n            49829,\n            56079,\n            56089,\n            56509,\n            56527,\n            56528,\n            56529,\n            56530,\n            56531,\n            56532,\n            56534,\n            61337,\n            61339,\n            61989,\n            66540,\n            67405,\n            67406,\n            70030,\n            70031,\n            70039,\n            70042,\n            70140,\n            70141,\n            70142\n        ]\n    },\n    \"message\": \"Products connected to organisation returned successfully\"\n}"}],"_postman_id":"9ad54d60-646f-4579-a910-1d43fea2fea8"}],"id":"38910a2f-e6ee-4264-93c7-8908360e2bc2","_postman_id":"38910a2f-e6ee-4264-93c7-8908360e2bc2","description":""},{"name":"Get users","id":"4a38305d-cf74-4874-9ddf-deffa7ca1bd4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/users","description":"<p>API endpoint to fetch the basic details of the users along with the custom field values. This endpoint is only available for admin users.</p>\n<p>Users can be filtered on created date, updated date and deactivation date using the params given below.</p>\n<p>To get more comprehensive information of a user, use the extended API endpoint by passing extended=true in the query params.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","users"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Can filter by created_date, updated_date and deactivated_date</p>\n","type":"text/plain"},"key":"period_filter_on","value":"created_date"},{"disabled":true,"description":{"content":"<p>Possible values are 'today', 'yesterday', 'this_week', 'last_week', 'last_30_days', 'this_month', 'last_month', 'custom'</p>\n","type":"text/plain"},"key":"period","value":"custom"},{"disabled":true,"description":{"content":"<p>For 'custom' period</p>\n","type":"text/plain"},"key":"period_start","value":"{{start_date}}"},{"disabled":true,"description":{"content":"<p>For 'custom' period</p>\n","type":"text/plain"},"key":"period_end","value":"{{end_date}}"}],"variable":[]}},"response":[{"id":"8e581706-fff4-4bc2-81f0-c8ea71261ea9","name":"Get users","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 17 Mar 2021 09:06:36 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' https://bam.eu01.nr-data.net https://www.google-analytics.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self'; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"08e108e8a2000052a495a89000000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"group\":\"cf-nel\",\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report?s=mZkUHdhVgn2qgePNsIvi%2FiwOgQ1CKn5YP0dCXbhrgGzJ86VVsZSyHcQ6RdpXm6MBE6zHS1rdbkMtVHEGyy3CGI9gtaJGumXrPy4fZ2cL%2BuEV\"}],\"max_age\":604800}"},{"key":"NEL","value":"{\"max_age\":604800,\"report_to\":\"cf-nel\"}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"631510eddc8e52a4-CCU"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"current_page\": 1,\n        \"first_page_url\": \"https://app.salesdock.nl/api/testomgeving/v1/account/users?page=1\",\n        \"from\": 1,\n        \"last_page\": 1,\n        \"last_page_url\": \"https://app.salesdock.nl/api/testomgeving/v1/account/users?page=1\",\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://app.salesdock.nl/api/testomgeving/v1/account/users?page=1\",\n                \"label\": 1,\n                \"active\": true\n            }\n        ],\n        \"path\": \"https://app.salesdock.nl/api/testomgeving/v1/account/users\",\n        \"per_page\": 10,\n        \"prev_page_url\": null,\n        \"to\": 10,\n        \"total\": 2,\n        \"data\": [\n            {\n                \"id\": 1,\n                \"firstname\": \"John\",\n                \"lastname\": \"Dow\",\n                \"email\": \"john@test.nl\",\n                \"role\": \"admin\",\n                \"active\": 1,\n                \"organisation\": \"Default\",\n                \"organisation_id\": 1,\n                \"organisation_identifier\": \"default\",\n                \"extrafields\": {\n                    \"Personeelsnummer\": \"\",\n                    \"Test\": \"\",\n                    \"Type medewerker\": \"\"\n                },\n                \"business\": null\n            },\n            {\n                \"id\": 3,\n                \"firstname\": \"Jane\",\n                \"lastname\": \"Doe\",\n                \"email\": null,\n                \"role\": \"agent\",\n                \"active\": 1,\n                \"organisation\": \"Default\",\n                \"organisation_id\": 1,\n                \"organisation_identifier\": \"default\",\n                \"extrafields\": {\n                    \"Personeelsnummer\": \"1234\",\n                    \"Test\": \"\",\n                    \"Type medewerker\": \"\"\n                },\n                \"business\": {\n                    \"name\": \"Test Co.\",\n                    \"email\": \"test@test.nl\",\n                    \"contact_person\": \"Jane Doe\",\n                    \"postcode\": \"7511PG\",\n                    \"housenumber\": \"9\",\n                    \"housenumber_suffix\": null,\n                    \"streetname\": \"Arthurgaarde\",\n                    \"city\": \"Apeldoorn\",\n                    \"coc\": null,\n                    \"vat\": null,\n                    \"phone_number\": \"06-1203156\"\n                }\n            }\n        ]\n    },\n    \"message\": \"Users retrieved successfully\"\n}"},{"id":"70d4b592-f5fb-4583-b4e7-6de659a1bfc2","name":"Get users - extended","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"{{url}}/api/{{domain}}/{{version}}/account/users?extended=true","host":["{{url}}"],"path":["api","{{domain}}","{{version}}","account","users"],"query":[{"key":"period_filter_on","value":"created_date","description":"Can filter by created_date, updated_date and deactivated_date","disabled":true},{"key":"period","value":"custom","description":"Possible values are 'today', 'yesterday', 'this_week', 'last_week', 'last_30_days', 'this_month', 'last_month', 'custom'","disabled":true},{"key":"period_start","value":"{{start_date}}","description":"For 'custom' period","disabled":true},{"key":"period_end","value":"{{end_date}}","description":"For 'custom' period","disabled":true},{"key":"extended","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 11 Jul 2023 13:28:33 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"120"},{"key":"X-RateLimit-Remaining","value":"119"},{"key":"x-robots-tag","value":"none"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Cross-Origin-Embedder-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Opener-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=FRme89dpCUaYgEVAqomzIutCkQ8AKavxzRiU%2F63xctkVIrue71hOYKNhTpxAnCubdO4akXl2IgdYp3CvSdOgkfJDH1YDjE%2BQBafiCBDrJNateOhdZBmtKlwiqG4QKgJqTpI%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7e5163e4ab680a58-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"current_page\": 1,\n        \"first_page_url\": \"https://app.salesdock.nl/api/testomgeving/v1/account/users?period=&period_filter_on=updated_date&from=&till=&page=1\",\n        \"from\": 1,\n        \"last_page\": 1,\n        \"last_page_url\": \"https://app.salesdock.nl/api/testomgeving/v1/account/users?period=&period_filter_on=updated_date&from=&till=&page=1\",\n        \"path\": \"https://app.salesdock.nl/api/testomgeving/v1/account/users\",\n        \"per_page\": 20,\n        \"prev_page_url\": null,\n        \"to\": 20,\n        \"total\": 2,\n        \"data\": [\n            {\n                \"id\": 1,\n                \"firstname\": \"John\",\n                \"lastname\": \"Doe\",\n                \"email\": \"john@salesdock.nl\",\n                \"role\": \"owner\",\n                \"active\": true,\n                \"organisation\": {\n                    \"id\": 1,\n                    \"label\": \"Default\",\n                    \"identifier\": \"default\"\n                },\n                \"team\": {\n                    \"id\": 14,\n                    \"label\": \"Team A\",\n                    \"identifier\": \"teama\"\n                },\n                \"extrafields\": {\n                    \"personeelsnummer\": \"\",\n                    \"test\": \"\",\n                    \"type-medewerker\": \"\",\n                    \"user-date-field\": \"\"\n                },\n                \"business\": null\n            },\n            {\n                \"id\": 3,\n                \"firstname\": \"Jane\",\n                \"lastname\": \"Doe\",\n                \"email\": \"jane@salesdock.nl\",\n                \"role\": \"admin\",\n                \"active\": true,\n                \"organisation\": {\n                    \"id\": 1,\n                    \"label\": \"Default\",\n                    \"identifier\": \"default\"\n                },\n                \"team\": null,\n                \"extrafields\": null,\n                \"business\": {\n                    \"name\": \"@Value2Sales\",\n                    \"email\": \"john@value2sales.nl\",\n                    \"phone_number\": \"06-XXXX\",\n                    \"contact_person\": \"John Doe\",\n                    \"coc\": \"7019XXXX\",\n                    \"vat\": \"B1234XXXXX\",\n                    \"address\": {\n                        \"postcode\": \"7511PG\",\n                        \"housenumber\": \"102\",\n                        \"suffix\": null,\n                        \"streetname\": \"Test\",\n                        \"city\": \"Test\"\n                    }\n                }\n            }\n        ]\n    },\n    \"message\": \"Gebruikers succesvol opgehaald\"\n}"}],"_postman_id":"4a38305d-cf74-4874-9ddf-deffa7ca1bd4"},{"name":"Invite user","id":"24f202aa-425a-4f5d-97e7-809d5fea042b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"email","value":"","description":"<p>Email of the user. This will be the username of the user on Salesdock. Existing users of Salesdock with this username can also be invited.</p>\n","type":"text"},{"key":"role","value":"","description":"<p>Role of the user. Possible values are - agent, teamleader, organisationadmin, admin</p>\n","type":"text"},{"key":"organisation_id","value":"","description":"<p>The organisation_id of the user.</p>\n","type":"text"},{"key":"team_id","value":"","description":"<p>The team_id of the user. This is optional and only required if user is a teamleader.</p>\n","type":"text"}]},"url":"{{url}}/api/{{domain}}/{{version}}/account/invitation","description":"<p>This endpoint can be used to trigger invitation emails to be sent to users. The email used in the request will receive an email from Salesdock, in which there will be a link using which they can register and login to use the software.</p>\n<p>The endpoint is available only for admin users.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","invitation"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"87ba4f92-92ee-482c-8815-1c5a2c95a17d","name":"Invite user","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Accept-Encoding","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"email\": \"test@salesdock.nl\",\n    \"role\": \"agent\",\n    \"organisation_id\": 1\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/account/invitation"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jun 2022 10:12:53 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=0NQJgWzkoEuuuP%2BFzM%2FoKq%2F4PkdyRx8ix%2BWZK9Rhfx2RwnndoK7ln%2B%2BrWnXxXlBxnsA25MP%2Bdpn6iQ3erhH2CzI8suGA%2B80TZ%2FLzPM8%2FqKoW96pYeQrvt%2FL4kHG4OyMD0yc%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7180da031f3a6ee6-BOM"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [],\n    \"message\": \"Uitnodiging verzonden naar de gebruiker\"\n}"}],"_postman_id":"24f202aa-425a-4f5d-97e7-809d5fea042b"}],"id":"501fe582-0e85-479a-87c7-974e97f91e91","_postman_id":"501fe582-0e85-479a-87c7-974e97f91e91","description":""},{"name":"Commissions API","item":[{"name":"Get all outgoing commissions","id":"b217c7c8-fcd7-4cda-9cb3-f6cd47ab25a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/commissions/outgoing","description":"<p>This endpoint returns all outgoing commissions in the account. This endpoint is only available for admin users.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","commissions","outgoing"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0df8d300-7524-4308-ba90-3e03dada184d","name":"Get all outgoing commissions","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"{{url}}/api/{{domain}}/{{version}}/account/commissions/outgoing","host":["{{url}}"],"path":["api","{{domain}}","{{version}}","account","commissions","outgoing"],"query":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text","disabled":true},{"key":"Accept","value":"application/json","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 26 Mar 2021 17:16:29 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' https://bam.eu01.nr-data.net https://www.google-analytics.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"091122a8200000088fedb0f000000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"max_age\":604800,\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report?s=YOsT0XD0kQL9TFuZETTrch%2BjWJVrfrzjawT%2BEpOI5D4QogM1vXs7%2Bt8T%2BnSHnMEJGCBAovq0%2FS%2FyX9ZnSntDm55OrzTGp2TUDQAlazc7xNdb\"}],\"group\":\"cf-nel\"}"},{"key":"NEL","value":"{\"max_age\":604800,\"report_to\":\"cf-nel\"}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"636206ecf981088f-CDG"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"items\": [\n            {\n                \"sale_id\": null,\n                \"partner_type\": \"user\",\n                \"product_id\": null,\n                \"commission_plan\": null,\n                \"description\": \"Test\",\n                \"payout_percentage\": \"\",\n                \"currency\": \"EUR\",\n                \"amount\": \"20\",\n                \"recurring_type\": null,\n                \"recurring_count\": null,\n                \"run_count\": null\n            },\n            {\n                \"sale_id\": null,\n                \"partner_type\": \"organisation\",\n                \"product_id\": null,\n                \"commission_plan\": null,\n                \"description\": \"test\",\n                \"payout_percentage\": \"\",\n                \"currency\": \"EUR\",\n                \"amount\": \"120\",\n                \"recurring_type\": null,\n                \"recurring_count\": null,\n                \"run_count\": null\n            },\n            {\n                \"sale_id\": null,\n                \"partner_type\": \"organisation\",\n                \"product_id\": null,\n                \"commission_plan\": null,\n                \"description\": \"Hier een omschrijving\",\n                \"payout_percentage\": \"\",\n                \"currency\": \"EUR\",\n                \"amount\": \"240\",\n                \"recurring_type\": null,\n                \"recurring_count\": null,\n                \"run_count\": null\n            },\n            {\n                \"sale_id\": 1292222,\n                \"partner_type\": \"organisation\",\n                \"product_id\": 688,\n                \"commission_plan\": \"Test5\",\n                \"description\": \"Energie Sale\",\n                \"payout_percentage\": \"100\",\n                \"currency\": \"EUR\",\n                \"amount\": \"100\",\n                \"recurring_type\": null,\n                \"recurring_count\": null,\n                \"run_count\": null\n            },\n            {\n                \"sale_id\": 1021517,\n                \"partner_type\": \"organisation\",\n                \"product_id\": 688,\n                \"commission_plan\": \"Test5\",\n                \"description\": \"Energie Sale\",\n                \"payout_percentage\": \"100\",\n                \"currency\": \"EUR\",\n                \"amount\": \"100\",\n                \"recurring_type\": null,\n                \"recurring_count\": null,\n                \"run_count\": null\n            },\n            {\n                \"sale_id\": 995211,\n                \"partner_type\": \"organisation\",\n                \"product_id\": 688,\n                \"commission_plan\": \"Test5\",\n                \"description\": \"Energie Sale\",\n                \"payout_percentage\": \"100\",\n                \"currency\": \"EUR\",\n                \"amount\": \"100\",\n                \"recurring_type\": null,\n                \"recurring_count\": null,\n                \"run_count\": null\n            },\n            {\n                \"sale_id\": 985192,\n                \"partner_type\": \"organisation\",\n                \"product_id\": 688,\n                \"commission_plan\": \"Test5\",\n                \"description\": \"Energie Sale\",\n                \"payout_percentage\": \"100\",\n                \"currency\": \"EUR\",\n                \"amount\": \"100\",\n                \"recurring_type\": null,\n                \"recurring_count\": null,\n                \"run_count\": null\n            },\n            {\n                \"sale_id\": 985180,\n                \"partner_type\": \"organisation\",\n                \"product_id\": 688,\n                \"commission_plan\": \"Test5\",\n                \"description\": \"Energie Sale\",\n                \"payout_percentage\": \"100\",\n                \"currency\": \"EUR\",\n                \"amount\": \"100\",\n                \"recurring_type\": null,\n                \"recurring_count\": null,\n                \"run_count\": null\n            },\n            {\n                \"sale_id\": 983752,\n                \"partner_type\": \"account\",\n                \"product_id\": 688,\n                \"commission_plan\": \"Test5\",\n                \"description\": \"Energie Sale\",\n                \"payout_percentage\": \"100\",\n                \"currency\": \"EUR\",\n                \"amount\": \"100\",\n                \"recurring_type\": null,\n                \"recurring_count\": null,\n                \"run_count\": null\n            },\n            {\n                \"sale_id\": 979908,\n                \"partner_type\": \"user\",\n                \"product_id\": 687,\n                \"commission_plan\": \"First Plan\",\n                \"description\": \"Energie Sale\",\n                \"payout_percentage\": \"100\",\n                \"currency\": \"EUR\",\n                \"amount\": \"5\",\n                \"recurring_type\": null,\n                \"recurring_count\": null,\n                \"run_count\": null\n            }\n        ],\n        \"totals\": {\n            \"amounts\": {\n                \"total\": 985,\n                \"pending\": 600,\n                \"final\": 385\n            },\n            \"counts\": {\n                \"total\": 10,\n                \"pending\": 6,\n                \"final\": 4\n            }\n        }\n    },\n    \"message\": \"Commissies succesvol opgehaald\"\n}"}],"_postman_id":"b217c7c8-fcd7-4cda-9cb3-f6cd47ab25a0"},{"name":"Get outgoing commissions of a sale","id":"511ea764-64d0-48bb-8e68-4268985774bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/commissions/outgoing/{{sale_id}}","description":"<p>This endpoint returns all outgoing commissions of a sale. Replace {{sale_id}} in the URL with the ID of the sale. This endpoint is only available for admin users.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","commissions","outgoing","{{sale_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c6d34b8c-30da-4295-b237-eac83671a5fd","name":"Get outgoing commissions of a sale","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"{{url}}/api/{{domain}}/{{version}}/account/commissions/outgoing/{{sale_id}}","host":["{{url}}"],"path":["api","{{domain}}","{{version}}","account","commissions","outgoing","{{sale_id}}"],"query":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text","disabled":true},{"key":"Accept","value":"application/json","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 26 Mar 2021 17:44:46 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' https://bam.eu01.nr-data.net https://www.google-analytics.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"09113c8d2e0000dc132593e000000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"group\":\"cf-nel\",\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report?s=iRhUs7h6JH1qjvqs%2B%2Bh3NCj4Hjw3z7%2B%2FLTqNijwy7dEcZnFsH%2Fk1iwOVhstsiGFxWuyEUdXUHkaVkwJJJqiRNxELZgA2Fg9%2FWgq7NpeU9Vas\"}],\"max_age\":604800}"},{"key":"NEL","value":"{\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"6362305b7aa7dc13-LHR"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"items\": [],\n        \"totals\": {\n            \"amounts\": {\n                \"total\": 0,\n                \"pending\": 600,\n                \"final\": 385\n            },\n            \"counts\": {\n                \"total\": 0,\n                \"pending\": 6,\n                \"final\": 4\n            }\n        }\n    },\n    \"message\": \"Commissies succesvol opgehaald\"\n}"}],"_postman_id":"511ea764-64d0-48bb-8e68-4268985774bb"},{"name":"Get all incoming commissions","id":"110c3c89-d838-4ec0-9ba6-ec11dcc3e0e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/commissions/incoming","description":"<p>This endpoint returns all incoming commissions in the account. This endpoint is only available for admin users.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","commissions","incoming"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"b465a71f-0340-4904-8829-016e0b1912c8","name":"Get all incoming commissions","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"{{url}}/api/{{domain}}/{{version}}/account/commissions/incoming","host":["{{url}}"],"path":["api","{{domain}}","{{version}}","account","commissions","incoming"],"query":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text","disabled":true},{"key":"Accept","value":"application/json","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 26 Mar 2021 17:20:51 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' https://bam.eu01.nr-data.net https://www.google-analytics.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"091126a4e60000088f800d1000000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"max_age\":604800,\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report?s=LvrCASHZE%2BXFs7VSDQa02rx9QyMsJfg8FEjvlRo7xHVpb3yK3YJyw%2F%2Fv9TU6kvJPkFAYScFD7BlQFVTwj10onXY5Meh%2FX1Rg1mR9Pqu3oV%2B2\"}],\"group\":\"cf-nel\"}"},{"key":"NEL","value":"{\"max_age\":604800,\"report_to\":\"cf-nel\"}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"63620d4e3917088f-CDG"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"items\": [],\n        \"totals\": {\n            \"amounts\": {\n                \"total\": 0,\n                \"pending\": 0,\n                \"final\": 0\n            },\n            \"counts\": {\n                \"total\": 0,\n                \"pending\": 0,\n                \"final\": 0\n            }\n        }\n    },\n    \"message\": \"Commissies succesvol opgehaald\"\n}"}],"_postman_id":"110c3c89-d838-4ec0-9ba6-ec11dcc3e0e2"},{"name":"Get incoming commissions of a sale","id":"79ad2cfd-56d7-4210-94f5-fa7e2a8f3b60","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/commissions/incoming/{{sale_id}}","description":"<p>This endpoint returns all incoming commissions of a sale. Replace {{sale_id}} in the URL with the ID of the sale. This endpoint is only available for admin users.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","commissions","incoming","{{sale_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"fe3e8ff4-5076-43da-ab16-7430853876af","name":"Get incoming commissions of a sale","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"{{url}}/api/{{domain}}/{{version}}/account/commissions/incoming/{{sale_id}}","host":["{{url}}"],"path":["api","{{domain}}","{{version}}","account","commissions","incoming","{{sale_id}}"],"query":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text","disabled":true},{"key":"Accept","value":"application/json","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 26 Mar 2021 17:41:45 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' https://bam.eu01.nr-data.net https://www.google-analytics.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"091139c8690000dc13fd079000000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"group\":\"cf-nel\",\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report?s=%2BT5Oirp2GYo73n5ChaG5wEmEl%2BszWJ6OZqIlyjloKJeOwf%2F%2FxTFMAXcAIzH24WGHOsSCb2S10pzW8rX30Dqx36nrsjY%2BMs%2B%2FlO5yz6LIF5Sk\"}],\"max_age\":604800}"},{"key":"NEL","value":"{\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"63622bed7ec9dc13-LHR"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"items\": [],\n        \"totals\": {\n            \"amounts\": {\n                \"total\": 0,\n                \"pending\": 0,\n                \"final\": 0\n            },\n            \"counts\": {\n                \"total\": 0,\n                \"pending\": 0,\n                \"final\": 0\n            }\n        }\n    },\n    \"message\": \"Commissies succesvol opgehaald\"\n}"}],"_postman_id":"79ad2cfd-56d7-4210-94f5-fa7e2a8f3b60"}],"id":"ec51cf4d-185d-4e4c-82f8-bf07a157644d","_postman_id":"ec51cf4d-185d-4e4c-82f8-bf07a157644d","description":""},{"name":"Leads API","item":[{"name":"Townships","item":[{"name":"Get townships","id":"115caa73-47be-4640-ad48-0f1a071f4b60","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/leads/townships","description":"<p>This endpoint can be used to list the townshps. The endpoint is only available for admin users.</p>\n<p>Use the parameter active = 1,0 to list the active and inactive townships.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","leads","townships"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"acfbc049-9cea-4f40-b43a-fae17bd921ff","name":"Get townships","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/leads/townships"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 31 May 2024 05:10:45 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"150"},{"key":"X-RateLimit-Remaining","value":"149"},{"key":"x-robots-tag","value":"none"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://cdnjs.cloudflare.com https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com https://fonts.bunny.net; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://*.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io https://*.salesdock.nl; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Cross-Origin-Embedder-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Opener-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"88c475928d26668e-AMS"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"id\": 433,\n            \"identifier\": \"demo\",\n            \"label\": \"demo\",\n            \"active\": 1,\n            \"boundaries\": [\n                \"1234\",\n                \"3456\"\n            ]\n        },\n        {\n            \"id\": 10,\n            \"identifier\": \"demo-gebied\",\n            \"label\": \"Demo gebied\",\n            \"active\": 1,\n            \"boundaries\": [\n                \"1234\",\n                \"3456\"\n            ]\n        },\n        {\n            \"id\": 295,\n            \"identifier\": \"doetinchem\",\n            \"label\": \"Doetinchem\",\n            \"active\": 1,\n            \"boundaries\": [\n                \"1234\",\n                \"3456\"\n            ]\n        },\n        {\n            \"id\": 1612,\n            \"identifier\": \"test\",\n            \"label\": \"Test\",\n            \"active\": 1,\n            \"boundaries\": [\n                \"1234\",\n                \"3456\"\n            ]\n        }\n    ],\n    \"message\": \"Townships retrieved successfully\"\n}"}],"_postman_id":"115caa73-47be-4640-ad48-0f1a071f4b60"}],"id":"7bba02a0-c433-42ef-9f03-4b4dd44be0dc","_postman_id":"7bba02a0-c433-42ef-9f03-4b4dd44be0dc","description":""},{"name":"Get leads","id":"0ff93742-64b0-4e12-b38b-aad3d14ec659","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"default"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/leads?period_filter_on=&period=&period_start=&period_end=&statuses[0]=&statuses[1]=&activity=&with_team_id=","description":"<p>This endpoint helps retrieve the list of leads using different search parameters</p>\n<p>Apart from the lead basic information, the following extra information regarding a lead is also returned in this response:</p>\n<ul>\n<li><p>extrafields - The values for extra fields of the lead</p>\n</li>\n<li><p>questions - The lead questions and answers</p>\n</li>\n<li><p>labels - The labels attached to the lead</p>\n</li>\n<li><p>history - The historical changes done to the lead</p>\n</li>\n</ul>\n<p><strong>Sorting</strong></p>\n<ul>\n<li><p>The default sort order is leads.id in descending order</p>\n</li>\n<li><p>If period_filter_on, is used in the filters, then sorting is done based on the period filter in descending order</p>\n</li>\n<li><p>Override sorting, by passing sort_by in the parameters</p>\n</li>\n</ul>\n<p>The different options for sort_by are:</p>\n<ol>\n<li><p>id_desc - Recently created</p>\n</li>\n<li><p>updated_at_desc - Recently updated</p>\n</li>\n<li><p>postcode_asc - Acending order of postcodes</p>\n</li>\n<li><p>postcode_desc - Descending order of postcodes</p>\n</li>\n<li><p>city_asc - Acending order of city name</p>\n</li>\n<li><p>city_desc - Descending order of city name</p>\n</li>\n<li><p>postcode_city_asc - Acending order of city name with postcode</p>\n</li>\n<li><p>postcode_city_desc - Descending order of city name with postcode</p>\n</li>\n<li><p>planned_date_asc - Planned date ascending order</p>\n</li>\n<li><p>planned_date_desc - Recently planned</p>\n</li>\n</ol>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","leads"],"host":["{{url}}"],"query":[{"description":{"content":"<p>The date period to filter on. Possible values - created_date, updated_date, planned_date, completed_date, deleted_date</p>\n","type":"text/plain"},"key":"period_filter_on","value":""},{"description":{"content":"<p>The period to filter on. Possible values - custom, today, yesterday, this_week, last_week, last_30_days, this_month, last_month, this_year</p>\n","type":"text/plain"},"key":"period","value":""},{"description":{"content":"<p>Start date if period is custom</p>\n","type":"text/plain"},"key":"period_start","value":""},{"description":{"content":"<p>End date if period is custom</p>\n","type":"text/plain"},"key":"period_end","value":""},{"description":{"content":"<p>Status of lead. Multiple statuses can be passed</p>\n","type":"text/plain"},"key":"statuses[0]","value":""},{"key":"statuses[1]","value":""},{"description":{"content":"<p>Activity of the lead.</p>\n","type":"text/plain"},"key":"activity","value":""},{"description":{"content":"<p>If lead is assigned to a team or not. Possible values - all, yes, no</p>\n","type":"text/plain"},"key":"with_team_id","value":""}],"variable":[]}},"response":[{"id":"18dfb0bf-af7b-42ae-ab5c-f66372532489","name":"Get leads","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"default"}],"url":{"raw":"{{url}}/api/{{domain}}/{{version}}/account/leads?period_filter_on=created_date&period=custom&period_end=2022-10-01&period_start=2020-01-01&statuses[0]=new&statuses[1]=closed&activity=default&with_team_id=all&cursor=true","host":["{{url}}"],"path":["api","{{domain}}","{{version}}","account","leads"],"query":[{"key":"period_filter_on","value":"created_date","description":"The date period to filter on. Possible values - created_date, updated_date, planned_date, completed_date"},{"key":"period","value":"custom","description":"The period to filter on. Possible values - custom, today, yesterday, this_week, last_week, last_30_days, this_month, last_month, this_year"},{"key":"period_end","value":"2022-10-01","description":"End date if period is custom"},{"key":"statuses[0]","value":"","description":"Status of lead. Multiple statuses can be passed","disabled":true},{"key":"statuses[1]","value":"","disabled":true},{"key":"activity","value":"","description":"Activity of the lead.","disabled":true},{"key":"with_team_id","value":"","description":"If lead is assigned to a team or not. Possible values - all, yes, no","disabled":true},{"key":"period_start","value":"2020-01-01"},{"key":"statuses[0]","value":"new"},{"key":"statuses[1]","value":"closed"},{"key":"activity","value":"default"},{"key":"with_team_id","value":"all"},{"key":"cursor","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 10 Oct 2022 06:36:29 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=4vbGfFqFGjwYeF%2FvXtnH9J5ZWoFtPtLnLk2ei1gJbQF0zZqt%2BpoAX1yi5fcBW1XtqoxlNWH85s6UVeazgn%2FpMTzWPkjNnLBjdx%2BPDxDI96HcXg3QQ8F1b%2FL6mz%2FQko5F0jY%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"757d578cca6d85cb-BOM"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"path\": \"https://app.salesdock.nl/api/testomgeving/v1/account/leads\",\n        \"per_page\": 20,\n        \"next_cursor\": \"eyJsZWFkcy5pZCI6MTYxMDg1MjYsIl9wb2ludHNUb05leHRJdGVtcyI6dHJ1ZX0\",\n        \"next_page_url\": \"https://app.salesdock.nl/api/testomgeving/v1/account/leads?cursor=eyJsZWFkcy5pZCI6MTYxMDg1MjYsIl9wb2ludHNUb05leHRJdGVtcyI6dHJ1ZX0\",\n        \"prev_cursor\": null,\n        \"prev_page_url\": null,\n        \"data\": [\n            {\n                \"id\": 11021185,\n                \"business\": \"0\",\n                \"gender\": null,\n                \"firstname\": \"Testing\",\n                \"lastname\": \"\",\n                \"postcode\": null,\n                \"housenumber\": \"\",\n                \"suffix\": \"\",\n                \"streetname\": \"\",\n                \"city\": \"\",\n                \"email\": null,\n                \"company_name\": null,\n                \"activity\": \"default\",\n                \"locked\": \"0\",\n                \"status\": \"gepland\",\n                \"created_by\": 2916,\n                \"planned_user_id\": 2916,\n                \"planned_date\": \"2021-12-21 00:00:00\",\n                \"planned_by\": 2916,\n                \"planned_at\": \"2021-12-21 10:53:03\",\n                \"planned_from\": \"2021-12-21 12:30:00\",\n                \"planned_to\": \"2021-12-21 13:00:00\",\n                \"completed_at\": null,\n                \"created_at\": \"2021-12-21 10:53:03\",\n                \"updated_at\": \"2021-12-21 10:53:03\",\n                \"planned_to_username\": \"test@salesdock.nl\",\n                \"completed_by_username\": null,\n                \"relative_distance\": 0,\n                \"filter_status\": \"new\",\n                \"name\": \"Testing \",\n                \"address\": \"\",\n                \"organisation_id\": 1,\n                \"township_id\": 5,\n                \"latitude\": 3,\n                \"longitude\": 4,\n                \"extrafields\": {\n                    \"lead-voor\": {\n                        \"label\": \"Lead voor\",\n                        \"type\": \"list\",\n                        \"value\": [\n                            \"Energie\",\n                            \"Koffie\"\n                        ]\n                    },\n                    \"wat-heeft-de-klant-nu\": {\n                        \"label\": \"Wat heeft de klant nu?\",\n                        \"type\": \"text\",\n                        \"value\": \"\"\n                    },\n                    \"wat-heeft-nu\": {\n                        \"label\": \"Wat heeft nu?\",\n                        \"type\": \"text\",\n                        \"value\": \"\"\n                    },\n                    \"unitid\": {\n                        \"label\": \"UnitID\",\n                        \"type\": \"text\",\n                        \"value\": \"Test unit\"\n                    },\n                    \"type-lead\": {\n                        \"label\": \"Type lead\",\n                        \"type\": \"text\",\n                        \"value\": \"Stroom\"\n                    },\n                    \"klant\": {\n                        \"label\": \"Klant?\",\n                        \"type\": \"text\",\n                        \"value\": \"\"\n                    },\n                    \"is-luminus-klant\": {\n                        \"label\": \"Is Luminus klant\",\n                        \"type\": \"text\",\n                        \"value\": \"\"\n                    }\n                },\n                \"questions\": {\n                    \"gewenste-contactdatum\": {\n                        \"label\": \"Gewenste contactdatum\",\n                        \"type\": \"text\",\n                        \"value\": \"27-01-2024\"\n                    },\n                    \"reden-geen-sale\": {\n                        \"label\": \"Reden geen sale\",\n                        \"type\": \"text\",\n                        \"value\": \"Te duur\"\n                    },\n                    \"resultaat\": {\n                        \"label\": \"Resultaat\",\n                        \"type\": \"text\",\n                        \"value\": \"Presentatie gegeven\"\n                    },\n                    \"traffic-builder-question\": {\n                        \"label\": \"Traffic builder question\",\n                        \"type\": \"text\",\n                        \"value\": \"test question answer\"\n                    },\n                    \"type-lead\": {\n                        \"label\": \"Type lead\",\n                        \"type\": \"text\",\n                        \"value\": \"Zonnepanelen\"\n                    }\n                },\n                \"labels\": [\n                    {\n                        \"id\": 2,\n                        \"label\": \"cold lead\",\n                        \"identifier\": \"cold-lead\"\n                    }\n                ],\n                \"history\": [\n                    {\n                        \"type\": \"planned\",\n                        \"modified_at\": \"2024-05-16 08:43:31\",\n                        \"previous_status\": null,\n                        \"new_status\": null,\n                        \"user\": {\n                            \"id\": 2916,\n                            \"name\": \"John Doe\"\n                        },\n                        \"type_data\": {\n                            \"planned_to_user_id\": 1,\n                            \"planned_to_user\": \"Jane\",\n                            \"planned_date\": \"2024-05-16\",\n                            \"planned_from\": \"2024-05-16 14:30:00\",\n                            \"planned_to\": \"2024-05-16 17:00:00\"\n                        }\n                    },\n                    {\n                        \"type\": \"changeddata\",\n                        \"modified_at\": \"2024-05-17 05:47:54\",\n                        \"previous_status\": null,\n                        \"new_status\": null,\n                        \"user\": {\n                            \"id\": 1,\n                            \"name\": \"Jane\"\n                        },\n                        \"type_data\": {\n                            \"activities\": [\n                                \"gender added male\"\n                            ]\n                        }\n                    },\n                    {\n                        \"type\": \"changeddata\",\n                        \"modified_at\": \"2024-05-30 12:44:25\",\n                        \"previous_status\": null,\n                        \"new_status\": null,\n                        \"user\": {\n                            \"id\": 2916,\n                            \"name\": \"John Doe\"\n                        },\n                        \"type_data\": {\n                            \"activities\": [\n                                \"township_id added 10\",\n                                \"firstname added\",\n                                \"lastname added\",\n                                \"housenumber added\",\n                                \"suffix added\",\n                                \"streetname added\",\n                                \"city added\",\n                                \"email added\"\n                            ]\n                        }\n                    }\n                ]\n            },\n            {\n                \"id\": 209889,\n                \"business\": \"0\",\n                \"gender\": \"male\",\n                \"firstname\": \"John\",\n                \"lastname\": \"Test\",\n                \"postcode\": null,\n                \"housenumber\": \"\",\n                \"suffix\": \"\",\n                \"streetname\": \"\",\n                \"city\": \"\",\n                \"email\": null,\n                \"company_name\": null,\n                \"activity\": \"default\",\n                \"locked\": \"0\",\n                \"status\": \"deur-geopend\",\n                \"created_by\": 2916,\n                \"planned_user_id\": 2916,\n                \"planned_date\": null,\n                \"planned_by\": 2916,\n                \"planned_at\": \"2020-06-24 18:37:00\",\n                \"planned_from\": null,\n                \"planned_to\": null,\n                \"completed_at\": \"2020-06-24 18:37:47\",\n                \"created_at\": \"2020-06-24 18:37:00\",\n                \"updated_at\": \"2020-06-24 18:37:47\",\n                \"planned_to_username\": \"test@salesdock.nl\",\n                \"completed_by_username\": \"test@salesdock.nl\",\n                \"relative_distance\": 0,\n                \"filter_status\": \"completed\",\n                \"name\": \"Dhr. John Test\",\n                \"address\": \"\",\n                \"organisation_id\": 1,\n                \"township_id\": 5,\n                \"latitude\": 3,\n                \"longitude\": 4,\n                \"extrafields\": [],\n                \"questions\": [],\n                \"labels\": [\n                    {\n                        \"id\": 2,\n                        \"label\": \"cold lead\",\n                        \"identifier\": \"cold-lead\"\n                    }\n                ],\n                \"history\": [\n                    {\n                        \"type\": \"planned\",\n                        \"modified_at\": \"2024-05-16 08:43:31\",\n                        \"previous_status\": null,\n                        \"new_status\": null,\n                        \"user\": {\n                            \"id\": 2916,\n                            \"name\": \"John Doe\"\n                        },\n                        \"type_data\": {\n                            \"planned_to_user_id\": 1,\n                            \"planned_to_user\": \"Jane\",\n                            \"planned_date\": \"2024-05-16\",\n                            \"planned_from\": \"2024-05-16 14:30:00\",\n                            \"planned_to\": \"2024-05-16 17:00:00\"\n                        }\n                    },\n                    {\n                        \"type\": \"changeddata\",\n                        \"modified_at\": \"2024-05-17 05:47:54\",\n                        \"previous_status\": null,\n                        \"new_status\": null,\n                        \"user\": {\n                            \"id\": 1,\n                            \"name\": \"Jane\"\n                        },\n                        \"type_data\": {\n                            \"activities\": [\n                                \"gender added male\"\n                            ]\n                        }\n                    },\n                    {\n                        \"type\": \"changeddata\",\n                        \"modified_at\": \"2024-05-30 12:44:25\",\n                        \"previous_status\": null,\n                        \"new_status\": null,\n                        \"user\": {\n                            \"id\": 2916,\n                            \"name\": \"John Doe\"\n                        },\n                        \"type_data\": {\n                            \"activities\": [\n                                \"township_id added 10\",\n                                \"firstname added\",\n                                \"lastname added\",\n                                \"housenumber added\",\n                                \"suffix added\",\n                                \"streetname added\",\n                                \"city added\",\n                                \"email added\"\n                            ]\n                        }\n                    }\n                ]\n            }\n        ]\n    },\n    \"message\": \"Leads succesvol opgehaald\"\n}"}],"_postman_id":"0ff93742-64b0-4e12-b38b-aad3d14ec659"},{"name":"Get lead","id":"4016b72a-bc66-417f-a063-ab5ab70a8464","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/leads/{{lead_id}}","description":"<p>This endpoint fetches the details of a lead using the lead id.</p>\n<p>In the request URL, replace {{lead_id}} with the id of the lead.</p>\n<p>Apart from the lead basic information, the following extra information regarding a lead is also returned in this response:</p>\n<ul>\n<li><p>extrafields - The values for extra fields of the lead</p>\n</li>\n<li><p>questions - The lead questions and answers</p>\n</li>\n<li><p>labels - The labels attached to the lead</p>\n</li>\n<li><p>history - The historical changes done in the lead</p>\n</li>\n<li><p>form - If a lead was created using a lead form, then the lead form elements and values will be in this object.</p>\n</li>\n</ul>\n<p>Each of the above objects will be in the following format</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"identifier\": {\n        \"label\": \"\",\n        \"type\": \"\",\n        \"value\": \"\"\n    }\n}\n\n</code></pre>\n<p>Where:</p>\n<ul>\n<li><p>identifier =&gt; Is the identifier of the extrafield, lead question or lead form element</p>\n</li>\n<li><p>label =&gt; Is the label of the extrafield, lead question or lead form element</p>\n</li>\n<li><p>type =&gt; Is the type of the extrafield, lead question or lead form element. It can be - text, list, signature, file</p>\n</li>\n<li><p>value =&gt; Is the answer that is provided in the lead for the element</p>\n</li>\n</ul>\n<p>Inside form, if type is of file, then an API call will needed to be sent to fetch the file.</p>\n<p>For file and list types, the value will be an array of answers</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","leads","{{lead_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"a1822ed6-8630-4203-b6c6-bfd12bbfd732","name":"Get lead","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/leads/16812238"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 09 Nov 2022 05:32:40 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=1WlOvwiy9cU31b6WSAsEBtw87nZ2KoP2r%2F%2BugWDzdpvZ0n9ozyLOl2ZgNWja45mXUnfJaKYfwcsKzAZ7daGr9Z4ZAwZ%2BhLHmbfgAfm1psFTPPOizhH7dvoSwhzUY%2F6pwnFA%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"76742b4f0fdfb7c4-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"id\": 16812238,\n        \"origin\": \"lead-form\",\n        \"business\": \"0\",\n        \"gender\": \"male\",\n        \"firstname\": \"John\",\n        \"lastname\": \"Doe\",\n        \"birthdate\": null,\n        \"email\": \"\",\n        \"phone\": null,\n        \"company_name\": null,\n        \"contact_person\": null,\n        \"coc\": null,\n        \"vat\": null,\n        \"postcode\": null,\n        \"housenumber\": \"\",\n        \"suffix\": \"\",\n        \"streetname\": \"\",\n        \"city\": \"\",\n        \"country\": \"NL\",\n        \"activity\": null,\n        \"organisation_id\": 1,\n        \"township_id\": 5,\n        \"latitude\": 3,\n        \"longitude\": 4,\n        \"imported_file_name\": \"Lead-import.csv\",\n        \"locked\": \"0\",\n        \"status\": null,\n        \"created_by\": 2916,\n        \"planned_user_id\": null,\n        \"planned_date\": null,\n        \"planned_by\": null,\n        \"planned_at\": null,\n        \"planned_from\": null,\n        \"planned_to\": null,\n        \"completed_at\": null,\n        \"completed_team_id\": null,\n        \"completed_by\": null,\n        \"created_at\": \"2022-11-09 06:29:15\",\n        \"updated_at\": \"2022-11-09 06:31:58\",\n        \"extrafields\": {\n            \"lead-voor\": {\n                \"label\": \"Lead voor\",\n                \"type\": \"list\",\n                \"value\": [\n                    \"Zonnepanelen\",\n                    \"Energie\"\n                ]\n            },\n            \"type-lead\": {\n                \"label\": \"Type lead\",\n                \"type\": \"text\",\n                \"value\": \"Zonnepanelen\"\n            }\n        },\n        \"questions\": {\n            \"klant\": {\n                \"label\": \"Klant?\",\n                \"type\": \"text\",\n                \"value\": \"Ja\"\n            }\n        },\n        \"labels\": [\n            {\n                \"id\": 2,\n                \"label\": \"cold lead\",\n                \"identifier\": \"cold-lead\"\n            }\n        ],\n        \"history\": [\n            {\n                \"type\": \"planned\",\n                \"modified_at\": \"2024-05-16 08:43:31\",\n                \"previous_status\": null,\n                \"new_status\": null,\n                \"user\": {\n                    \"id\": 2916,\n                    \"name\": \"John Doe\"\n                },\n                \"type_data\": {\n                    \"planned_to_user_id\": 1,\n                    \"planned_to_user\": \"John Doe\",\n                    \"planned_date\": \"2024-05-16\",\n                    \"planned_from\": \"2024-05-16 14:30:00\",\n                    \"planned_to\": \"2024-05-16 17:00:00\"\n                }\n            },\n            {\n                \"type\": \"changeddata\",\n                \"modified_at\": \"2024-05-17 05:47:54\",\n                \"previous_status\": null,\n                \"new_status\": null,\n                \"user\": {\n                    \"id\": 1,\n                    \"name\": \"Jane\"\n                },\n                \"type_data\": {\n                    \"activities\": [\n                        \"gender added male\"\n                    ]\n                }\n            },\n            {\n                \"type\": \"changeddata\",\n                \"modified_at\": \"2024-05-30 12:44:25\",\n                \"previous_status\": null,\n                \"new_status\": null,\n                \"user\": {\n                    \"id\": 2916,\n                    \"name\": \"John Doe\"\n                },\n                \"type_data\": {\n                    \"activities\": [\n                        \"township_id added 10\",\n                        \"firstname added\",\n                        \"lastname added\",\n                        \"housenumber added\",\n                        \"suffix added\",\n                        \"streetname added\",\n                        \"city added\",\n                        \"email added\"\n                    ]\n                }\n            }\n        ],\n        \"form\": {\n            \"vul-hier-je-antwoord-in-\": {\n                \"label\": \"Vul hier je antwoord in\",\n                \"type\": \"text\",\n                \"value\": \"Test\"\n            },\n            \"upload-hier-je-foto\": {\n                \"label\": \"Upload hier je foto\",\n                \"type\": \"file\",\n                \"value\": [\n                    \"https://app.salesdock.nl/api/testomgeving/v1/account/leads/16812238/form/15606/download-file/5748/0\"\n                ]\n            },\n            \"website\": {\n                \"label\": \"Website\",\n                \"type\": \"text\",\n                \"value\": \"test.nl\"\n            },\n            \"voornaam\": {\n                \"label\": \"Voornaam\",\n                \"type\": \"text\",\n                \"value\": \"John\"\n            },\n            \"achternaam\": {\n                \"label\": \"Achternaam\",\n                \"type\": \"text\",\n                \"value\": \"Doe\"\n            },\n            \"client-signature\": {\n                \"label\": \"Client signature\",\n                \"type\": \"signature\",\n                \"value\": \"data:image/png;base64,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\"\n            }\n        }\n    },\n    \"message\": \"Lead succesvol opgehaald\"\n}"}],"_postman_id":"4016b72a-bc66-417f-a063-ab5ab70a8464"},{"name":"Get lead activities","id":"c3c9af8a-e12e-455b-9653-86675ddde3c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"default"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/leads/activities","description":"<p>This endpoint returns the list of leads activities. The identifier returned in the response can be used when creating a lead via the API or via the lead form API</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","leads","activities"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f6b2761c-2733-4f3f-bcb2-32a3f1b9eb12","name":"Get lead activities","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"default"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/leads/activities"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 12 Jun 2023 07:19:55 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"120"},{"key":"X-RateLimit-Remaining","value":"118"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=sMa1JzmsDu%2BOFiVygjVWhhFS2Ise%2BCXN2EMnPS19YJQdtEdmEShb%2Biaskpw2WkWYGoPIUhDr5Qk9CSp2NwgQ58DNE7lNNPw%2Fj%2Bb7cgkaIgM36x3tT%2FPdvA66lXIUcGyz%2FZ0%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7d60540a5ac50bc8-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"id\": 687,\n            \"identifier\": \"afspraak-activiteit\",\n            \"label\": \"Afspraak activiteit\",\n            \"type\": \"appointment\"\n        },\n        {\n            \"id\": 506,\n            \"identifier\": \"appointment\",\n            \"label\": \"Appointment\",\n            \"type\": \"appointment\"\n        },\n        {\n            \"id\": 2,\n            \"identifier\": \"calling\",\n            \"label\": \"Calling\",\n            \"type\": \"calling\"\n        },\n        {\n            \"id\": 1,\n            \"identifier\": \"d2d\",\n            \"label\": \"D2D\",\n            \"type\": \"d2d\"\n        },\n        {\n            \"id\": 3,\n            \"identifier\": \"default\",\n            \"label\": \"Default\",\n            \"type\": \"default\"\n        },\n        {\n            \"id\": 466,\n            \"identifier\": \"retentie\",\n            \"label\": \"Retentie\",\n            \"type\": \"d2d\"\n        },\n        {\n            \"id\": 688,\n            \"identifier\": \"steam\",\n            \"label\": \"Steam\",\n            \"type\": \"appointment\"\n        },\n        {\n            \"id\": 460,\n            \"identifier\": \"traffic-builder\",\n            \"label\": \"Traffic builder\",\n            \"type\": \"d2d\"\n        }\n    ],\n    \"message\": \"Lead activities retrieved successfully\"\n}"}],"_postman_id":"c3c9af8a-e12e-455b-9653-86675ddde3c0"},{"name":"Get lead sources","id":"5b9387ff-ebdc-4dc6-be25-61e0601f6396","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"default"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/leads/sources","description":"<p>This endpoint returns the list of leads sources. The id returned in the response can be used when creating a lead via the API or via the lead form API</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","leads","sources"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"b2b6b90f-a1e4-4f6e-9d60-afd4d266722b","name":"Get lead sources","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"default"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/leads/sources"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 02 Jun 2023 10:02:39 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=qTj7iqOQTgyWvwaD1V8FFdOjlN%2By43VU0MZz6y2kqLISM%2BzRiCqhoMGuwWX3GKo9cRqFiKVgelcpLas0Y%2BDRpRYdq%2BiGqyRqR6Rc2Sid81V%2F9agh7F3ooit85yjj5I69op0%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7d0edcac5eeeb91e-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"id\": 6,\n            \"identifier\": \"test-campagne\",\n            \"label\": \"Test campagne\"\n        },\n        {\n            \"id\": 4,\n            \"identifier\": \"email-marketing\",\n            \"label\": \"Email marketing\"\n        },\n        {\n            \"id\": 3,\n            \"identifier\": \"linkedin-campaign\",\n            \"label\": \"LinkedIn campaign\"\n        },\n        {\n            \"id\": 1,\n            \"identifier\": \"facebook-campain-101\",\n            \"label\": \"Facebook campaign\"\n        }\n    ],\n    \"message\": \"Lead sources retrieved successfully\"\n}"}],"_postman_id":"5b9387ff-ebdc-4dc6-be25-61e0601f6396"},{"name":"Create lead as admin","id":"ae53617b-c7a0-4321-a2bc-def5ff9d51c6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"activity\": \"calling\",\n    \"gender\": \"female\",\n    \"firstname\": \"Jane\",\n    \"postcode\": \"7511PG\",\n    \"housenumber\": \"9\",\n    \"suffix\": \"\",\n    \"streetname\": \"Willem Wilminkplein\",\n    \"city\": \"Enschede\",\n    \"birthdate\": \"01-01-1990\",\n    \"email\": \"test@salesdock.nl\",\n    \"phone\": \"0611XXXXXX\",\n    \"business\": \"1\",\n    \"company_name\": \"Test Co.\",\n    \"contact_person\": \"John Doe\",\n    \"coc\": \"01234567\",\n    \"vat\": \"NL12345678\",\n    \"assign\": \"user\",\n    \"user\": 2916,\n    \"planned_for_date\": \"1\",\n    \"planned_date\": \"20-04-2021\",\n    \"start_at\": \"10:00\",\n    \"end_at\": \"11:00\",\n    \"cf_bankrekeningnur\": \"NL91ABNA0417164300\",\n    \"question_payment-method\": \"Manual\",\n    \"lead_source_id\": \"162\",\n    \"labels\": [\n        20\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/account/leads","description":"<p>The \"Create lead\" endpoint can be used by admin users to create leads.</p>\n<p>The basic information of the leads, lead questions and lead extra fields can be sent in this request.</p>\n<p>Lead questions need to be sent in the format question_{{identifier}} (where identifier is the identifier of the lead question)</p>\n<p>Extra fields need to be sent using the format cf_{{identifier}} (where identifier is the identifier of the custom field)</p>\n<p>The assignee field can have values 'organisation' or 'user'.</p>\n<p>If assigning lead to organisation, then organisation field is mandatory with organisation_id.</p>\n<p>If assigning lead to user, then user field is mandatory with user_id.</p>\n<p><strong>Body Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Mandatory</th>\n<th>Possible Value(s)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>activity</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Identifier of the lead activity</td>\n</tr>\n<tr>\n<td>gender</td>\n<td>string</td>\n<td>N</td>\n<td>'male','female'</td>\n<td>Gender of the lead</td>\n</tr>\n<tr>\n<td>firstname</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>First name of the lead</td>\n</tr>\n<tr>\n<td>lastname</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Last name of the lead</td>\n</tr>\n<tr>\n<td>postcode</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Postcode of the lead. Required if the lead activity is type of D2D</td>\n</tr>\n<tr>\n<td>housenumber</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>House number of the lead. Required if the lead activity is type of D2D</td>\n</tr>\n<tr>\n<td>suffix</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>House number extension of the lead</td>\n</tr>\n<tr>\n<td>streetname</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Street name of the lead. Required if the lead activity is type of D2D</td>\n</tr>\n<tr>\n<td>city</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>City of the lead. Required if the lead activity is type of D2D</td>\n</tr>\n<tr>\n<td>birthdate</td>\n<td>date</td>\n<td>N</td>\n<td></td>\n<td>Date of birth of the lead. In d-m-Y format</td>\n</tr>\n<tr>\n<td>email</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Email of the lead</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Phone of the lead</td>\n</tr>\n<tr>\n<td>business</td>\n<td>string</td>\n<td>Y</td>\n<td>'1', '0'</td>\n<td>1 = Business; 0 = Consumer</td>\n</tr>\n<tr>\n<td>company_name</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Company name of business lead. Required if business = '1'</td>\n</tr>\n<tr>\n<td>contact_person</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Contact person of business lead</td>\n</tr>\n<tr>\n<td>coc</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>KvK number of business lead</td>\n</tr>\n<tr>\n<td>vat</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Btw number of business lead</td>\n</tr>\n<tr>\n<td>assign</td>\n<td>string</td>\n<td>Y</td>\n<td>'user', 'team', 'organisation'</td>\n<td>If the lead needs to be assigned to a user, team or organisation</td>\n</tr>\n<tr>\n<td>user</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>User id of assigned user. Required if the lead is assigned to a user</td>\n</tr>\n<tr>\n<td>organisation_id</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Organisation id of assigned organisation. Required if the lead is assigned to an organisation</td>\n</tr>\n<tr>\n<td>team_id</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Team id of assigned team. Required if the team is assigned to a team</td>\n</tr>\n<tr>\n<td>planned_for_date</td>\n<td>string</td>\n<td>N</td>\n<td>'1', '0'</td>\n<td>If the lead needs to be planned for a date. 1 implies that the lead need to be planned for a date. This is required if assign=user</td>\n</tr>\n<tr>\n<td>planned_date</td>\n<td>date</td>\n<td>N</td>\n<td></td>\n<td>Date for which lead is planned. Reqiured if planned_for_date = 1. In d-m-Y format</td>\n</tr>\n<tr>\n<td>start_at</td>\n<td>time</td>\n<td>N</td>\n<td></td>\n<td>Starting time for which lead is planned. In hh:mm format</td>\n</tr>\n<tr>\n<td>end_at</td>\n<td>time</td>\n<td>N</td>\n<td></td>\n<td>Ending time for which lead is planned. In hh:mm format</td>\n</tr>\n<tr>\n<td>lead_source_id</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>The id of the lead source in Salesdock</td>\n</tr>\n<tr>\n<td>lead_value</td>\n<td>number</td>\n<td>N</td>\n<td></td>\n<td>The value of the lead</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","{{domain}}","{{version}}","account","leads"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"71718f51-ee85-4361-810d-201923de8f46","name":"Create lead","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"activity\": \"calling\",\n    \"gender\": \"female\",\n    \"firstname\": \"Jane\",\n    \"postcode\": \"7511PG\",\n    \"housenumber\": \"9\",\n    \"suffix\": \"\",\n    \"streetname\": \"Willem Wilminkplein\",\n    \"city\": \"Enschede\",\n    \"birthdate\": \"01-01-1990\",\n    \"email\": \"test@salesdock.nl\",\n    \"phone\": \"0611XXXXXX\",\n    \"business\": \"1\",\n    \"company_name\": \"Test Co.\",\n    \"contact_person\": \"John Doe\",\n    \"coc\": \"01234567\",\n    \"vat\": \"NL12345678\",\n    \"assign\": \"user\",\n    \"user\": 2916,\n    \"planned_for_date\": \"1\",\n    \"planned_date\": \"20-04-2021\",\n    \"start_at\": \"10:00\",\n    \"end_at\": \"11:00\",\n    \"cf_bankrekeningnur\": \"NL91ABNA0417164300\",\n    \"question_payment-method\": \"Manual\",\n    \"labels\": [\n        20\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/leads"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 06 Apr 2022 12:49:15 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://widget.freshworks.com https://salesdock.freshdesk.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Q8LZiWIfbrReuBN9OJS%2B8go8hkvSkl4nnfhxNRzY7fegOKI1S8db5x0ZWzmxrx8JvxrNSS3w0o0%2BGODQidqZeoRUP9GTB%2F2rzF8Kjy48D0d9ESL0%2F3cazAdCBtLhE6Dk%2BzM%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"6f7aa47708a80c79-AMS"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"lead_id\": 12954584\n    },\n    \"message\": \"Lead succesvol aangemaakt\"\n}"}],"_postman_id":"ae53617b-c7a0-4321-a2bc-def5ff9d51c6"},{"name":"Update lead as admin","id":"143e7b17-ff24-4e72-9c2f-e246571995ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"activity\": \"calling\",\n    \"gender\": \"female\",\n    \"firstname\": \"Jane\",\n    \"postcode\": \"7511PG\",\n    \"housenumber\": \"9\",\n    \"suffix\": \"\",\n    \"streetname\": \"Willem Wilminkplein\",\n    \"city\": \"Enschede\",\n    \"birthdate\": \"01-01-1990\",\n    \"email\": \"test@salesdock.nl\",\n    \"business\": \"1\",\n    \"company_name\": \"Test Co.\",\n    \"contact_person\": \"John Doe\",\n    \"coc\": \"01234567\",\n    \"vat\": \"NL12345679\",\n    \"assign\": \"user\",\n    \"user\": 2916,\n    \"planned_for_date\": \"1\",\n    \"planned_date\": \"20-04-2021\",\n    \"start_at\": \"10:00\",\n    \"end_at\": \"11:00\",\n    \"cf_bankrekeningnur\": \"NL91ABNA0417164300\",\n    \"question_type-lead\": \"Laadpalen\",\n    \"question_payment-method\": \"Manual\",\n    \"labels\": [\n        20\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/account/leads/23445453","description":"<p>The \"Update lead\" endpoint can be used by admin users to update leads. The lead_id needs to be passed in the URL in order to update this.</p>\n<p>The basic information of the leads, lead questions and lead extra fields can be sent in this request.</p>\n<p>Lead questions need to be sent in the format question_{{identifier}} (where identifier is the identifier of the lead question)</p>\n<p>Extra fields need to be sent using the format cf_{{identifier}} (where identifier is the identifier of the custom field)</p>\n<p>The assignee field can have values 'organisation' or 'user'.</p>\n<p>If assigning lead to organisation, then organisation field is mandatory with organisation_id.</p>\n<p>If assigning lead to user, then user field is mandatory with user_id.</p>\n<p><strong>Body Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Mandatory</th>\n<th>Possible Value(s)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>activity</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Identifier of the lead activity</td>\n</tr>\n<tr>\n<td>gender</td>\n<td>string</td>\n<td>N</td>\n<td>'male','female'</td>\n<td>Gender of the lead</td>\n</tr>\n<tr>\n<td>firstname</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>First name of the lead</td>\n</tr>\n<tr>\n<td>lastname</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Last name of the lead</td>\n</tr>\n<tr>\n<td>postcode</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Postcode of the lead. Required if the lead activity is type of D2D</td>\n</tr>\n<tr>\n<td>housenumber</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>House number of the lead. Required if the lead activity is type of D2D</td>\n</tr>\n<tr>\n<td>suffix</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>House number extension of the lead</td>\n</tr>\n<tr>\n<td>streetname</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Street name of the lead. Required if the lead activity is type of D2D</td>\n</tr>\n<tr>\n<td>city</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>City of the lead. Required if the lead activity is type of D2D</td>\n</tr>\n<tr>\n<td>birthdate</td>\n<td>date</td>\n<td>N</td>\n<td></td>\n<td>Date of birth of the lead. In d-m-Y format</td>\n</tr>\n<tr>\n<td>email</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Email of the lead</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Phone of the lead</td>\n</tr>\n<tr>\n<td>business</td>\n<td>string</td>\n<td>Y</td>\n<td>'1', '0'</td>\n<td>1 = Business; 0 = Consumer</td>\n</tr>\n<tr>\n<td>company_name</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Company name of business lead. Required if business = '1'</td>\n</tr>\n<tr>\n<td>contact_person</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Contact person of business lead</td>\n</tr>\n<tr>\n<td>coc</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>KvK number of business lead</td>\n</tr>\n<tr>\n<td>vat</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Btw number of business lead</td>\n</tr>\n<tr>\n<td>assign</td>\n<td>string</td>\n<td>Y</td>\n<td>'user', 'team', 'organisation'</td>\n<td>If the lead needs to be assigned to a user, team or organisation</td>\n</tr>\n<tr>\n<td>user</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>User id of assigned user. Required if the lead is assigned to a user</td>\n</tr>\n<tr>\n<td>organisation_id</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Organisation id of assigned organisation. Required if the lead is assigned to an organisation</td>\n</tr>\n<tr>\n<td>team_id</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Team id of assigned team. Required if the team is assigned to a team</td>\n</tr>\n<tr>\n<td>planned_for_date</td>\n<td>string</td>\n<td>N</td>\n<td>'1', '0'</td>\n<td>If the lead needs to be planned for a date. 1 implies that the lead need to be planned for a date. This is required if assign=user</td>\n</tr>\n<tr>\n<td>planned_date</td>\n<td>date</td>\n<td>N</td>\n<td></td>\n<td>Date for which lead is planned. Reqiured if planned_for_date = 1. In d-m-Y format</td>\n</tr>\n<tr>\n<td>start_at</td>\n<td>time</td>\n<td>N</td>\n<td></td>\n<td>Starting time for which lead is planned. In hh:mm format</td>\n</tr>\n<tr>\n<td>end_at</td>\n<td>time</td>\n<td>N</td>\n<td></td>\n<td>Ending time for which lead is planned. In hh:mm format</td>\n</tr>\n<tr>\n<td>lead_source_id</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>The id of the lead source in Salesdock</td>\n</tr>\n<tr>\n<td>relation_id</td>\n<td>int</td>\n<td>N</td>\n<td></td>\n<td>If the lead needs to be linked to a relation. To unlink a relation, pass the value as null</td>\n</tr>\n<tr>\n<td>lead_value</td>\n<td>number</td>\n<td>N</td>\n<td></td>\n<td>Value of the lead</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","{{domain}}","{{version}}","account","leads","23445453"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"8fa84376-0836-4bbf-86e1-027bcfa1bf7c","name":"Update lead as admin","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"activity\": \"calling\",\n    \"gender\": \"female\",\n    \"firstname\": \"Jane\",\n    \"postcode\": \"7511PG\",\n    \"housenumber\": \"9\",\n    \"suffix\": \"\",\n    \"streetname\": \"Willem Wilminkplein\",\n    \"city\": \"Enschede\",\n    \"birthdate\": \"01-01-1990\",\n    \"email\": \"test@salesdock.nl\",\n    \"business\": \"1\",\n    \"company_name\": \"Test Co.\",\n    \"contact_person\": \"John Doe\",\n    \"coc\": \"01234567\",\n    \"vat\": \"NL12345679\",\n    \"assign\": \"user\",\n    \"user\": 2916,\n    \"planned_for_date\": \"1\",\n    \"planned_date\": \"20-04-2021\",\n    \"start_at\": \"10:00\",\n    \"end_at\": \"11:00\",\n    \"cf_bankrekeningnur\": \"NL91ABNA0417164300\",\n    \"question_type-lead\": \"Laadpalen\",\n    \"question_payment-method\": \"Manual\",\n    \"labels\": [\n        20\n    ],\n    \"relation_id\": 20\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/account/leads/23445453"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 05 Oct 2023 07:19:03 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"120"},{"key":"X-RateLimit-Remaining","value":"118"},{"key":"x-robots-tag","value":"none"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Cross-Origin-Embedder-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Opener-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=RBTxnD%2FYfaVe6C%2FRjI%2FrMCkQnKPtRTF8PcqVVuWEm%2FYg4xDrH2p7Rht%2B99C7juAQyBmE%2F5S5nU3Jw2UsQQSlF6XPyoAbkG1pJMqhvRQ%2BDcTwbUoWbmLZFFyUxtG6C4Sx524%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"8113e4e429efb776-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"lead_id\": 23445453\n    },\n    \"message\": \"Lead updated successfully\"\n}"}],"_postman_id":"143e7b17-ff24-4e72-9c2f-e246571995ef"},{"name":"Create lead as reseller","id":"4727625a-da2f-4c92-9d98-83858c7e52ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"activity\": \"calling\",\n    \"gender\": \"female\",\n    \"firstname\": \"Jane\",\n    \"postcode\": \"7511PG\",\n    \"housenumber\": \"9\",\n    \"suffix\": \"\",\n    \"streetname\": \"Willem Wilminkplein\",\n    \"city\": \"Enschede\",\n    \"birthdate\": \"01-01-1990\",\n    \"email\": \"test@salesdock.nl\",\n    \"phone\": \"0611XXXXXX\",\n    \"business\": \"1\",\n    \"company_name\": \"Test Co.\",\n    \"contact_person\": \"John Doe\",\n    \"coc\": \"01234567\",\n    \"vat\": \"NL12345678\",\n    \"user\": 2916,\n    \"planned_for_date\": \"1\",\n    \"planned_date\": \"20-04-2021\",\n    \"start_at\": \"10:00\",\n    \"end_at\": \"11:00\",\n    \"cf_bankrekeningnur\": \"NL91ABNA0417164300\",\n    \"question_payment-method\": \"Manual\",\n    \"lead_source_id\": \"162\",\n    \"labels\": [\n        20\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/user/leads","description":"<p>The \"Create lead as reseller\" endpoint can be used by agent users to create leads.</p>\n<p>The basic information of the leads, lead questions and lead extra fields can be sent in this request.</p>\n<p>Lead questions need to be sent in the format question_{{identifier}} (where identifier is the identifier of the lead question)</p>\n<p>Extra fields need to be sent using the format cf_{{identifier}} (where identifier is the identifier of the extra field)</p>\n<p>The user field is mandatory and should contain the user id of the user for whom the lead will be assigned</p>\n<p><strong>Body Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Mandatory</th>\n<th>Possible Value(s)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>activity</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Identifier of the lead activity</td>\n</tr>\n<tr>\n<td>gender</td>\n<td>string</td>\n<td>N</td>\n<td>'male','female'</td>\n<td>Gender of the lead</td>\n</tr>\n<tr>\n<td>firstname</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>First name of the lead</td>\n</tr>\n<tr>\n<td>lastname</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Last name of the lead</td>\n</tr>\n<tr>\n<td>postcode</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Postcode of the lead. Required if the lead activity is type of D2D</td>\n</tr>\n<tr>\n<td>housenumber</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>House number of the lead. Required if the lead activity is type of D2D</td>\n</tr>\n<tr>\n<td>suffix</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>House number extension of the lead</td>\n</tr>\n<tr>\n<td>streetname</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Street name of the lead. Required if the lead activity is type of D2D</td>\n</tr>\n<tr>\n<td>city</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>City of the lead. Required if the lead activity is type of D2D</td>\n</tr>\n<tr>\n<td>birthdate</td>\n<td>date</td>\n<td>N</td>\n<td></td>\n<td>Date of birth of the lead. In d-m-Y format</td>\n</tr>\n<tr>\n<td>email</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Email of the lead</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Phone of the lead</td>\n</tr>\n<tr>\n<td>business</td>\n<td>string</td>\n<td>Y</td>\n<td>'1', '0'</td>\n<td>1 = Business; 0 = Consumer</td>\n</tr>\n<tr>\n<td>company_name</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Company name of business lead. Required if business = '1'</td>\n</tr>\n<tr>\n<td>contact_person</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Contact person of business lead</td>\n</tr>\n<tr>\n<td>coc</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>KvK number of business lead</td>\n</tr>\n<tr>\n<td>vat</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Btw number of business lead</td>\n</tr>\n<tr>\n<td>user</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>User id of assigned user.</td>\n</tr>\n<tr>\n<td>planned_date</td>\n<td>date</td>\n<td>N</td>\n<td></td>\n<td>Date for which lead is planned. Reqiured if planned_for_date = 1. In d-m-Y format</td>\n</tr>\n<tr>\n<td>start_at</td>\n<td>time</td>\n<td>N</td>\n<td></td>\n<td>Starting time for which lead is planned. In hh:mm format</td>\n</tr>\n<tr>\n<td>end_at</td>\n<td>time</td>\n<td>N</td>\n<td></td>\n<td>Ending time for which lead is planned. In hh:mm format</td>\n</tr>\n<tr>\n<td>lead_source_id</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>The id of the lead source in Salesdock</td>\n</tr>\n<tr>\n<td>assign_to_user</td>\n<td>boolean</td>\n<td>N</td>\n<td></td>\n<td>Send assign_to_user=false to skip assigning user to lead</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","{{domain}}","{{version}}","user","leads"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c69b2082-dd36-4fb8-8281-d988323f7508","name":"Create lead","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"activity\": \"calling\",\n    \"gender\": \"female\",\n    \"firstname\": \"Jane\",\n    \"postcode\": \"7511PG\",\n    \"housenumber\": \"9\",\n    \"suffix\": \"\",\n    \"streetname\": \"Willem Wilminkplein\",\n    \"city\": \"Enschede\",\n    \"birthdate\": \"01-01-1990\",\n    \"email\": \"test@salesdock.nl\",\n    \"phone\": \"0611XXXXXX\",\n    \"business\": \"1\",\n    \"company_name\": \"Test Co.\",\n    \"contact_person\": \"John Doe\",\n    \"coc\": \"01234567\",\n    \"vat\": \"NL12345678\",\n    \"user\": 2916,\n    \"planned_for_date\": \"1\",\n    \"planned_date\": \"20-04-2021\",\n    \"start_at\": \"10:00\",\n    \"end_at\": \"11:00\",\n    \"cf_bankrekeningnur\": \"NL91ABNA0417164300\",\n    \"question_payment-method\": \"Manual\",\n    \"labels\": [\n        20\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/leads"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 06 Apr 2022 12:49:15 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://widget.freshworks.com https://salesdock.freshdesk.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Q8LZiWIfbrReuBN9OJS%2B8go8hkvSkl4nnfhxNRzY7fegOKI1S8db5x0ZWzmxrx8JvxrNSS3w0o0%2BGODQidqZeoRUP9GTB%2F2rzF8Kjy48D0d9ESL0%2F3cazAdCBtLhE6Dk%2BzM%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"6f7aa47708a80c79-AMS"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"lead_id\": 12954584\n    },\n    \"message\": \"Lead succesvol aangemaakt\"\n}"}],"_postman_id":"4727625a-da2f-4c92-9d98-83858c7e52ea"},{"name":"Update lead as reseller","id":"8d845e60-af61-44ab-b34e-3e90a796617a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"activity\": \"calling\",\n    \"gender\": \"female\",\n    \"firstname\": \"Jane\",\n    \"postcode\": \"7511PG\",\n    \"housenumber\": \"9\",\n    \"suffix\": \"\",\n    \"streetname\": \"Willem Wilminkplein\",\n    \"city\": \"Enschede\",\n    \"birthdate\": \"01-01-1990\",\n    \"email\": \"test@salesdock.nl\",\n    \"phone\": \"0611XXXXXX\",\n    \"business\": \"1\",\n    \"company_name\": \"Test Co.\",\n    \"contact_person\": \"John Doe\",\n    \"coc\": \"01234567\",\n    \"vat\": \"NL12345678\",\n    \"user\": 2916,\n    \"planned_for_date\": \"1\",\n    \"planned_date\": \"20-04-2021\",\n    \"start_at\": \"10:00\",\n    \"end_at\": \"11:00\",\n    \"cf_bankrekeningnur\": \"NL91ABNA0417164300\",\n    \"question_payment-method\": \"Manual\",\n    \"lead_source_id\": \"162\",\n    \"labels\": [\n        20\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/user/leads/{{lead_id}}","description":"<p>The \"Update lead as reseller\" endpoint can be used by agent users to update leads. Pass the lead_id in the URL. Only leads that the agent has access to can be updated using this.</p>\n<p>The basic information of the leads, lead questions and lead extra fields can be sent in this request.</p>\n<p>Lead questions need to be sent in the format question_{{identifier}} (where identifier is the identifier of the lead question)</p>\n<p>Extra fields need to be sent using the format cf_{{identifier}} (where identifier is the identifier of the extra field)</p>\n<p>The user field is mandatory and should contain the user id of the user for whom the lead will be assigned</p>\n<p><strong>Body Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Mandatory</th>\n<th>Possible Value(s)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>activity</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Identifier of the lead activity</td>\n</tr>\n<tr>\n<td>gender</td>\n<td>string</td>\n<td>N</td>\n<td>'male','female'</td>\n<td>Gender of the lead</td>\n</tr>\n<tr>\n<td>firstname</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>First name of the lead</td>\n</tr>\n<tr>\n<td>lastname</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Last name of the lead</td>\n</tr>\n<tr>\n<td>postcode</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Postcode of the lead. Required if the lead activity is type of D2D</td>\n</tr>\n<tr>\n<td>housenumber</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>House number of the lead. Required if the lead activity is type of D2D</td>\n</tr>\n<tr>\n<td>suffix</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>House number extension of the lead</td>\n</tr>\n<tr>\n<td>streetname</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Street name of the lead. Required if the lead activity is type of D2D</td>\n</tr>\n<tr>\n<td>city</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>City of the lead. Required if the lead activity is type of D2D</td>\n</tr>\n<tr>\n<td>birthdate</td>\n<td>date</td>\n<td>N</td>\n<td></td>\n<td>Date of birth of the lead. In d-m-Y format</td>\n</tr>\n<tr>\n<td>email</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Email of the lead</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Phone of the lead</td>\n</tr>\n<tr>\n<td>business</td>\n<td>string</td>\n<td>Y</td>\n<td>'1', '0'</td>\n<td>1 = Business; 0 = Consumer</td>\n</tr>\n<tr>\n<td>company_name</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Company name of business lead. Required if business = '1'</td>\n</tr>\n<tr>\n<td>contact_person</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Contact person of business lead</td>\n</tr>\n<tr>\n<td>coc</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>KvK number of business lead</td>\n</tr>\n<tr>\n<td>vat</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Btw number of business lead</td>\n</tr>\n<tr>\n<td>user</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>User id of assigned user.</td>\n</tr>\n<tr>\n<td>planned_date</td>\n<td>date</td>\n<td>N</td>\n<td></td>\n<td>Date for which lead is planned. Reqiured if planned_for_date = 1. In d-m-Y format</td>\n</tr>\n<tr>\n<td>start_at</td>\n<td>time</td>\n<td>N</td>\n<td></td>\n<td>Starting time for which lead is planned. In hh:mm format</td>\n</tr>\n<tr>\n<td>end_at</td>\n<td>time</td>\n<td>N</td>\n<td></td>\n<td>Ending time for which lead is planned. In hh:mm format</td>\n</tr>\n<tr>\n<td>lead_source_id</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>The id of the lead source in Salesdock</td>\n</tr>\n<tr>\n<td>relation_id</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>If the lead needs to be linked to a relation. To unlink a relation, pass the value as null</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","{{domain}}","{{version}}","user","leads","{{lead_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"203b356a-c20f-4406-9c5e-21401b5f81b0","name":"Update lead as reseller","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"activity\": \"calling\",\n    \"gender\": \"female\",\n    \"firstname\": \"Jane\",\n    \"postcode\": \"7511PG\",\n    \"housenumber\": \"9\",\n    \"suffix\": \"\",\n    \"streetname\": \"Willem Wilminkplein\",\n    \"city\": \"Enschede\",\n    \"birthdate\": \"01-01-1990\",\n    \"email\": \"test@salesdock.nl\",\n    \"phone\": \"0611XXXXXX\",\n    \"business\": \"1\",\n    \"company_name\": \"Test Co.\",\n    \"contact_person\": \"John Doe\",\n    \"coc\": \"01234567\",\n    \"vat\": \"NL12345678\",\n    \"user\": 2916,\n    \"planned_for_date\": \"1\",\n    \"planned_date\": \"20-04-2021\",\n    \"start_at\": \"10:00\",\n    \"end_at\": \"11:00\",\n    \"cf_bankrekeningnur\": \"NL91ABNA0417164300\",\n    \"question_payment-method\": \"Manual\",\n    \"lead_source_id\": \"162\",\n    \"labels\": [\n        20\n    ],\n    \"relation_id\": 20\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/user/leads/{{lead_id}}"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 05 Oct 2023 07:21:21 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"120"},{"key":"X-RateLimit-Remaining","value":"119"},{"key":"x-robots-tag","value":"none"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Cross-Origin-Embedder-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Opener-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=d76XjtRKLKd4tD67jYoAI3PnMU9McdIYynKqxR5RUysQsXUuAdn75ukSVEnr8Q3zMYJVRfY3ApotE0KEvvf271y7qIKBVPgf7D%2FvMiYSINzCSfzW4wzixmwgDBsv8AchFc8%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"8113e8412a40b776-AMS"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"lead_id\": 23445453\n    },\n    \"message\": \"Lead updated successfully\"\n}"}],"_postman_id":"8d845e60-af61-44ab-b34e-3e90a796617a"},{"name":"Get lead form PDF","id":"0f55e323-85fd-492a-8524-731959389e3b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/leads/{{lead_id}}/form/pdf","description":"<p>This endpoint fetches the PDF of the lead form when the lead is created from a lead form.</p>\n<p>In the request URL, replace {{lead_id}} with the id of the lead.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","leads","{{lead_id}}","form","pdf"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Get lead if created by user</p>\n","type":"text/plain"},"key":"view","value":"owned"}],"variable":[]}},"response":[{"id":"30e84c97-e16c-4654-b3d8-65b583aa9705","name":"Get lead form PDF","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"{{url}}/api/{{domain}}/{{version}}/account/leads/16297412/form/pdf","host":["{{url}}"],"path":["api","{{domain}}","{{version}}","account","leads","16297412","form","pdf"],"query":[{"key":"view","value":"owned","description":"Get lead if created by user","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 21 Oct 2022 09:45:22 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Plubsm2TMvPOPBMIDPRaHhC92PewpcsBzzF1h52LG33uAgIOMeDyiunVaggpttYrRFCpOb1QFSAYNP7lSzRINWthQbPL80GA9wv1RxrnSKWcdBrUAz97ZaHlMnI2yzvc5OM%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"75d90f5a08590ba5-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"name\": \"Energielabel check testformulier 11264.pdf\",\n        \"content\": \"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nxT4MmfCsdU0szQg+z2zSnHuQPfFefWynER+z92p8zjvDviHCq88LKS/u2l+EW3+B7d+1N/wTb+Dv7YcE0vi/wAI2ketSghdb0wCy1JD6mVRiTHYSh1GelfmJ+2J/wAG9vxD+D0VzrHwx1BfiLoceXNgyLbavbr1wEzsnwO6FWJ6R1+ufwh/ai+HPx9gV/Bfjjwt4lZl3GGw1GKWeMdfmiB3r9GUV3oesaGNxWFfLF6dn/WhWS8aZ7kNRUYzfKv+Xc02vuesfk0fyn+IPDuoeEtbutN1WxvNM1GykMVxa3cLQzwOOqujAMpHoRmqdf0p/tff8E+/hd+274eNv410CM6rFGY7TW7HFvqdl6bZcHeo5+SQMnOduea/HD9vr/gjL8SP2MEu9f0xX8c+Aocu2q2NuRcacn/T1ACSgH/PRSycclSQtfSYHOqNd8kvdl2f6M/feFfE3LM3caFb9zWf2ZPRv+7Lr6Oz7XPjuiiivZP0gKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAoooALEADJNABX1//AME5f+CQXjb9uW6t/EGptP4Q+HKSYk1aaLM+pAHDJaRn7/TBkb5FOfvlSlfQ/wDwSr/4IcSeLo9O+Ivxt02W30pttxpXhScFJbwdVlvB1WPoRD95v48L8rfrhp+n22jadBZ2cENpaWsawwwQoI44UUYVVUcAADAA4AFfOZjnSi3Sw2r6vt6H4lxz4qQwrlgMmalU2c91Hyj0b89l5vbgP2Z/2VPAn7Ifw7i8M+A9Ct9IsRhrmfG+71CQDHmzyn5pG69eBnChRgD0MmhmwPao2bNfPxhKcuaWrZ/O+IxFXEVZVq8nKUtW27t+rFZ800tmkJxTS34V20qBCQrNTS5+leYftN/ti/Dr9kHwl/a/jzxJZ6Qsqk2tmD5t7fEdoYVy7c8FsbVyNxA5r8rv2xP+Dg3x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Zq9loWg6TEZrq8un2pGOwA6sxOAqqCzEgAEkCvwy/wCCo/8AwVz1/wDbj1ebwv4aF34e+GFnNujs2bbc60ynKzXODgKCMrECQpwSWYAqsHgquLnaOker/rqfW8IcGY3PsRy0vdpRfvTey8l3l5ffZGz/AMFdv+CtN3+2V4gm8D+B7m6sfhfpkwLyYMUviOZDxLIvVYFIzHGeScOw3bVT4Xoor7fDYanQpqnTWiP63yXJcJlWEjgsHG0I/e31bfVv/htAooorc9UKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKlsL+fS76G6tZpba5tpFlilico8TqcqysOQQQCCOlRUUA1fRn6vf8E1P+C+Agh07wP8dblyFC29l4vClj6Kt8o5Pp56+xcfekr9HPjL+zt8NP2wvAVvbeLvD3h/xnot3CJrK7IWRlRwCJLe4jO9Mgg7o3GR7V/MLX0z+wf/wVT+Jf7Cepw2WmXZ8R+Cmk3XPhzUZWNuMnLNbvy1u555UFSTlkbivnMdkd5e2wj5Zdtl8u35eh+M8WeFyqVXmOQS9lWWvKnypv+618L8tvQ+zf2o/+Dba3n+06l8IfGLWzcuui+I8snrtjuo1yB2AeM+796/Pj9oj9gn4vfsryyt428C63plhEcf2lFELrT29P9IiLRjPoWDewr94P2L/+Clnws/bj0mJPC+srp/iVY99z4e1IrDqEOBlii5xMg/vxkgDG4KTivfJoFmiZHVXRwVZWGQwPUEVwUc6xVCXs8Qr276M+KwXidxDk1b6nm1P2jjuprln/AOBLf1ad+5/KJRX9G/x4/wCCV/wF/aIaabXPh3otlqMpJN/o6nTLksf4mMBVZD/10Vq+Q/jF/wAG0nhrUmln8BfEjWdIPLLa65ZR3yH282IxFR9UY/zr2qOd4efxXR+jZZ4v5HiUlieak/NXX3xu/vSPyEor7i+J3/Bvp+0B4Hkc6NB4T8YxDJT+zdWW3kI91uViAPsGP1rwvx1/wTa+Pfw5kZdT+EnjllT70ljpkl/GvuXgDrj3zXowxVGfwyX3n2+D4pyfFL/Z8VB+XMk/ubv+B4jRW34n+GniPwVKyaz4f1vSHXqt7Yy25H4OorErdO57kJxmuaLugooooKCitXw54E1zxjKI9I0bVdVkPAWztJJyfwUGvT/A/wDwTy+OfxFkUaV8J/Hjo/3ZbnSJrSFvpJMEX9alzit2cmIx+GoK9epGPq0vzPG6K+1Php/wQK/aF8dOh1PS/DXg+JuS2raxHIwHrtthMc+xx+FfSfwg/wCDafTLdo5vHvxMvbsf8tLPQLBYMfSeYvn/AL9CsZYqlHeR8vj/ABC4fwifPiYyfaN5f+k3X4n5MV6X8Bf2Ofih+07eLF4F8Ea94giZ9hu4oPKso29HuJNsSn/eYV+6PwM/4JF/AD4CGGbT/AOn67qMWD9t18nU5CR0bZLmJSPVI1r6PsLCHTbOK3toYre3hUJHHGoRI1HAAA4A9q5KmZRXwI/Ps28aqMU45bQbfebsv/AVdv8A8CR+TX7MX/BuFqWpG31H4t+L4tOiOGbR/D+JZyP7r3Mi7FPYhEcejV+jf7OH7Gnwz/ZM0T7F4D8JaXojugSe9CGW+uh/00uHJkYZ52ltozwBXqITJpQmK86tjZz3Z+SZ7xnm+bXWMqvl/lWkfuW/zuxoUn2pyrinAYpQmetefOufLCAZ9aeqY60oXFUvE3ijTPBPh+71bWdRsdJ0qwjM1zeXk6wQW6DqzuxCqPcmuKpWvohJOT5Yq7ZeC14j+2r/AMFBPh1+wn4M+3+L9S8/WbuMvpuhWbK9/qJ6Ahc/JHkcyPhRggZbCn4u/b6/4ODdM8LpeeGPgbFFq+o8xTeKbyA/ZLc9D9mhYAysOzyAJxwsgOa/J74ifEfXvi34yv8AxD4n1fUNd1zU5PNur29mMs0ze5PYDAAHAAAAAFengsmqVbTr6R7dX/l+Z+w8H+E+Kxjjis3vTpb8v25ev8q9dfJbnr/7dX/BRDx9+3r46+3eJbv+z/D1lIW0rw/aSH7Hp69Ax6ebKR1kYZ5IAVcKPBqKK+qpUoU4qEFZI/o3A4HD4OhHDYWChCOyX9fe931CiiitDrCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKALOj6xd+HtVt76wurmxvbSRZoLi3laKWF1OQyspBUg8gg5FfoH+xn/wcG/EH4OLaaL8ULJviH4fixH/AGgrLDrNuo4yX4S4wO0m1yeslfnnRXPicJSrx5asbnjZzw/l+a0vY4+kpro+q9GtV8n6n9LP7L37ffwm/bE0+N/A/i7T7zUim+XSLpvsupwcZOYHwzAd2Tcn+0a9iK4r+UrT9QuNJvobq1nmtrm3cSRTROUkiYHIZWHIIPcV9h/szf8ABc/46fs/JbWOq6vbfELQ4AE+y+IFMtyq99t0pEu73kMgHpXzuI4fnHXDyuuz/wA/+GPxDPvBevBuplFXmX8s9H8pLR/NL1P3xK5ppTNfB37Pv/Bwt8F/ijHb23jG1134danIAHa6hN/YBj2WaEF8Z7vEoHrX2X8Lfjf4N+OGjDUPB3irw/4nsyNxk0y/iufL9mCMSp9mwRXk1KVejpVi1/Xc/Jc04dzPLZWx1CUPNrT5SV0/kzpChHvWPqnw90HW5S97omkXbnq09nHIT+YrcK0Fc0RxFjyYVZRd4uxyB+BvgppN58H+Ft/97+yoM/ntq/p3w18O6NIHs9A0W1cdGhsYoz+YWt4oKQx8VusS+5q8VVlo5P7yMRhRgAADjHpSbKl8ujZVrEGNyMJijZ7VJ5dHl+9J4gLjNtAFSCMUoWs5VwuRhTThHnrSyOsETO7KiICzMxwAO5J9K8C+PH/BUb4D/s6xTpr3xE0S81CHIOnaPJ/ad2W/uFYdwjP/AF0Kj3qIynUfLBNs6sHgMVjKnssJTlOXaKbf4HvwSquv+INP8J6Lc6lqt9Z6bp1mhluLq7mWGGBB1Z3YhVA9Sa/KL9o//g5Qu7yK4sfhR4FSyDZWPVvEkgkkA9VtYW2gjqC0rD1Wvz6/aI/bK+J/7VuqfafH3jPWdfjV/Mis5JfKsrdvWO3jCxIccZC5PcmvQoZNiKmtT3V97P03I/CDN8W1PHNUYefvS+5Oy+bT8j9dP2wf+C//AML/AIJQ3Wl/DuJviT4iTKCeBzBpFu3TLTkbpscHEQKsM/vFr8pf2tv2/wD4pftra35/jjxHNNpkMnmWujWQNtptmexWEH5mGSN8hZ8HG7FeMUV7+Ey2hh9Yq77vc/cOHOBMoya08PT5qn88tZfLpH5JedwooorvPsgooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKt6Jr194Z1SG+029u9Pvbc7ori2maKWM+qspBB+hqpRQJpNWZ9J/CT/grz+0T8G4Y4LD4l6xqlpHgeRraR6qGA7b51aQD/dcV9HfDb/g5S+JehxpH4q8B+DvEKpwZLGafTZX92JMy5+ige1fm9RXHUy/DVPigvy/I+Zx/BeRYxt18LBt9UuV/fGzP2M8Ef8ABzB4Dvwv/CSfDTxdpJP3v7NvbfUMfTzPIz+lekeHf+Dhf9nvWtv2k+ONIz1+16MrY+vkyyV+FdFckskwr2TXz/zPmMR4R8PVHeEJQ9JP/wBu5j9/rP8A4Lrfsy3ON/ju+t/+unh/UD/6DCasz/8ABcf9mCJMr8SJZSR0Xw7qgP62wr+fiis/7Bw/80vvX+RwPwXyO/8AEq/+BR/+QP3v1n/gvZ+zbpiFoPE2u6iR/Db6DdKT/wB/FSuH8Vf8HHvwS0iJhpnhz4iavN/DixtbeI/VmuNw/wC+TX4kUVayPDLe7+Z00fB7IIP3vaS9ZL9Ej9XfHv8Awc1ZiePwv8JcP/BcapruQPrFHD/7UrwT4of8HBf7QXjyKSLSbjwn4NjfIVtK0kTSgf71y0wz7hR7Yr4dorpp5XhYbQ+/X8z6DBeHnDuFd6eFi3/evL/0ptfgei/F/wDa5+KHx9EieMvH/izxFbyHJtbvUpWtVP8A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NSA0NzYgNTM4IDU0MCA2MTAgNTIzIDMwOSAyNDQgNDE2IDg0MCA0NTIgMjQ3IDUxMSA1NDAgMzQ0IDI0NSA3MTIgNzgwIDU0OSA1NDAgNTY2IDUwMCBdCl0KPj4KZW5kb2JqCjI1IDAgb2JqCjw8IC9MZW5ndGggNTg4ID4+CnN0cmVhbQovQ0lESW5pdCAvUHJvY1NldCBmaW5kcmVzb3VyY2UgYmVnaW4KMTIgZGljdCBiZWdpbgpiZWdpbmNtYXAKL0NJRFN5c3RlbUluZm8gPDwgL1JlZ2lzdHJ5IChBZG9iZSkgL09yZGVyaW5nIChVQ1MpIC9TdXBwbGVtZW50IDAgPj4gZGVmCi9DTWFwTmFtZSAvQWRvYmUtSWRlbnRpdHktVUNTIGRlZgovQ01hcFR5cGUgMiBkZWYKMSBiZWdpbmNvZGVzcGFjZXJhbmdlCjwwMDAwPiA8RkZGRj4KZW5kY29kZXNwYWNlcmFuZ2UKMiBiZWdpbmJmcmFuZ2UKPDAwMDA+IDwwMDAwPiA8MDAwMD4KPDAwMDE+IDwwMDIwPiBbPDAwNEU+IDwwMDYxPiA8MDA2RD4gPDAwMjA+IDwwMDc2PiA8MDA2RT4gPDAwNjQ+IDwwMDY1PiA8MDA2Qj4gPDAwNkM+IDwwMDc0PiA8MDA0QT4gPDAwNkY+IDwwMDY4PiA8MDA0ND4gPDAwNDU+IDwwMDJEPiA8MDA2OT4gPDAwNzM+IDwwMDQwPiA8MDA2Mz4gPDAwMkU+IDwwMDU2PiA8MDA3NT4gPDAwNzI+IDwwMDZBPiA8MDA3Nz4gPDAwNTc+IDwwMDYyPiA8MDA0MT4gPDAwNDM+IDwwMDY3PiBdCmVuZGJmcmFuZ2UKZW5kY21hcApDTWFwTmFtZSBjdXJyZW50ZGljdCAvQ01hcCBkZWZpbmVyZXNvdXJjZSBwb3AKZW5kCmVuZAoKZW5kc3RyZWFtCmVuZG9iago2IDAgb2JqCjw8IC9UeXBlIC9Gb250Ci9TdWJ0eXBlIC9UeXBlMAovQmFzZUZvbnQgL1NvdXJjZVNhbnNQcm8tUmVndWxhcgovRW5jb2RpbmcgL0lkZW50aXR5LUgKL0Rlc2NlbmRhbnRGb250cyBbMjQgMCBSXQovVG9Vbmljb2RlIDI1IDAgUj4+CmVuZG9iagoyNyAwIG9iago8PCAv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S927XkgVixwwYCa7vpZJJY1cJJX6fIe5lXwlHMX1VCKzkklwa/FceiOehlCspwrZTJFEg9IqBCKbAZKl7XR+M1XIZXJp7gwwN7cBmoCsS59y1XgnAf52ZYw+P6Bwifwf5xl4twplbmRzdHJlYW0KZW5kb2JqCjMxIDAgb2JqCjQyOTAKZW5kb2JqCjI5IDAgb2JqCjw8IC9UeXBlIC9Gb250Ci9TdWJ0eXBlIC9DSURGb250VHlwZTIKL0Jhc2VGb250IC9TU1BCb2xkCi9DSURTeXN0ZW1JbmZvIDw8IC9SZWdpc3RyeSAoQWRvYmUpIC9PcmRlcmluZyAoSWRlbnRpdHkpIC9TdXBwbGVtZW50IDAgPj4KL0ZvbnREZXNjcmlwdG9yIDI3IDAgUgovQ0lEVG9HSURNYXAgL0lkZW50aXR5Ci9XIFswIFszNjIgNTQzIDU2NyA1MTMgMzk1IDUyOSAyNzQgMjgzIDUyMyA1NjggMTk4IDQ2MyA1NjYgNTQzIDM4MCA0MzkgMzM4IDU1MCA4NTAgNTYzIDUyNCA1MjQgMzI5IDUyNCAyOTcgNTI0IDUyNCA1NTEgNTY4IDU2OCBdCl0KPj4KZW5kb2JqCjMwIDAgb2JqCjw8IC9MZW5ndGggNTY3ID4+CnN0cmVhbQovQ0lESW5pdCAvUHJvY1NldCBmaW5kcmVzb3VyY2UgYmVnaW4KMTIgZGljdCBiZWdpbgpiZWdpbmNtYXAKL0NJRFN5c3RlbUluZm8gPDwgL1JlZ2lzdHJ5IChBZG9iZSkgL09yZGVyaW5nIChVQ1MpIC9TdXBwbGVtZW50IDAgPj4gZGVmCi9DTWFwTmFtZSAvQWRvYmUtSWRlbnRpdHktVUNTIGRlZgovQ01hcFR5cGUgMiBkZWYKMSBiZWdpbmNvZGVzcGFjZXJhbmdlCjwwMDAwPiA8RkZGRj4KZW5kY29kZXNwYWNlcmFuZ2UKMiBiZWdpbmJmcmFuZ2UKPDAwMDA+IDwwMDAwPiA8MDAwMD4KPDAwMDE+IDwwMDFEPiBbPDAwNDU+IDwwMDZFPiA8MDA2NT4gPDAwNzI+IDwwMDY3PiA8MDA2OT4gPDAwNkM+IDwwMDYxPiA8MDA2Mj4gPDAwMjA+IDwwMDYzPiA8MDA2OD4gPDAwNkI+IDwwMDc0PiA8MDA3Mz4gPDAwNjY+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MCA1MDAgMjQ3IDE5OCA0OTMgMzQ3IDYxMCAzMzUgNTQwIDgyMiA1NDMgNDkyIDQ5MSAyNDcgNTM4IDYxMiA1NDAgMjUzIDU1MCA1NTAgMzQ0IF0KXQo+PgplbmRvYmoKMzUgMCBvYmoKPDwgL0xlbmd0aCA1MTggPj4Kc3RyZWFtCi9DSURJbml0IC9Qcm9jU2V0IGZpbmRyZXNvdXJjZSBiZWdpbgoxMiBkaWN0IGJlZ2luCmJlZ2luY21hcAovQ0lEU3lzdGVtSW5mbyA8PCAvUmVnaXN0cnkgKEFkb2JlKSAvT3JkZXJpbmcgKFVDUykgL1N1cHBsZW1lbnQgMCA+PiBkZWYKL0NNYXBOYW1lIC9BZG9iZS1JZGVudGl0eS1VQ1MgZGVmCi9DTWFwVHlwZSAyIGRlZgoxIGJlZ2luY29kZXNwYWNlcmFuZ2UKPDAwMDA+IDxGRkZGPgplbmRjb2Rlc3BhY2VyYW5nZQoyIGJlZ2luYmZyYW5nZQo8MDAwMD4gPDAwMDA+IDwwMDAwPgo8MDAwMT4gPDAwMTY+IFs8MDA1MD4gPDAwNjE+IDwwMDY3PiA8MDAyRT4gPDAwMjA+IDwwMDMxPiA8MDAyRj4gPDAwNDQ+IDwwMDc0PiA8MDA3NT4gPDAwNkQ+IDwwMDZFPiA8MDA2NT4gPDAwNkI+IDwwMDNBPiA8MDA2Rj4gPDAwNDc+IDwwMDY4PiA8MDA2Qz4gPDAwNzA+IDwwMDY0PiA8MDA3Mj4gXQplbmRiZnJhbmdlCmVuZGNtYXAKQ01hcE5hbWUgY3VycmVudGRpY3QgL0NNYXAgZGVmaW5lcmVzb3VyY2UgcG9wCmVuZAplbmQKCmVuZHN0cmVhbQplbmRvYmoKMTYgMCBvYmoKPDwgL1R5cGUgL0ZvbnQKL1N1YnR5cGUgL1R5cGUwCi9CYXNlRm9udCAvU1NQUmVnbHIKL0VuY29kaW5nIC9JZGVudGl0eS1ICi9EZXNjZW5kYW50Rm9udHMgWzM0IDAgUl0KL1RvVW5pY29kZSAzNSAwIFI+PgplbmRvYmoKMiAwIG9iago8PAovVHlwZSAvUGFnZXMKL0tpZHMgClsKNSAwIFIKXQovQ291bnQgMQovUHJvY1NldCBbL1BERiAvVGV4dCAvSW1hZ2VCIC9JbWFnZUNdCj4+CmVuZG9iagp4cmVmCjAgMzcKMDAwMDAwMDAwMCA2NTUzNSBmIAowMDAwMDAwMDA5IDAwMDAwIG4gCjAwMDAwODk5MDEgMDAwMDAgbiAKMDAwMDAwMDE3MyAwMDAwMCBuIAowMDAwMDAwMjY4IDAwMDAwIG4gCjAwMDAwNzIzNDUgMDAwMDAgbiAKMDAwMDA3OTA0MCAwMDAwMCBuIAowMDAwMDAwMzA1IDAwMDAwIG4gCjAwMDAwMDE0MjggMDAwMDAgbiAKMDAwMDAwMTQ0NyAwMDAwMCBuIAowMDAwMDAxODI5IDAwMDAwIG4gCjAwMDAwODQ3ODUgMDAwMDAgbiAKMDAwMDAwMTg0OSAwMDAwMCBuIAowMDAwMDE4ODk0IDAwMDAwIG4gCjAwMDAwMTg5MTYgMDAwMDAgbiAKMDAwMDA3MjI3MyAwMDAwMCBuIAowMDAwMDg5NzY2IDAwMDAwIG4gCjAwMDAwNzIyOTUgMDAwMDAgbiAKMDAwMDA3MjcwMCAwMDAwMCBuIAowMDAwMDc0MjgyIDAwMDAwIG4gCjAwMDAwNzI0NjYgMDAwMDAgbiAKMDAwMDA3MjY4MCAwMDAwMCBuIAowMDAwMDc0MzAzIDAwMDAwIG4gCjAwMDAwNzQ1MTggMDAwMDAgbiAKMDAwMDA3ODA0NyAwMDAwMCBuIAowMDAwMDc4NDAwIDAwMDAwIG4gCjAwMDAwNzgwMjYgMDAwMDAgbiAKMDAwMDA3OTE4NyAwMDAwMCBuIAowMDAwMDc5NDM3IDAwMDAwIG4gCjAwMDAwODM4MzkgMDAwMDAgbiAKMDAwMDA4NDE2NiAwMDAwMCBuIAowMDAwMDgzODE4IDAwMDAwIG4gCjAwMDAwODQ5MTkgMDAwMDAgbiAKMDAwMDA4NTE3MCAwMDAwMCBuIAowMDAwMDg4ODk2IDAwMDAwIG4gCjAwMDAwODkxOTYgMDAwMDAgbiAKMDAwMDA4ODg3NSAwMDAwMCBuIAp0cmFpbGVyCjw8Ci9TaXplIDM3Ci9JbmZvIDEgMCBSCi9Sb290IDE3IDAgUgo+PgpzdGFydHhyZWYKODk5OTkKJSVFT0YK\"\n    },\n    \"message\": \"Leadformulier PDF succesvol opgehaald\"\n}"}],"_postman_id":"0f55e323-85fd-492a-8524-731959389e3b"},{"name":"Get lead history","id":"338fef56-41fe-48e2-a865-f2e59ff15e2c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/leads/{{lead_id}}/history","description":"<p>This endpoint fetches all the historical changes done to a lead.</p>\n<p>In the request URL, replace {{lead_id}} with the id of the lead.</p>\n<p>The response body can contain the following parameters:</p>\n<ul>\n<li>type (string) - The type of activity done on the lead. Some examples are - planned, updated, salecreated, offercreated, changeddata, deleted etc.</li>\n<li>modified_at (date time in the format yyyy-mm-dd hh:mm:ss) - The time at which the history record was updated</li>\n<li>previous_status (string) - The status identifier of the lead at the time of the history update</li>\n<li>new_status (string) - The status identifier of the lead after the lead history update</li>\n<li>user (array) - User object with user id and name of the user who modified the lead</li>\n<li>type_data (array) - Miscellaneous information concerning the type of lead update</li>\n</ul>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","leads","{{lead_id}}","history"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"025debcf-588d-4db9-805a-68b07b86d473","name":"Get lead history","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/leads/{{lead_id}}/history"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 22 Nov 2022 06:01:33 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Ys0FZl741K15vM%2BwODf2uISA13Z4qxlUA7MgNJKIWsryteNhNDBlfFkmo2Uq%2FyajbOxGNQ%2B6WFhF812pVAyjZVx5bIpIIH3KvW7mRo1dYeKFzJZ7yC6Srof7VG7dP2pcWuY%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"76df737b99c8f409-BOM"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"type\": \"planned\",\n            \"modified_at\": \"2021-04-24 09:24:01\",\n            \"previous_status\": null,\n            \"new_status\": \"gepland\",\n            \"user\": {\n                \"id\": 2916,\n                \"name\": \"Jane Doe\"\n            },\n            \"type_data\": {\n                \"planned_to_user_id\": 2514,\n                \"planned_to_user\": \"John Doe\",\n                \"planned_date\": \"2021-04-20\",\n                \"planned_from\": \"2021-04-20 10:00:00\",\n                \"planned_to\": \"2021-04-20 11:00:00\"\n            }\n        },\n        {\n            \"type\": \"offercreated\",\n            \"modified_at\": \"2021-04-24 09:25:44\",\n            \"previous_status\": \"gepland\",\n            \"new_status\": \"offerte\",\n            \"user\": {\n                \"id\": 2916,\n                \"name\": \"Jane Doe\"\n            },\n            \"type_data\": {\n                \"sale_id\": 1557160\n            }\n        },\n        {\n            \"type\": \"anonimized\",\n            \"modified_at\": \"2022-05-06 05:00:04\",\n            \"previous_status\": \"offerte\",\n            \"new_status\": \"offerte\",\n            \"user\": {\n                \"id\": null,\n                \"name\": null\n            },\n            \"type_data\": []\n        }\n    ],\n    \"message\": \"Lead historie succesvol opgehaald\"\n}"}],"_postman_id":"338fef56-41fe-48e2-a865-f2e59ff15e2c"},{"name":"Get lead results by lead","id":"bb37cd9c-a48f-470b-b56d-79a9be48c12f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/leads/{{lead_id}}/results","description":"<p>This endpoint fetches all the status updates that were done for a lead by agents.</p>\n<p>In the request URL, replace {{lead_id}} with the id of the lead.</p>\n<p>Each result of a lead contains the following parameters:</p>\n<ul>\n<li><p>created_at (date time in the format yyyy-mm-dd hh:mm:ss) - The time of status change</p>\n</li>\n<li><p>action - vist or call</p>\n</li>\n<li><p>previous_status (string) - The status identifier of the lead at the time of the history update</p>\n</li>\n<li><p>new_status (string) - The status identifier of the lead after the lead history update</p>\n</li>\n<li><p>contact_established - boolean based on the status settings</p>\n</li>\n<li><p>sales_opportunity - boolean based on the status settings</p>\n</li>\n<li><p>not_reached - boolean based on the status settings</p>\n</li>\n<li><p>appointment - boolean based on the status settings</p>\n</li>\n<li><p>latitude - latitude at which the result was don</p>\n</li>\n<li><p>longitude - longitude at which the result was done</p>\n</li>\n<li><p>distance - distance covered during the lead result</p>\n</li>\n<li><p>user (object) - User object with user id, and name of the user who modified the lead</p>\n</li>\n<li><p>organisation (object) - Organisation object with id, identifier and name of the user's organisation who modified the lead</p>\n</li>\n<li><p>team (object) - Team object with id, identifier and name of the user's team who modified the lead</p>\n</li>\n<li><p>township (object) - Township object with id, identifier and name of the townhsip of lead that instance</p>\n</li>\n</ul>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","leads","{{lead_id}}","results"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"5b568470-8274-4a92-af67-e80a87bd28eb","name":"Get lead results by lead","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/leads/{{lead_id}}/results"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 02 May 2025 10:31:38 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"150"},{"key":"X-RateLimit-Remaining","value":"149"},{"key":"x-robots-tag","value":"none"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com https://*.clarity.ms https://region1.analytics.google.com/g/collect https://public.flourish.studio/resources/embed.js; style-src 'self' 'unsafe-inline' https://cdnjs.cloudflare.com https://fonts.googleapis.com https://widget.freshworks.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com https://fonts.bunny.net https://www.googletagmanager.com; img-src 'self' data: https: blob: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://*.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io https://*.salesdock.nl https://*.clarity.ms; form-action 'self' https://outside.salesdock.nl https://hub.zonatlas.nl; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com https://flo.uri.sh/; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Cross-Origin-Embedder-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Opener-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"9396d9a20fffae62-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"created_at\": \"2025-05-02 12:31:04\",\n            \"action\": \"call\",\n            \"previous_status\": null,\n            \"new_status\": \"1e-keer-niet-thuis\",\n            \"contact_established\": false,\n            \"sales_opportunity\": false,\n            \"not_reached\": false,\n            \"appointment\": false,\n            \"latitude\": null,\n            \"longitude\": null,\n            \"distance\": null,\n            \"user\": {\n                \"id\": 2,\n                \"name\": \"Jane Doe\"\n            },\n            \"organisation\": {\n                \"id\": 1,\n                \"name\": \"Default\",\n                \"identifier\": \"default\"\n            },\n            \"team\": null,\n            \"township\": null\n        },\n        {\n            \"result_at\": \"2025-05-02 12:31:25\",\n            \"action\": \"visit\",\n            \"previous_status\": \"1e-keer-niet-thuis\",\n            \"new_status\": \"deur-geopend\",\n            \"contact_established\": true,\n            \"sales_opportunity\": false,\n            \"not_reached\": false,\n            \"appointment\": false,\n            \"result_latitude\": null,\n            \"result_longitude\": null,\n            \"result_distance\": null,\n            \"user\": {\n                \"id\": 2,\n                \"name\": \"Jane Doe\"\n            },\n            \"organisation\": {\n                \"id\": 1,\n                \"name\": \"Default\",\n                \"identifier\": \"default\"\n            },\n            \"team\": null,\n            \"township\": null\n        }\n    ],\n    \"message\": \"Lead results successfully returned\"\n}"}],"_postman_id":"bb37cd9c-a48f-470b-b56d-79a9be48c12f"},{"name":"Get leads results","id":"9501c3ba-69b5-4a24-b4f9-8cf92b82f2da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/leads/results","description":"<p>This endpoint fetches all the status updates that were done for a lead by agents.</p>\n<p>Period filter can be used to filter out lead results for a certain period</p>\n<p>Each result of a lead result contains the following parameters:</p>\n<ul>\n<li><p>created_at (date time in the format yyyy-mm-dd hh:mm:ss) - The time of status change</p>\n</li>\n<li><p>action - vist or call</p>\n</li>\n<li><p>previous_status (string) - The status identifier of the lead at the time of the history update</p>\n</li>\n<li><p>new_status (string) - The status identifier of the lead after the lead history update</p>\n</li>\n<li><p>contact_established - boolean based on the status settings</p>\n</li>\n<li><p>sales_opportunity - boolean based on the status settings</p>\n</li>\n<li><p>not_reached - boolean based on the status settings</p>\n</li>\n<li><p>appointment - boolean based on the status settings</p>\n</li>\n<li><p>latitude - latitude at which the result was don</p>\n</li>\n<li><p>longitude - longitude at which the result was done</p>\n</li>\n<li><p>distance - distance covered during the lead result</p>\n</li>\n<li><p>user (object) - User object with user id, and name of the user who modified the lead</p>\n</li>\n<li><p>organisation (object) - Organisation object with id, identifier and name of the user's organisation who modified the lead</p>\n</li>\n<li><p>team (object) - Team object with id, identifier and name of the user's team who modified the lead</p>\n</li>\n<li><p>township (object) - Township object with id, identifier and name of the townhsip of lead that instance</p>\n</li>\n<li><p>lead (object) - Contains the id of the lead</p>\n</li>\n</ul>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","leads","results"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"74d7653e-d610-41c4-b8af-e2d50b356420","name":"Get lead results","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/leads//results"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 02 May 2025 10:31:38 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"150"},{"key":"X-RateLimit-Remaining","value":"149"},{"key":"x-robots-tag","value":"none"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com https://*.clarity.ms https://region1.analytics.google.com/g/collect https://public.flourish.studio/resources/embed.js; style-src 'self' 'unsafe-inline' https://cdnjs.cloudflare.com https://fonts.googleapis.com https://widget.freshworks.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com https://fonts.bunny.net https://www.googletagmanager.com; img-src 'self' data: https: blob: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://*.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io https://*.salesdock.nl https://*.clarity.ms; form-action 'self' https://outside.salesdock.nl https://hub.zonatlas.nl; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com https://flo.uri.sh/; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Cross-Origin-Embedder-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Opener-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"9396d9a20fffae62-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"path\": \"https://app.salesdock.test/api/testomgeving/v1/account/leads/results\",\n        \"per_page\": 20,\n        \"next_cursor\": \"eyJsZWFkX3Jlc3VsdHMuaWQiOjc5NjkxNjQsIl9wb2ludHNUb05leHRJdGVtcyI6dHJ1ZX0\",\n        \"next_page_url\": \"https://app.salesdock.test/api/testomgeving/v1/account/leads/results?period=custom&period_start=2022-01-01&cursor=eyJsZWFkX3Jlc3VsdHMuaWQiOjc5NjkxNjQsIl9wb2ludHNUb05leHRJdGVtcyI6dHJ1ZX0\",\n        \"prev_cursor\": null,\n        \"prev_page_url\": null,\n        \"data\": [\n            {\n            \"created_at\": \"2025-05-02 12:31:04\",\n            \"action\": \"call\",\n            \"previous_status\": null,\n            \"new_status\": \"1e-keer-niet-thuis\",\n            \"contact_established\": false,\n            \"sales_opportunity\": false,\n            \"not_reached\": false,\n            \"appointment\": false,\n            \"latitude\": null,\n            \"longitude\": null,\n            \"distance\": null,\n            \"user\": {\n                \"id\": 2,\n                \"name\": \"Jane Doe\"\n            },\n            \"organisation\": {\n                \"id\": 1,\n                \"name\": \"Default\",\n                \"identifier\": \"default\"\n            },\n            \"team\": null,\n            \"township\": null,\n            \"lead\": {\n                \"id\": 1\n            }\n        },\n        {\n            \"result_at\": \"2025-05-02 12:31:25\",\n            \"action\": \"visit\",\n            \"previous_status\": \"1e-keer-niet-thuis\",\n            \"new_status\": \"deur-geopend\",\n            \"contact_established\": true,\n            \"sales_opportunity\": false,\n            \"not_reached\": false,\n            \"appointment\": false,\n            \"result_latitude\": null,\n            \"result_longitude\": null,\n            \"result_distance\": null,\n            \"user\": {\n                \"id\": 2,\n                \"name\": \"Jane Doe\"\n            },\n            \"organisation\": {\n                \"id\": 1,\n                \"name\": \"Default\",\n                \"identifier\": \"default\"\n            },\n            \"team\": null,\n            \"township\": null,\n            \"lead\": {\n                \"id\": 3\n            }\n            }\n        ]\n    },\n    \"message\": \"Lead results successfully returned\"\n}"}],"_postman_id":"9501c3ba-69b5-4a24-b4f9-8cf92b82f2da"},{"name":"Update lead status","id":"77d6445a-18f4-43a4-9386-70541ed2eb0b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\": \"afspraak\",\n    \"remark\": \"Testing lead status update\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/v1/account/leads/status/{{lead_id}}","description":"<p>This endpoint, available for admin users, is used to update the status of the lead.</p>\n<p>Replace {{lead_id}} in the request URL with the ID of the lead.</p>\n<p>In the request body, send the identifier of the status and the remarks (optional).</p>\n","urlObject":{"path":["api","{{domain}}","v1","account","leads","status","{{lead_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"9756b38b-e7df-41c0-a439-05f98f7c858e","name":"Update lead status","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\": \"afspraak\",\n    \"remark\": \"Testing lead status update\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/v1/account/leads/status/{{lead_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 27 Feb 2023 06:52:47 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"57"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=mHr1LQ8i7iEixsDl6oWatKrirzaC0UdU13tiNGe85nvd3zCoir4EU7eBAZa0c9bJGRdWdjW0gall9Ytyanjrtx%2FeS74ndCqeWu3kgfDdQ6W0v%2F%2Fn4bV3OoBiJYOYW1yycUQ%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"79feffe6a9d79aa1-NAG"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [],\n    \"message\": \"Lead succesvol geüpdated\"\n}"}],"_postman_id":"77d6445a-18f4-43a4-9386-70541ed2eb0b"},{"name":"Get leads forms","id":"d2f3e6d0-c6cb-4259-b246-70f23b6898fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/leads/forms","description":"<p>This endpoint helps in retrieving all the leads forms that are avaialble for the user.</p>\n<p>The id retrieved in this can be used to fetch the form elements and to also create a lead form instance</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","leads","forms"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"a0c4d6f0-4b93-4afe-883a-c8bd362dc5f2","name":"Get leads forms","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/leads/forms"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 06:39:02 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"120"},{"key":"X-RateLimit-Remaining","value":"119"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=bKa0Zywqc6JWRCb52j0Q2oVqfrSVm4Ez6I87h%2BYAvCERc6%2FG1c8vHo%2FQUKNYuycUytDwZlIgWzyXwdsSPoNV%2BfUrLQpjdlZj%2FlYZr%2FJ7wZcGcHSSjpVXi3cpgEj2dneCkBY%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7da203252c911c7d-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"id\": 427,\n            \"identifier\": \"energielabel-check-testformulier\",\n            \"label\": \"Energielabel check testformulier\",\n            \"description\": \"\",\n            \"active\": true,\n            \"created_at\": \"2022-03-22 09:02:44\",\n            \"updated_at\": \"2023-04-20 07:32:22\"\n        },\n        {\n            \"id\": 565,\n            \"identifier\": \"suzannes-testform\",\n            \"label\": \"Interesse formulier\",\n            \"description\": \"\",\n            \"active\": true,\n            \"created_at\": \"2022-06-27 15:25:36\",\n            \"updated_at\": \"2023-05-19 08:53:47\"\n        },\n        {\n            \"id\": 655,\n            \"identifier\": \"suzannes-testform-clone\",\n            \"label\": \"Suzannes testform (kloon)\",\n            \"description\": \"\",\n            \"active\": true,\n            \"created_at\": \"2022-09-30 14:11:46\",\n            \"updated_at\": \"2022-09-30 14:11:46\"\n        },\n        {\n            \"id\": 661,\n            \"identifier\": \"suzannes-testform-clone-clone\",\n            \"label\": \"Suzannes testform (kloon) (clone)\",\n            \"description\": \"\",\n            \"active\": true,\n            \"created_at\": \"2022-10-05 08:13:41\",\n            \"updated_at\": \"2022-10-05 08:13:41\"\n        },\n        {\n            \"id\": 662,\n            \"identifier\": \"suzannes-testform-clone-1\",\n            \"label\": \"Suzannes testform (clone)\",\n            \"description\": \"\",\n            \"active\": true,\n            \"created_at\": \"2022-10-05 08:13:41\",\n            \"updated_at\": \"2022-10-05 08:13:41\"\n        },\n        {\n            \"id\": 663,\n            \"identifier\": \"energielabel-check-testformulier-clone\",\n            \"label\": \"Energielabel check testformulier (clone)\",\n            \"description\": \"\",\n            \"active\": true,\n            \"created_at\": \"2022-10-05 08:13:41\",\n            \"updated_at\": \"2022-10-05 08:13:41\"\n        }\n    ],\n    \"message\": \"Lead forms retrieved successfully\"\n}"}],"_postman_id":"d2f3e6d0-c6cb-4259-b246-70f23b6898fe"},{"name":"Get leads form elements","id":"9186353e-eaad-41a6-a308-5dda34c05a1c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/leads/forms/{{lead_form_id}}/elements","description":"<p>This endpoint retrieves all the elements that are avaialble for a lead form. Replace lead_form_id in the URL with id of the form.</p>\n<p>The elements retrieved can be used to create a lead form instance.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","leads","forms","{{lead_form_id}}","elements"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"4fd7c6b0-3186-4783-821d-2fce7efc632e","name":"Get leads form elements","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/leads/forms/{{lead_form_id}}/elements"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 06:43:36 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"120"},{"key":"X-RateLimit-Remaining","value":"119"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=M6uM%2BXqVmbme81OwPdkeFpXAzw%2BY1xdBbj20xayQyxi8j5sp5iIif38rAH7bjeGY4%2B7%2BR86yZbAZGi%2F%2FRjtozonwff8FtxFlL2Opdun3LSdc%2FJIIgL%2FIkD086Z7OwqV7bD8%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7da209d7ec4c1c7d-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"id\": 14200,\n            \"identifier\": \"consument-of-zakelijk\",\n            \"input_type\": \"mc-single\",\n            \"label\": \"Consument of zakelijk\",\n            \"description\": \"\",\n            \"filled_by_client\": false,\n            \"filled_by_agent\": true,\n            \"lead_component\": true\n        },\n        {\n            \"id\": 14201,\n            \"identifier\": \"bedrijfsnaam\",\n            \"input_type\": \"text\",\n            \"label\": \"Bedrijfsnaam\",\n            \"description\": \"\",\n            \"filled_by_client\": false,\n            \"filled_by_agent\": true,\n            \"lead_component\": true\n        },\n        {\n            \"id\": 8877,\n            \"identifier\": \"vraagteken\",\n            \"input_type\": \"array\",\n            \"label\": \"Adres\",\n            \"description\": \"\",\n            \"filled_by_client\": false,\n            \"filled_by_agent\": true,\n            \"lead_component\": true,\n            \"format\": {\n                \"postcode\": \"1234AB\",\n                \"housenumber\": \"8\",\n                \"suffix\": \"\",\n                \"city\": \"Test\",\n                \"streetname\": \"Test\"\n            }\n        },\n        {\n            \"id\": 8958,\n            \"identifier\": \"name\",\n            \"input_type\": \"signature\",\n            \"label\": \"Handtekening\",\n            \"description\": \"\",\n            \"filled_by_client\": true,\n            \"filled_by_agent\": true,\n            \"lead_component\": false\n        },\n        {\n            \"id\": 9278,\n            \"identifier\": \"e-mail\",\n            \"input_type\": \"email\",\n            \"label\": \"E-mail\",\n            \"description\": \"\",\n            \"filled_by_client\": true,\n            \"filled_by_agent\": false,\n            \"lead_component\": true\n        },\n        {\n            \"id\": 15822,\n            \"identifier\": \"geslacht\",\n            \"input_type\": \"mc-single\",\n            \"label\": \"Geslacht\",\n            \"description\": \"\",\n            \"filled_by_client\": false,\n            \"filled_by_agent\": true,\n            \"lead_component\": true\n        }\n    ],\n    \"message\": \"Lead form elements retrieved successfully\"\n}"}],"_postman_id":"9186353e-eaad-41a6-a308-5dda34c05a1c"},{"name":"Create lead form instance","id":"13c387be-7041-4e53-a73c-7e73f390f011","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Accept-Encoding","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"questionData\": {\n        \"consument-of-zakelijk\": \"1\",\n        \"bedrijfsnaam\": \"Test Co\"\n    },\n    \"client_name\": \"John Doe\",\n    \"client_email\": \"test@salesdock.nl\",\n    \"client_phone\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/leads/forms/{{lead_form_id}}/instances","description":"<p>This endpoint can be used to create a lead in Salesdock using a lead form template. The main parameters that are supported in this are:</p>\n<ul>\n<li>questionData - This is an array with the form element identifier as the key and the answer provided by the client as the value</li>\n<li>client_name - The name of the client if the lead form can also be completed by the client</li>\n<li>client_email - The email of the client if the lead form can also be completed by the client</li>\n<li>client_phone - The phone number of the client if the lead form can also be completed by the client</li>\n</ul>\n<p>If the client needs to complete the form, then as soon as the form is saved then an email will be sent to the client to complete the form.</p>\n<p>The response contains the lead id of the lead created.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","leads","forms","{{lead_form_id}}","instances"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"885f9df1-70e9-4a26-a3ca-027363c2dc87","name":"Create lead form instance","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Accept-Encoding","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"questionData\": {\n        \"consument-of-zakelijk\": \"1\",\n        \"bedrijfsnaam\": \"Test Co\"\n    },\n    \"client_name\": \"John Doe\",\n    \"client_email\": \"test@salesdock.nl\",\n    \"client_phone\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/leads/forms/{{lead_form_id}}/instances"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 03 May 2023 06:37:30 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=sKXKXidyc8G6pHFfYHqQ8PQzCbrh0y3uKeJY3hgXrpZ9oM%2FiHvSSeBaRZSJNAdTJ%2FQjMkvX17W5lzGp9FgMYHo3IBrT%2FRC7xvNYfX%2Fkdei3cZdK6A4oH6eLMHG6mD8qBoUk%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7c167ee2e8e7a3b2-AMD"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"form_instance_id\": 42139,\n        \"lead_id\": 20153755\n    },\n    \"message\": \"Formulier succesvol aangemaakt.\"\n}"},{"id":"43019ca3-ab24-43ce-b1d2-c789f22904ab","name":"Create lead form instance with lead meta data","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Accept-Encoding","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"form\": {\n        \"consument-of-zakelijk\": \"1\",\n        \"bedrijfsnaam\": \"Test Co\"\n    },\n    \"client\": {\n        \"name\": \"John Doe\",\n        \"email\": \"test@salesdock.nl\",\n        \"phone\": \"\"\n    },\n    \"lead\": {\n        \"township_id\": 10,\n        \"labels\": [1,2]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/leads/forms/{{lead_form_id}}/instances"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 03 May 2023 06:37:30 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=sKXKXidyc8G6pHFfYHqQ8PQzCbrh0y3uKeJY3hgXrpZ9oM%2FiHvSSeBaRZSJNAdTJ%2FQjMkvX17W5lzGp9FgMYHo3IBrT%2FRC7xvNYfX%2Fkdei3cZdK6A4oH6eLMHG6mD8qBoUk%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7c167ee2e8e7a3b2-AMD"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"form_instance_id\": 42139,\n        \"lead_id\": 20153755\n    },\n    \"message\": \"Form successfully created.\"\n}"}],"_postman_id":"13c387be-7041-4e53-a73c-7e73f390f011"},{"name":"Get lead statuses list","id":"8abe02e4-1447-4bd8-bccf-2410168756cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/statuses?status_source=lead","description":"<p>This endpoint returns the list of lead statuses that are available in the application. The status identifier can be used to update the status of the lead.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","statuses"],"host":["{{url}}"],"query":[{"key":"status_source","value":"lead"}],"variable":[]}},"response":[{"id":"b45d1a19-8488-40df-97e1-9b20f15a7e9c","name":"Get lead statuses list","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/statuses?status_source=lead","host":["{{url}}"],"path":["api","{{domain}}","{{version}}","{{scope}}","statuses"],"query":[{"key":"status_source","value":"lead"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 28 May 2025 05:27:06 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"150"},{"key":"X-RateLimit-Remaining","value":"149"},{"key":"x-robots-tag","value":"none"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com https://*.clarity.ms https://region1.analytics.google.com/g/collect https://public.flourish.studio/resources/embed.js; style-src 'self' 'unsafe-inline' https://cdnjs.cloudflare.com https://fonts.googleapis.com https://widget.freshworks.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com https://fonts.bunny.net https://www.googletagmanager.com; img-src 'self' data: https: blob: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://*.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io https://*.salesdock.nl https://*.clarity.ms; form-action 'self' https://outside.salesdock.nl https://hub.zonatlas.nl; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com https://*.leaddesk.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com https://flo.uri.sh/; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Cross-Origin-Embedder-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Opener-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"946b574abcb00a74-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"source\": \"lead\",\n            \"id\": \"open-lead\",\n            \"name\": \"Open lead\",\n            \"text\": \"Open lead\",\n            \"type\": \"default\",\n            \"source_data\": {\n                \"contact_established\": false,\n                \"sales_opportunity\": false,\n                \"activities\": [\n                    \"Afspraak activiteit\",\n                    \"Appointment\",\n                    \"Default\"\n                ]\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"close-lead\",\n            \"name\": \"Close lead\",\n            \"text\": \"Close lead\",\n            \"type\": \"closed\",\n            \"source_data\": {\n                \"contact_established\": false,\n                \"sales_opportunity\": false,\n                \"activities\": [\n                    \"Afspraak activiteit\",\n                    \"Appointment\",\n                    \"Default\"\n                ]\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"testestetestest\",\n            \"name\": \"testestetestest\",\n            \"text\": \"testestetestest\",\n            \"type\": \"default\",\n            \"source_data\": {\n                \"contact_established\": false,\n                \"sales_opportunity\": false,\n                \"activities\": [\n                    \"D2D\"\n                ]\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"test-complete-status\",\n            \"name\": \"Test-complete-status\",\n            \"text\": \"Test-complete-status\",\n            \"type\": \"closed\",\n            \"source_data\": {\n                \"contact_established\": false,\n                \"sales_opportunity\": false,\n                \"activities\": null\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"status-kks\",\n            \"name\": \"status-kks ?\",\n            \"text\": \"status-kks ?\",\n            \"type\": \"default\",\n            \"source_data\": {\n                \"contact_established\": false,\n                \"sales_opportunity\": false,\n                \"activities\": null\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"test-close\",\n            \"name\": \"Test close\",\n            \"text\": \"Test close\",\n            \"type\": \"closed\",\n            \"source_data\": {\n                \"contact_established\": false,\n                \"sales_opportunity\": false,\n                \"activities\": null\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"test-lars\",\n            \"name\": \"test-lars\",\n            \"text\": \"test-lars\",\n            \"type\": \"default\",\n            \"source_data\": {\n                \"contact_established\": false,\n                \"sales_opportunity\": false,\n                \"activities\": null\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"test-lars\",\n            \"name\": \"test-lars\",\n            \"text\": \"test-lars\",\n            \"type\": \"default\",\n            \"source_data\": {\n                \"contact_established\": false,\n                \"sales_opportunity\": false,\n                \"activities\": null\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"servicescan\",\n            \"name\": \"Servicescan\",\n            \"text\": \"Servicescan\",\n            \"type\": \"default\",\n            \"source_data\": {\n                \"contact_established\": false,\n                \"sales_opportunity\": false,\n                \"activities\": [\n                    \"Sales aan Huis (Sales at home)\",\n                    \"Service aan Huis (Home service)\"\n                ]\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"klant-is-tevreden-customer-satisfied\",\n            \"name\": \"Klant is tevreden (customer satisfied)\",\n            \"text\": \"Klant is tevreden (customer satisfied)\",\n            \"type\": \"default\",\n            \"source_data\": {\n                \"contact_established\": false,\n                \"sales_opportunity\": false,\n                \"activities\": [\n                    \"Sales aan Huis (Sales at home)\",\n                    \"Service aan Huis (Home service)\"\n                ]\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"gratis-content-weggeven\",\n            \"name\": \"Gratis content weggeven\",\n            \"text\": \"Gratis content weggeven\",\n            \"type\": \"default\",\n            \"source_data\": {\n                \"contact_established\": true,\n                \"sales_opportunity\": false,\n                \"activities\": [\n                    \"Sales aan Huis (Sales at home)\",\n                    \"Service aan Huis (Home service)\"\n                ]\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"probleem-opgelost-voor-klant\",\n            \"name\": \"Probleem opgelost voor klant\",\n            \"text\": \"Probleem opgelost voor klant\",\n            \"type\": \"default\",\n            \"source_data\": {\n                \"contact_established\": false,\n                \"sales_opportunity\": false,\n                \"activities\": [\n                    \"Sales aan Huis (Sales at home)\",\n                    \"Service aan Huis (Home service)\"\n                ]\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"klant-van-advies-voorzien\",\n            \"name\": \"Klant van advies voorzien\",\n            \"text\": \"Klant van advies voorzien\",\n            \"type\": \"default\",\n            \"source_data\": {\n                \"contact_established\": true,\n                \"sales_opportunity\": false,\n                \"activities\": [\n                    \"Sales aan Huis (Sales at home)\",\n                    \"Service aan Huis (Home service)\"\n                ]\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"tts-monteur-ingepland\",\n            \"name\": \"TTS monteur ingepland\",\n            \"text\": \"TTS monteur ingepland\",\n            \"type\": \"default\",\n            \"source_data\": {\n                \"contact_established\": false,\n                \"sales_opportunity\": false,\n                \"activities\": [\n                    \"Sales aan Huis (Sales at home)\",\n                    \"Service aan Huis (Home service)\"\n                ]\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"geen-interesse-in-gesprek\",\n            \"name\": \"Geen interesse in gesprek\",\n            \"text\": \"Geen interesse in gesprek\",\n            \"type\": \"default\",\n            \"source_data\": {\n                \"contact_established\": true,\n                \"sales_opportunity\": false,\n                \"activities\": [\n                    \"Sales aan Huis (Sales at home)\",\n                    \"Service aan Huis (Home service)\"\n                ]\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"klant-heeft-al-opgezegd-customer-cancelled\",\n            \"name\": \"Klant heeft al opgezegd (customer cancelled)\",\n            \"text\": \"Klant heeft al opgezegd (customer cancelled)\",\n            \"type\": \"default\",\n            \"source_data\": {\n                \"contact_established\": true,\n                \"sales_opportunity\": false,\n                \"activities\": [\n                    \"Sales aan Huis (Sales at home)\",\n                    \"Service aan Huis (Home service)\"\n                ]\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"beslisser-was-niet-thuis\",\n            \"name\": \"Beslisser was niet thuis\",\n            \"text\": \"Beslisser was niet thuis\",\n            \"type\": \"default\",\n            \"source_data\": {\n                \"contact_established\": true,\n                \"sales_opportunity\": false,\n                \"activities\": [\n                    \"Sales aan Huis (Sales at home)\",\n                    \"Service aan Huis (Home service)\"\n                ]\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"offertes-afgewezen\",\n            \"name\": \"Offertes afgewezen\",\n            \"text\": \"Offertes afgewezen\",\n            \"type\": \"closed\",\n            \"source_data\": {\n                \"contact_established\": false,\n                \"sales_opportunity\": false,\n                \"activities\": null\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"offertes-geaccepteerd\",\n            \"name\": \"Offertes geaccepteerd\",\n            \"text\": \"Offertes geaccepteerd\",\n            \"type\": \"default\",\n            \"source_data\": {\n                \"contact_established\": false,\n                \"sales_opportunity\": false,\n                \"activities\": null\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"offertes-verlopen\",\n            \"name\": \"Offertes verlopen\",\n            \"text\": \"Offertes verlopen\",\n            \"type\": \"closed\",\n            \"source_data\": {\n                \"contact_established\": false,\n                \"sales_opportunity\": false,\n                \"activities\": null\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"deels-afgerond\",\n            \"name\": \"Deels afgerond\",\n            \"text\": \"Deels afgerond\",\n            \"type\": \"default\",\n            \"source_data\": {\n                \"contact_established\": false,\n                \"sales_opportunity\": false,\n                \"activities\": null\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"afgerond-gewonnen\",\n            \"name\": \"Afgerond - gewonnen\",\n            \"text\": \"Afgerond - gewonnen\",\n            \"type\": \"closed\",\n            \"source_data\": {\n                \"contact_established\": false,\n                \"sales_opportunity\": false,\n                \"activities\": null\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"afgerond-verloren\",\n            \"name\": \"Afgerond - verloren\",\n            \"text\": \"Afgerond - verloren\",\n            \"type\": \"closed\",\n            \"source_data\": {\n                \"contact_established\": false,\n                \"sales_opportunity\": false,\n                \"activities\": null\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"test-lars-gesloten\",\n            \"name\": \"Test Lars gesloten\",\n            \"text\": \"Test Lars gesloten\",\n            \"type\": \"default\",\n            \"source_data\": {\n                \"contact_established\": false,\n                \"sales_opportunity\": false,\n                \"activities\": null\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"test-lars\",\n            \"name\": \"Test Lars\",\n            \"text\": \"Test Lars\",\n            \"type\": \"default\",\n            \"source_data\": {\n                \"contact_established\": true,\n                \"sales_opportunity\": false,\n                \"activities\": null\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"wacht-op-voltooing-door-klant\",\n            \"name\": \"Wacht op voltooing door klant\",\n            \"text\": \"Wacht op voltooing door klant\",\n            \"type\": \"default\",\n            \"source_data\": {\n                \"contact_established\": false,\n                \"sales_opportunity\": false,\n                \"activities\": null\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"closed-status\",\n            \"name\": \"Closed status\",\n            \"text\": \"Closed status\",\n            \"type\": \"closed\",\n            \"source_data\": {\n                \"contact_established\": false,\n                \"sales_opportunity\": false,\n                \"activities\": null\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"status-job\",\n            \"name\": \"Status job\",\n            \"text\": \"Status job\",\n            \"type\": \"default\",\n            \"source_data\": {\n                \"contact_established\": false,\n                \"sales_opportunity\": false,\n                \"activities\": null\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"afspraak-geannuleerd\",\n            \"name\": \"Afspraak geannuleerd\",\n            \"text\": \"Afspraak geannuleerd\",\n            \"type\": \"default\",\n            \"source_data\": {\n                \"contact_established\": false,\n                \"sales_opportunity\": false,\n                \"activities\": null\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"offerte-uitgebracht\",\n            \"name\": \"Offerte uitgebracht\",\n            \"text\": \"Offerte uitgebracht\",\n            \"type\": \"default\",\n            \"source_data\": {\n                \"contact_established\": true,\n                \"sales_opportunity\": true,\n                \"activities\": null\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"not-intrested\",\n            \"name\": \"Not intrested\",\n            \"text\": \"Not intrested\",\n            \"type\": \"closed\",\n            \"source_data\": {\n                \"contact_established\": false,\n                \"sales_opportunity\": false,\n                \"activities\": null\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"afspraak\",\n            \"name\": \"Afspraak\",\n            \"text\": \"Afspraak\",\n            \"type\": \"default\",\n            \"source_data\": {\n                \"contact_established\": true,\n                \"sales_opportunity\": false,\n                \"activities\": [\n                    \"D2D\"\n                ]\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"lead-verzenden-mislukt\",\n            \"name\": \"Lead verzenden mislukt\",\n            \"text\": \"Lead verzenden mislukt\",\n            \"type\": \"default\",\n            \"source_data\": {\n                \"contact_established\": false,\n                \"sales_opportunity\": false,\n                \"activities\": null\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"lead-succesvol-verwerkt\",\n            \"name\": \"Lead succesvol verwerkt\",\n            \"text\": \"Lead succesvol verwerkt\",\n            \"type\": \"default\",\n            \"source_data\": {\n                \"contact_established\": false,\n                \"sales_opportunity\": false,\n                \"activities\": null\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"d2d-resultaat-test\",\n            \"name\": \"D2D resultaat test\",\n            \"text\": \"D2D resultaat test\",\n            \"type\": \"default\",\n            \"source_data\": {\n                \"contact_established\": false,\n                \"sales_opportunity\": false,\n                \"activities\": null\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"traffic-builder-status\",\n            \"name\": \"Traffic builder status\",\n            \"text\": \"Traffic builder status\",\n            \"type\": \"default\",\n            \"source_data\": {\n                \"contact_established\": false,\n                \"sales_opportunity\": false,\n                \"activities\": [\n                    \"Traffic builder\"\n                ]\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"test-lead-status\",\n            \"name\": \"Test lead status\",\n            \"text\": \"Test lead status\",\n            \"type\": \"default\",\n            \"source_data\": {\n                \"contact_established\": false,\n                \"sales_opportunity\": false,\n                \"activities\": null\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"1e-keer-niet-thuis\",\n            \"name\": \"1e keer niet thuis\",\n            \"text\": \"1e keer niet thuis\",\n            \"type\": \"default\",\n            \"source_data\": {\n                \"contact_established\": false,\n                \"sales_opportunity\": false,\n                \"activities\": null\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"2e-keer-niet-thuis\",\n            \"name\": \"2e keer niet thuis\",\n            \"text\": \"2e keer niet thuis\",\n            \"type\": \"default\",\n            \"source_data\": {\n                \"contact_established\": false,\n                \"sales_opportunity\": false,\n                \"activities\": null\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"3e-keer-niet-thuis\",\n            \"name\": \"3e keer niet thuis\",\n            \"text\": \"3e keer niet thuis\",\n            \"type\": \"closed\",\n            \"source_data\": {\n                \"contact_established\": false,\n                \"sales_opportunity\": false,\n                \"activities\": null\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"test-cancel\",\n            \"name\": \"Test cancel\",\n            \"text\": \"Test cancel\",\n            \"type\": \"cancelled\",\n            \"source_data\": {\n                \"contact_established\": false,\n                \"sales_opportunity\": false,\n                \"activities\": null\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"test-lead-status\",\n            \"name\": \"Test Lead status\",\n            \"text\": \"Test Lead status\",\n            \"type\": \"default\",\n            \"source_data\": {\n                \"contact_established\": true,\n                \"sales_opportunity\": true,\n                \"activities\": null\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"deur-geopend\",\n            \"name\": \"Deur geopend\",\n            \"text\": \"Deur geopend\",\n            \"type\": \"closed\",\n            \"source_data\": {\n                \"contact_established\": true,\n                \"sales_opportunity\": false,\n                \"activities\": null\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"afspraak-geaccepteerd\",\n            \"name\": \"Afspraak geaccepteerd\",\n            \"text\": \"Afspraak geaccepteerd\",\n            \"type\": \"default\",\n            \"source_data\": {\n                \"contact_established\": false,\n                \"sales_opportunity\": false,\n                \"activities\": null\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"afspraak-geweigerd\",\n            \"name\": \"Afspraak geweigerd\",\n            \"text\": \"Afspraak geweigerd\",\n            \"type\": \"closed\",\n            \"source_data\": {\n                \"contact_established\": false,\n                \"sales_opportunity\": false,\n                \"activities\": null\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"geaccepteerde-offerte\",\n            \"name\": \"Geaccepteerde offerte\",\n            \"text\": \"Geaccepteerde offerte\",\n            \"type\": \"closed\",\n            \"source_data\": {\n                \"contact_established\": false,\n                \"sales_opportunity\": false,\n                \"activities\": null\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"offerte\",\n            \"name\": \"Offerte\",\n            \"text\": \"Offerte\",\n            \"type\": \"closed\",\n            \"source_data\": {\n                \"contact_established\": false,\n                \"sales_opportunity\": false,\n                \"activities\": null\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"offerte-afgewezen\",\n            \"name\": \"Offerte afgewezen\",\n            \"text\": \"Offerte afgewezen\",\n            \"type\": \"closed\",\n            \"source_data\": {\n                \"contact_established\": false,\n                \"sales_opportunity\": false,\n                \"activities\": [\n                    \"Default\"\n                ]\n            }\n        },\n        {\n            \"source\": \"lead\",\n            \"id\": \"sale\",\n            \"name\": \"Sale\",\n            \"text\": \"Sale\",\n            \"type\": \"closed\",\n            \"source_data\": {\n                \"contact_established\": false,\n                \"sales_opportunity\": false,\n                \"activities\": null\n            }\n        }\n    ],\n    \"message\": \"Statuses retrieved successfully\"\n}"}],"_postman_id":"8abe02e4-1447-4bd8-bccf-2410168756cb"}],"id":"1c67f689-c63b-416c-905a-774c03ad8b15","_postman_id":"1c67f689-c63b-416c-905a-774c03ad8b15","description":""},{"name":"Forms API","item":[{"name":"Get forms","id":"56f6d15f-b578-4e6c-b89a-dbce78815159","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/forms","description":"<p>This endpoint can be used to fetch the list of forms that are available for the user. The id provided in the response, is used for subsequent calls to get the form elements and to fill a form instance</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","forms"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"6122c5b2-a351-4bb2-86e3-50519c2429d6","name":"Get forms","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/forms"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 03 Nov 2021 09:20:09 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"57"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' https://bam.eu01.nr-data.net https://www.google-analytics.com https://widget.freshworks.com https://salesdock.freshdesk.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=VfGh4grW5JBx3rx5YZwUgX4hj4nM9M2rqAKy4UYujMvNhyU5fJaGalJ0z%2BqXIOqkUHoG7p%2BvKSfTJQUaQumuzbox1jgt2yxCqjKsNeJODtD%2FSzCB5zVXHU0BMtVNK6GmvTs%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"6a848664dc35318d-BOM"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"current_page\": 1,\n        \"data\": [\n            {\n                \"id\": 14,\n                \"name\": \"Leadformulier Zonnepanelen\"\n            },\n            {\n                \"id\": 18,\n                \"name\": \"Offerte aanvraag EVBox\"\n            },\n            {\n                \"id\": 36,\n                \"name\": \"Offerte Eneco electrisch laden\"\n            },\n            {\n                \"id\": 37,\n                \"name\": \"Leadformulier Alpine Isolatie\"\n            },\n            {\n                \"id\": 38,\n                \"name\": \"Fresh 7 afspraak\"\n            },\n            {\n                \"id\": 65,\n                \"name\": \"Afspraakformulier Next Level Smarthome\"\n            },\n            {\n                \"id\": 92,\n                \"name\": \"Interesse formulier\"\n            },\n            {\n                \"id\": 97,\n                \"name\": \"Engie zonnepanelen\"\n            },\n            {\n                \"id\": 98,\n                \"name\": \"Engie laadpalen\"\n            },\n            {\n                \"id\": 141,\n                \"name\": \"Test\"\n            },\n            {\n                \"id\": 168,\n                \"name\": \"Vooropname laadpalen\"\n            },\n            {\n                \"id\": 172,\n                \"name\": \"Testformulier\"\n            },\n            {\n                \"id\": 180,\n                \"name\": \"123 formulier\"\n            },\n            {\n                \"id\": 184,\n                \"name\": \"Leadformulier airco's\"\n            },\n            {\n                \"id\": 186,\n                \"name\": \"Form Test\"\n            },\n            {\n                \"id\": 187,\n                \"name\": \"Test client form\"\n            },\n            {\n                \"id\": 189,\n                \"name\": \"Test formulier\"\n            },\n            {\n                \"id\": 195,\n                \"name\": \"T-R Test\"\n            },\n            {\n                \"id\": 201,\n                \"name\": \"Test Example Image\"\n            },\n            {\n                \"id\": 206,\n                \"name\": \"Test SMS\"\n            }\n        ],\n        \"first_page_url\": \"https://app.salesdock.nl/api/testomgeving/v1/user/forms?page=1\",\n        \"from\": 1,\n        \"last_page\": 2,\n        \"last_page_url\": \"https://app.salesdock.nl/api/testomgeving/v1/user/forms?page=2\",\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"<< Vorige\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://app.salesdock.nl/api/testomgeving/v1/user/forms?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": \"https://app.salesdock.nl/api/testomgeving/v1/user/forms?page=2\",\n                \"label\": \"2\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://app.salesdock.nl/api/testomgeving/v1/user/forms?page=2\",\n                \"label\": \"Volgende >>\",\n                \"active\": false\n            }\n        ],\n        \"next_page_url\": \"https://app.salesdock.nl/api/testomgeving/v1/user/forms?page=2\",\n        \"path\": \"https://app.salesdock.nl/api/testomgeving/v1/user/forms\",\n        \"per_page\": 20,\n        \"prev_page_url\": null,\n        \"to\": 20,\n        \"total\": 32\n    },\n    \"message\": \"Formulieren succesvol opgehaald\"\n}"}],"_postman_id":"56f6d15f-b578-4e6c-b89a-dbce78815159"},{"name":"Get form elements","id":"586883a2-fd6a-48ae-859b-bf00e1a3c2c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/forms/{{form_id}}/elements","description":"<p>The Get form elements retrieves all the elements that are available for a form. Replace {{form_id}} in the URL with the ID of the form.</p>\n<p>These elements can then be used to create a form instance for the form.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","forms","{{form_id}}","elements"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"03109da6-84b9-44d8-8cc9-0820a67cc209","name":"Get form elements","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/forms/{{form_id}}/elements"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 03 Nov 2021 09:25:58 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"57"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' https://bam.eu01.nr-data.net https://www.google-analytics.com https://widget.freshworks.com https://salesdock.freshdesk.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=QOOHLUvWBRKYcXi4FUtM1UCaYQ%2FNy5MFHjtORDP6CofG7h6R%2F23IxxYaxFKgXCFxsFfsZSbTL5aobvS23v%2FvchvkjivlxEzOucW7HyW4rZP0eprSMIHpBwoMxK1TJmR2S%2B0%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"6a848eeccc06318d-BOM"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"id\": 416,\n            \"name\": \"Bestaande of nieuwe klant?\",\n            \"identifier\": \"bestaande-of-nieuwe-klant\",\n            \"input_type\": \"relation\",\n            \"description\": \"\"\n        },\n        {\n            \"id\": 112,\n            \"name\": \"Specificaties zonnepanelen\",\n            \"identifier\": \"specificaties-zonnepanelen\",\n            \"input_type\": \"h2\",\n            \"description\": \"\"\n        },\n        {\n            \"id\": 118,\n            \"name\": \"Voor het optimale effect van zonnepanelen is de juiste ligging en hellingshoek erg belangrijk. Hiermee wordt een optimaal rendement gehaald.\",\n            \"identifier\": \"extra-informatie\",\n            \"input_type\": \"p\",\n            \"description\": \"\"\n        },\n        {\n            \"id\": 420,\n            \"name\": \"Type woning\",\n            \"identifier\": \"type-woning\",\n            \"input_type\": \"mc-single\",\n            \"description\": \"\"\n        },\n        {\n            \"id\": 421,\n            \"name\": \"Anders, nl\",\n            \"identifier\": \"anders-nl\",\n            \"input_type\": \"text\",\n            \"description\": \"\"\n        },\n        {\n            \"id\": 114,\n            \"name\": \"Ligging schuin dak\",\n            \"identifier\": \"ligging-schuin-dak\",\n            \"input_type\": \"mc-single\",\n            \"description\": \"\"\n        },\n        {\n            \"id\": 441,\n            \"name\": \"Maak twee foto's van dak\",\n            \"identifier\": \"maak-twee-fotos-van-dak\",\n            \"input_type\": \"file\",\n            \"description\": \"\"\n        },\n        {\n            \"id\": 153,\n            \"name\": \"Hoeveel m3 dak beschikbaar?\",\n            \"identifier\": \"hoeveel-m3-dak-beschikbaar\",\n            \"input_type\": \"mc-single\",\n            \"description\": \"\"\n        },\n        {\n            \"id\": 113,\n            \"name\": \"Handtekening voor akkoord\",\n            \"identifier\": \"handtekening-voor-akkoord\",\n            \"input_type\": \"signature\",\n            \"description\": \"\"\n        },\n        {\n            \"id\": 1268,\n            \"name\": \"File\",\n            \"identifier\": \"file\",\n            \"input_type\": \"file\",\n            \"description\": \"\"\n        }\n    ],\n    \"message\": \"Formulier elementen succesvol opgehaald\"\n}"}],"_postman_id":"586883a2-fd6a-48ae-859b-bf00e1a3c2c3"},{"name":"Get form instances","id":"73974b85-142c-41e8-9a0a-704eb4569252","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/forms/instances?period_filter_on=&period=&period_start=&period_end=&statuses[0]=&sale_id","description":"<p>This endpoint fetches a list of form instances with the basic details of each form instance. The form instance id is also retrieved and this can be used in the \"Get form instance\" endpoint to fetch a form instance with complete details and also in the \"Get form instance PDF\" endpoint to fetch the PDF of a form instance.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","forms","instances"],"host":["{{url}}"],"query":[{"description":{"content":"<p>The date period to filter on. Possible values - created_date, updated_date, completed_date</p>\n","type":"text/plain"},"key":"period_filter_on","value":""},{"description":{"content":"<p>The period to filter on. Possible values - custom, today, yesterday, this_week, last_week, last_30_days, this_month, last_month, this_year</p>\n","type":"text/plain"},"key":"period","value":""},{"description":{"content":"<p>Start date if period is custom</p>\n","type":"text/plain"},"key":"period_start","value":""},{"description":{"content":"<p>End date if period is custom</p>\n","type":"text/plain"},"key":"period_end","value":""},{"description":{"content":"<p>Status of form. Multiple statuses can be passed</p>\n","type":"text/plain"},"key":"statuses[0]","value":""},{"description":{"content":"<p>Sale ID of originating sale</p>\n","type":"text/plain"},"key":"sale_id","value":null}],"variable":[]}},"response":[{"id":"fac2db04-b8ba-4a75-8a8c-3a2331816828","name":"Get form instances","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/forms/instances"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 13 Jan 2022 11:23:19 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' https://bam.eu01.nr-data.net https://www.google-analytics.com https://widget.freshworks.com https://salesdock.freshdesk.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=a2lqED9bwyYQ%2FQEY511ql7rKJ5sg5JenpspVYmfLRoU%2FmuAfKbbx5x9%2FdPzfI4%2FMEl7Aw%2F2uS8qHqOM6fD5o%2BXV9GXCDlbBEugaZRgsg0vyWk1tSJ1cwuyJKOued%2Bahtfy8%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"6cce4072ca050bc1-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"current_page\": 1,\n        \"data\": [\n            {\n                \"id\": 11320,\n                \"title\": \"Leadformulier Zonnepanelen\",\n                \"status\": \"new\",\n                \"organisation_name\": \"Default\",\n                \"agent\": \"John Dow\",\n                \"client_info\": {\n                    \"client_name_for_receiving_confirmation_email\": \"Jane\",\n                    \"client_email_for_receiving_confirmation_email\": \"test@salesdock.nl\"\n                },\n                \"created_at\": \"2021-11-16T11:05:52.000000Z\",\n                \"updated_at\": \"2021-11-16T11:05:55.000000Z\"\n            },\n            {\n                \"id\": 10797,\n                \"title\": \"Leadformulier Zonnepanelen\",\n                \"status\": \"new\",\n                \"status_remark\": null,\n                \"organisation_name\": \"Default\",\n                \"agent\": \"John Doe\",\n                \"client_info\": {\n                    \"client_name_for_receiving_confirmation_email\": \"Test Name\",\n                    \"client_email_for_receiving_confirmation_email\": \"test@salesdock.nl\"\n                },\n                \"created_at\": \"2021-11-03T10:12:59.000000Z\",\n                \"updated_at\": \"2021-11-03T10:13:00.000000Z\"\n            },\n            {\n                \"id\": 10796,\n                \"title\": \"Leadformulier Zonnepanelen\",\n                \"status\": \"new\",\n                \"status_remark\": null,\n                \"organisation_name\": \"Default\",\n                \"agent\": \"John Doe\",\n                \"client_info\": {\n                    \"client_name_for_receiving_confirmation_email\": \"Test Name\",\n                    \"client_email_for_receiving_confirmation_email\": \"test@salesdock.nl\"\n                },\n                \"created_at\": \"2021-11-03T10:12:42.000000Z\",\n                \"updated_at\": \"2021-11-03T10:12:42.000000Z\"\n            },\n            {\n                \"id\": 10795,\n                \"title\": \"Leadformulier Zonnepanelen\",\n                \"status\": \"new\",\n                \"status_remark\": null,\n                \"organisation_name\": \"Default\",\n                \"agent\": \"John Doe\",\n                \"client_info\": {\n                    \"client_name_for_receiving_confirmation_email\": \"Test Name\",\n                    \"client_email_for_receiving_confirmation_email\": \"test@salesdock.nl\"\n                },\n                \"created_at\": \"2021-11-03T10:11:55.000000Z\",\n                \"updated_at\": \"2021-11-03T10:11:56.000000Z\"\n            },\n            {\n                \"id\": 6587,\n                \"title\": \"Leadformulier Zonnepanelen\",\n                \"status\": \"new\",\n                \"status_remark\": null,\n                \"organisation_name\": \"Default\",\n                \"agent\": \"John Doe\",\n                \"client_info\": {\n                    \"client_name_for_receiving_confirmation_email\": \"Jane\",\n                    \"client_email_for_receiving_confirmation_email\": \"test@salesdock.nl\"\n                },\n                \"created_at\": \"2021-06-10T07:10:55.000000Z\",\n                \"updated_at\": \"2021-06-10T07:10:58.000000Z\"\n            },\n            {\n                \"id\": 412,\n                \"title\": \"Offerte aanvraag EVBox\",\n                \"status\": \"new\",\n                \"status_remark\": null,\n                \"organisation_name\": \"Default\",\n                \"agent\": \"John Doe\",\n                \"client_info\": [],\n                \"created_at\": \"2020-12-22T06:42:46.000000Z\",\n                \"updated_at\": \"2020-12-22T06:42:49.000000Z\"\n            },\n            {\n                \"id\": 411,\n                \"title\": \"Leadformulier Zonnepanelen\",\n                \"status\": \"new\",\n                \"status_remark\": null,\n                \"organisation_name\": \"Default\",\n                \"agent\": \"John Doe\",\n                \"client_info\": [],\n                \"created_at\": \"2020-12-22T06:35:41.000000Z\",\n                \"updated_at\": \"2020-12-22T06:35:42.000000Z\"\n            },\n            {\n                \"id\": 328,\n                \"title\": \"Leadformulier Zonnepanelen\",\n                \"status\": \"new\",\n                \"status_remark\": null,\n                \"organisation_name\": \"Default\",\n                \"agent\": \"John Doe\",\n                \"client_info\": null,\n                \"created_at\": \"2020-09-28T11:11:38.000000Z\",\n                \"updated_at\": \"2020-09-28T11:11:39.000000Z\"\n            }\n        ],\n        \"first_page_url\": \"https://app.salesdock.nl/api/testomgeving/v1/user/forms/instances?page=1\",\n        \"from\": 1,\n        \"last_page\": 1,\n        \"last_page_url\": \"https://app.salesdock.nl/api/testomgeving/v1/user/forms/instances?page=1\",\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"<< Vorige\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://app.salesdock.nl/api/testomgeving/v1/user/forms/instances?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": null,\n                \"label\": \"Volgende >>\",\n                \"active\": false\n            }\n        ],\n        \"next_page_url\": null,\n        \"path\": \"https://app.salesdock.nl/api/testomgeving/v1/user/forms/instances\",\n        \"per_page\": 20,\n        \"prev_page_url\": null,\n        \"to\": 8,\n        \"total\": 8\n    },\n    \"message\": \"Formulieren succesvol opgehaald\"\n}"}],"_postman_id":"73974b85-142c-41e8-9a0a-704eb4569252"},{"name":"Get form instance","id":"fc545cb8-6037-4bda-a1c5-01b99530acc1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/forms/instances/{{form_instance_id}}","description":"<p>This endpoint fetches all the details of a form instance using the form instance ID.</p>\n<p>The response contains an array called question-data, that contains the different elements in the form along with the answers.</p>\n<p>If the form element, is of type file, then it will have a location paramenter, that points to a url from which the file can be downloaded.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","forms","instances","{{form_instance_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0d1484af-f312-47c2-830e-b6b40a67f844","name":"Get form instance","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/forms/instances/{{form_instance_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 09 Nov 2023 12:27:42 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"120"},{"key":"X-RateLimit-Remaining","value":"119"},{"key":"x-robots-tag","value":"none"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://*.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Cross-Origin-Embedder-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Opener-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=%2Fb4RXye4d5CRZqRq07rCHVQY6eFP14kPJj%2BtC6Y%2BPehB%2BDI9LT0RBiln0L4wtBRfvhNKQnqwC8O%2FlLY1yA1Whg0YG1NnMVyPyeaAiK%2BDPVkp%2Bch9mopH7Kox%2FS3DFNTEvpg%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"82360d21a80e06c6-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"id\": 6587,\n        \"title\": \"Leadformulier Zonnepanelen\",\n        \"status\": \"sent\",\n        \"status_remark\": null,\n        \"agent\": \"John Doe\",\n        \"organisation\": \"Default\",\n        \"created_at\": \"2021-06-10 09:10:55\",\n        \"updated_at\": \"2022-10-05 08:15:50\",\n        \"relation\": {\n            \"id\": 116488,\n            \"postcode\": \"7511PG\",\n            \"housenumber\": \"9\",\n            \"suffix\": null,\n            \"streetname\": \"Neptunusstraat\",\n            \"city\": \"Enschede\",\n            \"email\": \"test@salesdock.nl\",\n            \"phone\": null,\n            \"company_name\": \"Test Co.\",\n            \"contact_person\": \"John Doe\",\n            \"coc\": \"12345678\",\n            \"vat\": null\n        },\n        \"client_name\": \"Test\",\n        \"client_email\": \"test@salesdock.nl\",\n        \"question_data\": {\n            \"ligging-schuin-dak\": \"Noord\",\n            \"hoeveel-m3-dak-beschikbaar\": \"Minder dan 30 m2\",\n            \"type-woning\": \"Rijtjeswoning\"\n        }\n    },\n    \"message\": \"Forms instance retrieved successfully\"\n}"}],"_postman_id":"fc545cb8-6037-4bda-a1c5-01b99530acc1"},{"name":"Fill form instance","id":"d1048ad3-28d5-4b73-80ee-351d7330fb45","protocolProfileBehavior":{"disabledSystemHeaders":{"accept":true},"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"questionData\": {\n        \"bestaande-of-nieuwe-klant\": 1960327,\n        \"type-woning\": \"some value\",\n        \"ligging-schuin-dak\": \"abc\",\n        \"file\": [\n            {\n                \"name\": \"Some file.png\",\n                \"content\": \"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVQYV2NgYAAAAAMAAWgmWQ0AAAAASUVORK5CYII=\"\n            }\n        ]\n    },\n    \"client_name\": \"Test Name\",\n    \"client_email\": \"test@salesdock.nl\",\n    \"client_phone\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/forms/{{form_id}}/instances","description":"<p>The fill form instance endpoint helps in creating new form instance for the form_id mentioned in the URL. The form elements can be sent as JSON in the request body.</p>\n<p>The main parameters that are accepted in this request are:</p>\n<ul>\n<li>questionData - Array of all form elements along with answers. So the key should be the identifier of the form element, where as the value should be the answer</li>\n<li>client_name - Name of client, if supported in the form</li>\n<li>client_email - Email of the client, if supported in the form</li>\n<li>client_phone - Phone of the client, if supported in the form</li>\n</ul>\n","urlObject":{"path":["api","{{domain}}","{{version}}","forms","{{form_id}}","instances"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c1e7d2bf-c063-4e70-bbc7-e14e1bc5e8db","name":"Fill form instance","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"questionData\": {\n        \"bestaande-of-nieuwe-klant\": 1960327,\n        \"type-woning\": \"some value\",\n        \"ligging-schuin-dak\": \"abc\",\n        \"file\": [\n            {\n                \"name\": \"Some file.png\",\n                \"content\": \"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVQYV2NgYAAAAAMAAWgmWQ0AAAAASUVORK5CYII=\"\n            }\n        ]\n    },\n    \"client_name\": \"Test Name\",\n    \"client_email\": \"test@salesdock.nl\",\n    \"client_phone\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/forms/{{form_id}}/instances"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 03 Nov 2021 10:12:59 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' https://bam.eu01.nr-data.net https://www.google-analytics.com https://widget.freshworks.com https://salesdock.freshdesk.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=k6HfVmHpHQe3sTiUfkyLt7uy6RVlOkTEW27LhnoKVaz5td7tR5ZIe2IeA9CMpiIgsZU747TyFXXbGrItZqpoy9d6ujv%2BIPBd6Vn8YzjQj4%2BrBYx%2FqiiA7y9N9H3T9RwLyZA%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"6a84d3cd0a813188-BOM"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"form_instance_id\": 10797\n    },\n    \"message\": \"Formulier succesvol aangemaakt.\"\n}"}],"_postman_id":"d1048ad3-28d5-4b73-80ee-351d7330fb45"},{"name":"Get form instances connected to sale","id":"2b99a66b-9393-42e5-a76c-385b14ab76b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/forms/instances/sale/{{sale_id}}","description":"<p>This endpoint fetches all the form instances that are connected to a sale. The sale ID needs to be passed in the URL to fetch this.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","forms","instances","sale","{{sale_id}}"],"host":["{{url}}"],"query":[{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[{"id":"a11953f3-0bc6-4edd-8b6b-8325b6fc2dfe","name":"Get form instances connected to sale","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"{{url}}/api/{{domain}}/{{version}}/account/forms/instances/sale/2939367","host":["{{url}}"],"path":["api","{{domain}}","{{version}}","account","forms","instances","sale","2939367"],"query":[{"key":"","value":"","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 22 Dec 2022 06:51:37 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Jwrf0rrSJe45Wse1GxISN3ufib%2BYwgV6fYTglrU47KsL3FoS%2FqXiVsxf2%2F%2FFzym%2F5UucyX89v7w%2FyUtk6xP2aX3oYb2OmNXGVBLT3dIkZUd0xoHJHh9eWeMd%2BJ0yfV67T84%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"77d6ee15cee9b95a-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        51009, 51021\n    ],\n    \"message\": \"Formulieren succesvol opgehaald\"\n}"}],"_postman_id":"2b99a66b-9393-42e5-a76c-385b14ab76b3"},{"name":"Get form instance PDF","id":"8cfd0a90-e82e-4188-a470-222e5db35119","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/forms/instances/pdf/{{form_instance_id}}","description":"<p>This endpoint fetches the PDF of a form instance in base64 format.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","forms","instances","pdf","{{form_instance_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"5327f14d-22d6-4d8c-b1b5-441304a9ed82","name":"Get form instance PDF","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/forms/instances/pdf/{{form_instance_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 03 Nov 2021 10:04:03 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' https://bam.eu01.nr-data.net https://www.google-analytics.com https://widget.freshworks.com https://salesdock.freshdesk.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=dlIef1xXXoPoEh2yhevaBaqh4RLCIWRfTfp8iSyv8gKp9WaNAxmlNHJpHRDxVxyXkvj2nmx0c77M12T5goFQqIjXRhCmgoU%2BQ%2BMGL6H1MLlKpt55OqJYn4X5NAWKGuOoZNU%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"6a84c6b1fc996eb8-BOM"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"id\": 6587,\n        \"pdf\": {\n            \"content\": \"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lRJBqEQ9ZYBtilHunlkDPDGvs747fs+/An/gtB8Dk1bQde02+1axi2ad4h05QNQ0dzkiG4hba/lk5JhlC9SVKk7q5aGMxWAap4xXh/Nvb+vPU8zKuIc94WnHB8RQdTD7Kqve5e2u7XlK0u10rH8/VFepftd/se+Nv2KfizceE/Gmn+RMMyWN9DlrPVYM4E0LkDI9QcMp4YA15bX01OpGcVODumftmFxVHE0Y18PJShJXTWqaCiiirOgKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAWONpXCqpZmOAAMkn0r9h/+CP/APwRnh+GsGlfFX4t6Ys3iRwt3oXh66jyukd0uLhT1uOhWM8RcE/PgR4H/BEH/gk+ljbaZ8a/iXpavcShbrwno91HxEvVb+VD/EeDEp6D951KEfqo7818pm+bOTeHoPTq/wBF+p/PniX4iylKeT5XKyWk5rr3jF9v5n122vdGbNMZsUrED6VGzbjXjUaR+DpAzZpjNihmxXl/7Vf7Xngb9jb4bS+JvHGrJYwHclnZxYkvNTlAz5UEeQWbkZPCrnLMo5r1KFBt2SOrC4WtiKsaGHi5SloktWz0PXdesvDOj3Wo6leWun6fZRNNcXNzKsUMEajLO7sQFUAZJJwK/MT9vv8A4OA7TQje+FvgdHHqF4u6GbxVeQ5t4T0P2WFh+8PpJINvHCOCGr4v/b//AOCpPj79uzXprK5nk8OeBIZd1n4etJj5b4PyyXLjBmk6HkBV/hUHJPzJXv4fAqOs9z+huD/Cajh1HFZzac91D7K/xfzPy+H/ABG38Q/iR4g+LXi671/xPrOpa/rV+26e8vrhp5pPQbmJwB0AHAHAAFYlFFeiftMIRhFQgrJbJBRRRQUFFFWdI0a88QajFZ2Fpc313OdscFvE0skh9Aqgkn6UCbSV2VqK98+GP/BLv4//ABbjSTSfhd4lghkwRLqk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b5Hrvccgop5r9W/2d/2W/AX7KfgtdB8B+G9P0GyIBneJd1zeMB9+aVsvI3XlicZwMDiuKvjYQ0jqz8s4o8VMuy9OjgLVqvl8C9X19I/ej4y/4J5/8EJPDfwMlsvFnxYNh4w8WRFZrfSVXzNK0xuoLhh/pEg9WAjBzhWID1+hscQRQqgKqjAA4xTgnrTgK8PEYqU3ds/nTO8/x2bYh4jHTcn0XRLslsl+fW7ALinIuTSqnNPAry6tY8VsAuKq+IfEWn+DtAvdW1a9tdN0zToXubq7uZViht4lG5ndicKoAJJJ4rL+KXxU8OfBHwDqXijxZq9loWg6TEZrq8un2pGOwA6sxOAqqCzEgAEkCvwy/wCCo/8AwVz1/wDbj1ebwv4aF34e+GFnNujs2bbc60ynKzXODgKCMrECQpwSWYAqsHgquLnaOker/rqfW8IcGY3PsRy0vdpRfvTey8l3l5ffZGz/AMFdv+CtN3+2V4gm8D+B7m6sfhfpkwLyYMUviOZDxLIvVYFIzHGeScOw3bVT4Xoor7fDYanQpqnTWiP63yXJcJlWEjgsHG0I/e31bfVv/htAooorc9UKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKlsL+fS76G6tZpba5tpFlilico8TqcqysOQQQCCOlRUUA1fRn6vf8E1P+C+Agh07wP8dblyFC29l4vClj6Kt8o5Pp56+xcfekr9HPjL+zt8NP2wvAVvbeLvD3h/xnot3CJrK7IWRlRwCJLe4jO9Mgg7o3GR7V/MLX0z+wf/wVT+Jf7Cepw2WmXZ8R+Cmk3XPhzUZWNuMnLNbvy1u555UFSTlkbivnMdkd5e2wj5Zdtl8u35eh+M8WeFyqVXmOQS9lWWvKnypv+618L8tvQ+zf2o/+Dba3n+06l8IfGLWzcuui+I8snrtjuo1yB2AeM+796/Pj9oj9gn4vfsryyt428C63plhEcf2lFELrT29P9IiLRjPoWDewr94P2L/+Clnws/bj0mJPC+srp/iVY99z4e1IrDqEOBlii5xMg/vxkgDG4KTivfJoFmiZHVXRwVZWGQwPUEVwUc6xVCXs8Qr276M+KwXidxDk1b6nm1P2jjuprln/AOBLf1ad+5/KJRX9G/x4/wCCV/wF/aIaabXPh3otlqMpJN/o6nTLksf4mMBVZD/10Vq+Q/jF/wAG0nhrUmln8BfEjWdIPLLa65ZR3yH282IxFR9UY/zr2qOd4efxXR+jZZ4v5HiUlieak/NXX3xu/vSPyEor7i+J3/Bvp+0B4Hkc6NB4T8YxDJT+zdWW3kI91uViAPsGP1rwvx1/wTa+Pfw5kZdT+EnjllT70ljpkl/GvuXgDrj3zXowxVGfwyX3n2+D4pyfFL/Z8VB+XMk/ubv+B4jRW34n+GniPwVKyaz4f1vSHXqt7Yy25H4OorErdO57kJxmuaLugooooKCitXw54E1zxjKI9I0bVdVkPAWztJJyfwUGvT/A/wDwTy+OfxFkUaV8J/Hjo/3ZbnSJrSFvpJMEX9alzit2cmIx+GoK9epGPq0vzPG6K+1Php/wQK/aF8dOh1PS/DXg+JuS2raxHIwHrtthMc+xx+FfSfwg/wCDafTLdo5vHvxMvbsf8tLPQLBYMfSeYvn/AL9CsZYqlHeR8vj/ABC4fwifPiYyfaN5f+k3X4n5MV6X8Bf2Ofih+07eLF4F8Ea94giZ9hu4oPKso29HuJNsSn/eYV+6PwM/4JF/AD4CGGbT/AOn67qMWD9t18nU5CR0bZLmJSPVI1r6PsLCHTbOK3toYre3hUJHHGoRI1HAAA4A9q5KmZRXwI/Ps28aqMU45bQbfebsv/AVdv8A8CR+TX7MX/BuFqWpG31H4t+L4tOiOGbR/D+JZyP7r3Mi7FPYhEcejV+jf7OH7Gnwz/ZM0T7F4D8JaXojugSe9CGW+uh/00uHJkYZ52ltozwBXqITJpQmK86tjZz3Z+SZ7xnm+bXWMqvl/lWkfuW/zuxoUn2pyrinAYpQmetefOufLCAZ9aeqY60oXFUvE3ijTPBPh+71bWdRsdJ0qwjM1zeXk6wQW6DqzuxCqPcmuKpWvohJOT5Yq7ZeC14j+2r/AMFBPh1+wn4M+3+L9S8/WbuMvpuhWbK9/qJ6Ahc/JHkcyPhRggZbCn4u/b6/4ODdM8LpeeGPgbFFq+o8xTeKbyA/ZLc9D9mhYAysOzyAJxwsgOa/J74ifEfXvi34yv8AxD4n1fUNd1zU5PNur29mMs0ze5PYDAAHAAAAAFengsmqVbTr6R7dX/l+Z+w8H+E+Kxjjis3vTpb8v25ev8q9dfJbnr/7dX/BRDx9+3r46+3eJbv+z/D1lIW0rw/aSH7Hp69Ax6ebKR1kYZ5IAVcKPBqKK+qpUoU4qEFZI/o3A4HD4OhHDYWChCOyX9fe931CiiitDrCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKALOj6xd+HtVt76wurmxvbSRZoLi3laKWF1OQyspBUg8gg5FfoH+xn/wcG/EH4OLaaL8ULJviH4fixH/AGgrLDrNuo4yX4S4wO0m1yeslfnnRXPicJSrx5asbnjZzw/l+a0vY4+kpro+q9GtV8n6n9LP7L37ffwm/bE0+N/A/i7T7zUim+XSLpvsupwcZOYHwzAd2Tcn+0a9iK4r+UrT9QuNJvobq1nmtrm3cSRTROUkiYHIZWHIIPcV9h/szf8ABc/46fs/JbWOq6vbfELQ4AE+y+IFMtyq99t0pEu73kMgHpXzuI4fnHXDyuuz/wA/+GPxDPvBevBuplFXmX8s9H8pLR/NL1P3xK5ppTNfB37Pv/Bwt8F/ijHb23jG1134danIAHa6hN/YBj2WaEF8Z7vEoHrX2X8Lfjf4N+OGjDUPB3irw/4nsyNxk0y/iufL9mCMSp9mwRXk1KVejpVi1/Xc/Jc04dzPLZWx1CUPNrT5SV0/kzpChHvWPqnw90HW5S97omkXbnq09nHIT+YrcK0Fc0RxFjyYVZRd4uxyB+BvgppN58H+Ft/97+yoM/ntq/p3w18O6NIHs9A0W1cdGhsYoz+YWt4oKQx8VusS+5q8VVlo5P7yMRhRgAADjHpS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YmoKNTA0MAplbmRvYmoKMzAgMCBvYmoKPDwgL1R5cGUgL0ZvbnQKL1N1YnR5cGUgL0NJREZvbnRUeXBlMgovQmFzZUZvbnQgL1NvdXJjZVNhbnNQcm8tUmVndWxhcgovQ0lEU3lzdGVtSW5mbyA8PCAvUmVnaXN0cnkgKEFkb2JlKSAvT3JkZXJpbmcgKElkZW50aXR5KSAvU3VwcGxlbWVudCAwID4+Ci9Gb250RGVzY3JpcHRvciAyOCAwIFIKL0NJRFRvR0lETWFwIC9JZGVudGl0eQovVyBbMCBbNjQ4IDUzMCA1NDAgNTAwIDU0MyA0MTYgODQwIDI1MyA0OTIgNTUxIDUzOCA0NTIgNDkxIDI0NyA0MTUgNjQyIDU1MSAzMzUgNTQwIDM0NCAxOTkgMjQ3IDUyMyA0OTMgNDkzIDQ5MyA0OTMgNDkzIDQ5MyA0OTMgNDkzIDU2NCAyNDQgMjQ1IDcxMiA1MDAgNzIxIDQ5MyA4MjIgMzA5IDQ5MyAyNDcgNTQwIDU0OSBdCl0KPj4KZW5kb2JqCjMxIDAgb2JqCjw8IC9MZW5ndGggNjY1ID4+CnN0cmVhbQovQ0lESW5pdCAvUHJvY1NldCBmaW5kcmVzb3VyY2UgYmVnaW4KMTIgZGljdCBiZWdpbgpiZWdpbmNtYXAKL0NJRFN5c3RlbUluZm8gPDwgL1JlZ2lzdHJ5IChBZG9iZSkgL09yZGVyaW5nIChVQ1MpIC9TdXBwbGVtZW50IDAgPj4gZGVmCi9DTWFwTmFtZSAvQWRvYmUtSWRlbnRpdHktVUNTIGRlZgovQ01hcFR5cGUgMiBkZWYKMSBiZWdpbmNvZGVzcGFjZXJhbmdlCjwwMDAwPiA8RkZGRj4KZW5kY29kZXNwYWNlcmFuZ2UKMiBiZWdpbmJmcmFuZ2UKPDAwMDA+IDwwMDAwPiA8MDAwMD4KPDAwMDE+IDwwMDJCPiBbPDAwNTM+IDwwMDY4PiA8MDA2MT4gPDAwNkU+IDwwMDczPiA8MDA0MD4gPDAwNkM+IDwwMDY1PiA8MDA2ND4gPDAwNkY+IDwwMDYzPiA8MDA2Qj4gPDAwMkU+IDwwMDJBPiA8MDA0RT4gPDAwNzA+IDwwMDc0PiA8MDA3NT4gPDAwNzI+IDwwMDIwPiA8MDAyQz4gPDAwNDU+IDwwMDMxPiA8MDAz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RkZGRj4KZW5kY29kZXNwYWNlcmFuZ2UKMiBiZWdpbmJmcmFuZ2UKPDAwMDA+IDwwMDAwPiA8MDAwMD4KPDAwMDE+IDwwMDI4PiBbPDAwNEM+IDwwMDY1PiA8MDA2MT4gPDAwNjQ+IDwwMDY2PiA8MDA2Rj4gPDAwNzI+IDwwMDZEPiA8MDA3NT4gPDAwNkM+IDwwMDY5PiA8MDAyMD4gPDAwNUE+IDwwMDZFPiA8MDA3MD4gPDAwNEU+IDwwMDc2PiA8MDA2Qj4gPDAwNzQ+IDwwMDQ1PiA8MDAyRD4gPDAwNDM+IDwwMDYzPiA8MDA3Mz4gPDAwNDE+IDwwMDU0PiA8MDA0Qj4gPDAwNTY+IDwwMDUzPiA8MDA3QT4gPDAwNzk+IDwwMDc3PiA8MDA2Nz4gPDAwNjg+IDwwMDQ4PiA8MDAzMz4gPDAwNjI+IDwwMDNGPiA8MDA0ND4gPDAwNDc+IF0KZW5kYmZyYW5nZQplbmRjbWFwCkNNYXBOYW1lIGN1cnJlbnRkaWN0IC9DTWFwIGRlZmluZXJlc291cmNlIHBvcAplbmQKZW5kCgplbmRzdHJlYW0KZW5kb2JqCjEwIDAgb2JqCjw8IC9UeXBlIC9Gb250Ci9TdWJ0eXBlIC9UeXBlMAovQmFzZUZvbnQgL1NvdXJjZVNhbnNQcm8tQm9sZAovRW5jb2RpbmcgL0lkZW50aXR5LUgKL0Rlc2NlbmRhbnRGb250cyBbNDAgMCBSXQovVG9Vbmljb2RlIDQxIDAgUj4+CmVuZG9iagoyIDAgb2JqCjw8Ci9UeXBlIC9QYWdlcwovS2lkcyAKWwo1IDAgUgpdCi9Db3VudCAxCi9Qcm9jU2V0IFsvUERGIC9UZXh0IC9JbWFnZUIgL0ltYWdlQ10KPj4KZW5kb2JqCnhyZWYKMCA0MwowMDAwMDAwMDAwIDY1NTM1IGYgCjAwMDAwMDAwMDkgMDAwMDAgbiAKMDAwMDA5MjM5MyAwMDAwMCBuIAowMDAwMDAwMTYzIDAwMDAwIG4gCjAwMDAwMDAyNTggMDAwMDAgbiAKMDAwMDA3MjYyNiAwMDAwMCBuIAowMDAwMDAwMjk1IDAwMDAwIG4gCjAwMDAwMTczMzggMDAwMDAgbiAKMDAwMDAxNzM1OSAwMDAwMCBuIAowMDAwMDcwNzEzIDAwMDAwIG4gCjAwMDAwOTIyNDggMDAwMDAgbiAKMDAwMDA4MTIyOSAwMDAwMCBuIAowMDAwMDcwNzM0IDAwMDAwIG4gCjAwMDAwNzE1ODggMDAwMDAgbiAKMDAwMDA3MTYwOCAwMDAwMCBuIAowMDAwMDcxOTkyIDAwMDAwIG4gCjAwMDAwNzIwMTIgMDAwMDAgbiAKMDAwMDA3MjA1NyAwMDAwMCBuIAowMDAwMDg2NjU1IDAwMDAwIG4gCjAwMDAwNzIwOTQgMDAwMDAgbiAKMDAwMDA3MjQ1OSAwMDAwMCBuIAowMDAwMDcyMjkzIDAwMDAwIG4gCjAwMDAwNzIxNTggMDAwMDAgbiAKMDAwMDA3MjUyMiAwMDAwMCBuIAowMDAwMDcyOTgzIDAwMDAwIG4gCjAwMDAwNzQ3MjcgMDAwMDAgbiAKMDAwMDA3Mjc0NyAwMDAwMCBuIAowMDAwMDcyOTYzIDAwMDAwIG4gCjAwMDAwNzQ3NDggMDAwMDAgbiAKMDAwMDA3NDk2MyAwMDAwMCBuIAowMDAwMDgwMTE1IDAwMDAwIG4gCjAwMDAwODA1MTIgMDAwMDAgbiAKMDAwMDA4MDA5NCAwMDAwMCBuIAowMDAwMDgxMzc3IDAwMDAwIG4gCjAwMDAwODE2MzcgMDAwMDAgbiAKMDAwMDA4NTk5MiAwMDAwMCBuIAowMDAwMDg2MjE4IDAwMDAwIG4gCjAwMDAwODU5NzEgMDAwMDAgbiAKMDAwMDA4Njc5MiAwMDAwMCBuIAowMDAwMDg3MDA1IDAwMDAwIG4gCjAwMDAwOTExNzAgMDAwMDAgbiAKMDAwMDA5MTU1MiAwMDAwMCBuIAowMDAwMDkxMTQ5IDAwMDAwIG4gCnRyYWlsZXIKPDwKL1NpemUgNDMKL0luZm8gMSAwIFIKL1Jvb3QgMjMgMCBSCj4+CnN0YXJ0eHJlZgo5MjQ5MQolJUVPRgo=\",\n            \"mime-type\": \"application/pdf\",\n            \"name\": \"Testomgeving `Leadformulier Zonnepanelen` 6587.pdf\"\n        }\n    },\n    \"message\": \"PDF van formulier succesvol opgehaald\"\n}"}],"_postman_id":"8cfd0a90-e82e-4188-a470-222e5db35119"},{"name":"Get form statuses list","id":"49db2243-d97c-4cf4-a653-d3f51132ba1e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/statuses?status_source=form","description":"<p>This endpoint returns the list of forms statuses that are available in the application. The status identifier can be used to update the status of the form instance.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","statuses"],"host":["{{url}}"],"query":[{"key":"status_source","value":"form"}],"variable":[]}},"response":[{"id":"efe7aa60-ccff-4bf4-b508-ba24721364ac","name":"Get form statuses list","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/statuses?status_source=form","host":["{{url}}"],"path":["api","{{domain}}","{{version}}","{{scope}}","statuses"],"query":[{"key":"status_source","value":"form"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 28 May 2025 05:47:37 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"150"},{"key":"X-RateLimit-Remaining","value":"149"},{"key":"x-robots-tag","value":"none"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com https://*.clarity.ms https://region1.analytics.google.com/g/collect https://public.flourish.studio/resources/embed.js; style-src 'self' 'unsafe-inline' https://cdnjs.cloudflare.com https://fonts.googleapis.com https://widget.freshworks.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com https://fonts.bunny.net https://www.googletagmanager.com; img-src 'self' data: https: blob: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://*.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io https://*.salesdock.nl https://*.clarity.ms; form-action 'self' https://outside.salesdock.nl https://hub.zonatlas.nl; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com https://*.leaddesk.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com https://flo.uri.sh/; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Cross-Origin-Embedder-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Opener-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"946b75548b5cd0c5-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"source\": \"form\",\n            \"id\": \"new\",\n            \"name\": \"Nieuw\",\n            \"text\": \"Nieuw\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"form\",\n            \"id\": \"sent\",\n            \"name\": \"Verzonden\",\n            \"text\": \"Verzonden\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"form\",\n            \"id\": \"cancelled\",\n            \"name\": \"Geannuleerd\",\n            \"text\": \"Geannuleerd\",\n            \"type\": \"cancelled\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"form\",\n            \"id\": \"error\",\n            \"name\": \"Actie vereist\",\n            \"text\": \"Actie vereist\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"form\",\n            \"id\": \"completed\",\n            \"name\": \"Voltooid\",\n            \"text\": \"Voltooid\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"form\",\n            \"id\": \"saved\",\n            \"name\": \"Opgeslagen\",\n            \"text\": \"Opgeslagen\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"form\",\n            \"id\": \"waiting_for_client\",\n            \"name\": \"Wachten op klant\",\n            \"text\": \"Wachten op klant\",\n            \"type\": \"default\",\n            \"source_data\": null\n        },\n        {\n            \"source\": \"form\",\n            \"id\": \"test-form-status\",\n            \"name\": \"Test form status\",\n            \"text\": \"Test form status\",\n            \"type\": \"default\",\n            \"source_data\": null\n        }\n    ],\n    \"message\": \"Statuses retrieved successfully\"\n}"}],"_postman_id":"49db2243-d97c-4cf4-a653-d3f51132ba1e"}],"id":"61bf6c11-527a-4f3a-8912-7690bbcb14db","_postman_id":"61bf6c11-527a-4f3a-8912-7690bbcb14db","description":""},{"name":"Relations API","item":[{"name":"Get relations","id":"57fdc314-4807-46b7-96d1-78baf7c9d2e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/relations?q=&period_filter_on&period&period_start&period_end&business","description":"<p>This endpoint fetches all the relations that are accessible to the user.</p>\n<p>Apart from the personal/business information of the relation, the response also contains:</p>\n<ol>\n<li>shared_with - Possible values are account, organisation and private to denote how the relation is shared.</li>\n<li>organisation_id - The ID of the organisation to which the relation belongs.</li>\n</ol>\n<p>Different filters, as mentioned below in the Query Params, can be used to filter for relations.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","relations"],"host":["{{url}}"],"query":[{"description":{"content":"<p>Free text to search on the following parameters of a relation - name, company_name, email, postcode and email</p>\n","type":"text/plain"},"key":"q","value":""},{"description":{"content":"<p>The date period to filter on. Possible values - created_date, updated_date, deleted_date</p>\n","type":"text/plain"},"key":"period_filter_on","value":null},{"description":{"content":"<p>The period to filter on. Possible values - custom, today, yesterday, this_week, last_week, last_30_days, this_month, last_month, this_year</p>\n","type":"text/plain"},"key":"period","value":null},{"description":{"content":"<p>Start date (if period is custom)</p>\n","type":"text/plain"},"key":"period_start","value":null},{"description":{"content":"<p>End date (if period is custom)</p>\n","type":"text/plain"},"key":"period_end","value":null},{"description":{"content":"<p>1=Business relations, 0=Consumer relations</p>\n","type":"text/plain"},"key":"business","value":null}],"variable":[]}},"response":[{"id":"102bd668-52e2-4a1a-a4f8-0194700bcfbf","name":"Get relations","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/relations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 07 Jun 2023 05:45:41 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Afz7Qn0QgGC0tWyR8OFN4Q6MxbdmJ2EQikz37YY2dgLuZQApcDzddxtPZ6u6jAypAYASNCZG2Nb0yhMRc5XDQfPGJQhUoafGa6scGhCkjBgH9lRe9arZlvjVlHRxjUKKgDU%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7d36971e1de00e2f-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"current_page\": 1,\n        \"first_page_url\": \"https://app.salesdock.nl/api/testomgeving/v1/user/relations?page=1\",\n        \"from\": 1,\n        \"last_page\": 6,\n        \"last_page_url\": \"https://app.salesdock.nl/api/testomgeving/v1/user/relations?page=6\",\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"<< Vorige\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://app.salesdock.nl/api/testomgeving/v1/user/relations?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": \"https://app.salesdock.nl/api/testomgeving/v1/user/relations?page=2\",\n                \"label\": \"2\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://app.salesdock.nl/api/testomgeving/v1/user/relations?page=3\",\n                \"label\": \"3\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://app.salesdock.nl/api/testomgeving/v1/user/relations?page=4\",\n                \"label\": \"4\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://app.salesdock.nl/api/testomgeving/v1/user/relations?page=5\",\n                \"label\": \"5\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://app.salesdock.nl/api/testomgeving/v1/user/relations?page=6\",\n                \"label\": \"6\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://app.salesdock.nl/api/testomgeving/v1/user/relations?page=2\",\n                \"label\": \"Volgende >>\",\n                \"active\": false\n            }\n        ],\n        \"next_page_url\": \"https://app.salesdock.nl/api/testomgeving/v1/user/relations?page=2\",\n        \"path\": \"https://app.salesdock.nl/api/testomgeving/v1/user/relations\",\n        \"per_page\": 20,\n        \"prev_page_url\": null,\n        \"to\": 20,\n        \"total\": 105,\n        \"data\": [\n            {\n                \"id\": 116488,\n                \"business\": true,\n                \"shared_with\": \"private\",\n                \"organisation_id\": null,\n                \"gender\": \"male\",\n                \"firstname\": \"*****\",\n                \"lastname\": \"*****\",\n                \"birthdate\": null,\n                \"postcode\": \"*****\",\n                \"housenumber\": \"*****\",\n                \"suffix\": \"*****\",\n                \"streetname\": \"Neptunusstraat\",\n                \"city\": \"Enschede\",\n                \"email\": \"****@******.***\",\n                \"phone\": null,\n                \"company_name\": \"Test\",\n                \"contact_person\": \"*****\",\n                \"coc\": \"12345678\",\n                \"vat\": null,\n                \"created_at\": \"2019-10-10 07:31:24\",\n                \"updated_at\": \"2020-03-01 02:00:04\"\n            },\n            {\n                \"id\": 220285,\n                \"business\": true,\n                \"shared_with\": \"private\",\n                \"organisation_id\": null,\n                \"gender\": \"male\",\n                \"firstname\": \"*****\",\n                \"lastname\": \"*****\",\n                \"birthdate\": null,\n                \"postcode\": \"*****\",\n                \"housenumber\": \"*****\",\n                \"suffix\": \"*****\",\n                \"streetname\": \"Leonardstraat\",\n                \"city\": \"Hengelo\",\n                \"email\": \"****@******.***\",\n                \"phone\": null,\n                \"company_name\": \"Test\",\n                \"contact_person\": \"*****\",\n                \"coc\": \"12345678\",\n                \"vat\": null,\n                \"created_at\": \"2020-01-02 06:56:58\",\n                \"updated_at\": \"2020-02-02 02:00:05\"\n            },\n            {\n                \"id\": 244290,\n                \"business\": true,\n                \"shared_with\": \"private\",\n                \"organisation_id\": null,\n                \"gender\": \"male\",\n                \"firstname\": \"*****\",\n                \"lastname\": \"*****\",\n                \"birthdate\": null,\n                \"postcode\": \"*****\",\n                \"housenumber\": \"*****\",\n                \"suffix\": \"*****\",\n                \"streetname\": \"Valeriaanlaan\",\n                \"city\": \"Enschede\",\n                \"email\": \"****@******.***\",\n                \"phone\": null,\n                \"company_name\": \"Test\",\n                \"contact_person\": \"*****\",\n                \"coc\": \"12345678\",\n                \"vat\": null,\n                \"created_at\": \"2020-01-22 07:03:01\",\n                \"updated_at\": \"2020-02-25 02:00:05\"\n            },\n            {\n                \"id\": 272076,\n                \"business\": true,\n                \"shared_with\": \"private\",\n                \"organisation_id\": null,\n                \"gender\": \"male\",\n                \"firstname\": \"*****\",\n                \"lastname\": \"*****\",\n                \"birthdate\": null,\n                \"postcode\": \"*****\",\n                \"housenumber\": \"*****\",\n                \"suffix\": \"*****\",\n                \"streetname\": \"Neptunusstraat\",\n                \"city\": \"Enschede\",\n                \"email\": \"****@******.***\",\n                \"phone\": null,\n                \"company_name\": \"Test\",\n                \"contact_person\": \"*****\",\n                \"coc\": \"12345678\",\n                \"vat\": null,\n                \"created_at\": \"2020-02-12 06:53:55\",\n                \"updated_at\": \"2020-12-17 02:00:03\"\n            },\n            {\n                \"id\": 393381,\n                \"business\": false,\n                \"shared_with\": \"private\",\n                \"organisation_id\": null,\n                \"gender\": \"male\",\n                \"firstname\": \"*****\",\n                \"lastname\": \"*****\",\n                \"birthdate\": null,\n                \"postcode\": \"*****\",\n                \"housenumber\": \"*****\",\n                \"suffix\": \"*****\",\n                \"streetname\": \"Gaffelhoek\",\n                \"city\": \"Enschede\",\n                \"email\": \"****@******.***\",\n                \"phone\": null,\n                \"company_name\": null,\n                \"contact_person\": \"*****\",\n                \"coc\": null,\n                \"vat\": null,\n                \"created_at\": \"2020-04-30 06:24:26\",\n                \"updated_at\": \"2020-05-31 02:00:04\"\n            },\n            {\n                \"id\": 521299,\n                \"business\": true,\n                \"shared_with\": \"private\",\n                \"organisation_id\": null,\n                \"gender\": \"male\",\n                \"firstname\": \"*****\",\n                \"lastname\": \"*****\",\n                \"birthdate\": null,\n                \"postcode\": \"*****\",\n                \"housenumber\": \"*****\",\n                \"suffix\": \"*****\",\n                \"streetname\": \"Test\",\n                \"city\": \"Test\",\n                \"email\": \"****@******.***\",\n                \"phone\": null,\n                \"company_name\": \"Test\",\n                \"contact_person\": \"*****\",\n                \"coc\": \"12345678\",\n                \"vat\": null,\n                \"created_at\": \"2020-06-25 14:43:47\",\n                \"updated_at\": \"2020-07-02 02:00:07\"\n            },\n            {\n                \"id\": 521545,\n                \"business\": true,\n                \"shared_with\": \"private\",\n                \"organisation_id\": null,\n                \"gender\": \"male\",\n                \"firstname\": \"*****\",\n                \"lastname\": \"*****\",\n                \"birthdate\": null,\n                \"postcode\": \"*****\",\n                \"housenumber\": \"*****\",\n                \"suffix\": \"*****\",\n                \"streetname\": \"Test\",\n                \"city\": \"Test\",\n                \"email\": \"****@******.***\",\n                \"phone\": null,\n                \"company_name\": \"Test\",\n                \"contact_person\": \"*****\",\n                \"coc\": \"12345678\",\n                \"vat\": null,\n                \"created_at\": \"2020-06-25 15:20:24\",\n                \"updated_at\": \"2020-07-03 02:00:04\"\n            },\n            {\n                \"id\": 521577,\n                \"business\": true,\n                \"shared_with\": \"private\",\n                \"organisation_id\": null,\n                \"gender\": \"male\",\n                \"firstname\": \"*****\",\n                \"lastname\": \"*****\",\n                \"birthdate\": null,\n                \"postcode\": \"*****\",\n                \"housenumber\": \"*****\",\n                \"suffix\": \"*****\",\n                \"streetname\": \"Test\",\n                \"city\": \"Test\",\n                \"email\": \"****@******.***\",\n                \"phone\": null,\n                \"company_name\": \"Test\",\n                \"contact_person\": \"*****\",\n                \"coc\": \"12345678\",\n                \"vat\": null,\n                \"created_at\": \"2020-06-25 15:27:05\",\n                \"updated_at\": \"2020-07-03 02:00:04\"\n            },\n            {\n                \"id\": 521719,\n                \"business\": true,\n                \"shared_with\": \"private\",\n                \"organisation_id\": null,\n                \"gender\": \"male\",\n                \"firstname\": \"*****\",\n                \"lastname\": \"*****\",\n                \"birthdate\": null,\n                \"postcode\": \"*****\",\n                \"housenumber\": \"*****\",\n                \"suffix\": \"*****\",\n                \"streetname\": \"Test\",\n                \"city\": \"Test\",\n                \"email\": \"****@******.***\",\n                \"phone\": null,\n                \"company_name\": \"Test\",\n                \"contact_person\": \"*****\",\n                \"coc\": \"12345678\",\n                \"vat\": null,\n                \"created_at\": \"2020-06-25 15:51:53\",\n                \"updated_at\": \"2020-07-31 02:00:04\"\n            },\n            {\n                \"id\": 521782,\n                \"business\": true,\n                \"shared_with\": \"private\",\n                \"organisation_id\": null,\n                \"gender\": \"male\",\n                \"firstname\": \"*****\",\n                \"lastname\": \"*****\",\n                \"birthdate\": null,\n                \"postcode\": \"*****\",\n                \"housenumber\": \"*****\",\n                \"suffix\": \"*****\",\n                \"streetname\": \"Test\",\n                \"city\": \"Test\",\n                \"email\": \"****@******.***\",\n                \"phone\": null,\n                \"company_name\": \"Test\",\n                \"contact_person\": \"*****\",\n                \"coc\": \"12345678\",\n                \"vat\": null,\n                \"created_at\": \"2020-06-25 16:01:37\",\n                \"updated_at\": \"2020-07-03 02:00:04\"\n            },\n            {\n                \"id\": 530355,\n                \"business\": true,\n                \"shared_with\": \"private\",\n                \"organisation_id\": null,\n                \"gender\": \"male\",\n                \"firstname\": \"*****\",\n                \"lastname\": \"*****\",\n                \"birthdate\": null,\n                \"postcode\": \"*****\",\n                \"housenumber\": \"*****\",\n                \"suffix\": \"*****\",\n                \"streetname\": \"Gaffelhoek\",\n                \"city\": \"Enschede\",\n                \"email\": \"****@******.***\",\n                \"phone\": null,\n                \"company_name\": \"Test\",\n                \"contact_person\": \"*****\",\n                \"coc\": \"01234567\",\n                \"vat\": null,\n                \"created_at\": \"2020-06-30 07:19:21\",\n                \"updated_at\": \"2020-08-31 02:00:03\"\n            },\n            {\n                \"id\": 530356,\n                \"business\": true,\n                \"shared_with\": \"private\",\n                \"organisation_id\": null,\n                \"gender\": \"male\",\n                \"firstname\": \"*****\",\n                \"lastname\": \"*****\",\n                \"birthdate\": null,\n                \"postcode\": \"*****\",\n                \"housenumber\": \"*****\",\n                \"suffix\": \"*****\",\n                \"streetname\": \"Apeldoornselaan\",\n                \"city\": \"'s-Gravenhage\",\n                \"email\": \"****@******.***\",\n                \"phone\": null,\n                \"company_name\": \"Test\",\n                \"contact_person\": \"*****\",\n                \"coc\": \"01234567\",\n                \"vat\": null,\n                \"created_at\": \"2020-06-30 07:25:47\",\n                \"updated_at\": \"2020-07-31 02:00:04\"\n            },\n            {\n                \"id\": 600664,\n                \"business\": false,\n                \"shared_with\": \"private\",\n                \"organisation_id\": null,\n                \"gender\": \"male\",\n                \"firstname\": \"*****\",\n                \"lastname\": \"*****\",\n                \"birthdate\": null,\n                \"postcode\": \"*****\",\n                \"housenumber\": \"*****\",\n                \"suffix\": \"*****\",\n                \"streetname\": \"Neptunusstraat\",\n                \"city\": \"Enschede\",\n                \"email\": \"****@******.***\",\n                \"phone\": null,\n                \"company_name\": null,\n                \"contact_person\": \"*****\",\n                \"coc\": null,\n                \"vat\": null,\n                \"created_at\": \"2020-07-23 07:42:14\",\n                \"updated_at\": \"2020-08-31 02:00:03\"\n            },\n            {\n                \"id\": 656201,\n                \"business\": true,\n                \"shared_with\": \"private\",\n                \"organisation_id\": null,\n                \"gender\": \"male\",\n                \"firstname\": \"*****\",\n                \"lastname\": \"*****\",\n                \"birthdate\": null,\n                \"postcode\": \"*****\",\n                \"housenumber\": \"*****\",\n                \"suffix\": \"*****\",\n                \"streetname\": \"Test\",\n                \"city\": \"Test\",\n                \"email\": \"****@******.***\",\n                \"phone\": null,\n                \"company_name\": \"Test\",\n                \"contact_person\": \"*****\",\n                \"coc\": \"12345678\",\n                \"vat\": null,\n                \"created_at\": \"2020-08-17 07:58:17\",\n                \"updated_at\": \"2020-10-01 02:00:04\"\n            },\n            {\n                \"id\": 699100,\n                \"business\": false,\n                \"shared_with\": \"private\",\n                \"organisation_id\": null,\n                \"gender\": \"male\",\n                \"firstname\": \"*****\",\n                \"lastname\": \"*****\",\n                \"birthdate\": null,\n                \"postcode\": \"*****\",\n                \"housenumber\": \"*****\",\n                \"suffix\": \"*****\",\n                \"streetname\": \"Neptunusstraat\",\n                \"city\": \"Enschede\",\n                \"email\": \"****@******.***\",\n                \"phone\": null,\n                \"company_name\": null,\n                \"contact_person\": \"*****\",\n                \"coc\": null,\n                \"vat\": null,\n                \"created_at\": \"2020-09-02 07:40:45\",\n                \"updated_at\": \"2020-10-08 02:00:04\"\n            },\n            {\n                \"id\": 735999,\n                \"business\": true,\n                \"shared_with\": \"private\",\n                \"organisation_id\": null,\n                \"gender\": \"male\",\n                \"firstname\": \"*****\",\n                \"lastname\": \"*****\",\n                \"birthdate\": null,\n                \"postcode\": \"*****\",\n                \"housenumber\": \"*****\",\n                \"suffix\": \"*****\",\n                \"streetname\": \"Test\",\n                \"city\": \"Test\",\n                \"email\": \"****@******.***\",\n                \"phone\": null,\n                \"company_name\": \"Test\",\n                \"contact_person\": \"*****\",\n                \"coc\": \"12345678\",\n                \"vat\": null,\n                \"created_at\": \"2020-09-16 06:56:05\",\n                \"updated_at\": \"2020-10-31 02:00:07\"\n            },\n            {\n                \"id\": 756996,\n                \"business\": true,\n                \"shared_with\": \"private\",\n                \"organisation_id\": null,\n                \"gender\": \"male\",\n                \"firstname\": \"*****\",\n                \"lastname\": \"*****\",\n                \"birthdate\": null,\n                \"postcode\": \"*****\",\n                \"housenumber\": \"*****\",\n                \"suffix\": \"*****\",\n                \"streetname\": \"Test\",\n                \"city\": \"Test\",\n                \"email\": \"****@******.***\",\n                \"phone\": null,\n                \"company_name\": \"Test\",\n                \"contact_person\": \"*****\",\n                \"coc\": \"12345678\",\n                \"vat\": null,\n                \"created_at\": \"2020-09-23 13:16:44\",\n                \"updated_at\": \"2020-10-31 02:00:07\"\n            },\n            {\n                \"id\": 787415,\n                \"business\": true,\n                \"shared_with\": \"private\",\n                \"organisation_id\": null,\n                \"gender\": \"male\",\n                \"firstname\": \"*****\",\n                \"lastname\": \"*****\",\n                \"birthdate\": null,\n                \"postcode\": \"*****\",\n                \"housenumber\": \"*****\",\n                \"suffix\": \"*****\",\n                \"streetname\": \"Test\",\n                \"city\": \"Test\",\n                \"email\": \"****@******.***\",\n                \"phone\": null,\n                \"company_name\": \"Test\",\n                \"contact_person\": \"*****\",\n                \"coc\": \"12345678\",\n                \"vat\": null,\n                \"created_at\": \"2020-10-05 08:10:39\",\n                \"updated_at\": \"2020-12-01 02:00:03\"\n            },\n            {\n                \"id\": 791217,\n                \"business\": true,\n                \"shared_with\": \"private\",\n                \"organisation_id\": null,\n                \"gender\": \"male\",\n                \"firstname\": \"*****\",\n                \"lastname\": \"*****\",\n                \"birthdate\": null,\n                \"postcode\": \"*****\",\n                \"housenumber\": \"*****\",\n                \"suffix\": \"*****\",\n                \"streetname\": \"Test\",\n                \"city\": \"Test\",\n                \"email\": \"****@******.***\",\n                \"phone\": null,\n                \"company_name\": \"Test\",\n                \"contact_person\": \"*****\",\n                \"coc\": \"12345678\",\n                \"vat\": null,\n                \"created_at\": \"2020-10-06 07:10:29\",\n                \"updated_at\": \"2020-12-01 02:00:04\"\n            },\n            {\n                \"id\": 797135,\n                \"business\": true,\n                \"shared_with\": \"private\",\n                \"organisation_id\": null,\n                \"gender\": \"male\",\n                \"firstname\": \"*****\",\n                \"lastname\": \"*****\",\n                \"birthdate\": null,\n                \"postcode\": \"*****\",\n                \"housenumber\": \"*****\",\n                \"suffix\": \"*****\",\n                \"streetname\": \"Test\",\n                \"city\": \"Test\",\n                \"email\": \"****@******.***\",\n                \"phone\": null,\n                \"company_name\": \"Test\",\n                \"contact_person\": \"*****\",\n                \"coc\": \"12345678\",\n                \"vat\": null,\n                \"created_at\": \"2020-10-07 15:00:09\",\n                \"updated_at\": \"2020-12-01 02:00:04\"\n            }\n        ]\n    },\n    \"message\": \"Relations retrieved successfully\"\n}"}],"_postman_id":"57fdc314-4807-46b7-96d1-78baf7c9d2e6"},{"name":"Get relation","id":"c37613fa-e29f-447f-8c17-8d9e72ea5201","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/relations/{{relation_id}}","description":"<p>This endpoint fetches the details of a relation using the relation_id. Replace relation_id in the URL with the ID of the relation retrieved via the Get relations API call.</p>\n<p>This resource is only available for account scope.</p>\n<p>Apart from the basic relation details, two sub arrays are also returned:</p>\n<ol>\n<li>customer -This contains all personal/business information of the relation</li>\n<li>extrafields - This contains the extra field values of the relation. If the relation does not have any extra field values, this will return null.</li>\n</ol>\n<p>The response also contains:</p>\n<ul>\n<li>shared_with - Possible values are account, organisation and private to denote how the relation is shared.</li>\n<li>organisation_id - The ID of the organisation to which the relation belongs.</li>\n</ul>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","relations","{{relation_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"473a9323-4a68-45c5-b496-f08788f9b0fd","name":"Get relation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/relations/{{relation_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 30 May 2023 09:33:42 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=hQKn%2BYldTo2autQ7ksxOblnWZAUmwOP2W%2BQES75aFf6%2BbARF5Z6UYFFFrJPx%2BKs68Qsr36I%2BvTCxDv1OARzQOh5y8zOTJoR9RdQdee4AnlHnejvJJSZJACcJOjX86udX6og%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7cf5fa223e2fb8ac-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"id\": 1960327,\n        \"created_at\": \"2021-11-03 11:11:39\",\n        \"updated_at\": \"2023-05-30 11:33:32\",\n        \"customer\": {\n            \"gender\": \"female\",\n            \"firstname\": \"Jane\",\n            \"lastname\": \"Dowe\",\n            \"birthdate\": null,\n            \"email\": \"testing@salesdock.nl\",\n            \"phone\": null,\n            \"business\": true,\n            \"company_name\": \"Test Co.\",\n            \"contact_person\": \"John Doe\",\n            \"coc\": \"01234567\",\n            \"vat\": \"NL123456789BXX\",\n            \"address\": {\n                \"postcode\": \"7511PG\",\n                \"housenumber\": \"9\",\n                \"suffix\": null,\n                \"streetname\": \"Willem Wilminkplein\",\n                \"city\": \"Enschede\"\n            }\n        },\n        \"shared_with\": \"private\",\n        \"organisation_id\": 1,\n        \"extrafields\": [\n            {\n                \"id\": 3306,\n                \"identifier\": \"source\",\n                \"type\": \"text\",\n                \"label\": \"Source\",\n                \"value\": \"Email marketing\"\n            }\n        ]\n    },\n    \"message\": \"Relation retrieved successfully\"\n}"}],"_postman_id":"c37613fa-e29f-447f-8c17-8d9e72ea5201"},{"name":"Create relation","id":"61230974-8f64-4628-ad18-2df92a4a60ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"visibility\": \"private\",\n    \"organisation_id\": 1,\n    \"user_id\": 1,\n    \"gender\": \"female\",\n    \"firstname\": \"Jane\",\n    \"lastname\": \"Dowe\",\n    \"postcode\": \"7511PG\",\n    \"housenumber\": \"9\",\n    \"suffix\": \"\",\n    \"streetname\": \"Willem Wilminkplein\",\n    \"city\": \"Enschede\",\n    \"birthdate\": \"01-01-1990\",\n    \"email\": \"test@salesdock.nl\",\n    \"phone\": \"0611XXXXXX\",\n    \"business\": \"1\",\n    \"company_name\": \"Test Co.\",\n    \"contact_person\": \"John Doe\",\n    \"company_coc\": \"01234567\",\n    \"company_vat\": \"NL12345678\"\n\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/relations","description":"<p>This endpoint can be used to create a relation.</p>\n<p>Relation extra fields can be sent in the format cf_{identifier} where identifier is the identifier of the extra field.</p>\n<p>The other parameters that are supported are:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Mandatory</th>\n<th>Supported Value(s)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>visibility</td>\n<td>string</td>\n<td>Y</td>\n<td>private, organisation, account</td>\n<td>The visibility of the relation. private is available for the user only. organisation is available for the organisation. account is available for the whole account.</td>\n</tr>\n<tr>\n<td>user_id</td>\n<td>integer</td>\n<td>N</td>\n<td></td>\n<td>To make relations private to user</td>\n</tr>\n<tr>\n<td>organisation_id</td>\n<td>integer</td>\n<td>N</td>\n<td></td>\n<td>To make relations private to organisation</td>\n</tr>\n<tr>\n<td>business</td>\n<td>string</td>\n<td>Y</td>\n<td>0,1</td>\n<td>0=consumer relation 1=business relation</td>\n</tr>\n<tr>\n<td>postcode</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Postcode of the relation</td>\n</tr>\n<tr>\n<td>housenumber</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>House number of the relation</td>\n</tr>\n<tr>\n<td>suffix</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>House number extension of the relation</td>\n</tr>\n<tr>\n<td>streetname</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Street name of the relation</td>\n</tr>\n<tr>\n<td>city</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>City of the relation</td>\n</tr>\n<tr>\n<td>gender</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>firstname</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required if business = 0</td>\n</tr>\n<tr>\n<td>lastname</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required if business = 0</td>\n</tr>\n<tr>\n<td>birthdate</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Date of birth in format dd-mm-yyyy</td>\n</tr>\n<tr>\n<td>email</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>phone</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>contact_person</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>company_name</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Company name, required if business = 1</td>\n</tr>\n<tr>\n<td>company_coc</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Chamber of commerice number for business relations</td>\n</tr>\n<tr>\n<td>company_vat</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>BTW number for business relations</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","relations"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f30e7150-e44a-4b25-a214-ca74bf1b7e40","name":"Create relation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"visibility\": \"private\",\n    \"organisation_id\": 1,\n    \"user_id\": 1,\n    \"gender\": \"male\",\n    \"firstname\": \"John\",\n    \"lastname\": \"Doe\",\n    \"postcode\": \"7511PG\",\n    \"housenumber\": \"9\",\n    \"suffix\": \"\",\n    \"streetname\": \"Willem Wilminkplein\",\n    \"city\": \"Enschede\",\n    \"birthdate\": \"01-01-1990\",\n    \"email\": \"test@salesdock.nl\",\n    \"phone\": \"0611XXXXXX\",\n    \"business\": \"1\",\n    \"company_name\": \"Test Co.\",\n    \"contact_person\": \"John Doe\",\n    \"company_coc\": \"01234567\",\n    \"company_vat\": \"NL123456789B01\"\n\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/relations"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 30 Mar 2022 05:50:10 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://widget.freshworks.com https://salesdock.freshdesk.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=V1i%2BFwrgmKIMP%2BJWWZ%2F2zOgM7bkLUveADI4P%2BqPJY64JPcJ8Ioyfbe9yPVKMxe3HZNo1690c%2Bt2bKFInqlwHtUkyUGBbm3u%2Fb7QadrSPWZAx%2BzHQyeAZx0mbYnfTO1RAVo4%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"6f3e90ee889c8593-BOM"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"relation_id\": 2325798\n    },\n    \"message\": \"Relatie succesvol aangemaakt\"\n}"}],"_postman_id":"61230974-8f64-4628-ad18-2df92a4a60ae"},{"name":"Update relation","id":"ab3c93cb-a76d-4ecf-98e3-e0ddfd5cdf22","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"visibility\": \"private\",\n    \"organisation_id\": 1,\n    \"user_id\": 1,\n    \"gender\": \"female\",\n    \"firstname\": \"Jane\",\n    \"lastname\": \"Dowe\",\n    \"postcode\": \"7511PG\",\n    \"housenumber\": \"9\",\n    \"suffix\": \"\",\n    \"streetname\": \"Willem Wilminkplein\",\n    \"city\": \"Enschede\",\n    \"birthdate\": \"01-01-1990\",\n    \"email\": \"testing@salesdock.nl\",\n    \"business\": \"1\",\n    \"company_name\": \"Test Co.\",\n    \"contact_person\": \"John Doe\",\n    \"company_coc\": \"01234567\",\n    \"company_vat\": \"NL123456789B01\"\n\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/account/relations/{{relation_id}}","description":"<p>This endpoint can be used to update a relation. The ID of the relation needs to be passed in the URL.</p>\n<p>This endpoint is only available for account scope users.</p>\n<p>Relation extra fields can be sent in the format cf_{identifier} where identifier is the identifier of the extra field.</p>\n<p>The other parameters that are supported are:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Mandatory</th>\n<th>Supported Value(s)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>visibility</td>\n<td>string</td>\n<td>Y</td>\n<td>private, organisation, account</td>\n<td>The visibility of the relation. private is available for the user only. organisation is available for the organisation. account is available for the whole account.</td>\n</tr>\n<tr>\n<td>user_id</td>\n<td>int</td>\n<td>N</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>organisation_id</td>\n<td>int</td>\n<td>N</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>business</td>\n<td>string</td>\n<td>Y</td>\n<td>0,1</td>\n<td>0=consumer relation 1=business relation</td>\n</tr>\n<tr>\n<td>postcode</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Postcode of the relation</td>\n</tr>\n<tr>\n<td>housenumber</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>House number of the relation</td>\n</tr>\n<tr>\n<td>suffix</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>House number extension of the relation</td>\n</tr>\n<tr>\n<td>streetname</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Street name of the relation</td>\n</tr>\n<tr>\n<td>city</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>City of the relation</td>\n</tr>\n<tr>\n<td>gender</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>firstname</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required if business = 0</td>\n</tr>\n<tr>\n<td>lastname</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Required if business = 0</td>\n</tr>\n<tr>\n<td>birthdate</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Date of birth in format dd-mm-yyyy</td>\n</tr>\n<tr>\n<td>email</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>phone</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>contact_person</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Contact person of the company</td>\n</tr>\n<tr>\n<td>company_name</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Company name, required if business = 1</td>\n</tr>\n<tr>\n<td>company_coc</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>Chamber of commerice number for business relations</td>\n</tr>\n<tr>\n<td>company_vat</td>\n<td>string</td>\n<td>N</td>\n<td></td>\n<td>BTW number for business relations</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","{{domain}}","{{version}}","account","relations","{{relation_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"797bdd0f-f9aa-4830-b380-cb4abdcfaa9f","name":"Update relation","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"visibility\": \"private\",\n    \"organisation_id\": 1,\n    \"user_id\": 1,\n    \"gender\": \"female\",\n    \"firstname\": \"Jane\",\n    \"lastname\": \"Dowe\",\n    \"postcode\": \"7511PG\",\n    \"housenumber\": \"9\",\n    \"suffix\": \"\",\n    \"streetname\": \"Willem Wilminkplein\",\n    \"city\": \"Enschede\",\n    \"birthdate\": \"01-01-1990\",\n    \"email\": \"testing@salesdock.nl\",\n    \"business\": \"1\",\n    \"company_name\": \"Test Co.\",\n    \"contact_person\": \"John Doe\",\n    \"company_coc\": \"01234567\",\n    \"company_vat\": \"NL123456789B01\"\n\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/account/relations/{{relation_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 25 Apr 2023 06:20:22 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"55"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=MIqeub%2BSLed0ACtoD%2F4JuYYcC5qtysq3QRcmzvycBWqeT9u%2FXp5bR7pKQefKMb9DGjz%2Bu8mHe8d0OSZIHuOdBTgn6vLZZ6o0ZdP4yPaqq1iQbN3oQNMi7%2FJ9DKZULpJjYrM%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7bd47ad11a380a75-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"relation_id\": 1960327\n    },\n    \"message\": \"Relation updated successfully\"\n}"}],"_postman_id":"ab3c93cb-a76d-4ecf-98e3-e0ddfd5cdf22"}],"id":"0e850f98-fd5a-4249-b3f3-c34e24849232","_postman_id":"0e850f98-fd5a-4249-b3f3-c34e24849232","description":""},{"name":"Products API","item":[{"name":"Suppliers","item":[{"name":"Get suppliers","id":"8c7e0032-c82b-49e0-97db-833b3feb31a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/suppliers","description":"<p>Get list of suppliers along with the basic details</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","suppliers"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"e679e49c-c821-4a65-83eb-08f442188b5a","name":"Get suppliers","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/suppliers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 19 May 2022 07:34:27 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=DedF2TreLj7GcEK4%2FWQRUTM4ybbSs4NcRdluWmCjxDEIwC9%2FmI7%2FHVvazDvDXJHl%2FoOZWg8Dlg1cp8r7Dk0dTBSkXMO1%2BCfT3TZnF9LKAjeoARpOscdXSc7GTikMYhfHX4k%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"70db26764a1600a7-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"id\": 120,\n            \"name\": \"Eneco\",\n            \"text\": \"Eneco\",\n            \"identifier\": \"eneco-1-1\",\n            \"description\": \"\",\n            \"active\": \"1\"\n        },\n        {\n            \"id\": 121,\n            \"name\": \"Engie\",\n            \"text\": \"Engie\",\n            \"identifier\": \"engie\",\n            \"description\": \"\",\n            \"active\": \"1\"\n        },\n        {\n            \"id\": 122,\n            \"name\": \"NLE\",\n            \"text\": \"NLE\",\n            \"identifier\": \"nle\",\n            \"description\": \"\",\n            \"active\": \"1\"\n        },\n        {\n            \"id\": 123,\n            \"name\": \"Hosted voice\",\n            \"text\": \"Hosted voice\",\n            \"identifier\": \"hosted-voice\",\n            \"description\": \"\",\n            \"active\": \"1\"\n        }\n    ],\n    \"message\": \"Leveranciers succesvol opgehaald\"\n}"}],"_postman_id":"8c7e0032-c82b-49e0-97db-833b3feb31a8"},{"name":"Get supplier","id":"ef3dd911-93c1-4353-b2f3-ace59e695a30","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/suppliers/{{supplier_id}}","description":"<p>This endpoint fetches the details of a supplier. The supplier_id has to be passed in the URL for this.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","suppliers","{{supplier_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"e25b96d0-4798-4183-9614-7f4c1c2a6849","name":"Get supplier","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/suppliers/{{supplier_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 19 May 2022 07:36:56 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=2kAK6cdRlRjFBfJtkPWv%2Blfjv85eSxenKVzG%2Bsx6PmFZCXg72x1EzR7UKwavSMUpTo5RFiRWbE9wzktHT5N2mcqQsayxzg%2BIt74wzIvQo2NG3r0jGP0CYo48yZa7d5HGWEQ%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"70db2a17bfd900a7-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"id\": 120,\n        \"name\": \"Eneco\",\n        \"text\": \"Eneco\",\n        \"identifier\": \"eneco-1-1\",\n        \"description\": \"\",\n        \"confirmation_pdf_layout\": \"pdf.sale\",\n        \"contractor\": \"yes\",\n        \"company_name\": \"Test Co.\",\n        \"contact_person\": \"Test John\",\n        \"postcode\": \"2343SS\",\n        \"housenumber\": \"4\",\n        \"suffix\": null,\n        \"streetname\": \"Test street\",\n        \"city\": \"Amsterdam\",\n        \"email\": \"test@salesdock.nl\",\n        \"phone\": \"+3165******\",\n        \"coc\": null,\n        \"vat\": null,\n        \"website\": null,\n        \"logo\": {\n            \"extension\": \"jpg\",\n            \"content\": \"/9j/7gAOQWRvY\"\n        },\n        \"created_at\": \"2018-02-03T17:57:41.000000Z\",\n        \"updated_at\": \"2022-01-28T06:14:21.000000Z\",\n        \"email_template\": null,\n        \"extrafields\": []\n    },\n    \"message\": \"Leverancier succesvol opgehaald\"\n}"}],"_postman_id":"ef3dd911-93c1-4353-b2f3-ace59e695a30"},{"name":"Create supplier","id":"3ec4f096-3eef-4f12-b9bd-d9b84b69f118","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"name","value":"","description":"<p>Name of the supplier</p>\n","type":"text"},{"key":"identifier","value":"","description":"<p>An identifier for the supplier. This has to be unique</p>\n","type":"text"},{"key":"active","value":"","description":"<p>0 = inactive, 1 = active</p>\n","type":"text"},{"key":"description","value":"","type":"text"},{"key":"contractor","value":"","description":"<p>yes = Is a contractor, no = Not a contractor</p>\n","type":"text"},{"key":"company_name","value":"","description":"<p>Required if contractor = yes. Company nane of the contractor.</p>\n","type":"text"},{"key":"contact_person","value":"","description":"<p>Required if contractor = yes. Contact person of the contractor.</p>\n","type":"text"},{"key":"postcode","value":"","description":"<p>Required if contractor = yes. Postcode of contractor.</p>\n","type":"text"},{"key":"housenumber","value":"","description":"<p>Required if contractor = yes. Housenumber of the contractor.</p>\n","type":"text"},{"key":"suffix","value":"","description":"<p>House number extension of the contractor.</p>\n","type":"text"},{"key":"streetname","value":"","description":"<p>Required if contractor = yes. Street name of the contractor.</p>\n","type":"text"},{"key":"city","value":"","description":"<p>Required if contractor = yes. City name of the contractor.</p>\n","type":"text"},{"key":"coc","value":"","description":"<p>Chamber of commerce number of the contractor.</p>\n","type":"text"},{"key":"vat","value":"","description":"<p>BTW number of the contractor.</p>\n","type":"text"},{"key":"email","value":"","description":"<p>Supplier email</p>\n","type":"text"},{"key":"phone","value":"","description":"<p>Supplier phone number</p>\n","type":"text"},{"key":"website","value":"","description":"<p>Supplier website</p>\n","type":"text"},{"key":"logo[content]","value":"","description":"<p>Base64 string of the supplier logo</p>\n","type":"text"},{"key":"logo[extension]","value":"","description":"<p>Extension of the logo image. Possible values - png.gif,jpg,jpeg</p>\n","type":"text"}]},"url":"{{url}}/api/{{domain}}/{{version}}/account/suppliers","description":"<p>This endpoint can create a new supplier. This is available only for admin users. The parameters that are supported are shown below.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","suppliers"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"19111b39-c772-4a29-92ec-cba21f3f624f","name":"Create supplier","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Accept-Encoding","value":"application/json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Test Supplier\",\n    \"identifier\": \"test-supplier\",\n    \"active\": \"1\",\n    \"description\": \"\",\n    \"contractor\": \"no\",\n    \"company_name\": \"\",\n    \"contact_person\": \"\",\n    \"postcode\": \"\",\n    \"housenumber\": \"\",\n    \"suffix\": \"\",\n    \"streetname\": \"\",\n    \"city\": \"\",\n    \"coc\": \"\",\n    \"vat\": \"\",\n    \"email\": \"\",\n    \"phone\": \"\",\n    \"website\": \"\",\n    \"logo\": {\n        \"content\" : \"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mP8z/C/HgAGgwJ/lK3Q6wAAAABJRU5ErkJggg==\",\n        \"extension\": \"png\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/account/suppliers"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 19 May 2022 08:34:07 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"57"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=zl3y7YUYWx9QQabs57dh%2FPIrtH4jkaJ8NHCHzgmgLjVSSDytvhC2ekLAuv17HiKhtKVQBXgZIW7IeOrpHINCvPJHfa8YlDsFYOlHaPWB1TxK85bMrZx9JEcH%2Bce62Moz794%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"70db7ddd8f07c781-AMS"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"supplier_id\": 1741\n    },\n    \"message\": \"Leverancier succesvol aangemaakt\"\n}"}],"_postman_id":"3ec4f096-3eef-4f12-b9bd-d9b84b69f118"},{"name":"Update supplier","id":"044b7d8d-da6f-4e75-a467-9a8745cd746c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"name","value":"","description":"<p>Name of the supplier</p>\n","type":"text"},{"key":"identifier","value":"","description":"<p>An identifier for the supplier. This has to be unique</p>\n","type":"text"},{"key":"active","value":"","description":"<p>0 = inactive, 1 = active</p>\n","type":"text"},{"key":"description","value":"","type":"text"},{"key":"contractor","value":"","description":"<p>yes = Is a contractor, no = Not a contractor</p>\n","type":"text"},{"key":"company_name","value":"","description":"<p>Required if contractor = yes. Company nane of the contractor.</p>\n","type":"text"},{"key":"contact_person","value":"","description":"<p>Required if contractor = yes. Contact person of the contractor.</p>\n","type":"text"},{"key":"postcode","value":"","description":"<p>Required if contractor = yes. Postcode of contractor.</p>\n","type":"text"},{"key":"housenumber","value":"","description":"<p>Required if contractor = yes. Housenumber of the contractor.</p>\n","type":"text"},{"key":"suffix","value":"","description":"<p>House number extension of the contractor.</p>\n","type":"text"},{"key":"streetname","value":"","description":"<p>Required if contractor = yes. Street name of the contractor.</p>\n","type":"text"},{"key":"city","value":"","description":"<p>Required if contractor = yes. City name of the contractor.</p>\n","type":"text"},{"key":"coc","value":"","type":"text","description":"<p>Chamber of commerce number of the contractor.</p>\n"},{"key":"vat","value":"","type":"text","description":"<p>BTW number of the contractor.</p>\n"},{"key":"email","value":"","type":"text","description":"<p>Supplier email</p>\n"},{"key":"phone","value":"","type":"text","description":"<p>Supplier phone number</p>\n"},{"key":"website","value":"","type":"text","description":"<p>Supplier website</p>\n"},{"key":"logo[content]","value":"","description":"<p>Base64 string of the supplier logo</p>\n","type":"text"},{"key":"logo[extension]","value":"","description":"<p>Extension of the logo image. Possible values - png.gif,jpg,jpeg</p>\n","type":"text"}]},"url":"{{url}}/api/{{domain}}/{{version}}/account/suppliers/{{supplier_id}}","description":"<p>This endpoint can be used to update an existing supplier. This is available only for admin users.</p>\n<p>The supplier_id needs to be passed in the URL.</p>\n<p>The parameters that are supported are shown below.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","suppliers","{{supplier_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"54db8438-43ed-4e3a-989b-79ab51ddcd45","name":"Update supplier","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Accept-Encoding","value":"application/json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Test Supplier 1\",\n    \"identifier\": \"test-supplier-1\",\n    \"active\": \"1\",\n    \"description\": \"\",\n    \"contractor\": \"no\",\n    \"company_name\": \"\",\n    \"contact_person\": \"\",\n    \"postcode\": \"\",\n    \"housenumber\": \"\",\n    \"suffix\": \"\",\n    \"streetname\": \"\",\n    \"city\": \"\",\n    \"coc\": \"\",\n    \"vat\": \"\",\n    \"email\": \"\",\n    \"phone\": \"\",\n    \"website\": \"\",\n    \"logo\": {\n        \"content\" : \"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mP8z/C/HgAGgwJ/lK3Q6wAAAABJRU5ErkJggg==\",\n        \"extension\": \"png\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/account/suppliers/{{supplier_id}}"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 19 May 2022 08:34:07 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"57"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=zl3y7YUYWx9QQabs57dh%2FPIrtH4jkaJ8NHCHzgmgLjVSSDytvhC2ekLAuv17HiKhtKVQBXgZIW7IeOrpHINCvPJHfa8YlDsFYOlHaPWB1TxK85bMrZx9JEcH%2Bce62Moz794%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"70db7ddd8f07c781-AMS"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"supplier_id\": 1741\n    },\n    \"message\": \"Leverancier succesvol aangemaakt\"\n}"}],"_postman_id":"044b7d8d-da6f-4e75-a467-9a8745cd746c"},{"name":"Delete supplier","id":"e06667f1-d104-4c3b-a947-97d2f23342b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/suppliers/{{supplier_id}}","description":"<p>This endpoint can delete an existing supplier. The supplier_id has to be passed in the URL for this.</p>\n<p>This is available only for admin users</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","suppliers","{{supplier_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f99e6e0c-21e9-42e3-900a-3e5811e1461f","name":"Delete supplier","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/suppliers/1741"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 19 May 2022 08:58:30 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=DAGo8uPr9wbQrxTTy0iSyQBOOXyUMXC82TgqaF8fsfdTvbyBcHDrOYtEmrMYp4yVihqBnzxhEEF9UPHHAqF30hwe99jWZ1SswiSAUwm6pSxVlG73c0D9hxwBjASfO6MfwII%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"70dba19018ba012e-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"supplier_id\": 1741\n    },\n    \"message\": \"Leverancier succesvol verwijderd\"\n}"}],"_postman_id":"e06667f1-d104-4c3b-a947-97d2f23342b2"}],"id":"b1b93a9b-d3b3-4d98-abda-4d20775b792f","_postman_id":"b1b93a9b-d3b3-4d98-abda-4d20775b792f","description":""},{"name":"Get products","id":"4d029055-93b9-4cac-99cd-4380ca0f076b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/products?type&business&supplier_id&active&period_filter_on&period&period_start&period_end","description":"<p>Get the list of products along with basic details.</p>\n<p>The id obtained from this call can be used to get more details about the product in the \"Get product\" API call.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","products"],"host":["{{url}}"],"query":[{"description":{"content":"<p>Product type</p>\n","type":"text/plain"},"key":"type","value":null},{"description":{"content":"<p>1 = Business product, 0 = Consumer product</p>\n","type":"text/plain"},"key":"business","value":null},{"description":{"content":"<p>ID of the supplier of the product</p>\n","type":"text/plain"},"key":"supplier_id","value":null},{"description":{"content":"<p>1 = active product, 0 = inactive product (only available in account scope). By default only active products are returned</p>\n","type":"text/plain"},"key":"active","value":null},{"description":{"content":"<p>Possible values - 'created_date', 'updated_date'</p>\n","type":"text/plain"},"key":"period_filter_on","value":null},{"description":{"content":"<p>Possible values - 'today', 'yesterday', 'this_week', 'last_week', 'last_30_days', 'this_month', 'last_month', 'custom'</p>\n","type":"text/plain"},"key":"period","value":null},{"description":{"content":"<p>Date in yyyy-mm-dd when period is custom</p>\n","type":"text/plain"},"key":"period_start","value":null},{"description":{"content":"<p>Date in yyyy-mm-dd when period is custom</p>\n","type":"text/plain"},"key":"period_end","value":null}],"variable":[]}},"response":[{"id":"5f211a6c-f81a-4b78-8ce2-58926fe00c13","name":"Get products","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/products"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 03 Jun 2022 05:28:02 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=J3oYZj1s%2FyTjJQwXO1odRs6bGRgy3B%2BVLV%2B%2FU00FYmsZ9NWeYWTZg7Xrp2xZbQFPgbrlOaeZOG2EJlZiIYAqA8x1oE8AA2KIZEdF4br%2Bvu2%2Fcq5%2BhCM7eLOAwe8hHWDHF5g%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"715605e4d9789794-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"id\": 424,\n            \"name\": \"Test product 3 jaar\",\n            \"identifier\": \"test-product-3-jaar-1-1-1-1\",\n            \"supplier_id\": 38,\n            \"supplier_name\": \"Test\",\n            \"supplier_identifier\": \"test-1-1\",\n            \"type\": \"energy_e_g\",\n            \"usp\": \"Test, kies duurzaam voor een goede prijs\\r\\nToon voor slechts € 99,- (t.w.v. € 275,-)\",\n            \"description\": \"\",\n            \"cart_info\": \"\",\n            \"business\": \"1\",\n            \"active\": \"1\",\n            \"valid_from\": null,\n            \"valid_till\": null,\n            \"created_at\": \"2018-02-03 19:02:42\",\n            \"updated_at\": \"2022-04-04 11:11:18\"\n        },\n        {\n            \"id\": 425,\n            \"name\": \"Test product 5 jaar\",\n            \"identifier\": \"test-product-5-jaar-1-1\",\n            \"supplier_id\": 38,\n            \"supplier_name\": \"Test\",\n            \"supplier_identifier\": \"test-1-1\",\n            \"type\": \"energy_e_g\",\n            \"usp\": \"Test, kies duurzaam voor een goede prijs\\r\\nVoordeel 5 jaar Vast\",\n            \"description\": \"\",\n            \"cart_info\": \"\",\n            \"business\": \"1\",\n            \"active\": \"1\",\n            \"valid_from\": null,\n            \"valid_till\": null,\n            \"created_at\": \"2018-02-03 19:04:20\",\n            \"updated_at\": \"2021-06-01 12:14:58\"\n        },\n        {\n            \"id\": 426,\n            \"name\": \"Test Open voor MKB\",\n            \"identifier\": \"test-open-voor-mkb-1\",\n            \"supplier_id\": 39,\n            \"supplier_name\": \"Test\",\n            \"supplier_identifier\": \"test\",\n            \"type\": \"energy_e_g\",\n            \"usp\": \"prijs beweegt met markt mee\\r\\nflexibiliteit\\r\\nlage vaste leveringskosten\",\n            \"description\": \"\",\n            \"cart_info\": \"\",\n            \"business\": \"2\",\n            \"active\": \"1\",\n            \"valid_from\": null,\n            \"valid_till\": null,\n            \"created_at\": \"2018-02-03 19:07:18\",\n            \"updated_at\": \"2021-05-04 06:39:02\"\n        }\n    ],\n    \"message\": \"Producten succesvol opgehaald\"\n}"}],"_postman_id":"4d029055-93b9-4cac-99cd-4380ca0f076b"},{"name":"Get product","id":"9d2ad873-af14-40b2-bb48-fb7d6ad89e6c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/products/{{product_id}}","description":"<p>Get details of a product using the product id. Replace {{product_id}} in the URL with the id of the product.</p>\n<p>The product id can be obtained from the \"Get products\" API call.</p>\n<p>Few important details returned in this response are:</p>\n<ul>\n<li><p>id - The id of the product. Used when creating sale</p>\n</li>\n<li><p>type - Product type</p>\n</li>\n<li><p>price - One time price</p>\n</li>\n<li><p>price_action - One time promotion price</p>\n</li>\n<li><p>price_monthly - Monthly price</p>\n</li>\n<li><p>price_monthly_action - Monthly promotion price</p>\n</li>\n<li><p>price_monthly_action_type - If value is monthly, then denotes that the product has a monthly promotion price</p>\n</li>\n<li><p>price_monthly_action_value - Number of months for whic promotion is applicable</p>\n</li>\n<li><p>supplier_id - Id of the supplier of the product</p>\n</li>\n<li><p>supplier_name - Name of the supplier of the product</p>\n</li>\n<li><p>customfields - Array of custom fields of the product and their values</p>\n</li>\n</ul>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","products","{{product_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"8f8f2888-aeb2-4c12-91b4-6676ad1beeb1","name":"Get product","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"}],"url":{"raw":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/products/{{product_id}}","host":["{{url}}"],"path":["api","{{domain}}","{{version}}","{{scope}}","products","{{product_id}}"],"query":[{"key":"api_token","value":"{{api_token}}","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 08 Jun 2023 08:58:32 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Ls6PUJWBLTKspRudAbeTnOsXOta2xicdDbt8GjXGYun0T68C3PeauzBaq2g33b81XXFm5i34lGEwF6gLhdPCwW8xOxn80%2BRQbh1YwlxMeV4mJmT%2FnWhcHqEt62d3f4vesRQ%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7d3fef017eca1e85-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"id\": 3465,\n        \"name\": \"Test Energie 3 jaar\",\n        \"identifier\": \"test-energie-3-jaar\",\n        \"main\": 1,\n        \"type\": \"energy_e_g\",\n        \"image\": {\n            \"extension\": \"jpg\",\n            \"content\": \"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NsTBsaxoaL7zYb1CnfJa881p3n5udzQQQRcHIg8EYKxiHJ/hkpLjBzZPzb3MH2WnV7lO69TiOopG3Nv49KP/AGW4dfbN1c6P03Tdt9bZ/l5JDD+T/DInBwg5wjfI9zx9lx1e5N2m/EdReNubbw6Fna0AAAWAyAGyyhSfUBAQEBAQR2KYHS1HloWSHZrFvhAdDhmPSsZrE9cN2LUZcXsWmEL+zrC735g9XPTW/EsP0ady1601PxfaP4TmF4LS04tDCyLiWtGset209pWcViOpVy58mX27TLvrJpfHOABJyAzJ6EI6VexPHJLHmgGj5RFyeobAq9ss9i3jwV/qVmbTGsidclko3tc0DLoLbW71jGWy7XRYrx3Ljo1pBDWRF8eTmnVfGdrHf3B3HerNZ3h5+p018FtrfSe9LqVcQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEEDplWGOnaB8d4Yeqxd/wDIWrNO1VrSU5r+EKo/E/BtdVV6MXSrOL1IzUxC7ho/fJhXuZiTWg+DK17HDjZpe09hb3lWadDLieOLabfu2n+zbFtcwICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICCC01w189I8Ri8jCJWN4ltwQOktLh12WF680LWjyxjyxNuqeiWNOxfdmDstvvwIVfkl0fo6OqqwvWda7LFMcVXbkjwR76g1bgRHGHMYflSuFjboAv2uC21h5nFs8Vx/pR1z1+H+WurNzogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICCs6QaDUVU4yOa6KQ7ZIyAXHi4EEE9NrqJiJXtPxDNhjlid47pRdDyW0THXe+WYD4rnNaO3UAPeo5Yb78XzWjasRH+/NdaanZGxrGNDGNFmtaAABwACyeZa02nmtO8uVGIgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICD/2Q==\"\n        },\n        \"usp\": \"Eneco, kies duurzaam voor een goede prijs\\r\\nToon voor slechts € 99,- (t.w.v. € 275,-)\",\n        \"description\": \"\",\n        \"duration\": null,\n        \"business\": \"2\",\n        \"retention\": \"0\",\n        \"confirmation_pdf_layout\": \"pdf.sale\",\n        \"active\": \"1\",\n        \"price\": null,\n        \"price_action\": null,\n        \"price_action_type\": null,\n        \"price_action_value\": null,\n        \"price_monthly\": null,\n        \"price_monthly_action\": null,\n        \"price_monthly_action_type\": null,\n        \"price_monthly_action_value\": null,\n        \"valid_from\": \"2020-01-01\",\n        \"valid_till\": \"2023-12-31\",\n        \"created_at\": \"2019-12-27 06:52:51\",\n        \"updated_at\": \"2023-03-15 11:42:14\",\n        \"supplier_id\": 38,\n        \"supplier_name\": \"Eneco\",\n        \"supplier_identifier\": \"eneco-1-1\",\n        \"customfields\": {\n            \"product_type\": \"fixed\",\n            \"tariff_single\": \"0.03829\",\n            \"tariff_high\": \"0.04347\",\n            \"tariff_low\": \"0.03168\",\n            \"tariff_high_t2\": \"0.04347\",\n            \"tariff_low_t2\": \"0.03168\",\n            \"tariff_return\": \"0.03829\",\n            \"tariff_return_high\": \"0.03829\",\n            \"tariff_return_low\": \"0.03829\",\n            \"tariff_fixed_e\": \"14.99\",\n            \"g_region_tax_level\": \"supplier\",\n            \"tariff_g\": \"0.1448\",\n            \"tariff_g_g2\": \"0.2448\",\n            \"tariff_fixed_g\": \"15.99\",\n            \"cashback\": \"\",\n            \"subtract_cashback_from_yearly\": \"\",\n            \"contractduur\": \"12 maanden\",\n            \"test\": \"\",\n            \"aanbieder\": \"Eneco\",\n            \"testaa\": \"\",\n            \"met-cadeau\": \"\",\n            \"erp-id\": \"\",\n            \"is-groene-stroom\": \"\",\n            \"testveld\": \"\",\n            \"tariefcode-energie-\": \"\",\n            \"door-2-door-product\": \"\"\n        },\n        \"documents\": [\n            {\n                \"name\": \"sample.pdf\",\n                \"location\": \"https://app.salesdock.nl/api/testomgeving/v1/user/products/3465/documents/download/eyJpdiI6Ilg3VldwaEtQTnkxOFNQZTJ1d3JSY0E9PSIsInZhbHVlIjoieUZFY2REWnNOZUpXWEQySktZN2k3Zz09IiwibWFjIjoiNTZmMTc3NDZhYWNlMzFhZTQxMjkzM2ViYzYwMjRjZWMxZTA1MjkyZTU1YjdlNzhiN2ZjZGIwNTA3MzUyYzIyYyIsInRhZyI6IiJ9\"\n            }\n        ]\n    },\n    \"message\": \"Product succesvol opgehaald\"\n}"}],"_postman_id":"9d2ad873-af14-40b2-bb48-fb7d6ad89e6c"},{"name":"Create product","id":"fd64b666-3f33-40d7-852d-696e15b1ee6f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"name","value":"","description":"<p>Name of the product (Mandatory)</p>\n","type":"text"},{"key":"identifier","value":"","description":"<p>Unique slug identifier for the product (Mandatory)</p>\n","type":"text"},{"key":"type","value":"","description":"<p>Product type identifier (Mandatory)</p>\n","type":"text"},{"key":"supplier_id","value":"","description":"<p>The id of the supplier. This is mandatory for main products.</p>\n","type":"text"},{"key":"usp","value":"","description":"<p>String containing the the USP of the product. This will be shown in the agent portal when doing a sale.</p>\n","type":"text"},{"key":"description","value":"","type":"text"},{"key":"duration","value":"","description":"<p>Contract duration of the product in months</p>\n","type":"text"},{"key":"business","value":"","description":"<p>Whether product is busines (1) or consumer (0) or both (2). This is only for main product.</p>\n","type":"text"},{"key":"retention","value":"","description":"<p>If only for new customers (0), existing customers (1) or for both(2). This is mandatory for main products.</p>\n","type":"text"},{"key":"active","value":"","description":"<p>1 = active, 0 = inactive (Mandatory)</p>\n","type":"text"},{"key":"price","value":"","description":"<p>One time price</p>\n","type":"text"},{"key":"price_action","value":"","description":"<p>One time promotion price</p>\n","type":"text"},{"key":"price_monthly","value":"","description":"<p>Monthly price</p>\n","type":"text"},{"key":"price_monthly_action","value":"","description":"<p>Monthly promotion price</p>\n","type":"text"},{"key":"price_monthly_action_value","value":"","description":"<p>Number of months for promotion price</p>\n","type":"text"},{"key":"valid_from","value":"","description":"<p>Start date from which product can be sold</p>\n","type":"text"},{"key":"valid_till","value":"","description":"<p>End date till which product can be sold</p>\n","type":"text"},{"key":"image[content]","value":"","description":"<p>Base64 string of the product image</p>\n","type":"text"},{"key":"image[extension]","value":"","description":"<p>Extension of the product image. Possible values - png.gif,jpg,jpeg</p>\n","type":"text"},{"key":"attachments","value":"","description":"<p>Product documents to be attached send as array value</p>\n","type":"text","uuid":"b4dfa8c2-0224-4276-920e-d1d90407112b"}]},"url":"{{url}}/api/{{domain}}/{{version}}/account/products","description":"<p>This endpoint can be used to create products in Salesdock. This is available for only admin users.</p>\n<p>Extra fields need to be sent in the format cf_{identifier} where identifier is the unique identifier of the extra field</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","products"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"4777c3ba-bcd6-4af1-ab32-42697efe2b99","name":"Create telecom product","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Test Internet, Bellen and TV 5 jaar\",\n    \"identifier\": \"test-internet-beller-tv-5-jaar\",\n    \"active\": \"1\",\n    \"description\": \"Test intenret product\",\n    \"duration\": \"60\",\n    \"business\": \"1\",\n    \"retention\": \"2\",\n    \"type\": \"telecom_3p\",\n    \"supplier_id\": \"38\",\n    \"price\": \"10\",\n    \"price_action\": \"5\",\n    \"price_monthly\": \"20\",\n    \"price_monthly_action\": \"15\",\n    \"price_monthly_action_value\": \"5\",\n    \"cf_contract_duration\": \"5 jaar\",\n    \"image\": {\n        \"content\" : \"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mP8z/C/HgAGgwJ/lK3Q6wAAAABJRU5ErkJggg==\",\n        \"extension\": \"png\"\n    },\n    \"attachments\": [\n        {\n            \"document\": \"doc_1\",\n            \"action\": \"add\",\n            \"name\": \"VoorbeeldDocument1\",\n            \"content\": \"JVBERi0xLjcKJc...\",\n            \"extension\": \".pdf\",\n            \"visibility\": [\"productview\", \"email\"]\n        },\n        {\n            \"document\": \"doc_2\",\n            \"action\": \"add\",\n            \"name\": \"VoorbeeldDocument2\",\n            \"content\": \"JVBERi0xLjcKJc...\",\n            \"extension\": \".pdf\",\n            \"visibility\": [\"offerpage\"]\n        },\n        {\n            \"document\": \"doc_5\",\n            \"action\": \"add\",\n            \"name\": \"VoorbeeldDocument5\",\n            \"content\": \"JVBERi0xLjcKJc...\",\n            \"extension\": \".pdf\",\n            \"visibility\": [\"productview\", \"email\", \"offerpage\"]\n        }\n    ]\n}"},"url":"{{url}}/api/{{domain}}/{{version}}/account/products"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"product_id\": 1\n    },\n    \"message\": \"Product succesvol aangemaakt\"\n}"}],"_postman_id":"fd64b666-3f33-40d7-852d-696e15b1ee6f"},{"name":"Update product","id":"65166370-9fe3-4756-9176-84693b2c9481","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"name","value":"","description":"<p>Name of the product</p>\n","type":"text"},{"key":"identifier","value":"","description":"<p>Unique slug identifier for the product</p>\n","type":"text"},{"key":"supplier_id","value":"","description":"<p>The id of the supplier.</p>\n","type":"text"},{"key":"usp","value":"","description":"<p>String containing the the USP of the product. This will be shown in the agent portal when doing a sale.</p>\n","type":"text"},{"key":"description","value":"","type":"text"},{"key":"duration","value":"","description":"<p>Contract duration of the product in months</p>\n","type":"text"},{"key":"business","value":"","description":"<p>Whether product is busines (1) or consumer (0) or both (2). This is only for main product.</p>\n","type":"text"},{"key":"retention","value":"","description":"<p>If only for new customers (0), existing customers (1) or for both(2).</p>\n","type":"text"},{"key":"active","value":"","description":"<p>1 = active, 0 = inactive</p>\n","type":"text"},{"key":"price","value":"","description":"<p>One time price</p>\n","type":"text"},{"key":"price_action","value":"","description":"<p>One time promotion price</p>\n","type":"text"},{"key":"price_monthly","value":"","description":"<p>Monthly price</p>\n","type":"text"},{"key":"price_monthly_action","value":"","description":"<p>Monthly promotion price</p>\n","type":"text"},{"key":"price_monthly_action_value","value":"","description":"<p>Number of months for promotion price</p>\n","type":"text"},{"key":"valid_from","value":"","description":"<p>Start date from which product can be sold</p>\n","type":"text"},{"key":"valid_till","value":"","description":"<p>End date till which product can be sold</p>\n","type":"text"},{"key":"image[content]","value":"","description":"<p>Base64 string of the product image</p>\n","type":"text"},{"key":"image[extension]","value":"","description":"<p>Extension of the product image. Possible values - png.gif,jpg,jpeg</p>\n","type":"text"},{"key":"attachments","value":"","description":"<p>Product documents to be updated( add, delete, update) can be send as array value</p>\n","type":"text","uuid":"c018515d-6405-4d1c-8996-713fcd045f9a"}]},"url":"{{url}}/api/{{domain}}/{{version}}/account/products/{{product_id}}","description":"<p>This endpoint can be used to update a product. This is available for only admin users.</p>\n<p>The product_id needs to be passed in the URL.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","products","{{product_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"810923b4-c3f7-48a6-a368-bbfbd063b54b","name":"Update telecom product","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Test Internet, Bellen and TV 5 jaar\",\n    \"identifier\": \"test-internet-beller-tv-5-jaar\",\n    \"active\": \"1\",\n    \"description\": \"Test intenret product\",\n    \"duration\": \"60\",\n    \"business\": \"1\",\n    \"retention\": \"2\",\n    \"supplier_id\": \"38\",\n    \"price\": \"10\",\n    \"price_action\": \"5\",\n    \"price_monthly\": \"20\",\n    \"price_monthly_action\": \"15\",\n    \"price_monthly_action_value\": \"5\",\n    \"cf_contract_duration\": \"5 jaar\",\n    \"image\": {\n        \"content\" : \"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mP8z/C/HgAGgwJ/lK3Q6wAAAABJRU5ErkJggg==\",\n        \"extension\": \"png\"\n    },\n    \"attachments\": [\n        {\n            \"document\": \"doc_1\",\n            \"action\": \"add\",\n            \"name\": \"VoorbeeldDocument1\",\n            \"content\": \"JVBERi0xLjcKJc...\",\n            \"extension\": \".pdf\",\n            \"visibility\": [\"productview\", \"email\"]\n        },\n        {\n            \"document\": \"doc_2\",\n            \"action\": \"add\",\n            \"name\": \"VoorbeeldDocument2\",\n            \"content\": \"JVBERi0xLjcKJc...\",\n            \"extension\": \".pdf\",\n            \"visibility\": [\"offerpage\"]\n        },\n        {\n            \"document\": \"doc_3\",\n            \"action\": \"delete\"\n        },\n        {\n            \"document\": \"doc_4\",\n            \"action\": \"update\",\n            \"visibility\": [\"email\", \"productview\"]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/account/products/38437"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 03 Jun 2022 10:01:02 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=JKUN1SiGdRMlZugOIbJGA%2BxqGyLDVmJZT1syNrzACSuwwbgLZUWl7d7NtYsNPzOiPLZneoXqR76oYHGNwYoEe6%2BDuUxWP%2FN%2BXKwh%2Fl3miyhNur03SBxhlZ7mScFSkRx3V3M%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"715795c71cb62e2e-BOM"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"product_id\": 38437\n    },\n    \"message\": \"Product succesvol geupdatet\"\n}"}],"_postman_id":"65166370-9fe3-4756-9176-84693b2c9481"},{"name":"Delete product","id":"6e82ee76-cffb-4f2e-8d4c-82444499969c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/products/{{product_id}}","description":"<p>Delete a product using product id. product_id needs to be passed in the URL.</p>\n<p>The product id can be obtained from the \"Get products\" API call.</p>\n<p>This endpoint is available for only admin users</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","products","{{product_id}}"],"host":["{{url}}"],"query":[{"disabled":true,"key":"api_token","value":"{{api_token}}"}],"variable":[]}},"response":[{"id":"16df772e-3180-4c60-ac09-3daaa1b91ff7","name":"Delete product","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"}],"url":{"raw":"{{url}}/api/{{domain}}/{{version}}/account/products/38435","host":["{{url}}"],"path":["api","{{domain}}","{{version}}","account","products","38435"],"query":[{"key":"api_token","value":"{{api_token}}","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 03 Jun 2022 09:47:43 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Iikq2nOxtYiFbaz1S3XZhC918FywpGndrIw%2BvptiGktDos4vbPwnzzePqFrFzSvkkQxg53wbpr9ULeDV4QPmL%2BnXBAW11XYIPaoc64las%2B4C2npZ9mO9QB3yzXA7kvPrIME%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"715782477d6b2e2e-BOM"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"product_id\": 38435\n    },\n    \"message\": \"Product succesvol verwijderd\"\n}"}],"_postman_id":"6e82ee76-cffb-4f2e-8d4c-82444499969c"},{"name":"Connect organisation to products","id":"2e11577f-ca1a-42fc-be8c-1bec611dfa82","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"products\": [\"1\", \"2\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/account/connect-organisation-to-products/{{organisation_id}}","description":"<p>This endpoint can be used to connect different products to an organisation so that the users of the organisation can sell those products.</p>\n<p>The organisation_id needs to be passed in the URL.</p>\n<p>products array containing list of product_ids to connect to the organisation should be passed in the request body. If products array is not sent, then all available products are connected. If empty products array is sent, then all products are disconnected. The list of products connected are returned in the response.</p>\n<p>This endpoint is available only for admin users.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","connect-organisation-to-products","{{organisation_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"a5143200-e546-4ca4-8db1-9141f1ad7550","name":"Connect organisation to products","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"products\": [\"424\", \"425\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/account/connect-organisation-to-products/3187"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 06 Jun 2022 13:04:46 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=zZ75SC8CqxHjBUeVnH11Z4J09EvEFISPlr6B2VN0ByinQEda6JgTY6DWjRdFlwECPDJdSCQ4ojmcBL2wSofAbrMPUO1x%2FYaJxC2VlsjbvgP2zyEe7WuxWbvc%2FV%2B9RNbGrag%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"71715b0c6ec23228-BOM"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"organisation_id\": 3187,\n        \"products\": [\n            424,\n            425\n        ]\n    },\n    \"message\": \"Organisatie succesvol geüpdatet met producten\"\n}"}],"_postman_id":"2e11577f-ca1a-42fc-be8c-1bec611dfa82"},{"name":"Connect product to organisations","id":"e6662a2e-f79e-4cde-bb84-953e4c40497f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"organisations\": [\"1\", \"2\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/account/connect-product-to-organisations/{{product_id}}","description":"<p>This endpoint can be used to connect different organisations to a product so that the users of these organisations can sell the product.</p>\n<p>The product_id needs to be passed in the URL.</p>\n<p>organisations array containing list of organisation_ids to connect to the product should be passed in the request body. If organisations array is not sent, then all available organisations are connected. If empty organisations array is sent, then all organisations are disconnected with the product. The list of organisations connected are returned in the response.</p>\n<p>This endpoint is available only for admin users.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","connect-product-to-organisations","{{product_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"fefd7065-e9f4-4fcb-9c0a-fefce4f08ce2","name":"Connect product to organisations","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"organisations\": [\"1\", \"2\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/account/connect-product-to-organisations/{{product_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 06 Jun 2022 13:16:27 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=6tlB3ilG7SIWOSkkEn1XK%2FBzAFX3dkR1i1tIJHp31D3TC%2BifPe9OVcw%2FZYXZKnuP3ehShZGK6IEZRR36ugahb1HEogYwJCvP8S%2BuWzC8mp%2BltdPJoQm10NfIlvEBP3qgdrQ%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"71716c2d882c8583-BOM"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"product_id\": 3465,\n        \"organisations\": [\n            1\n        ]\n    },\n    \"message\": \"Product succesvol geüpdatet met organisaties\"\n}"}],"_postman_id":"e6662a2e-f79e-4cde-bb84-953e4c40497f"}],"id":"a5ef74c4-fcf9-4b6b-8efb-4d7eb346e2f9","_postman_id":"a5ef74c4-fcf9-4b6b-8efb-4d7eb346e2f9","description":""},{"name":"Tasks API","item":[{"name":"Get tasks","id":"3d7083c6-ed39-47be-b7db-fb7b57580e69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/tasks?mode&completed&owner_user_id&assigned_user_id&period&period_start&period_end","description":"<p>The Get tasks API endpoint, helps in retrieving basic information about different tasks based on different filters. The results are provided as cursor paginated. This endpoint is available for both account and user scope.</p>\n<p>The filters that can be used to retrieve the tasks are explained in the params list below.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","tasks"],"host":["{{url}}"],"query":[{"description":{"content":"<p>mode = 'open'; all open tasks. mode = 'completed', all completed tasks. Leave empty for all tasks</p>\n","type":"text/plain"},"key":"mode","value":null},{"description":{"content":"<p>Possible values = 'yes', 'no'. If completed = 'yes', the date filter will use completed date to filter.</p>\n","type":"text/plain"},"key":"completed","value":null},{"description":{"content":"<p>The user id of the owner of the task</p>\n","type":"text/plain"},"key":"owner_user_id","value":null},{"description":{"content":"<p>The user id of the assignd user of the task</p>\n","type":"text/plain"},"key":"assigned_user_id","value":null},{"description":{"content":"<p>The period to filter on. Possible values - custom, today, yesterday, this_week, last_week, last_30_days, this_month, last_month, this_year</p>\n","type":"text/plain"},"key":"period","value":null},{"description":{"content":"<p>Start date if period is custom</p>\n","type":"text/plain"},"key":"period_start","value":null},{"description":{"content":"<p>End date if period is custom</p>\n","type":"text/plain"},"key":"period_end","value":null}],"variable":[]}},"response":[{"id":"cd011175-1cc4-4544-9312-4f1555438670","name":"Get tasks","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"{{url}}/api/{{domain}}/{{version}}/account/tasks?owner_user_id&assigned_user_id&mode&completed&period&period_start&period_end","host":["{{url}}"],"path":["api","{{domain}}","{{version}}","account","tasks"],"query":[{"key":"owner_user_id","value":null,"description":"The user id of the owner of the task"},{"key":"assigned_user_id","value":null,"description":"The user id of the assignd user of the task"},{"key":"mode","value":null,"description":"mode = 'open'; all open tasks. mode = 'completed', all completed tasks. Leave empty for all tasks"},{"key":"completed","value":null,"description":"Possible values = 'yes', 'no'. If completed = 'yes', the date filter will use completed date to filter."},{"key":"period","value":null,"description":"The period to filter on. Possible values - custom, today, yesterday, this_week, last_week, last_30_days, this_month, last_month, this_year"},{"key":"period_start","value":null,"description":"Start date if period is custom"},{"key":"period_end","value":null,"description":"End date if period is custom"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Dec 2022 08:04:41 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=UdU1cV1mOVGhIPqn4TfR4UZgzJ8tXwN8J7RGEqgfl5UZk3Gwc3d0kaohGXQBGI8lle6%2F9CsY0Wn%2FjjYCmMLGdIZCzMl09thMsc7NmmjX336M48y48kQJt4%2FApUBVDrFC00s%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"774b45bb3f037937-AMD"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"path\": \"https://app.salesdock.nl/api/testomgeving/v1/user/tasks\",\n        \"per_page\": 20,\n        \"next_cursor\": null,\n        \"next_page_url\": null,\n        \"prev_cursor\": null,\n        \"prev_page_url\": null,\n        \"data\": [\n            {\n                \"id\": 35207,\n                \"title\": \"Test\",\n                \"type\": \"default\",\n                \"status\": \"Open\",\n                \"planned_date\": \"\",\n                \"planned_time\": null,\n                \"end_time\": null,\n                \"assigned_user_id\": 2916,\n                \"owner_user_id\": 2916,\n                \"assigned_to\": {\n                    \"id\": 2916,\n                    \"name\": \"John Doe\",\n                    \"organisation\": {\n                        \"id\": 1,\n                        \"name\": \"Default\"\n                    },\n                    \"team\": {\n                        \"id\": null,\n                        \"name\": null\n                    }\n                },\n                \"owner\": {\n                    \"id\": 2916,\n                    \"name\": \"John Doe\",\n                    \"organisation\": {\n                        \"id\": 1,\n                        \"name\": \"Default\"\n                    },\n                    \"team\": {\n                        \"id\": null,\n                        \"name\": null\n                    }\n                },\n                \"description\": null,\n                \"remarks\": null,\n                \"location\": null,\n                \"lead_id\": null,\n                \"relation_id\": null,\n                \"completed_at\": null,\n                \"created_at\": \"10-11-2023 10:53:17\",\n                \"updated_at\": \"10-11-2023 10:53:17\"\n            },\n            {\n                \"id\": 35209,\n                \"title\": \"Test\",\n                \"type\": \"default\",\n                \"status\": \"Open\",\n                \"planned_date\": \"\",\n                \"planned_time\": null,\n                \"end_time\": null,\n                \"assigned_user_id\": 2916,\n                \"owner_user_id\": 2916,\n                \"assigned_to\": {\n                    \"id\": 2916,\n                    \"name\": \"John Doe\",\n                    \"organisation\": {\n                        \"id\": 1,\n                        \"name\": \"Default\"\n                    },\n                    \"team\": {\n                        \"id\": null,\n                        \"name\": null\n                    }\n                },\n                \"owner\": {\n                    \"id\": 2916,\n                    \"name\": \"John Doe\",\n                    \"organisation\": {\n                        \"id\": 1,\n                        \"name\": \"Default\"\n                    },\n                    \"team\": {\n                        \"id\": null,\n                        \"name\": null\n                    }\n                },\n                \"description\": null,\n                \"remarks\": null,\n                \"location\": null,\n                \"lead_id\": null,\n                \"relation_id\": null,\n                \"completed_at\": null,\n                \"created_at\": \"10-11-2023 11:38:23\",\n                \"updated_at\": \"10-11-2023 11:38:23\"\n            },\n            {\n                \"id\": 33171,\n                \"title\": \"Meet XYZ co\",\n                \"type\": \"appointment\",\n                \"status\": \"Completed\",\n                \"planned_date\": \"26-04-2023\",\n                \"planned_time\": \"14:49\",\n                \"end_time\": \"15:49\",\n                \"assigned_user_id\": 2916,\n                \"owner_user_id\": 2916,\n                \"assigned_to\": {\n                    \"id\": 1,\n                    \"name\": \"Jane Doe\",\n                    \"organisation\": {\n                        \"id\": 1,\n                        \"name\": \"Default\"\n                    },\n                    \"team\": {\n                        \"id\": null,\n                        \"name\": null\n                    }\n                },\n                \"owner\": {\n                    \"id\": 2916,\n                    \"name\": \"John Doe\",\n                    \"organisation\": {\n                        \"id\": 1,\n                        \"name\": \"Default\"\n                    },\n                    \"team\": {\n                        \"id\": null,\n                        \"name\": null\n                    }\n                },\n                \"description\": null,\n                \"remarks\": null,\n                \"location\": null\n                \"lead_id\": null,\n                \"relation_id\": null,\n                \"completed_at\": \"26-04-2023 08:52:39\",\n                \"created_at\": \"26-04-2023 08:19:45\",\n                \"updated_at\": \"26-04-2023 08:52:39\"\n            },\n            {\n                \"id\": 37622,\n                \"title\": \"Call this person on 10th\",\n                \"type\": \"default\",\n                \"status\": \"Open\",\n                \"planned_date\": \"10-05-2024\",\n                \"planned_time\": null,\n                \"end_time\": null,\n                \"assigned_user_id\": 2916,\n                \"owner_user_id\": 2916,\n                \"assigned_to\": {\n                    \"id\": 2,\n                    \"name\": \"Jane Doe\",\n                    \"organisation\": {\n                        \"id\": 1,\n                        \"name\": \"Default\"\n                    },\n                    \"team\": {\n                        \"id\": null,\n                        \"name\": null\n                    }\n                },\n                \"owner\": {\n                    \"id\": 2916,\n                    \"name\": \"John Doe\",\n                    \"organisation\": {\n                        \"id\": 1,\n                        \"name\": \"Default\"\n                    },\n                    \"team\": {\n                        \"id\": null,\n                        \"name\": null\n                    }\n                },\n                \"description\": null,\n                \"remarks\": null,\n                \"location\": null,\n                \"lead_id\": null,\n                \"relation_id\": null,\n                \"completed_at\": null,\n                \"created_at\": \"08-05-2024 08:56:36\",\n                \"updated_at\": \"08-05-2024 08:56:36\"\n            }\n        ]\n    },\n    \"message\": \"Tasks retrieved successfully\"\n}"}],"_postman_id":"3d7083c6-ed39-47be-b7db-fb7b57580e69"},{"name":"Get task","id":"998496c5-0739-4fce-89bc-4972ae0f330d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/tasks/{{task_id}}","description":"<p>The Get task API endpoint, helps in retrieving comprehensive information about a task. This endpoint is available for both account and user scope.</p>\n<p>In the URL, pass the ID of the task instead of task_id. The task_id can be obtained using the \"Get tasks\" API endpoint</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","tasks","{{task_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3ad05b78-62c3-42f1-86c0-bb0c4771a4fb","name":"Get task","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/tasks/1623"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Dec 2022 09:39:11 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=ztRqXVE%2FGCHw6qbN2KAOxVQyn%2FpW%2FhTMikFzBcXUOfsVL%2FjH3E1wWnaot8C4tTYj6CMl95GGpuqxTLoBOIc4uYSCS7wfC28WkEe%2FIxa7TCxcuWA2TRLVZAevcJ8%2F5XrPvn8%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"774bd027bdb1a3b7-AMD"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"id\": 35207,\n        \"title\": \"Test\",\n        \"type\": \"default\",\n        \"status\": \"Open\",\n        \"description\": null,\n        \"remarks\": null,\n        \"location\": null,\n        \"planned_date\": \"\",\n        \"planned_time\": null,\n        \"end_time\": null,\n        \"assigned_user_id\": 2916,\n        \"assigned_user\": \"John Doe\",\n        \"owner_user_id\": 2916,\n        \"owner_user\": \"John Doe\",\n        \"assigned_to\": {\n            \"id\": 2916,\n            \"name\": \"John Doe\",\n            \"organisation\": {\n                \"id\": 1,\n                \"name\": \"Default\"\n            },\n            \"team\": {\n                \"id\": null,\n                \"name\": null\n            }\n        },\n        \"owner\": {\n            \"id\": 2916,\n            \"name\": \"John Doe\",\n            \"organisation\": {\n                \"id\": 1,\n                \"name\": \"Default\"\n            },\n            \"team\": {\n                \"id\": null,\n                \"name\": null\n            }\n        },\n        \"lead_id\": null,\n        \"relation_id\": null,\n        \"completed_at\": null,\n        \"created_at\": \"10-11-2023 10:53:17\",\n        \"updated_at\": \"10-11-2023 10:53:17\"\n    },\n    \"message\": \"Task retrieved successfully\"\n}"}],"_postman_id":"998496c5-0739-4fce-89bc-4972ae0f330d"},{"name":"Create task","id":"39b56559-dfc0-42ff-8780-8187c811b694","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"title","value":"","description":"<p>The title of the task. This is a mandatory field.</p>\n","type":"text"},{"key":"type","value":"","description":"<p>Type of task. Possible values - 'default', 'appointment', 'callback'. This is a mandatory field</p>\n","type":"text"},{"key":"description","value":"","description":"<p>Description of the task</p>\n","type":"text"},{"key":"remarks","value":"","description":"<p>Remarks (if any) for the task</p>\n","type":"text"},{"key":"location","value":"","description":"<p>The location where the task is planned to take place at.</p>\n","type":"text"},{"key":"planned_date","value":"","description":"<p>The planned date of the task in dd-mm-yyyy format</p>\n","type":"text"},{"key":"planned_start_time","value":"","description":"<p>The planned start time of the task in hh:mm format</p>\n","type":"text"},{"key":"planned_end_time","value":"","description":"<p>The planned end time of the task in hh:mm format</p>\n","type":"text"},{"key":"user_id","value":"","description":"<p>The ID of the user to assign the task to</p>\n","type":"text"},{"key":"relation_id","value":"","description":"<p>The ID of the relation to attach the task to</p>\n","type":"text"},{"key":"completed","value":"","description":"<p>If the task is completed or not. Possible values - yes, no</p>\n","type":"text"}]},"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/tasks","description":"<p>The Create task endpoint can be used to create tasks. The parameters that are available for this endpoint are listed below.</p>\n<p>Both admin and user scope users can create tasks.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"03d27eef-e488-4753-b2d7-8b85783c3f00","name":"Create task","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"title\" : \"Meet with Salesdock exec\",\n    \"type\": \"appointment\",\n    \"description\": \"Meet to discuss implementing Solar panel flow\",\n    \"location\": \"Salesdock HQ\",\n    \"planned_date\": \"30-11-2023\",\n    \"planned_start_time\": \"12:01\",\n    \"planned_end_time\": \"12:05\",\n    \"completed\": \"no\",\n    \"remarks\": \"Meeting is postponed\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/tasks"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 18 Sep 2023 11:26:19 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"120"},{"key":"X-RateLimit-Remaining","value":"119"},{"key":"x-robots-tag","value":"none"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Cross-Origin-Embedder-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Opener-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Oyc2xkwhvS2a4MPnSwFma%2BL%2FuzC8%2B7zEZoaK7WjuzzKBaJvc26DhqQg1LTziNVrgeWnGi7wBAFLdxPGKfstBDthBp%2B%2FYrtz2n39ckOjHqZiIAJe5eHX19MQkB2kDFp9pTk0%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"80893bbc3bd15c3a-AMS"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"task_id\": 34879\n    },\n    \"message\": \"Taak succesvol aangemaakt\"\n}"}],"_postman_id":"39b56559-dfc0-42ff-8780-8187c811b694"},{"name":"Update task","id":"05f911eb-1072-422d-afb8-57f546ed5a62","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"title","value":"","description":"<p>The title of the task. This is a mandatory field.</p>\n","type":"text"},{"key":"type","value":"","description":"<p>Type of task. Possible values - 'default', 'appointment', 'callback'. This is a mandatory field</p>\n","type":"text"},{"key":"description","value":"","description":"<p>Description of the task</p>\n","type":"text"},{"key":"remarks","value":"","description":"<p>Remarks (if any) for the task</p>\n","type":"text"},{"key":"location","value":"","description":"<p>The location where the task is planned to take place at.</p>\n","type":"text"},{"key":"planned_date","value":"","description":"<p>The planned date of the task in dd-mm-yyyy format</p>\n","type":"text"},{"key":"planned_start_time","value":"","description":"<p>The planned start time of the task in hh:mm format</p>\n","type":"text"},{"key":"planned_end_time","value":"","description":"<p>The planned end time of the task in hh:mm format</p>\n","type":"text"},{"key":"user_id","value":"","description":"<p>The ID of the user to assign the task to</p>\n","type":"text"},{"key":"relation_id","value":"","description":"<p>The ID of the user to assign the task to</p>\n","type":"text"},{"key":"completed","value":"","description":"<p>If the task is completed or not. Possible values - yes, no</p>\n","type":"text"}]},"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/tasks/{{task_id}}","description":"<p>The Update task endpoint can be used to update tasks. The parameters that are available for this endpoint are listed below.</p>\n<p>Both admin and user scope users can create tasks.</p>\n<p>Replace task_id in the URL with ID of the task. The task id can be obtained from the Get tasks API endpoint.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","tasks","{{task_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c60c0ab0-eb5f-4935-a0a2-36d41be05a53","name":"Update task","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"title\" : \"Meet with Salesdock exec\",\n    \"type\": \"appointment\",\n    \"description\": \"Meet to discuss implementing Solar panel flow\",\n    \"location\": \"Salesdock HQ\",\n    \"planned_date\": \"30-11-2023\",\n    \"planned_start_time\": \"12:01\",\n    \"planned_end_time\": \"12:05\",\n    \"completed\": \"no\",\n    \"remarks\": \"Meeting is postponed to tomorrow\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/tasks/{{task_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 18 Sep 2023 11:34:02 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"120"},{"key":"X-RateLimit-Remaining","value":"118"},{"key":"x-robots-tag","value":"none"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Cross-Origin-Embedder-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Opener-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=KgU6rCVWwkE8qJBckEqUMkHEQzxjUInJWN9v3HKsF5rDf%2FLxfg03ylT76SSTX1hAY%2Bw6rsOTVDmeqkrbFcoMauUaM0YS5QzH0aRCoegmH0SoUd%2BeHb3Tnv3IZH%2BGtCyDZnI%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"80894704e91706d2-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"task_id\": 34879\n    },\n    \"message\": \"Task updated successfully\"\n}"}],"_postman_id":"05f911eb-1072-422d-afb8-57f546ed5a62"},{"name":"Delete task","id":"5ab62f31-1a5b-4201-96fe-dfffe3674fcb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/tasks/{{task_id}}","description":"<p>This endpoint can be used to delete tasks. This is only available for admin users.</p>\n<p>Replace task_id in the URL with the ID of the task</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","tasks","{{task_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"40cbbe06-95f1-41e5-9161-f1d721e1e6af","name":"Delete task","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/tasks/{{task_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 18 Sep 2023 11:53:55 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"120"},{"key":"X-RateLimit-Remaining","value":"118"},{"key":"x-robots-tag","value":"none"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Cross-Origin-Embedder-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Opener-Policy","value":"unsafe-none"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=kBGSk7keQgV0Utog%2BJVuht1lrRbjPEo4u2aOOz9lXqv6o1Y3OM3NyrhnWfv0Qok8kbFg9UkzZ0qNQCQj%2F2H1lOeTSuXrRZIZOzOj%2BMT%2Fc2vvCoRz3yKxyDksnZKbX9jsnww%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"8089642a3ccc1cce-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"task_id\": 34879\n    },\n    \"message\": \"Taak succesvol verwijderd\"\n}"}],"_postman_id":"5ab62f31-1a5b-4201-96fe-dfffe3674fcb"}],"id":"008d4eac-4eb0-4fcb-8904-420ec809a0d7","_postman_id":"008d4eac-4eb0-4fcb-8904-420ec809a0d7","description":""},{"name":"Webhooks API","item":[{"name":"Get events","id":"ea1b9a61-691c-4bd2-ba95-45c594cea610","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/v1/account/webhooks/events","description":"<p>This endpoint lists the events that are currently supported in Salesdock webhooks. Users can use this list to subscribe to the events that they want to create a webhook for.</p>\n","urlObject":{"path":["api","{{domain}}","v1","account","webhooks","events"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c8470e39-d34b-4219-b90b-bfcb6dc30a5f","name":"Get events","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/v1/account/webhooks/events"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 02 May 2023 11:43:59 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"57"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=x6%2FHsMywXaa0f75bHM%2FS0mOCWn0KbWXOQ8BThKbWXKougYT%2BosXVgl4K%2FbMOROuuDCWVkX7uEtnhxI4x6Md%2Bl2cGzUT3oeKIM7GDPMHYY%2Fu0LwLYlX9ElbL9dGIsgk86W7c%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7c10027919ecb939-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        \"task.created\",\n        \"offer.accepted\",\n        \"sale.cancelled\",\n        \"offer.viewed\",\n        \"sale.deleted\",\n        \"lead.deleted\",\n        \"lead.created\",\n        \"lead.updated\",\n        \"lead.completed\",\n        \"product.updated\"\n    ],\n    \"message\": \"Webhook events retrieved successfully\"\n}"}],"_postman_id":"ea1b9a61-691c-4bd2-ba95-45c594cea610"},{"name":"Subscribe","id":"8126e8bb-5216-465b-92a9-da05a0f6a6cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept-Encoding","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"event\": \"offer.accepted\",\n    \"target_url\": \"https://example.com\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/v1/account/webhooks","description":"<p>This endpoint can be used to subscribe to a webhook event on Salesdock. The request supports two paraemters in the request body:</p>\n<ul>\n<li>event - This is the name of the event that the user would like to subscribe to. The event name can be received from the Get events API call</li>\n<li>target_url - This is the target URL that the webhook has to call when the event is executed on Salesdock</li>\n</ul>\n<p>The response contains a parameter called uuid that can be used to unsubscribe from the event in future.</p>\n","urlObject":{"path":["api","{{domain}}","v1","account","webhooks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c6d00ecc-ff9c-49a0-8cec-b66acc185743","name":"Subscribe","originalRequest":{"method":"POST","header":[{"key":"Accept-Encoding","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"event\": \"offer.accepted\",\n    \"target_url\": \"https://example.com\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/v1/account/webhooks"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 02 May 2023 12:01:40 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=QSsXFn2PUuN%2BQ1wco7OvZYOYNzxss2aLMLaFBFvXFZT%2BnhM02GDukSta8Fo8gpOI1DSMsFG%2FEO17vSxJGP%2B2EMzjUf6fNH62%2FaRrKavfeBzVfrjCN1Q4%2BcKtjkJaX58PEpo%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7c101c61ce04b782-AMS"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"uuid\": \"c801bed5-fdae-4e4b-b1dd-e87fd52075e0\",\n        \"event\": \"offer.accepted\",\n        \"target_url\": \"https://example.com\",\n        \"subscribed_at\": \"2023-05-02T12:01:40.000000Z\"\n    },\n    \"message\": \"Subscribed to event offer.accepted successfully\"\n}"}],"_postman_id":"8126e8bb-5216-465b-92a9-da05a0f6a6cf"},{"name":"Get subscriptions","id":"ae28c57c-78ba-49fa-8e57-d93176004472","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/v1/account/webhooks","description":"<p>This endpoint lists all the webhook events that the user has already subscribed to.</p>\n","urlObject":{"path":["api","{{domain}}","v1","account","webhooks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"1fab2627-6f1d-430e-9d44-5b83ef4ba93c","name":"Get subscriptions","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/v1/account/webhooks"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 02 May 2023 12:08:42 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=ytKoTRApPK0epN6XkEoDyXMPvQs3pTiW0WT2nDgyW7S8hgeP4Wi7B5OZCtbEaMXcYKB6%2FMnHBPIS4JUqz2fc9k46QhBfj9SN62ycBqPbaXfzvD2o53W1DEF66efCv8mINXk%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7c1026afbacdb96e-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"uuid\": \"c801bed5-fdae-4e4b-b1dd-e87fd52075e0\",\n            \"event\": \"offer.accepted\",\n            \"target_url\": \"https://example.com\",\n            \"subscribed_at\": \"2023-05-02T12:01:40.000000Z\"\n        }\n    ],\n    \"message\": \"Subscriptions retrieved successfully\"\n}"}],"_postman_id":"ae28c57c-78ba-49fa-8e57-d93176004472"},{"name":"Unsubscribe","id":"160353b0-adc0-4fd7-bb81-8fed4568a8ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/v1/account/webhooks/{{uuid}}","description":"<p>This endpoint can be used to unsubscribe from a webhook that the user is already subscribed to</p>\n","urlObject":{"path":["api","{{domain}}","v1","account","webhooks","{{uuid}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"aa46fdcb-4931-4c64-91e3-733aec11e5fa","name":"Unsubscribe","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/v1/account/webhooks/c801bed5-fdae-4e4b-b1dd-e87fd52075e0"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 02 May 2023 12:12:06 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com https://static.hotjar.com https://script.hotjar.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com https://static.hotjar.com https://script.hotjar.com; img-src 'self' data: https: https://static.hotjar.com https://script.hotjar.com; font-src 'self' data: https: https://fonts.gstatic.com https://script.hotjar.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com https://*.hotjar.com https://vc.hotjar.io https://content.hotjar.io https://events.hotjar.io https://surveystats.hotjar.io wss://*.hotjar.com https://*.hotjar.io; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com https://vars.hotjar.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Vary","value":"Origin,Authorization"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=W%2B1vK7JmzsqwZf2FCmsRw2W4zn%2BvgLCJ7M1RgEFURctx%2F11yBn24KJp5KyYLBoOtrLgO%2Fd1zJnbjZVQsyrGL6u2mNg2TM9Yr8G3g8Q5YONmTDd2ax9IJoGP4gcHqkU3ITJE%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7c102baa6d2fb96e-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [],\n    \"message\": \"Unsubscribed from event offer.accepted successfully\"\n}"}],"_postman_id":"160353b0-adc0-4fd7-bb81-8fed4568a8ce"}],"id":"d6326caa-d7c2-44d4-ac69-4b280bec8bfd","description":"<p>Salesdock webhooks are used to notify users application that an event has occured in Salesdock. Technically these are user-defined <a href=\"https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol\">HTTP</a> callbacks. They are triggered by some event in a web application and can facilitate integrating different applications or third-party APIs.</p>\n<p>The webhook API endpoints are only available for admin users using account scope.</p>\n<p><strong>When are webhooks useful?</strong></p>\n<p>Webhooks are very useful when a system wants to be notified as soon as something has occured on Salesdock app.</p>\n<p>A real world example could be an instance in which, the user wants to be notified via Zapier when a customer accepts an offer on Salesdock.</p>\n<p><strong>What does it mean to subscribe to a Webhook event?</strong></p>\n<p>Salesdock application has created some events to which third party applications or APIs can subscribe. When that particular event happens in Salesdock, a webhook call is triggered and corresponding data is sent to a URL added in the subscription.</p>\n<p><em>Please contact Salesdock support if you would like to start using the Webhooks</em></p>\n","_postman_id":"d6326caa-d7c2-44d4-ac69-4b280bec8bfd"},{"name":"Error response examples","item":[{"name":"400 (Bad request)","id":"15ff025d-672e-47f4-95ea-98b4d078627e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"activity\": \"d3d\",\n    \"business\": \"1\",\n    \"gender\": \"female\",\n    \"firstname\": \"Jane\",\n    \"lastname\": \"Doe\",\n    \"postcode\": \"7511PG\",\n    \"housenumber\": \"9\",\n    \"suffix\": \"\",\n    \"streetname\": \"Willem Wilminkplein\",\n    \"city\": \"Enschede\",\n    \"birthdate\": \"01-01-1990\",\n    \"email\": \"test@salesdock.nl\",\n    \"phone\": \"0611XXXXXX\",\n    \"company_name\": \"Test Co.\",\n    \"contact_person\": \"John Doe\",\n    \"coc\": \"01234567\",\n    \"vat\": \"NL12345678\",\n    \"assign\": \"user\",\n    \"user\": 2916,\n    \"planned_for_date\": \"1\",\n    \"planned_date\": \"20-04-2021\",\n    \"start_at\": \"10:00\",\n    \"end_at\": \"11:00\",\n    \"cf_bankrekeningnur\": \"NL91ABNA0417164300\",\n    \"question_payment-method\": \"Automatic\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/leads","description":"<p>Error response 400 is returned normally when there are validation errors to the request.</p>\n<p>The example shows a validation error that occurs when creating a lead.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","leads"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c7775e6c-8917-4550-9e50-a2ca99c90488","name":"Validation error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"activity\": \"d3d\",\n    \"business\": \"1\",\n    \"gender\": \"female\",\n    \"firstname\": \"Jane\",\n    \"lastname\": \"Doe\",\n    \"postcode\": \"7511PG\",\n    \"housenumber\": \"9\",\n    \"suffix\": \"\",\n    \"streetname\": \"Willem Wilminkplein\",\n    \"city\": \"Enschede\",\n    \"birthdate\": \"01-01-1990\",\n    \"email\": \"test@salesdock.nl\",\n    \"phone\": \"0611XXXXXX\",\n    \"company_name\": \"Test Co.\",\n    \"contact_person\": \"John Doe\",\n    \"coc\": \"01234567\",\n    \"vat\": \"NL12345678\",\n    \"assign\": \"user\",\n    \"user\": 2916,\n    \"planned_for_date\": \"1\",\n    \"planned_date\": \"20-04-2021\",\n    \"start_at\": \"10:00\",\n    \"end_at\": \"11:00\",\n    \"cf_bankrekeningnur\": \"NL91ABNA0417164300\",\n    \"question_payment-method\": \"Automatic\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/leads"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 25 Jan 2022 13:27:55 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' https://bam.eu01.nr-data.net https://www.google-analytics.com https://widget.freshworks.com https://salesdock.freshdesk.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=iGNSily9ldXIuEpIl4glJL3n%2FIsaL7wLcptaN8%2FwOh45YHqBZQpv%2F4eyxMumpY%2FFDC4kzUp3RO0YAFwMKkbD66q2avClFSnJZeZdmOM0aJuVXgB5sICZYD%2BF2mQYu0NpWYU%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"6d31d776a9378599-BOM"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"message\": \"Validatie fout\",\n    \"code\": 400,\n    \"errors\": {\n        \"activity\": [\n            \"Het geselecteerde activity is ongeldig.\"\n        ]\n    }\n}"}],"_postman_id":"15ff025d-672e-47f4-95ea-98b4d078627e"},{"name":"401 (Unauthorized)","id":"f6543a66-d39b-4955-8347-70103d3bd7f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/user/products","description":"<p>401 specified that the API token used in the request is not valid.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","user","products"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"ebf4bd23-1f45-49e9-9cc9-f7e4b052c207","name":"Authorization error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/user/products"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 25 Jan 2022 13:14:29 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' https://bam.eu01.nr-data.net https://www.google-analytics.com https://widget.freshworks.com https://salesdock.freshdesk.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Pv4qe9N6ZUlwGkQeVHPwj8Wl2RICtiMy%2FIzH3uODkbC1dO3qWe6q07dM1YVVRhGaeVzCNSdtWZQPI7VItWoeu74FdQDLEpxrjcK%2Btw5s%2F4bC7oED0uBeKIh9NVN9Fy%2FrIb4%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"6d31c3ccc8108599-BOM"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"message\": \"Niet geauthenticeerd\"\n}"}],"_postman_id":"f6543a66-d39b-4955-8347-70103d3bd7f6"},{"name":"403 (Forbidden)","id":"de4eb2d3-002a-4782-820a-0d881614a9a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/demo-company/{{version}}/user/products","description":"<p>403 error occurs when the user does not have access to the resource that is being requested.</p>\n","urlObject":{"path":["api","demo-company","{{version}}","user","products"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f8502612-cc4c-4cec-91b9-1d0342c0b3e8","name":"Forbidden error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/user/products"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 25 Jan 2022 13:25:33 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"57"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' https://bam.eu01.nr-data.net https://www.google-analytics.com https://widget.freshworks.com https://salesdock.freshdesk.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=I2kBIFGwMsI1r8rfp3ZqpSedCMPO9EqRBg40Ath1Anlr2xU4t8lbdicmEnVoLE7829vE8nx09lw%2B5mgGvEJ3BZdhu0Tfs9iTFtcxRZW3tfCBp%2B6p3fla66UMrgKMvO9P8wc%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"6d31d3ffadc18599-BOM"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"message\": \"Not authorised action.\"\n}"}],"_postman_id":"de4eb2d3-002a-4782-820a-0d881614a9a7"},{"name":"404 (Not found)","id":"df4a1b89-e8df-4d32-9643-61b672147c1c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/user/product","description":"<p>404 specified an incorrect URL resulting in a \"Page not found\"</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","user","product"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"02e5ae18-64dd-4b1a-b277-c536df2c2194","name":"Resource not found / Wrong URL","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/user/product"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 25 Jan 2022 13:11:28 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' https://bam.eu01.nr-data.net https://www.google-analytics.com https://widget.freshworks.com https://salesdock.freshdesk.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=8nSROjdplW4h999gFbFkA9%2FZgeSzAO614PtydyQ%2BpOYzb%2FcQnYvI3cXhMSdPqocZwgzI2MTLehZDeHv3ouWtyXdws9WW3z0GFQTeA%2FU1TCyGY7uLEHFWBn1Nb97UKNXc3ds%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"6d31bf61ca838599-BOM"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"message\": \"Resource not found.\",\n    \"code\": 404\n}"}],"_postman_id":"df4a1b89-e8df-4d32-9643-61b672147c1c"},{"name":"405 (Method not allowed)","id":"94063f96-17a0-4f61-8cb5-02b135c39806","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/sales","description":"<p>This error is returned usually when the request method is wrong. So for eg: if the method used is GET when POST is expected, it would return this error.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","{{scope}}","sales"],"host":["{{url}}"],"query":[{"disabled":true,"key":"period_filter_on","value":"updated_date"},{"disabled":true,"key":"period","value":"custom"},{"disabled":true,"key":"period_start","value":"{{start_date}}"},{"disabled":true,"key":"period_end","value":"{{end_date}}"},{"disabled":true,"key":"type","value":""},{"disabled":true,"key":"supplier_id","value":""},{"disabled":true,"key":"flow_id","value":""},{"disabled":true,"key":"statuses","value":""},{"disabled":true,"key":"offer_statuses","value":""},{"disabled":true,"key":"product_types","value":""},{"disabled":true,"key":"sale_ids[0]","value":""},{"disabled":true,"key":"sale_ids[1]","value":""}],"variable":[]}},"response":[{"id":"3db146e4-9970-46ce-9513-27216e8cb5ec","name":"Using POST instead of GET","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{api_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"{{url}}/api/{{domain}}/{{version}}/{{scope}}/sales","host":["{{url}}"],"path":["api","{{domain}}","{{version}}","{{scope}}","sales"],"query":[{"key":"period_filter_on","value":"updated_date","disabled":true},{"key":"period","value":"custom","disabled":true},{"key":"period_start","value":"{{start_date}}","disabled":true},{"key":"period_end","value":"{{end_date}}","disabled":true},{"key":"type","value":"","disabled":true},{"key":"supplier_id","value":"","disabled":true},{"key":"flow_id","value":"","disabled":true},{"key":"statuses","value":"","disabled":true},{"key":"offer_statuses","value":"","disabled":true},{"key":"product_types","value":"","disabled":true},{"key":"sale_ids[0]","value":"","type":"text","disabled":true},{"key":"sale_ids[1]","value":"","type":"text","disabled":true}]}},"status":"Method Not Allowed","code":405,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 15 Jul 2022 05:25:36 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=xFVGfdkb91DKsJFMcaOVx%2BAZfeRN5RSBrMmMP3Ge5S8ta1nn4dv7p8Eg8jJE0BYmPEXtI1HyrtO7XbtuAM%2Fo085eVoMoSpDMyUUBbT5LUh4TIhk6Spu742agoEXMudq8rWs%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"72b014134adcb819-AMS"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"message\": \"Not allowed\"\n}"}],"_postman_id":"94063f96-17a0-4f61-8cb5-02b135c39806"},{"name":"422 (Unprocessable Entity)","id":"eaf7b568-647e-49ee-8926-6a450387dd53","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Accept-Encoding","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/invitation","description":"<p>422 specifies validation errors that can result from missing request parameters</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","invitation"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"2e33617a-4f51-447c-bb24-89fea729af9f","name":"422 (Unprocessable Entity)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Accept-Encoding","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/invitation"},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jun 2022 09:53:30 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Content-Security-Policy","value":"script-src 'self' 'unsafe-inline' blob: https: https://cdn.jsdelivr.net https://js-agent.newrelic.com https://bam.nr-data.net https://bam.eu01.nr-data.net https://maps.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://b298ttw8bczj.statuspage.io/embed/script.js https://widget.freshworks.com https://www.google.com https://www.gstatic.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://widget.freshworks.com https://fast.appcues.com https://fonts.google.com; img-src 'self' data: https:; font-src 'self' data: https: https://fonts.gstatic.com; connect-src 'self' wss://*.pusher.com https://*.pusher.com https://bam.eu01.nr-data.net https://www.google-analytics.com https://www.googleapis.com https://widget.freshworks.com https://salesdock.freshdesk.com https://maps.googleapis.com wss://api.appcues.net https://api.appcues.net https://fast.appcues.com; form-action 'self'; frame-ancestors 'self' https://*.steamstaging.eu.com https://*.steam.eu.com; frame-src 'self' https://*.statuspage.io https://www.google.com; object-src 'self'"},{"key":"Permissions-Policy","value":"accelerometer=(self), ambient-light-sensor=(self), autoplay=(self), battery=(self), camera=(self), cross-origin-isolated=(self), display-capture=(self), document-domain=*, encrypted-media=(self), execution-while-not-rendered=*, execution-while-out-of-viewport=*, fullscreen=(self), geolocation=(self), gyroscope=(self), magnetometer=(self), microphone=(self), midi=(self), navigation-override=(self), payment=(self), picture-in-picture=*, publickey-credentials-get=(self), screen-wake-lock=(self), sync-xhr=*, usb=(self), web-share=(self), xr-spatial-tracking=(self)"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin,Authorization"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=QIoNOWHFPOpUUrLFXMeg6qjw2BjnHpqwqxhUCdNByYuX%2FOUxKcGgnsZuOhVdvDfBMqq%2FrHackvcdUwnfJeofNvk7pN0oUXXuz%2FV7p9QrePrGF%2F3nfTUScB81vsvprcW%2FhSE%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7180bda019768587-BOM"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"The given data was invalid.\",\n    \"errors\": {\n        \"email\": [\n            \"Het veld email is verplicht.\"\n        ],\n        \"role\": [\n            \"Het veld role is verplicht.\"\n        ],\n        \"organisation_id\": [\n            \"Het veld organisation id is verplicht.\"\n        ]\n    }\n}"}],"_postman_id":"eaf7b568-647e-49ee-8926-6a450387dd53"},{"name":"429 (Throttling / Rate limiting)","id":"151cd478-bd78-4e23-9f08-e5d92ed77bb0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/products","description":"<p>A user can do a maximum of 60 requests per minute. Requests above that will respond with a 429 error.</p>\n","urlObject":{"path":["api","{{domain}}","{{version}}","account","products"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"2c9e8bfc-364b-4d43-a5a5-54fb0577321c","name":"Throttling / Rate limiting","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/{{domain}}/{{version}}/account/products"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 25 Jan 2022 13:07:46 GMT"},{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"close"},{"key":"Retry-After","value":"65"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cache-Control","value":"private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:01 GMT"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=EjxRxtw44xtUufbcsYHOBJRm5p5LFNl%2FPVHaITUiZbj2c%2FQrFMHA5sXi1t1rUwgF0py5tt9%2FO5VydkHt1Zc0QWZMM2bzboSD6hd7DT9sbS8dt09g4coyeUxiJx2yVhfIZtE%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"6d31b9f8beca85ba-BOM"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"message\": \"Too Many Attempts.\",\n    \"code\": 429\n}"}],"_postman_id":"151cd478-bd78-4e23-9f08-e5d92ed77bb0"}],"id":"9a718e5a-bd47-459f-b140-332b8baac406","_postman_id":"9a718e5a-bd47-459f-b140-332b8baac406","description":""}],"event":[{"listen":"prerequest","script":{"id":"e2cbc063-8c95-4cd6-b870-4207f636c043","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"1fe6dfa0-9693-4968-a49f-7783438e6dfa","type":"text/javascript","exec":[""]}}]}