{"info":{"_postman_id":"ca7857b4-4d33-4472-939a-22d7c70b8b3c","name":"API Reference","description":"<html><head></head><body><h1 id=\"alteos\">Alteos</h1>\n<p><strong>Alteos</strong> is a B2B &amp; B2C platform for creating and managing insurance products and policies.</p>\n<h2 id=\"quick-start\">Quick Start</h2>\n<p>Follow the steps below for the quickest way to integrate with Alteos:</p>\n<h3 id=\"0-api-credentials\">0. API credentials</h3>\n<p>Before you start using Alteos API you have to request application key (<strong>AlteosAppKey</strong>). Additionaly you will need access key ID (<strong>AlteosAccessKeyId</strong>) and access key secret (<strong>AlteosAccessKeyId</strong>) for Server-to-Server integration or access key ID (<strong>AlteosAccessKeyId</strong>) together with email/password ( (<strong>AccountEmail/AccountPassword</strong>) for Browser-to-Server integration</p>\n<h3 id=\"1-authenticate-to-our-platform\">1. Authenticate to our platform</h3>\n<p>For Server-to-Server authentication go <a href=\"#dc362cba-10b2-4a0a-bae4-737b4b9fed0c\">here</a>, for Browser-to-Server authentication go <a href=\"#dfee47d3-def6-47b8-b279-83f4697187f0\">here</a></p>\n<p>Every request to Alteos' API should have <strong>X-App-Key</strong> header set.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>X-App-Key: &lt;AlteosAppKey&gt;\n\n</code></pre><p>Once authenticated, pass the received data in the authorization header</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: &lt;AlteosAccessTokenType&gt; &lt;AlteosAccessToken&gt;\n\n</code></pre><p>for each subsequent request.</p>\n<p>The <strong>AlteosAccessToken</strong> token has a limited life-time. To request new <strong>AlteosAccessToken</strong> token use <a href=\"#ff10fca1-8d14-495e-abae-616b3f6a6c9b\">Renew endpoint</a>.</p>\n<h3 id=\"2a-quote-policy\">2.a Quote policy</h3>\n<p>To get a price quote for a policy, provide relevant data to the <a href=\"#e765ae65-7fab-4939-8d71-8727e610d708\">Policy Quotation</a> endpoint: all the parameters/fields which <strong>contribute to the price calculation</strong>, plus the selected insurance package and add-ons (if present).</p>\n<p>On success, the quote details will be received in the response payload, broken down into net premium and insurance tax (before and after discounts). Additionally, the request data is also included in the response.</p>\n<p>The quote step is optional and it doesn’t generate any policy, it only provides the calculated premium for the selected package, parameters and add-ons.</p>\n<p>The subsequent steps are normally: <strong>policy creation, policy payment, policy document retrieval</strong>.</p>\n<h3 id=\"2b-create-policy\">2.b Create policy</h3>\n<p>To create a policy, provide product relevant data to the <a href=\"#95050dbe-f343-4cf4-a286-1832563d1205\">Policy Creation</a> endpoint: this includes the parameters necessary for quotation, plus all the rest of fields that define the product (including customer data).</p>\n<p>On success, the <strong>policy ID</strong> will be received in the response payload, together with request data and quote details.</p>\n<p>After this step, the policy is created but it is <strong>not yet in an active state</strong>.</p>\n<p>In order to \"activate\" the contract, it is necessary to <strong>trigger the payment</strong> for the policy.</p>\n<h3 id=\"2c-pay-policy\">2.c Pay policy</h3>\n<p>To perform the SEPA payment of the insurance policy previously created, it is necessary to provide information about the <strong>IBAN</strong> of the bank account to be charged, as well as the <strong>name of the account holder</strong>. SEPA is currently the only processing type supported in the <a href=\"#0831afbc-756f-40ca-8539-edc10d6e0a4c\">Policy Payment</a> endpoint.</p>\n<p>On success, the <strong>policy ID</strong> will be returned in the response payload.</p>\n<p>At this point, the contract status is fully activated (issued). After this step, the <strong>policy documents</strong> are generated (eg. \"Versicherungsschein\", AGB documents etc) and can be retrieved via a separate endpoint (see step 2.d).</p>\n<h3 id=\"2d-fetch-policy-documents\">2.d Fetch policy documents</h3>\n<p>The endpoint for retrieving all <a href=\"#98bc584f-d6fd-4577-a37a-8b49ffa9a8d4\">Policy Documents</a> for a specified policy ID can be called after the contract has been issued (i.e. after successful policy creation and payment).</p>\n<p>It returns for each file the <strong>name and URL under which the document is hosted and can be downloaded</strong>. Currently only PDF files are supported; they are not encoded nor archived.</p>\n<h3 id=\"3-thats-it\">3. That's it</h3>\n<p>At this point you should be integrated with Alteos. There are some additional endpoints that might be of importance to you. Please explore the documentation further.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Alteos","slug":"alteos"}],"owner":"5329358","collectionId":"ca7857b4-4d33-4472-939a-22d7c70b8b3c","publishedId":"RzZAjyNv","public":true,"customColor":{"top-bar":"2064BE","right-sidebar":"242728","highlight":"F6A906"},"publishDate":"2019-11-01T13:39:10.000Z"},"item":[{"name":"Authentication & Authorization","item":[{"name":"Alteos v1","item":[{"name":"Issue token: Server-to-Server","event":[{"listen":"prerequest","script":{"id":"017f927d-2ef8-45ab-b790-e96d2f9b32a3","exec":["const secretStrBase64 ='{{RequestSignature}}';","const dateStr = new Date().toUTCString()","const secretBytes = Buffer.from(secretStrBase64, 'base64')","const dateBytes = Buffer.from(dateStr, 'utf8')","const subjectBytes = Buffer.concat([secretBytes, dateBytes])","const subjectWordArray = CryptoJS.lib.WordArray.create(subjectBytes)","const signatureWordArray = CryptoJS.SHA256(subjectWordArray)","const signatureStrBase64 = signatureWordArray.toString(CryptoJS.enc.Base64)","","postman.setGlobalVariable(\"clientSecretHash\", signatureStrBase64)","postman.setGlobalVariable(\"httpDateHeader\", dateStr)"],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"test","script":{"id":"b23e3a97-5567-43df-bc29-3b618c3aabd3","exec":["var jsonData = JSON.parse(responseBody);","","postman.setEnvironmentVariable(\"accessToken\", jsonData.access_token);","postman.setEnvironmentVariable(\"refreshToken\", jsonData.refresh_token);","postman.setEnvironmentVariable(\"appKey\", \"{{AlteosAppKey}}\")"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"dc362cba-10b2-4a0a-bae4-737b4b9fed0c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"text/plain","type":"text"},{"key":"Date","value":"{{HttpDateHeader}}","type":"text"},{"key":"X-App-Key","value":"{{AlteosAppKey}}","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","type":"text","value":"client_credentials"},{"key":"client_id","type":"text","value":"{{AlteosAccessKeyId}}"},{"key":"client_secret","type":"text","value":"{{RequestSignature}}"}]},"url":"https://api.sandbox.alteos.com/v1/authentication/token","description":"<p>Partners are issued an <strong>AlteosAccessKeyId</strong> and <strong>Alteos AccessKeySecret</strong> as part of the integration process.</p>\n<p>In RFC 6749 OAuth 2.0 (Client Credentials Grant) flow, required issue access token request parameters are <code>grant_type</code> (set to <code>\"client_credentials\"</code>, a RFC 6749 OAuth 2.0 constant), <code>client_id</code> (set to <strong>AlteosAccessKeyId</strong>),<br /><code>client_secret</code> (set to signature of request parameters computed with usage of <strong>AlteosAccessKeySecret</strong>).</p>\n<p>The <code>client_secret</code> parameter value is the RFC 2104 SHA256 of selected elements from the request, so it will vary from request to request.</p>\n<p>Following is pseudocode that illustrates the construction of the issue access token request <code>client_secret</code> parameter value:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>RequestHeaders = &lt;request RFC 7231 headers as name-value (string-string) map&gt;\nRequestSignature = Base64(Sha256( BytesOf( AlteosAccessKeySecret ) + BytesOf( RequestHeaders[Date] ) ) );\nRequestBody[client_secret] = RequestSignature;\n\n</code></pre><p>Below you can see sample code in JS:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>const alteosAccessKeySecret = '8lsvyXpjDIeRVGca7PlAjb/GthcqLhjDwnGzZWY2yhXabm9vNqFoTuYcDB0nXmqqbN9MWL8WhShCrtgEZskr+w==';\nconst dateStr = new Date().toUTCString()\nconst secretBytes = Buffer.from(alteosAccessKeySecret, 'base64')\nconst dateBytes = Buffer.from(dateStr, 'utf8')\nconst subjectBytes = Buffer.concat([secretBytes, dateBytes])\nconst subjectWordArray = CryptoJS.lib.WordArray.create(subjectBytes)\nconst signatureWordArray = CryptoJS.SHA256(subjectWordArray)\nconst clientSecretHash = signatureWordArray.toString(CryptoJS.enc.Base64)\nconst RequestSignature = clientSecretHash\nconst HttpDateHeader = dateStr\n\n</code></pre>","urlObject":{"path":["v1","authentication","token"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"e24c3c90-b53c-42a2-b366-5ad27fd8898d","name":"Issue token: Server-to-Server","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"Date","value":"Mon, 23 Sep 2019 14:48:13 GMT","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"client_credentials","type":"text"},{"key":"client_id","value":"0e1b11ec-2360-408a-aebe-9f86c7053b94","type":"text"},{"key":"client_secret","value":"exampleD6k3Ik/geXlAVFdpibhuciGaxs+AaFr70GYZu/9xv3aDxW0Z9gE4Iy5L8+NljaFAZ2fzuUhpSxq3LSA==","type":"text"}]},"url":"https://api.sandbox.alteos.com/v1/authentication/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"exampleMsMuTMOcmeSxD5evQp9gbbl+kFJS58Govz10=\",\n    \"refresh_token\": \"examplexu8PMtohHuP2vphpio+rUvSFHiYqpooEbgBk=\",\n    \"token_type\": \"Alteos/v1\",\n    \"expires_in\": 86400\n}"}],"_postman_id":"dc362cba-10b2-4a0a-bae4-737b4b9fed0c"},{"name":"Refresh token","id":"ff10fca1-8d14-495e-abae-616b3f6a6c9b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"text/plain"},{"key":"Date","type":"text","value":"{{HttpDateHeader}}"},{"key":"X-App-Key","type":"text","value":"{{AlteosAppKey}}"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","type":"text","value":"refresh_token"},{"key":"refresh_token","type":"text","value":"{{RefreshToken}}"}]},"url":"https://api.sandbox.alteos.com/v1/authentication/token","description":"<p>In RFC 6749 OAuth 2.0 flow, required refresh access token request parameters are\n<code>grant_type</code> (set to <code>\"refresh_token\"</code>, a RFC 6749 OAuth 2.0 constant),\n<code>refresh_token</code> (set to <code>refresh_token</code> parameter value returned by successful issue access token request).</p>\n","urlObject":{"path":["v1","authentication","token"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"c186a693-9f04-41d1-a092-20414044b31d","name":"Refresh token","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"},{"key":"Date","type":"text","value":"Mon, 23 Sep 2019 14:48:13 GMT"},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"refresh_token","type":"text"},{"key":"refresh_token","value":"examplexu8PMtohHuP2vphpio+rUvSFHiYqpooEbgBk=","type":"text"}]},"url":"https://api.sandbox.alteos.com/v1/authentication/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"access_token\": \"exampleMsMuTMOcmeSxD5evQp9gbbl+kFJS58Govz10=\",\n  \"refresh_token\": \"examplexu8PMtohHuP2vphpio+rUvSFHiYqpooEbgBk=\",\n  \"token_type\": \"Alteos/v1\",\n  \"expires_in\": 86400\n}"}],"_postman_id":"ff10fca1-8d14-495e-abae-616b3f6a6c9b"},{"name":"Revoke token","id":"7cd5a9d5-598f-4163-b966-21efc7f22d63","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"},{"key":"Date","type":"text","value":"{{HttpDateHeader}}"},{"key":"X-App-Key","type":"text","value":"{{AlteosAppKey}}"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"access_token","type":"text","value":"{{AccessToken}}"}]},"url":"https://api.sandbox.alteos.com/v1/authentication/revoke","description":"<p>We encourage clients to revoke every issued access token when it is no longer needed (i.e., authentication session logically ends, upon signout) for security reasons.</p>\n<p>In RFC 7009 OAuth 2.0 token revocation flow, required revoke access token request parameter is <code>access_token</code> (set to <code>access_token</code> parameter value returned by successful issue or refresh access token request).</p>\n","urlObject":{"path":["v1","authentication","revoke"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"12c65e63-a5f0-476b-8a27-64eb9272b212","name":"Revoke token","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"},{"key":"Date","type":"text","value":"Mon, 23 Sep 2019 14:48:13 GMT"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"access_token","value":"exampleMsMuTMOcmeSxD5evQp9gbbl+kFJS58Govz10=","type":"text"}]},"url":"https://api.sandbox.alteos.com/v1/authentication/revoke"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{}"}],"_postman_id":"7cd5a9d5-598f-4163-b966-21efc7f22d63"}],"id":"83e31bdd-9df3-4f67-a1b4-d21586b8a25f","description":"<p>The Alteos HTTP API uses a custom HTTP scheme based on a RFC 6749 OAuth 2.0 for authentication.</p>\n<p>To be able to authenticate requests, first of all, partner must issue an access token in OAuth 2.0-way by requesting Alteos HTTP API authentication endpoint with valid credentials.</p>\n<p>Upon success, Alteos HTTP API will respond with access token, refresh token, token type in OAuth 2.0-way.<br />These tokens then can be used for authenticating requests and prolonging the access to the Alteos HTTP API.</p>\n<p>Moreover, those tokens should be used until they are expired (each request can be authenticated using the obtained token, there is no need to get a new one for every request).</p>\n<p>Further, Alteos HTTP API uses the standard HTTP Authorization header to pass authentication information.<br />Under the Alteos HTTP API server-to-server authentication scheme, the Authorization header has the following form:  </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization:  \n\n</code></pre><p><code>AlteosAccessTokenType</code>, <code>AlteosAccessToken</code> and <code>AlteosRefreshToken</code> are the values of <code>token_type</code>, <code>access_token</code> and <code>refresh_token</code> fields of issue and refresh access token requests' responses respectively (defined by RFC 6749 OAuth 2.0).</p>\n<p>Note that <code>AlteosRefreshToken</code> may not be the part of the responses' payloads and this will indicate that issued token (and corresponding authentication session) is not intended to be prolonged without subsequent authentication.</p>\n<p>For request authentication, the <code>AlteosAccessToken</code> element identifies the <strong>AlteosAccessKeyId</strong> and, indirectly, the partner making the request.</p>\n<h3 id=\"requestheadersdate\"><code>RequestHeaders[Date]</code></h3>\n<p>A valid HTTP Date header is mandatory for all authentication and authenticated requests.</p>\n<p>Furthermore, the client timestamp included with an authenticated request must be within 15 minutes of the Alteos HTTP API system time when the request is received. If not, the request will fail with the corresponding error message.</p>\n<h3 id=\"expires_in\"><code>expires_in</code></h3>\n<p>Both issue and refresh token requests return a <code>expires_in</code> parameter, which is an integer value, indicating lifetime in seconds of the access token returned by that same request, according to RFC 6749 OAuth 2.0.</p>\n","event":[{"listen":"prerequest","script":{"id":"f9c9b7e3-f5eb-4ab5-a7bb-46ec53b6e1ba","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"bbd33c62-6e01-4570-9740-42c460739098","type":"text/javascript","exec":[""]}}],"_postman_id":"83e31bdd-9df3-4f67-a1b4-d21586b8a25f"}],"id":"76fd832f-9c9f-4a3f-a88b-6093d967679e","event":[{"listen":"prerequest","script":{"id":"cd02d810-b9ed-4815-a545-8bdd26e717c0","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b5f85115-1809-4e00-ae4c-0afbf345c9e9","type":"text/javascript","exec":[""]}}],"_postman_id":"76fd832f-9c9f-4a3f-a88b-6093d967679e","description":""},{"name":"Policy","item":[{"name":"Policy Quotation","item":[{"name":"Policy Quotation Bike Products","item":[{"name":"Prototypes","item":[{"name":"eBike NL Product B2C | 2024 Project Alpha","id":"1c1ccd9a-b7ea-4837-ac4c-274bba3557e1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-App-Key","value":"{{appKeyAlteos}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"projectAlpha_productName\",\n    \"values\": {\n        \"price\": \"6250.01-6500.00\",\n        \"purchasedAt\": \"2024-05-21\",\n        \"brand\": \"Brand of the E-Bike\",\n        \"vehicleType\": \"E-Bike\",\n        \"type\": \"Andere fietsen\",\n        \"policyStartDate\": \"2024-08-10\",\n        \"paymentSchedule\": \"monthly\",\n        \"addressZip\": \"1234 AB\",\n        \"preinstalledGps\": \"Bosch ConnectModule\"\n    },\n    \"package\": \"diefstal\",\n    \"addons\": []\n}"},"url":"https://api.sandbox.alteos.com/v2/policies/quote","description":"<p>Use this API to retrieve the quote for the eBike Product.</p>\n<p>Parameters (all mandatory):</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Mandatory / Optional  <br />(data type)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>productName</td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>projectAlpha_productName</td>\n</tr>\n<tr>\n<td>policyStartDate</td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>Start date of the policy.  <br />  <br />Format: YYYY-MM-DD  <br />Example: \"2024-12-01\"  <br />  <br />- Date of handover of the bike.  <br />- Coverage starts on this day.  <br />- Minimum Date: One day before today.  <br />- Maximum Date: One month in the future.</td>\n</tr>\n<tr>\n<td>price</td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>Price of the insured E-Bike (max: 15.000 EUR).  <br />Can be one of:  <br />  <br />- \"0.00-250.00\"  <br />- \"250.01-500.00\"  <br />- \"500.01-750.00\"  <br />... in 250 Eur increments until:  <br />- \"14750.01-15000.00\"</td>\n</tr>\n<tr>\n<td>\"addressZip\"</td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>Additional value which is mandatory for quotation. It is the postal code of the customer's address.  <br />  <br />Example: \"1234 AB\"  <br />Note:  <br />Creation uses customer.addressPlz.</td>\n</tr>\n<tr>\n<td>purchasedAt</td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>Purchase date of the insured E-Bike.  <br />Format: YYYY-MM-DD  <br />Example: \"2024-12-01\"  <br />  <br />Note: Must be within the last 24 months to qualify for insurance.</td>\n</tr>\n<tr>\n<td>vehicleType</td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>One of: \"Bike\" or \"E-Bike\"  <br />  <br />Note: GPS addon is not available if Bike has been selected.</td>\n</tr>\n<tr>\n<td>type</td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>One of:  <br />\"Cargo bike\",  <br />\"Mountain bike\"  <br />\"Gravel bike / Road bike\",  <br />\"Others\"</td>\n</tr>\n<tr>\n<td>package</td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>Package that controlls the insured risks.  <br />  <br />One of:  <br />\"theft\",  <br />\"casco\".</td>\n</tr>\n<tr>\n<td>preinstalledGps</td>\n<td><strong>Optional</strong></td>\n<td>Select field which controls the discount for supported preinstalled GPS trackers. The customer is responsible to pay for the hardware, the service and the installation of the device.  <br />  <br />One of:  <br />  <br />\"Bosch ConnectModule\",  <br />\"IT'S MY BIKE\"</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies","quote"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"15ac1190-1fe6-4d9f-80a7-2c1b71a75b16","name":"Successful Quotation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"projectAlpha_productName\",\n    \"values\": {\n        \"price\": \"6250.01-6500.00\",\n        \"purchasedAt\": \"2024-05-21\",\n        \"brand\": \"Brand of the E-Bike\",\n        \"vehicleType\": \"Bike\",\n        \"type\": \"Others\",\n        \"policyStartDate\": \"2024-08-10\",\n        \"paymentSchedule\": \"monthly\",\n        \"addressZip\": \"1234 AB\",\n        \"preinstalledGps\": \"Bosch ConnectModule\"\n    },\n    \"package\": \"theft\",\n    \"addons\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 19.9,\n    \"premium\": 16.45,\n    \"taxes\": 3.45,\n    \"premiumExclDiscounts\": 16.45,\n    \"taxesExclDiscounts\": 3.45,\n    \"grossExclDiscounts\": 19.9,\n    \"addons\": [],\n    \"package\": {\n        \"name\": \"theft\",\n        \"payments\": [\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            },\n            {\n                \"premium\": 16.45,\n                \"tax\": 3.45\n            }\n        ],\n        \"gross\": 19.9\n    },\n    \"metadata\": {\n        \"commissionValue\": 4.11,\n        \"commissionCurrency\": \"EUR\",\n        \"preinstalledGPSReductionValue\": 3.51,\n        \"preinstalledGPSReductionCurrency\": \"EUR\",\n        \"deductibleTheftPercentage\": 0,\n        \"deductibleDamagePercentage\": 0,\n        \"deductibleDamageMinimumValue\": 0,\n        \"deductibleDamageMinimumCurrency\": \"EUR\"\n    },\n    \"requestData\": {\n        \"productName\": \"ebike-netherlands-mantel\",\n        \"values\": {\n            \"price\": \"6250.01-6500.00\",\n            \"purchasedAt\": \"2024-05-21\",\n            \"brand\": \"Brand of the E-Bike\",\n            \"vehicleType\": \"E-Bike\",\n            \"type\": \"Others\",\n            \"policyStartDate\": \"2024-09-10\",\n            \"paymentSchedule\": \"monthly\",\n            \"addressZip\": \"1234 AB\",\n            \"preinstalledGps\": \"Bosch ConnectModule\"\n        },\n        \"package\": \"theft\",\n        \"addons\": []\n    }\n}"},{"id":"e50a9eea-8e52-438d-90a8-fb200d8d50ea","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebikeNetherlands\",\n    \"values\": {\n        \"policyStartDate\": \"2024-05-21\",\n        \"paymentSchedule\": \"annual\",\n        \"price\": \"14750.01-15000.00\",\n        \"purchasedAt\": \"2024-05-21\",\n        \"vehicleType\": \"E-Bike\",\n        \"insuredObjectPlz\": \"1234AB\"\n    },\n    \"package\": \"garantiePlus\",\n    \"addons\": [\n        \n        \n\n    ]\n}   ","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"1c1ccd9a-b7ea-4837-ac4c-274bba3557e1"},{"name":"E-Bike Leasing Project Beta B2B2C","id":"1576750d-e699-4d72-bcdf-ee9cd96005c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-app-key","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike-leasing-companybike\",\n\n    \"values\": {\n        \"price\": 11567.54,\n        \"vehicleType\": \"E-Bike\",  // \"E-Bike\" / \"Fahrrad\"\n        \"policyStartDate\": \"2025-02-04\"\n        \n    },\n    \"package\": \"leasingschutz\",\n    \"addons\": [ \"Inspektion\"  ] // [], [\"Inspektion\"], [\"Inspektion-verschleiss\"], [\"Inspektion\",\"ruecknahmegarantie\"]\n}"},"url":"https://api.sandbox.alteos.com/v2/policies","description":"<p>Use this API to create a policy for the eBike Product.</p>\n<p>Parameters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Mandatory / Optional  <br />(data type)</th>\n<th>Description and values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>productName</strong></td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>Name of the product : \"projectBeta_productName\"</td>\n</tr>\n<tr>\n<td><strong>values:</strong></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>policyStartDate</td>\n<td><strong>Mandatory</strong> (date)</td>\n<td>Start date of the policy.  <br />  <br />Format: YYYY-MM-DD  <br />Example: \"2025-02-04\"  <br />  <br />- Date of handover of the bike or up to four weeks later.  <br />- Coverage starts on this day.  <br />- Minimum Date: One day before today.  <br />- Maximum Date: One month in the future.</td>\n</tr>\n<tr>\n<td>price</td>\n<td><strong>Mandatory</strong> (number)</td>\n<td>Price of the insured E-Bike (max: 15.000 EUR).  <br />  <br />Example: 11567.54</td>\n</tr>\n<tr>\n<td>vehicleType</td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>Specifies the type of the vehicle.  <br />  <br />One of:  <br />\"Fahrrad\",  <br />\"E-Bike\"</td>\n</tr>\n<tr>\n<td><strong>package</strong></td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>Package name  <br />\"leasingschutz\"</td>\n</tr>\n<tr>\n<td><strong>addons</strong></td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>List of selected add-ons:  <br />  <br />\"Ruecknahmegarantie\",  <br />\"Inspektion\" / \"Inspektion-Verschleiss\",  <br />[] (no addon selected)  <br />  <br />(\"Inspektion\" and \"Inspektion-Verschleiss\" are mutually exclusive. Ruecknahmegarantie can be combined with one of the Inspektion add-ons.)</td>\n</tr>\n</tbody>\n</table>\n</div><p>The policy creation response will also return the <code>requestData</code> object which contains all the data that was given by the user during the policy creation and the <code>quote</code> object which contains all the quotation calculations.</p>\n","urlObject":{"path":["v2","policies"],"host":["https://api.sandbox.alteos.com"],"query":[{"disabled":true,"description":{"content":"<p>Coverage period of the insurance.</p>\n","type":"text/plain"},"key":"duration","value":""},{"disabled":true,"description":{"content":"<p>Date of purchase of the eBike. Must not be older than 6 months before the insurance starting date.</p>\n","type":"text/plain"},"key":"purchasedAt","value":""}],"variable":[]}},"response":[{"id":"ca8bbbe2-ebf3-4e60-846e-31bcffbc0020","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-App-Key","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike-leasing-companybike\",\n\n    \"values\": {\n        \"price\": 11567.54,\n        \"vehicleType\": \"E-Bike\",  // \"E-Bike\" / \"Fahrrad\"\n        \"policyStartDate\": \"2025-02-04\"\n        \n    },\n    \"package\": \"leasingschutz\",\n    \"addons\": [ \"Inspektion\"  ] // [], [\"Inspektion\"], [\"Inspektion-verschleiss\"], [\"Inspektion\",\"ruecknahmegarantie\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 41.49,\n    \"premium\": 34.87,\n    \"taxes\": 6.62,\n    \"premiumExclDiscounts\": 34.87,\n    \"taxesExclDiscounts\": 6.62,\n    \"grossExclDiscounts\": 41.49,\n    \"addons\": [\n        {\n            \"name\": \"Inspektion\",\n            \"payments\": []\n        }\n    ],\n    \"package\": {\n        \"name\": \"leasingschutz\",\n        \"payments\": [\n            {\n                \"premium\": 34.87,\n                \"tax\": 6.62\n            },\n            {\n                \"premium\": 34.87,\n                \"tax\": 6.62\n            },\n            {\n                \"premium\": 34.87,\n                \"tax\": 6.62\n            },\n            {\n                \"premium\": 34.87,\n                \"tax\": 6.62\n            },\n            {\n                \"premium\": 34.87,\n                \"tax\": 6.62\n            },\n            {\n                \"premium\": 34.87,\n                \"tax\": 6.62\n            },\n            {\n                \"premium\": 34.87,\n                \"tax\": 6.62\n            },\n            {\n                \"premium\": 34.87,\n                \"tax\": 6.62\n            },\n            {\n                \"premium\": 34.87,\n                \"tax\": 6.62\n            },\n            {\n                \"premium\": 34.87,\n                \"tax\": 6.62\n            },\n            {\n                \"premium\": 34.87,\n                \"tax\": 6.62\n            },\n            {\n                \"premium\": 34.87,\n                \"tax\": 6.62\n            },\n            {\n                \"premium\": 34.87,\n                \"tax\": 6.62\n            },\n            {\n                \"premium\": 34.87,\n                \"tax\": 6.62\n            },\n            {\n                \"premium\": 34.87,\n                \"tax\": 6.62\n            },\n            {\n                \"premium\": 34.87,\n                \"tax\": 6.62\n            },\n            {\n                \"premium\": 34.87,\n                \"tax\": 6.62\n            },\n            {\n                \"premium\": 34.87,\n                \"tax\": 6.62\n            },\n            {\n                \"premium\": 34.87,\n                \"tax\": 6.62\n            },\n            {\n                \"premium\": 34.87,\n                \"tax\": 6.62\n            },\n            {\n                \"premium\": 34.87,\n                \"tax\": 6.62\n            },\n            {\n                \"premium\": 34.87,\n                \"tax\": 6.62\n            },\n            {\n                \"premium\": 34.87,\n                \"tax\": 6.62\n            },\n            {\n                \"premium\": 34.87,\n                \"tax\": 6.62\n            },\n            {\n                \"premium\": 34.87,\n                \"tax\": 6.62\n            },\n            {\n                \"premium\": 34.87,\n                \"tax\": 6.62\n            },\n            {\n                \"premium\": 34.87,\n                \"tax\": 6.62\n            },\n            {\n                \"premium\": 34.87,\n                \"tax\": 6.62\n            },\n            {\n                \"premium\": 34.87,\n                \"tax\": 6.62\n            },\n            {\n                \"premium\": 34.87,\n                \"tax\": 6.62\n            },\n            {\n                \"premium\": 34.87,\n                \"tax\": 6.62\n            },\n            {\n                \"premium\": 34.87,\n                \"tax\": 6.62\n            },\n            {\n                \"premium\": 34.87,\n                \"tax\": 6.62\n            },\n            {\n                \"premium\": 34.87,\n                \"tax\": 6.62\n            },\n            {\n                \"premium\": 34.87,\n                \"tax\": 6.62\n            },\n            {\n                \"premium\": 34.87,\n                \"tax\": 6.62\n            }\n        ],\n        \"gross\": 41.49\n    },\n    \"metadata\": {\n        \"commission\": 6.93\n    },\n    \"requestData\": {\n        \"productName\": \"ebike-leasing-companybike\",\n        \"values\": {\n            \"price\": 11567.54,\n            \"vehicleType\": \"E-Bike\",\n            \"policyStartDate\": \"2025-02-04\"\n        },\n        \"package\": \"leasingschutz\",\n        \"addons\": [\n            \"Inspektion\"\n        ]\n    }\n}"}],"_postman_id":"1576750d-e699-4d72-bcdf-ee9cd96005c0"},{"name":"Leasing Product Omega","id":"a902154c-de44-43c7-b5ca-ab101860644c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKeyAlteos}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"ebikeAustria-leasing\",\n\t\"values\": {\n        \"policyStartDate\":\"2024-09-11\",\n\t\t\"paymentSchedule\": \"monthly\",\n        \"price\": 2000\n\t},\n   \"package\":\"leasingSchutz\",\n   \"addons\":[]\n}  "},"url":"https://api.sandbox.alteos.com/v2/policies/quote","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Mandatory / Optional</strong>  <br />(<strong>data type</strong>)</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>productName</strong></td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Identifier for the product configuration, <code>\"ebikeAustria-leasing\"</code>.</td>\n</tr>\n<tr>\n<td><strong>Values:</strong></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>policyStartDate</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>Full explanation in the Creation table.</td>\n</tr>\n<tr>\n<td>paymentSchedule</td>\n<td>Optional  <br />(string)</td>\n<td>Frequency of premium payments. value: <code>\"monthly\"</code>.</td>\n</tr>\n<tr>\n<td>price</td>\n<td><strong>Mandatory</strong>  <br />(number)</td>\n<td>Purchase price of the (E-)bike to be insured.</td>\n</tr>\n<tr>\n<td><strong>package</strong></td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Name of the insurance package : <code>\"leasingSchutz\"</code>.</td>\n</tr>\n<tr>\n<td><strong>addons</strong></td>\n<td>Optional  <br />(string)</td>\n<td>List of optional insurance addons :  <br />\"wartungUndVerschleiß\"</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies","quote"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"e0254b80-f125-406c-81fc-11a722025ec0","name":"Successful Quotation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"ebikeAustria-leasing\",\n\t\"values\": {\n        \"policyStartDate\":\"2024-09-11\",\n\t\t\"paymentSchedule\": \"monthly\",\n        \"price\": 2000\n\t},\n   \"package\":\"leasingSchutz\",\n   \"addons\":[]\n}  ","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 8.08,\n    \"premium\": 7.28,\n    \"taxes\": 0.8,\n    \"premiumExclDiscounts\": 7.28,\n    \"taxesExclDiscounts\": 0.8,\n    \"grossExclDiscounts\": 8.08,\n    \"addons\": [],\n    \"package\": {\n        \"name\": \"leasingSchutz\",\n        \"payments\": [],\n        \"premium\": 7.28,\n        \"tax\": 0.8,\n        \"gross\": 8.08\n    },\n    \"metadata\": {},\n    \"requestData\": {\n        \"productName\": \"ebikeAustria-leasing\",\n        \"values\": {\n            \"policyStartDate\": \"2024-09-11\",\n            \"paymentSchedule\": \"monthly\",\n            \"price\": 2000\n        },\n        \"package\": \"leasingSchutz\",\n        \"addons\": []\n    }\n}"},{"id":"2add6f12-ac3f-4847-bf39-ad202af6c089","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n  \"productName\": \"ebike-Leasing-2024-no-sepa\",\n  \"values\": {\n    \"policyStartDate\": \"2024-03-01\",\n    \"price\": 1000\n  },\n  \"package\": \"LeasingSchutz\",\n  \"addons\": [\n        \"gpsTracking\",\n        \"mobilitaetsschutz\",\n        \"gewerblicheNutzung\",\n        \"inspektion\",\n        \"wartungUndVerschleiss\",\n        \"einzelteileVerschleiss\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"a902154c-de44-43c7-b5ca-ab101860644c"}],"id":"1740f103-5ec1-4294-89ab-2f5926207ab9","description":"<p>The Policy Quotation API is used to retrieve the conditional premium of an insurance product. As soon as the quote is accepted, a policy can be created using the Policy Creation API.</p>\n","event":[{"listen":"prerequest","script":{"id":"d0fe9517-6330-4d4f-b454-9875cae7e7c5","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"74166b7c-2c98-4907-b15d-1ce489724158","type":"text/javascript","exec":[""]}}],"_postman_id":"1740f103-5ec1-4294-89ab-2f5926207ab9"},{"name":"Leasing Product B2B2C | 2025","id":"96c347b7-cb32-491c-b254-12e255f11705","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKeyAlteos}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike-Leasing-2025\",\n    \"values\": {\n    \"policyStartDate\": \"2025-10-28\",\n    \"paymentSchedule\": \"monthly\",\n    \"price\": 7180.90\n  },\n  \"package\": \"leasingSchutz\",\n  \"addons\": []\n}   "},"url":"https://api.sandbox.alteos.com/v2/policies/quote","description":"<p>Use this API to retrieve the quote for the eBike Leasing Product.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Mandatory/Optional</strong>  <br />(Data type)</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>productName</td>\n<td><strong>Mandatory</strong></td>\n<td>Name of the chosen product  <br />  <br /><strong>Required value:  <br />\"ebike-Leasing-2025\"</strong></td>\n</tr>\n<tr>\n<td>policyStartDate</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>States the date at which the police starts  <br />  <br />Format: YYYY-MM-DD  <br />  <br />Minimum starting date:  <br />90 days before current date Maximum starting date:  <br />1 month from current date  <br />  <br /><strong>e.g. \"2025-10-28\"</strong></td>\n</tr>\n<tr>\n<td>paymentSchedule</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Specifies the intervalls at which the insurance premium is paid  <br />  <br /><strong>Possible values:  <br />\"Monthly\"</strong></td>\n</tr>\n<tr>\n<td>price</td>\n<td><strong>Mandatory</strong>  <br />(number)</td>\n<td>Price of the insured (E-)Bike (in Eur)  <br />  <br />max: 15.000 Eur  <br />  <br /><strong>e.g. 7180.90</strong></td>\n</tr>\n<tr>\n<td>package</td>\n<td><strong>Mandatory</strong></td>\n<td>Type of coverage selected  <br />  <br /><strong>Possible values:</strong>  <br /><strong>\"LeasingSchutz\"</strong></td>\n</tr>\n<tr>\n<td>addons</td>\n<td><strong>Mandatory</strong></td>\n<td>List of selected policy-addons  <br />  <br />\"<strong>mobilitaetsschutz\"</strong> must be included  <br />  <br /><strong>Possible addons:  <br />\"gpsTracking\",  <br />\"mobilitaetsschutz\",  <br />\"gewerblicheNutzung\",  <br />\"inspektion\",  <br />\"wartungUndVerschleiss\",  <br />\"ruecknahmegarantie\",  <br />\"einzelteileVerschleiss\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies","quote"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"8bba45d7-c9e8-492b-91fc-9d63212fdc49","name":"Successful Quotation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike-Leasing-2025\",\n    \"values\": {\n    \"policyStartDate\": \"2025-10-28\",\n    \"paymentSchedule\": \"Monthly\",\n    \"price\": 7180.90\n  },\n  \"package\": \"LeasingSchutz\",\n  \"addons\": [\"mobilitaetsschutz\"]\n}   ","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 23.45,\n    \"premium\": 19.71,\n    \"taxes\": 3.74,\n    \"premiumExclDiscounts\": 19.71,\n    \"taxesExclDiscounts\": 3.74,\n    \"grossExclDiscounts\": 23.45,\n    \"addons\": [\n        {\n            \"name\": \"mobilitaetsschutz\",\n            \"payments\": [],\n            \"premium\": 0,\n            \"tax\": 0,\n            \"gross\": 0\n        }\n    ],\n    \"package\": {\n        \"name\": \"LeasingSchutz\",\n        \"payments\": [],\n        \"premium\": 19.71,\n        \"tax\": 3.74,\n        \"gross\": 23.45\n    },\n    \"metadata\": {},\n    \"requestData\": {\n        \"productName\": \"ebike-Leasing-2025\",\n        \"values\": {\n            \"policyStartDate\": \"2025-10-28\",\n            \"paymentSchedule\": \"Monthly\",\n            \"price\": 7180.9\n        },\n        \"package\": \"LeasingSchutz\",\n        \"addons\": [\n            \"mobilitaetsschutz\"\n        ]\n    }\n}"},{"id":"4e2114f1-31e9-47d2-ac3e-1ba20b3f0284","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike2024\",\n    \"values\": {\n        \"policyStartDate\": \"2024-02-12\",\n        \"paymentSchedule\": \"oneTime\",\n        \"price\": \"1000.01-1500.00\",\n        \"purchasedAt\": \"2024-02-12\",\n        \"vehicleType\": \"E-Bike\"\n\n    },\n    \"package\": \"diebstahlschutz\",\n    \"addons\": [\n        \"gpsTracking\"\n    ]\n}   ","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"96c347b7-cb32-491c-b254-12e255f11705"},{"name":"Leasing Product B2B2C 2025 NO SEPA","id":"e5fd1c80-a49f-4c5b-80c0-d1b736eccb16","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKeyAlteos}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"productName\": \"ebike-Leasing-2025-nosepa\",\n  \"values\": {\n    \"policyStartDate\": \"2025-10-17\",\n    \"price\": 7180.90\n  },\n  \"package\": \"LeasingSchutz\",\n  \"addons\": [\n        \"mobilitaetsschutz\"\n    ]\n}"},"url":"https://api.sandbox.alteos.com/v2/policies/quote","description":"<p>Use this API to retrieve the quote for the Leasing E-Bike/Fahrrad NO-SEPA Product</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Mandatory/Optional</strong>  <br />(Data type)</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>productName</td>\n<td><strong>Mandatory</strong></td>\n<td>Name of the chosen product  <br />  <br /><strong>Required value:  <br />\"ebike-Leasing-2025-nosepa\"</strong></td>\n</tr>\n<tr>\n<td>policyStartDate</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>States the date at which the police starts  <br />  <br />Format: YYYY-MM-DD  <br />  <br />Minimum starting date:  <br />90 days before current date Maximum starting date:  <br />1 month from current date  <br />  <br /><strong>e.g. \"2025-10-28\"</strong></td>\n</tr>\n<tr>\n<td>price</td>\n<td><strong>Mandatory</strong>  <br />(number)</td>\n<td>Price of the insured (E-)Bike (in Eur)  <br />  <br />max: 15.000 Eur  <br />  <br /><strong>e.g. 7180.90</strong></td>\n</tr>\n<tr>\n<td>package</td>\n<td><strong>Mandatory</strong></td>\n<td>Type of coverage selected  <br />  <br /><strong>Possible values:</strong>  <br /><strong>\"LeasingSchutz\"</strong></td>\n</tr>\n<tr>\n<td>addons</td>\n<td><strong>Mandatory</strong></td>\n<td>List of selected policy-addons  <br />  <br />\"<strong>mobilitaetsschutz\"</strong> must be included  <br />  <br /><strong>Possible addons:  <br />\"gpsTracking\",  <br />\"mobilitaetsschutz\",  <br />\"gewerblicheNutzung\",  <br />\"inspektion\",  <br />\"wartungUndVerschleiss\",  <br />\"ruecknahmegarantie\",  <br />\"einzelteileVerschleiss\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies","quote"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"90dedcf8-13f9-4ba4-8d20-7016c5209fb0","name":"Successful Quotation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"productName\": \"ebike-Leasing-2025-nosepa\",\n  \"values\": {\n    \"policyStartDate\": \"2025-10-17\",\n    \"price\": 7180.90\n  },\n  \"package\": \"LeasingSchutz\",\n  \"addons\": [\n        \"mobilitaetsschutz\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 23.45,\n    \"premium\": 19.71,\n    \"taxes\": 3.74,\n    \"premiumExclDiscounts\": 19.71,\n    \"taxesExclDiscounts\": 3.74,\n    \"grossExclDiscounts\": 23.45,\n    \"addons\": [\n        {\n            \"name\": \"mobilitaetsschutz\",\n            \"payments\": [],\n            \"premium\": 0,\n            \"tax\": 0,\n            \"gross\": 0\n        }\n    ],\n    \"package\": {\n        \"name\": \"LeasingSchutz\",\n        \"payments\": [],\n        \"premium\": 19.71,\n        \"tax\": 3.74,\n        \"gross\": 23.45\n    },\n    \"metadata\": {},\n    \"requestData\": {\n        \"productName\": \"ebike-Leasing-2025-nosepa\",\n        \"values\": {\n            \"policyStartDate\": \"2025-10-17\",\n            \"price\": 7180.9\n        },\n        \"package\": \"LeasingSchutz\",\n        \"addons\": [\n            \"mobilitaetsschutz\"\n        ]\n    }\n}"},{"id":"09151a4c-173f-4a86-a91b-89bf7b5090ef","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n  \"productName\": \"ebike-Leasing-2024-no-sepa\",\n  \"values\": {\n    \"policyStartDate\": \"2024-03-01\",\n    \"price\": 1000\n  },\n  \"package\": \"LeasingSchutz\",\n  \"addons\": [\n        \"gpsTracking\",\n        \"mobilitaetsschutz\",\n        \"gewerblicheNutzung\",\n        \"inspektion\",\n        \"wartungUndVerschleiss\",\n        \"einzelteileVerschleiss\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"e5fd1c80-a49f-4c5b-80c0-d1b736eccb16"},{"name":"Leasing Product B2B2C Austria | 2025","id":"0fe4fabd-ddf0-46dd-afff-abd0ef219f22","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKeyAlteos}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebikeAustria-leasing\",\n    \"values\": {\n    \"policyStartDate\": \"2025-09-28\",\n    \"paymentSchedule\": \"monthly\",\n    \"price\": 7180.90\n  },\n  \"package\": \"leasingSchutz\",\n  \"addons\": []\n}   "},"url":"https://api.sandbox.alteos.com/v2/policies/quote","description":"<p>Use this API to retrieve the quote for the eBike Leasing AT Product.</p>\n<p>Values:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Mandatory/Optional</strong>  <br />(Data type)</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>productName</td>\n<td><strong>Mandatory</strong></td>\n<td>Name of the chosen product  <br />  <br /><strong>Required value:  <br />\"ebikeAustria-leasing\"</strong></td>\n</tr>\n<tr>\n<td>policyStartDate</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>States the date at which the police starts  <br />  <br />Format: YYYY-MM-DD  <br />  <br />Maximum starting date:  <br />1 month from current date  <br />  <br /><strong>e.g. \"2025-10-28\"</strong></td>\n</tr>\n<tr>\n<td>paymentSchedule</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Specifies the intervalls at which the insurance premium is paid  <br />  <br /><strong>Possible values:  <br />\"monthly\"</strong></td>\n</tr>\n<tr>\n<td>price</td>\n<td><strong>Mandatory</strong>  <br />(number)</td>\n<td>Price of the insured (E-)Bike (in Eur)  <br />  <br />max: 15.000 Eur  <br />  <br /><strong>e.g. 7180.90</strong></td>\n</tr>\n<tr>\n<td>package</td>\n<td><strong>Mandatory</strong></td>\n<td>Type of coverage selected  <br />  <br /><strong>Possible values:</strong>  <br /><strong>\"leasingSchutz\"</strong></td>\n</tr>\n<tr>\n<td>addons</td>\n<td><strong>Mandatory</strong></td>\n<td>List of selected policy-addons  <br />(empty array, if none selected)  <br />  <br /><strong>Possible addons:  <br />\"gpsTracking\"</strong>  <br /><strong>\"wartungUndVerschleiss\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies","quote"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"fb9b1658-94ca-40b7-bc1b-54c39e1ce565","name":"Successful Quotation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebikeAustria-leasing\",\n    \"values\": {\n    \"policyStartDate\": \"2025-09-28\",\n    \"paymentSchedule\": \"monthly\",\n    \"price\": 7180.90\n  },\n  \"package\": \"leasingSchutz\",\n  \"addons\": []\n}   ","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 29.01,\n    \"premium\": 26.14,\n    \"taxes\": 2.87,\n    \"premiumExclDiscounts\": 26.14,\n    \"taxesExclDiscounts\": 2.87,\n    \"grossExclDiscounts\": 29.01,\n    \"addons\": [],\n    \"package\": {\n        \"name\": \"leasingSchutz\",\n        \"payments\": [],\n        \"premium\": 26.14,\n        \"tax\": 2.87,\n        \"gross\": 29.01\n    },\n    \"metadata\": {},\n    \"requestData\": {\n        \"productName\": \"ebikeAustria-leasing\",\n        \"values\": {\n            \"policyStartDate\": \"2025-09-28\",\n            \"paymentSchedule\": \"monthly\",\n            \"insuredPersonName\": \"Test GmbH\",\n            \"insuredPersonEmail\": \"test@alteos.com\",\n            \"bikeUserFirstName\": \"test\",\n            \"bikeUserFamilyName\": \"Tester\",\n            \"bikeUserEmail\": \"test@alteos.com\",\n            \"contractNumber\": \"Test GmbH\",\n            \"hasEligibleLock\": \"TRUE\",\n            \"price\": 7180.9,\n            \"frameNumber\": \"124245345345\",\n            \"type\": \"Stadtrad\",\n            \"vehicleType\": \"Fahrrad\",\n            \"brand\": \"Vello\"\n        },\n        \"package\": \"leasingSchutz\",\n        \"addons\": []\n    }\n}"},{"id":"f3a2859e-7e5f-404c-a919-4777ef0b9ab6","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike2024\",\n    \"values\": {\n        \"policyStartDate\": \"2024-02-12\",\n        \"paymentSchedule\": \"oneTime\",\n        \"price\": \"1000.01-1500.00\",\n        \"purchasedAt\": \"2024-02-12\",\n        \"vehicleType\": \"E-Bike\"\n\n    },\n    \"package\": \"diebstahlschutz\",\n    \"addons\": [\n        \"gpsTracking\"\n    ]\n}   ","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"0fe4fabd-ddf0-46dd-afff-abd0ef219f22"},{"name":"E-Bike Leasing JobRad AT","id":"245f1ea7-e817-4321-a3ce-21e7f102793f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-app-key","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"bike-leasing-jobrad-at\",\n    \"values\": {\n    \"duration\": 24,\n    \"price\": 14248.56,\n    \"monthlyPremium\": 38.61\n    },\n    \"package\": \"basis\",\n    \"addons\": []\n}"},"url":"https://api.sandbox.alteos.com/v2/policies","description":"<p>Use this API to retrieve the quote for the eBike Leasing JobRad AT Product.</p>\n<p>Parameters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Mandatory / Optional  <br />(data type)</th>\n<th>Description and values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>productName</strong></td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Name of the product:  <br />  <br /><strong>\"bike-leasing-jobrad-at\"</strong></td>\n</tr>\n<tr>\n<td><strong>price</strong></td>\n<td><strong>Mandatory</strong>  <br />(number)</td>\n<td>Price of the bike in EUR  <br />  <br /><strong>e.g. 13736.25</strong></td>\n</tr>\n<tr>\n<td><strong>duration</strong></td>\n<td><strong>Mandatory</strong>  <br />(number)</td>\n<td>Duration of the contract in months  <br />  <br /><strong>Possible values:  <br />24  <br />36  <br />48</strong></td>\n</tr>\n<tr>\n<td><strong>monthlyPremium</strong></td>\n<td><strong>Mandatory</strong>  <br />(number)</td>\n<td>Monthly premium for the insurance policy  <br />  <br /><strong>e.g. 38.61</strong></td>\n</tr>\n<tr>\n<td><strong>package</strong></td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Name of the insurance package  <br />  <br /><strong>Possible values:  <br />\"basis\"  <br />\"premium\"  <br />\"premium+\"</strong></td>\n</tr>\n<tr>\n<td>addons</td>\n<td><strong>Mandatory</strong></td>\n<td>No addons are available for this product  <br />Must be an empty array</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies"],"host":["https://api.sandbox.alteos.com"],"query":[{"disabled":true,"description":{"content":"<p>Coverage period of the insurance.</p>\n","type":"text/plain"},"key":"duration","value":""},{"disabled":true,"description":{"content":"<p>Date of purchase of the eBike. Must not be older than 6 months before the insurance starting date.</p>\n","type":"text/plain"},"key":"purchasedAt","value":""}],"variable":[]}},"response":[{"id":"89497ab0-eb82-4c62-a2ca-d2748fbaef16","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-App-Key","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"bike-leasing-jobrad-at\",\n    \"values\": {\n    \"duration\": 24,\n    \"price\": 14248.56,\n    \"monthlyPremium\": 38.61\n    },\n    \"package\": \"basis\",\n    \"addons\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 38.61,\n    \"premium\": 34.78,\n    \"taxes\": 3.83,\n    \"premiumExclDiscounts\": 34.78,\n    \"taxesExclDiscounts\": 3.83,\n    \"grossExclDiscounts\": 38.61,\n    \"addons\": [],\n    \"package\": {\n        \"name\": \"basis\",\n        \"payments\": []\n    },\n    \"metadata\": {\n        \"commissionPercent\": 0.1,\n        \"commissionEur\": 3.48,\n        \"monthlyPremium\": \"abc monthly premium: 38.61; Alteos premium38.61\"\n    },\n    \"requestData\": {\n        \"productName\": \"bike-leasing-jobrad-at\",\n        \"values\": {\n            \"duration\": 24,\n            \"price\": 14248.56,\n            \"monthlyPremium\": 38.61\n        },\n        \"package\": \"basis\",\n        \"addons\": []\n    }\n}"}],"_postman_id":"245f1ea7-e817-4321-a3ce-21e7f102793f"},{"name":"E-Bike Leasing LeaseMyBike B2B","id":"f381b006-19a0-41ee-b500-1b3877c6d551","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-app-key","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"leasemybike\",\n    \"values\": {\n    \"sumInsured\": 14385.78,\n    \"durationId\": \"5 Monate\",\n    \"plan\": \"Leasingbike insurance\",\n    \"price\": 14248.56,\n    \"premium\": 40\n    },\n    \"package\": \"Basis24\",\n    \"addons\": []\n}"},"url":"https://api.sandbox.alteos.com/v2/policies","description":"<p>Use this API to retrieve the quote for the eBike Leasing LeaseMyBike Product.</p>\n<p>Parameters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Mandatory / Optional  <br />(data type)</th>\n<th>Description and values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>productName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Name of the product  <br />  <br /><strong>Possible values:  <br />\"leasemybike\"</strong></td>\n</tr>\n<tr>\n<td>premium</td>\n<td><strong>Mandatory</strong>  <br />(number)</td>\n<td>Monthly premium for the leasing contract in Euro  <br />  <br /><strong>e.g 40.00</strong></td>\n</tr>\n<tr>\n<td>price</td>\n<td><strong>Mandatory</strong>  <br />(number)</td>\n<td>Price of the insured e-bike in EUR  <br />  <br />Max: 15000  <br />  <br /><strong>e.g. 13735.21</strong></td>\n</tr>\n<tr>\n<td>sumInsured</td>\n<td><strong>Mandatory</strong>  <br />(number)</td>\n<td>Total sum insured includes bike and the additional values related to leasing e.g. the lock  <br />  <br />Max: 17500 EUR  <br />  <br /><strong>e.g. 14276.18</strong></td>\n</tr>\n<tr>\n<td>durationID</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Indicates the duration of the leasing contract.  <br />  <br /><strong>Possible values:  <br />\"1 Monat\"  <br />\"2 Monate\"  <br />...  <br />\"48 Monate\"</strong></td>\n</tr>\n<tr>\n<td>plan</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Plan defines whether the insurance premium is paid upfront or via monthly payments.  <br />  <br /><strong>Possible values:  <br />\"Purchase insurance\"</strong> (upfront)**  <br />\"Leasingbike insurance\"** (monthly)</td>\n</tr>\n<tr>\n<td>package</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Name of the insurance package.  <br />  <br /><strong>Possible values:  <br />\"Basis24\"  <br />\"Premium24\"</strong></td>\n</tr>\n<tr>\n<td>addons</td>\n<td><strong>Mandatory</strong></td>\n<td>For this product, no addons are available.  <br />Must be an empty array</td>\n</tr>\n</tbody>\n</table>\n</div><p>The policy creation response will also return the <code>requestData</code> object which contains all the data that was given by the user during the policy creation and the <code>quote</code> object which contains all the quotation calculations.</p>\n","urlObject":{"path":["v2","policies"],"host":["https://api.sandbox.alteos.com"],"query":[{"disabled":true,"description":{"content":"<p>Coverage period of the insurance.</p>\n","type":"text/plain"},"key":"duration","value":""},{"disabled":true,"description":{"content":"<p>Date of purchase of the eBike. Must not be older than 6 months before the insurance starting date.</p>\n","type":"text/plain"},"key":"purchasedAt","value":""}],"variable":[]}},"response":[{"id":"4315598f-e651-48c8-a960-95659d4290c9","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-App-Key","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"leasemybike\",\n    \"values\": {\n    \"sumInsured\": 14385.78,\n    \"durationId\": \"5 Monate\",\n    \"plan\": \"Leasingbike insurance\",\n    \"price\": 14248.56,\n    \"premium\": 40\n    },\n    \"package\": \"Basis24\",\n    \"addons\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 40,\n    \"premium\": 36.04,\n    \"taxes\": 3.96,\n    \"premiumExclDiscounts\": 36.04,\n    \"taxesExclDiscounts\": 3.96,\n    \"grossExclDiscounts\": 40,\n    \"addons\": [],\n    \"package\": {\n        \"name\": \"Basis24\",\n        \"payments\": []\n    },\n    \"metadata\": {\n        \"grossPremiumAlteos\": 40\n    },\n    \"requestData\": {\n        \"productName\": \"leasemybike\",\n        \"values\": {\n            \"sumInsured\": 14385.78,\n            \"durationId\": \"5 Monate\",\n            \"plan\": \"Leasingbike insurance\",\n            \"price\": 14248.56,\n            \"premium\": 40\n        },\n        \"package\": \"Basis24\",\n        \"addons\": []\n    }\n}"}],"_postman_id":"f381b006-19a0-41ee-b500-1b3877c6d551"},{"name":"E-Bike Company Bike Leasing","id":"9fa52950-eae9-482a-89e5-0f5064ede506","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-app-key","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike-leasing-companybike\",\n\n    \"values\": {\n        \"price\": 10590.90,\n        \"vehicleType\": \"E-Bike\",  // \"E-Bike\" / \"Fahrrad\"\n        \"policyStartDate\": \"2025-02-04\"\n        \n    },\n    \"package\": \"leasingschutz\",\n    \"addons\": [] // [], [\"Inspektion\"], [\"Inspektion-Verschleiss\"], [\"Inspektion\",\"Ruecknahmegarantie\"]\n}"},"url":"https://api.sandbox.alteos.com/v2/policies","description":"<p>Use this API to retrieve the quote for the eBike Company Bike Leasing Product.</p>\n<p>Parameters</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory / Optional  <br />(data type)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>productName</strong></td>\n<td><strong>Mandatory</strong></td>\n<td>Name of the chosen product  <br />  <br /><strong>Possible values:  <br />\"ebike-leasing-companybike\"</strong></td>\n</tr>\n<tr>\n<td><strong>policyStartDate</strong></td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>Start date of the policy.  <br />- Date of handover of the bike.  <br />- Coverage starts on this day.  <br />- Minimum Date: One day before today  <br />- Maximum Date: One month in the future  <br />  <br />Format: YYYY-MM-DD  <br />  <br /><strong>e.g. \"2025-03-01\"</strong></td>\n</tr>\n<tr>\n<td><strong>price</strong></td>\n<td><strong>Mandatory</strong>  <br />(number)</td>\n<td>Price of the insured (E-)bike in €  <br />Max: 15000  <br />  <br /><strong>Example: 12453.13</strong></td>\n</tr>\n<tr>\n<td><strong>vehicleType</strong></td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Specifies the type of the insured bike  <br />  <br /><strong>Possible values:  <br />\"E-Bike\"  <br />\"Fahrrad\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>package</strong></td>\n<td>Name of the insurance package  <br />  <br /><strong>Possible values:  <br />\"leasingschutz \"</strong></td>\n</tr>\n<tr>\n<td><strong>addons</strong></td>\n<td>Specifies the selected addons  <br />(empty arry if no addon is selected)  <br />  <br /><strong>Possible addons:  <br />\"Inspektion\"  <br />\"Inspektion-Verschleiss\"  <br />\"Ruecknahmegarantie\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p>The policy creation response will also return the <code>requestData</code> object which contains all the data that was given by the user during the policy creation and the <code>quote</code> object which contains all the quotation calculations.</p>\n","urlObject":{"path":["v2","policies"],"host":["https://api.sandbox.alteos.com"],"query":[{"disabled":true,"description":{"content":"<p>Coverage period of the insurance.</p>\n","type":"text/plain"},"key":"duration","value":""},{"disabled":true,"description":{"content":"<p>Date of purchase of the eBike. Must not be older than 6 months before the insurance starting date.</p>\n","type":"text/plain"},"key":"purchasedAt","value":""}],"variable":[]}},"response":[{"id":"d71c849e-d02b-4f65-9323-8c5505332f0c","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-App-Key","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike-leasing-companybike\",\n\n    \"values\": {\n        \"price\": 10590.90,\n        \"vehicleType\": \"E-Bike\",  // \"E-Bike\" / \"Fahrrad\"\n        \"policyStartDate\": \"2025-02-04\"\n        \n    },\n    \"package\": \"leasingschutz\",\n    \"addons\": [] // [], [\"Inspektion\"], [\"Inspektion-Verschleiss\"], [\"Inspektion\",\"Ruecknahmegarantie\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 31.67,\n    \"premium\": 26.61,\n    \"taxes\": 5.06,\n    \"premiumExclDiscounts\": 26.61,\n    \"taxesExclDiscounts\": 5.06,\n    \"grossExclDiscounts\": 31.67,\n    \"addons\": [],\n    \"package\": {\n        \"name\": \"leasingschutz\",\n        \"payments\": [\n            {\n                \"premium\": 26.61,\n                \"tax\": 5.06\n            },\n            {\n                \"premium\": 26.61,\n                \"tax\": 5.06\n            },\n            {\n                \"premium\": 26.61,\n                \"tax\": 5.06\n            },\n            {\n                \"premium\": 26.61,\n                \"tax\": 5.06\n            },\n            {\n                \"premium\": 26.61,\n                \"tax\": 5.06\n            },\n            {\n                \"premium\": 26.61,\n                \"tax\": 5.06\n            },\n            {\n                \"premium\": 26.61,\n                \"tax\": 5.06\n            },\n            {\n                \"premium\": 26.61,\n                \"tax\": 5.06\n            },\n            {\n                \"premium\": 26.61,\n                \"tax\": 5.06\n            },\n            {\n                \"premium\": 26.61,\n                \"tax\": 5.06\n            },\n            {\n                \"premium\": 26.61,\n                \"tax\": 5.06\n            },\n            {\n                \"premium\": 26.61,\n                \"tax\": 5.06\n            },\n            {\n                \"premium\": 26.61,\n                \"tax\": 5.06\n            },\n            {\n                \"premium\": 26.61,\n                \"tax\": 5.06\n            },\n            {\n                \"premium\": 26.61,\n                \"tax\": 5.06\n            },\n            {\n                \"premium\": 26.61,\n                \"tax\": 5.06\n            },\n            {\n                \"premium\": 26.61,\n                \"tax\": 5.06\n            },\n            {\n                \"premium\": 26.61,\n                \"tax\": 5.06\n            },\n            {\n                \"premium\": 26.61,\n                \"tax\": 5.06\n            },\n            {\n                \"premium\": 26.61,\n                \"tax\": 5.06\n            },\n            {\n                \"premium\": 26.61,\n                \"tax\": 5.06\n            },\n            {\n                \"premium\": 26.61,\n                \"tax\": 5.06\n            },\n            {\n                \"premium\": 26.61,\n                \"tax\": 5.06\n            },\n            {\n                \"premium\": 26.61,\n                \"tax\": 5.06\n            },\n            {\n                \"premium\": 26.61,\n                \"tax\": 5.06\n            },\n            {\n                \"premium\": 26.61,\n                \"tax\": 5.06\n            },\n            {\n                \"premium\": 26.61,\n                \"tax\": 5.06\n            },\n            {\n                \"premium\": 26.61,\n                \"tax\": 5.06\n            },\n            {\n                \"premium\": 26.61,\n                \"tax\": 5.06\n            },\n            {\n                \"premium\": 26.61,\n                \"tax\": 5.06\n            },\n            {\n                \"premium\": 26.61,\n                \"tax\": 5.06\n            },\n            {\n                \"premium\": 26.61,\n                \"tax\": 5.06\n            },\n            {\n                \"premium\": 26.61,\n                \"tax\": 5.06\n            },\n            {\n                \"premium\": 26.61,\n                \"tax\": 5.06\n            },\n            {\n                \"premium\": 26.61,\n                \"tax\": 5.06\n            },\n            {\n                \"premium\": 26.61,\n                \"tax\": 5.06\n            }\n        ],\n        \"gross\": 31.67\n    },\n    \"metadata\": {\n        \"commission\": 5.53,\n        \"commission%\": 0.17461\n    },\n    \"requestData\": {\n        \"productName\": \"ebike-leasing-companybike\",\n        \"values\": {\n            \"price\": 10590.9,\n            \"vehicleType\": \"E-Bike\",\n            \"policyStartDate\": \"2025-02-04\"\n        },\n        \"package\": \"leasingschutz\",\n        \"addons\": []\n    }\n}"}],"_postman_id":"9fa52950-eae9-482a-89e5-0f5064ede506"},{"name":"E-Bike Wuerth Leasing 2024","id":"e690240e-8224-46fe-a54d-449af16ae4e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-app-key","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"wuerth-Leasing-2024\",\n    \"values\": {\n        \"policyStartDate\": \"2025-09-25\",\n        \"price\": \"1565.25\"\n\n    },\n    \"package\": \"BIKE LEASE Exklusiv Schutz\",\n    \"addons\": [\n    ]\n}"},"url":"https://api.sandbox.alteos.com/v2/policies","description":"<p>Use this API to retrieve the quote for the Wuerth Leasing 2024 (e-)bike product</p>\n<p>Parameters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Mandatory / Optional  <br />(data type)</th>\n<th>Description and values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>productName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Name of the product  <br />  <br /><strong>Possible values:  <br />\"wuerth-Leasing-2024\"</strong></td>\n</tr>\n<tr>\n<td>policyStartDate</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>Start date of the policy  <br />  <br />Format: YYYY-MM-DD  <br />  <br />- Date of handover of the bike  <br />- Coverage starts on this day  <br />- Minimum date: 3 months before current date  <br />- Maximum date: 1 month in the future  <br />  <br /><strong>e.g. \"2025-03-12\"</strong></td>\n</tr>\n<tr>\n<td>price</td>\n<td><strong>Mandatory</strong>  <br />(number)</td>\n<td>Price of the insured bike in EUR  <br />  <br /><strong>e.g. 13736.25</strong></td>\n</tr>\n<tr>\n<td>package</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Name of the insurance package  <br />  <br /><strong>Possible values:  <br />\"BIKE LEASE Exklusiv Schutz\"</strong></td>\n</tr>\n<tr>\n<td>addons</td>\n<td><strong>Mandatory</strong></td>\n<td>Name of the chosen addons  <br />If no addons are selected, this must be an empty array.  <br />  <br /><strong>Possible values:  <br />\"gpsTracking\"  <br />\"mobilitaetsschutz\"  <br />\"wartungUndVerschleiss\"  <br />\"ruecknahmegarantie\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p>The policy creation response will also return the <code>requestData</code> object which contains all the data that was given by the user during the policy creation and the <code>quote</code> object which contains all the quotation calculations.</p>\n","urlObject":{"path":["v2","policies"],"host":["https://api.sandbox.alteos.com"],"query":[{"disabled":true,"description":{"content":"<p>Coverage period of the insurance.</p>\n","type":"text/plain"},"key":"duration","value":""},{"disabled":true,"description":{"content":"<p>Date of purchase of the eBike. Must not be older than 6 months before the insurance starting date.</p>\n","type":"text/plain"},"key":"purchasedAt","value":""}],"variable":[]}},"response":[{"id":"e984234a-601a-4aff-802e-cb2973fb85f9","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-App-Key","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"wuerth-Leasing-2024\",\n    \"values\": {\n        \"policyStartDate\": \"2025-09-25\",\n        \"price\": \"1565.25\"\n\n    },\n    \"package\": \"BIKE LEASE Exklusiv Schutz\",\n    \"addons\": [\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 14.4,\n    \"premium\": 12.1,\n    \"taxes\": 2.3,\n    \"premiumExclDiscounts\": 12.1,\n    \"taxesExclDiscounts\": 2.3,\n    \"grossExclDiscounts\": 14.4,\n    \"addons\": [],\n    \"package\": {\n        \"name\": \"BIKE LEASE Exklusiv Schutz\",\n        \"payments\": [],\n        \"premium\": 12.1,\n        \"tax\": 2.3,\n        \"gross\": 14.4\n    },\n    \"metadata\": {},\n    \"requestData\": {\n        \"productName\": \"wuerth-Leasing-2024\",\n        \"values\": {\n            \"policyStartDate\": \"2025-09-25\",\n            \"price\": \"1565.25\"\n        },\n        \"package\": \"BIKE LEASE Exklusiv Schutz\",\n        \"addons\": []\n    }\n}"}],"_postman_id":"e690240e-8224-46fe-a54d-449af16ae4e5"},{"name":"E-Bike Leasing Extension","id":"7a303936-d3f9-478c-a126-552d452c5aff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKeyAlteos}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"dienstradanschluss\",\n    \"values\": {\n        \"policyStartDate\": \"2025-11-19\",\n        \"paymentSchedule\": \"annual\",\n        \"price\": \"1000.01-1500.00\",\n        \"vehicleType\": \"E-Bike\"\n    },\n    \"package\": \"dienstradanschluss\",\n    \"addons\": [\n    ]\n}"},"url":"https://api.sandbox.alteos.com/v2/policies/policies","description":"<p>Use this API to retrieve the quote for the (E-)Bike Leasing Extension Product</p>\n<p>Values</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory / Optional  <br />(data type)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>policyStartDate</strong></td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>Start date of the policy  <br />  <br />- Coverage starts on this day.  <br />- Minimum date: current date  <br />- Maximum date: three months in the future  <br />  <br />Format: YYYY-MM-DD  <br />  <br /><strong>e.g. \"2025-11-19\"</strong></td>\n</tr>\n<tr>\n<td><strong>paymentSchedule</strong></td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Describes at which intervalls the customer is charged  <br />  <br /><strong>Possible values:  <br />\"monthly\"</strong>  <br /><strong>\"annual\"</strong></td>\n</tr>\n<tr>\n<td><strong>price</strong></td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Price of the insured (E-)bike in increments of 500 EUR  <br />Max: 14500.01-15000.00  <br />  <br /><strong>Possible values:  <br />\"0.00-500.00\"  <br />\"500.01-1000.00\"  <br />\"1000.01-1500.00\"  <br />...  <br />\"14500.01-15000.00\"</strong></td>\n</tr>\n<tr>\n<td><strong>vehicleType</strong></td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Specifies the type of the bike  <br />  <br /><strong>Possible values:  <br />\"E-Bike\"  <br />\"Fahrrad\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>package</strong></td>\n<td>Name of the insurance package  <br />  <br /><strong>Possible values:  <br />\"dienstradanschluss \"</strong></td>\n</tr>\n<tr>\n<td><strong>addons</strong></td>\n<td>Specifies the selected addons  <br />(empty array if no addon is selected)  <br />  <br /><strong>Possible addons:  <br />\"gpsTracking\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies","policies"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"b821b827-aa24-439f-be8b-57f14d517674","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"dienstradanschluss\",\n    \"values\": {\n        \"policyStartDate\": \"2025-11-19\",\n        \"paymentSchedule\": \"annual\",\n        \"price\": \"1000.01-1500.00\",\n        \"vehicleType\": \"E-Bike\"\n    },\n    \"package\": \"dienstradanschluss\",\n    \"addons\": [\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 113,\n    \"premium\": 94.96,\n    \"taxes\": 18.04,\n    \"premiumExclDiscounts\": 94.96,\n    \"taxesExclDiscounts\": 18.04,\n    \"grossExclDiscounts\": 113,\n    \"addons\": [\n        {\n            \"name\": \"gpsTracking\",\n            \"payments\": [],\n            \"premium\": 15.13,\n            \"tax\": 2.87,\n            \"gross\": 18\n        }\n    ],\n    \"package\": {\n        \"name\": \"dienstradanschluss\",\n        \"payments\": [],\n        \"premium\": 79.83,\n        \"tax\": 15.17,\n        \"gross\": 95\n    },\n    \"metadata\": {},\n    \"requestData\": {\n        \"productName\": \"dienstradanschluss\",\n        \"values\": {\n            \"policyStartDate\": \"2025-11-20\",\n            \"paymentSchedule\": \"annual\",\n            \"price\": \"1000.01-1500.00\",\n            \"vehicleType\": \"E-Bike\"\n        },\n        \"package\": \"dienstradanschluss\",\n        \"addons\": [\n            \"gpsTracking\"\n        ]\n    }\n}"},{"id":"27aec5cc-4f29-4d78-abc3-a821d935cbcc","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike-Leasing-2024\",\n    \"values\": {\n        \"policyStartDate\": \"2024-02-29\",\n        \"paymentSchedule\": \"monthly\",\n        \"price\": \"3000.01-3500.00\"\n    },\n    \"package\": \"LeasingSchutz\",\n    \"addons\": [\n        \"gpsTracking\",\n        \"mobilitaetsschutz\",\n        \"gewerblicheNutzung\",\n        \"inspektion\",\n        \"wartungUndVerschleiss\",\n        \"einzelteileVerschleiss\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"7a303936-d3f9-478c-a126-552d452c5aff"},{"name":"eBike Product B2C | 2025","id":"e699e926-ccdc-46c1-a20e-c98b5e9b0f5f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKeyAlteos}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike\",\n    \"values\": {\n        \"policyStartDate\": \"2025-10-17\",\n        \"paymentSchedule\": \"monthly\",\n        \"price\": \"1500.01-2000.00\",\n        \"purchasedAt\": \"2025-05-13\",\n        \"vehicleType\": \"E-Bike\",\n        \"preinstalledGps\": \"-\"\n    },\n    \"package\": \"diebstahlschutz\",\n    \"addons\": [\n    ]\n}   "},"url":"https://api.sandbox.alteos.com/v2/policies/quote","description":"<p>Use this API to retrieve the quote for the eBike Product.</p>\n<p>Parameters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th><strong>Mandatory/Optional</strong>  <br />(Data type)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>policyStartDate</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>States the date at which the police starts  <br />  <br />Format: YYYY-MM-DD  <br />  <br />Minimum starting date:  <br />current date (today)  <br />Maximum starting date:  <br />3 months from current date  <br />  <br /><strong>e.g. \"2025-10-28\"</strong></td>\n</tr>\n<tr>\n<td>paymentSchedule</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Specifies the intervalls at which the insurance premium is paid  <br />  <br /><strong>Possible values:  <br />\"monthly\"  <br />\"annual\"  <br />\"3years\"</strong> (upfront payment for the first three years followed by annual payments)  <br /><strong>\"oneTime\"</strong></td>\n</tr>\n<tr>\n<td>price</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Price of the insured (E-)Bike (in 500 Eur increments)  <br />max: 15.000 Eur  <br />  <br /><strong>Possible values:  <br />\"0.00-500.00\"  <br />\"500.01-1000.00\"  <br />\"1000.01-1500.00\"  <br />...  <br />\"14500.01-15000.00\"</strong></td>\n</tr>\n<tr>\n<td>purchasedAt</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>Purchase date of the insured E-Bike  <br />  <br />Format: YYYY-MM-DD  <br />  <br />Minimum purchase date:  <br />- 39 months in the past for package \"Diebstahlschutz Plus\"  <br />- 12 months in the past for \"Komfortschutz\" and \"Premiumschutz\"  <br />Maximum purchase date:  <br />current date (today)  <br />  <br /><strong>e.g. \"2025-02-15\"</strong></td>\n</tr>\n<tr>\n<td>vehicleType</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Specifies what type of object is insured  <br />  <br /><strong>Possible values:  <br />\"Fahrrad\"  <br />\"E-Bike\"</strong>  <br />  <br />Note that addon \"gpsTracking\" is not available if vehicleType \"Fahrrad\" selected.</td>\n</tr>\n<tr>\n<td>preinstalledGps</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Specifies if, and if yes which, GPS tracker is already used  <br />  <br /><strong>Possible values:  <br />\"-\"</strong> <strong>(no GPS tracker used)</strong>  <br /><strong>\"BikeFinder\"  <br />\"Bosch ConnectModule\"  <br />\"CaGo Me\"  <br />Comodule\"  <br />\"Corratec C-Finder\"  <br />\"IT'S MY BIKE\"  <br />\"My Boo Track &amp; Protect\"  <br />\"Powunity\"  <br />\"RX-Chip/RX-Connect\"  <br />\"UD #Smart 2.0 GPS-Tracker\"  <br />\"Velco\"  <br />\"Velomate\"</strong></td>\n</tr>\n<tr>\n<td>package</td>\n<td><strong>Mandatory</strong></td>\n<td>Type of coverage selected  <br />  <br /><strong>Possible values:</strong>  <br /><strong>\"diebstahlschutz\"  <br />\"komfortschutz\"  <br />\"premiumschutz\"</strong></td>\n</tr>\n<tr>\n<td>addons</td>\n<td><strong>Mandatory</strong></td>\n<td>List of selected policy-addons  <br />(empty array, if none selected)  <br />  <br /><strong>Possible addons:  <br />\"gpsTracking\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies","quote"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"971486a3-7586-4c94-b1ce-216baee831a2","name":"Successful Quotation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike\",\n    \"values\": {\n        \"policyStartDate\": \"2025-10-16\",\n        \"paymentSchedule\": \"monthly\",\n        \"price\": \"1500.01-2000.00\",\n        \"purchasedAt\": \"2025-05-13\",\n        \"vehicleType\": \"E-Bike\",\n        \"preinstalledGps\": \"-\"\n    },\n    \"package\": \"diebstahlschutz\",\n    \"addons\": [\n    ]\n}   ","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 9,\n    \"premium\": 7.56,\n    \"taxes\": 1.44,\n    \"premiumExclDiscounts\": 7.56,\n    \"taxesExclDiscounts\": 1.44,\n    \"grossExclDiscounts\": 9,\n    \"addons\": [],\n    \"package\": {\n        \"name\": \"diebstahlschutz\",\n        \"payments\": [\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            },\n            {\n                \"premium\": 7.56,\n                \"tax\": 1.44\n            }\n        ],\n        \"gross\": 9\n    },\n    \"metadata\": {\n        \"preinstalledGPSReduction\": 0,\n        \"monthlyBaseRates\": [\n            {\n                \"Diebstahlschutz Plus\": 9\n            },\n            {\n                \"Komfortschutz\": 10\n            },\n            {\n                \"Premiumschutz\": 10.9\n            }\n        ],\n        \"annualBaseRates\": [\n            {\n                \"Diebstahlschutz Plus\": 95\n            },\n            {\n                \"Komfortschutz\": 105\n            },\n            {\n                \"Premiumschutz\": 115\n            }\n        ],\n        \"coverages\": [\n            {\n                \"diebstahlschutz\": {\n                    \"Rückholservice\": true,\n                    \"Diebstahl Akku/Zubehör\": true,\n                    \"Einbruchdiebstahl / Raub\": true,\n                    \"Vandalismus\": true,\n                    \"Mobilitätsschutz\": true,\n                    \"Sturz- und Unfallschäden\": false,\n                    \"Feuchtigkeitsschäden\": false,\n                    \"Elektronikschäden\": false,\n                    \"Naturgewalten\": false,\n                    \"Materialfehler\": false,\n                    \"Produktionsfehler\": false,\n                    \"Bedienungsfehler\": false,\n                    \"Gewerbliche Nutzung\": true,\n                    \"Verschleiß Einzelteile inkl. Reifen / Bremsen\": false,\n                    \"Verschleiß Akku\": false,\n                    \"Inflationsausgleich\": false,\n                    \"39 Monate nach Kauf abschließbar\": true\n                }\n            },\n            {\n                \"komfortschutz\": {\n                    \"Rückholservice\": true,\n                    \"Diebstahl Akku/Zubehör\": true,\n                    \"Einbruchdiebstahl / Raub\": true,\n                    \"Vandalismus\": true,\n                    \"Mobilitätsschutz\": true,\n                    \"Sturz- und Unfallschäden\": true,\n                    \"Feuchtigkeitsschäden\": true,\n                    \"Elektronikschäden\": true,\n                    \"Naturgewalten\": true,\n                    \"Materialfehler\": true,\n                    \"Produktionsfehler\": true,\n                    \"Bedienungsfehler\": true,\n                    \"Gewerbliche Nutzung\": true,\n                    \"Verschleiß Einzelteile bis 150 EUR pro Jahr exkl. Reifen / Bremsen\": true,\n                    \"Verschleiß Akku\": false,\n                    \"Inflationsausgleich\": false,\n                    \"12 Monate nach Kauf abschließbar\": true\n                }\n            },\n            {\n                \"premiumschutz\": {\n                    \"Rückholservice\": true,\n                    \"Diebstahl Akku/Zubehör\": true,\n                    \"Einbruchdiebstahl/Raub\": true,\n                    \"Vandalismus\": true,\n                    \"Mobilitätsschutz\": true,\n                    \"Sturz- und Unfallschäden\": true,\n                    \"Feuchtigkeitsschäden\": true,\n                    \"Elektronikschäden\": true,\n                    \"Naturgewalten\": true,\n                    \"Materialfehler\": true,\n                    \"Produktionsfehler\": true,\n                    \"Bedienungsfehler\": true,\n                    \"Gewerbliche Nutzung\": false,\n                    \"Verschleiß Einzelteile unbegrenzt inkl. Reifen / Bremsen\": true,\n                    \"Verschleiß Akku\": true,\n                    \"Inflationsausgleich\": true,\n                    \"12 Monate nach Kauf abschließbar\": true\n                }\n            }\n        ],\n        \"leistungsmerkmale\": [\n            {\n                \"Leistungen\": [\n                    \"E-Bikes und Fahrräder mit Zubehör und Schloss bis zu 15.000 € versicherbar, inkl Inflationsschutz\",\n                    \"Erstattung des Neuwerts\",\n                    \"Keine Selbstbeteiligung\",\n                    \"Bis zu 5 Jahre versicherbar\",\n                    \"Verschleiß von Bremsen, Reifen, Akkus abgedeckt\",\n                    \"Tägliches Kündigungsrecht\",\n                    \"Mobilitätsschutz: Liegen geblieben? Wir holen Sie ab!\",\n                    \"Bis zu 150 € für ein gemietetes Fahrrad\",\n                    \"Weltweiter 24/7-Versicherungsschutz\"\n                ]\n            },\n            {\n                \"Vorteile\": [\n                    \"Extra starker Schutz für alle Fahrräder\",\n                    \"Alles einfach online: Digital, schnell, unkompliziert, vom Abschluss bis zur Schadensabwicklung: Den Service von Alteos haben Sie mit Ihrem Smartphone immer dabei.\",\n                    \"Neuwerterstattung: Wir leisten immer zum Neuwert. Im Ernstfall können Sie so Ihr Rad ersetzen - ohne zusätzliche Selbstbeteiligung. Für ein gemietetes Ersatzrad übernehmen wir bis zu 150 €.\",\n                    \"Zubehör versicherbar: Sorgen Sie sich nicht um hochwertige Anbauteile oder Ihren Anhänger: Zubehör kann bei uns immer mit abgesichert werden - einschließlich Sturzschäden am Helm!\",\n                    \"Verschleiß mit absichern: Abgenutzte Reifen oder Bremsem, Akku mit geringer Kapazität? Sichern Sie Verschleißteile einfach mit ab - und sparen Sie sich hohe Folgekosten!\",\n                    \"Nobilitätsschutz: Wenn Sie auf Tour eine Panne haben, sind wir für Sie da: Wir organisieren Weiter- und Rückreise, Übernachtungskosten und Notfallbargeld.\",\n                    \"Gewerbliche Nutzung: In den Tarifen Diebstahlschutz Plus und Komfortschutz ist auch die gewerbliche Nutzung des E-Bikes bzw. Fahrrads, z.B. als Transport- oder Servicefahrzeug abgedeckt. Verleih oder Vermietung ist ausgeschlossen.\"\n                ]\n            }\n        ]\n    },\n    \"requestData\": {\n        \"productName\": \"ebike\",\n        \"values\": {\n            \"policyStartDate\": \"2025-10-16\",\n            \"paymentSchedule\": \"monthly\",\n            \"price\": \"1500.01-2000.00\",\n            \"purchasedAt\": \"2025-05-13\",\n            \"vehicleType\": \"E-Bike\",\n            \"preinstalledGps\": \"-\"\n        },\n        \"package\": \"diebstahlschutz\",\n        \"addons\": []\n    }\n}"},{"id":"1f5bc14b-8c19-43a9-88f6-f43aa26ffe07","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike2024\",\n    \"values\": {\n        \"policyStartDate\": \"2024-02-12\",\n        \"paymentSchedule\": \"oneTime\",\n        \"price\": \"1000.01-1500.00\",\n        \"purchasedAt\": \"2024-02-12\",\n        \"vehicleType\": \"E-Bike\"\n\n    },\n    \"package\": \"diebstahlschutz\",\n    \"addons\": [\n        \"gpsTracking\"\n    ]\n}   ","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"e699e926-ccdc-46c1-a20e-c98b5e9b0f5f"},{"name":"eBike Product B2C | 2026","id":"9cd4c59b-402c-4f54-8f04-dc8ec3941ddb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKeyAlteos}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike2026_DE\",\n    \"values\": {\n        \"price\":           1500.01,\n        \"policyStartDate\": \"2026-01-01\",\n        \"purchasedAt\":     \"2025-01-01\",\n        \"paymentSchedule\": \"monthly\",\n        \"preinstalledGps\": \"BikeFinder\" // optional\n    },\n    \"package\": \"komfort\",\n    \"addons\": []\n}"},"url":"https://api.sandbox.alteos.com/v2/policies/quote","description":"<p>Use this API to retrieve the quote for the eBike2026 Product.</p>\n<h4 id=\"package-infooptions--infopackages---dynamic-setup\">Package \"infoOptions\" &amp; \"InfoPackages\" - Dynamic setup</h4>\n<p>For a dynamic setup of the ERP integration UI we provide all relevant data in the package infoOptions and infoPackages.</p>\n<p>infoOptions:<br />Will list all required parameters, their type and the respective options for quotation. No values need to be provided.</p>\n<p>infoPackages:</p>\n<p>The response will return <strong>all</strong> available packages and add-ons, their technical names as well as their display names and premiums for all payment schedules as well as links to the terms &amp; conditions in the metadata.</p>\n<p>infoOptions example request:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"productName\": \"ebike2026_DE\",\n    \"values\": {\n    },\n    \"package\": \"infoOptions\",\n    \"addons\": []\n}\n\n</code></pre>\n<p>infoOptions v2 example response:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"gross\": 0,\n    \"premium\": 0,\n    \"taxes\": 0,\n    \"premiumExclDiscounts\": 0,\n    \"taxesExclDiscounts\": 0,\n    \"grossExclDiscounts\": 0,\n    \"addons\": [],\n    \"package\": {\n        \"name\": \"infoOptions\",\n        \"payments\": []\n    },\n    \"metadata\": {\n        \"meta\": {\n            \"version\": \"1.1.0\",\n            \"countryCode\": \"DE\",\n            \"localeCode\": \"de-DE\",\n            \"currencyCode\": \"EUR\",\n            \"currencySymbol\": \"€\"\n        },\n        \"fields\": {\n            \"values\": {\n                \"vehicleType\": {\n                    \"key\": \"vehicleType\",\n                    \"order\": 10,\n                    \"label\": \"Art des Rads\",\n                    \"type\": \"select\",\n                    \"options\": [\n                        {\n                            \"label\": \"E-Bike\",\n                            \"value\": \"E-Bike\"\n                        },\n                        {\n                            \"label\": \"Fahrrad\",\n                            \"value\": \"Fahrrad\"\n                        }\n                    ],\n                    \"rules\": {\n                        \"required\": true\n                    }\n                },\n                \"type\": {\n                    \"key\": \"type\",\n                    \"order\": 20,\n                    \"label\": \"Fahrradtyp\",\n                    \"type\": \"select\",\n                    \"options\": [\n                        {\n                            \"label\": \"Stadtrad\",\n                            \"value\": \"Stadtrad\"\n                        },\n                        {\n                            \"label\": \"Lasten- / Transportrad\",\n                            \"value\": \"Lasten- / Transportrad\"\n                        },\n                        {\n                            \"label\": \"Mountainbike\",\n                            \"value\": \"Mountainbike\"\n                        },\n                        {\n                            \"label\": \"Gravelbike / Rennrad\",\n                            \"value\": \"Gravelbike / Rennrad\"\n                        },\n                        {\n                            \"label\": \"S-Pedelecs\",\n                            \"value\": \"S-Pedelecs\",\n                            \"availableIf\": {\n                                \"operator\": \"and\",\n                                \"conditions\": [\n                                    {\n                                        \"field\": \"values.vehicleType\",\n                                        \"operator\": \"eq\",\n                                        \"value\": \"E-Bike\"\n                                    }\n                                ]\n                            }\n                        },\n                        {\n                            \"label\": \"Downhill- / Dirtbike\",\n                            \"value\": \"Downhill- / Dirtbike\"\n                        },\n                        {\n                            \"label\": \"Sonstige\",\n                            \"value\": \"Sonstige\"\n                        }\n                    ],\n                    \"rules\": {\n                        \"required\": true\n                    }\n                },\n                \"bikeStatus\": {\n                    \"key\": \"bikeStatus\",\n                    \"order\": 30,\n                    \"label\": \"Das Rad ist\",\n                    \"type\": \"select\",\n                    \"options\": [\n                        {\n                            \"label\": \"Neu\",\n                            \"value\": \"Neurad\"\n                        },\n                        {\n                            \"label\": \"Gebraucht\",\n                            \"value\": \"Gebrauchtrad\"\n                        },\n                        {\n                            \"label\": \"Leasinganschluss\",\n                            \"value\": \"leasinganschluss\"\n                        },\n                        {\n                            \"label\": \"Leasingzusatz\",\n                            \"value\": \"leasingZusatz\"\n                        }\n                    ],\n                    \"rules\": {\n                        \"required\": true\n                    }\n                },\n                \"price\": {\n                    \"key\": \"price\",\n                    \"order\": 40,\n                    \"label\": \"Kaufpreis\",\n                    \"detail\": \"inkl. Schluss und fest verbundenes Zubehör\",\n                    \"type\": \"number\",\n                    \"rules\": {\n                        \"required\": true,\n                        \"minimum\": 0,\n                        \"maximum\": 20000,\n                        \"precision\": 2\n                    }\n                },\n                \"purchasedAt\": {\n                    \"key\": \"purchasedAt\",\n                    \"order\": 50,\n                    \"label\": \"Kaufdatum\",\n                    \"type\": \"date\",\n                    \"rules\": {\n                        \"required\": true,\n                        \"format\": \"YYYY-MM-DD\",\n                        \"minimum\": \"-P39M\",\n                        \"maximum\": \"NOW\"\n                    }\n                },\n                \"policyStartDate\": {\n                    \"key\": \"policyStartDate\",\n                    \"order\": 60,\n                    \"label\": \"Versicherungsbeginn\",\n                    \"type\": \"date\",\n                    \"rules\": {\n                        \"required\": true,\n                        \"format\": \"YYYY-MM-DD\",\n                        \"minimum\": \"NOW\",\n                        \"maximum\": \"+P1M\"\n                    }\n                },\n                \"preinstalledGps\": {\n                    \"key\": \"preinstalledGps\",\n                    \"order\": 70,\n                    \"label\": \"GPS-Tracker\",\n                    \"detail\": \"Ab Werk oder vom Fachhändler installiert\",\n                    \"type\": \"select\",\n                    \"options\": [\n                        {\n                            \"label\": \"Nicht vorhanden\",\n                            \"value\": \"none\"\n                        },\n                        {\n                            \"label\": \"BikeFinder\",\n                            \"value\": \"BikeFinder\"\n                        },\n                        {\n                            \"label\": \"Bosch ConnectModule\",\n                            \"value\": \"Bosch ConnectModule\"\n                        },\n                        {\n                            \"label\": \"CaGo Me\",\n                            \"value\": \"CaGo Me\"\n                        },\n                        {\n                            \"label\": \"Comodule\",\n                            \"value\": \"Comodule\"\n                        },\n                        {\n                            \"label\": \"Corratec C-Finder\",\n                            \"value\": \"Corratec C-Finder\"\n                        },\n                        {\n                            \"label\": \"IT'S MY BIKE\",\n                            \"value\": \"IT'S MY BIKE\"\n                        },\n                        {\n                            \"label\": \"My Boo Track &amp; Protect\",\n                            \"value\": \"My Boo Track &amp; Protect\"\n                        },\n                        {\n                            \"label\": \"Powunity\",\n                            \"value\": \"Powunity\"\n                        },\n                        {\n                            \"label\": \"RX-Chip/RX Connect\",\n                            \"value\": \"RX-Chip/RX Connect\"\n                        },\n                        {\n                            \"label\": \"UD #Smart 2.0 GPS-Tracker\",\n                            \"value\": \"UD #Smart 2.0 GPS-Tracker\"\n                        },\n                        {\n                            \"label\": \"Velco\",\n                            \"value\": \"Velco\"\n                        },\n                        {\n                            \"label\": \"Velomate\",\n                            \"value\": \"Velomate\"\n                        }\n                    ],\n                    \"availableIf\": {\n                        \"operator\": \"and\",\n                        \"conditions\": [\n                            {\n                                \"field\": \"values.vehicleType\",\n                                \"operator\": \"eq\",\n                                \"value\": \"E-Bike\"\n                            }\n                        ]\n                    }\n                }\n            },\n            \"packageName\": {\n                \"key\": \"package\",\n                \"order\": 100,\n                \"label\": \"Versicherungstarif\",\n                \"type\": \"select\",\n                \"options\": [\n                    {\n                        \"label\": \"Basis\",\n                        \"value\": \"basis\"\n                    },\n                    {\n                        \"label\": \"Komfort\",\n                        \"value\": \"komfort\"\n                    },\n                    {\n                        \"label\": \"Premium\",\n                        \"value\": \"premium\"\n                    },\n                    {\n                        \"label\": \"Leasingzusatz\",\n                        \"value\": \"leasingZusatz\"\n                    }\n                ],\n                \"rules\": {\n                    \"required\": true\n                }\n            },\n            \"addons\": {\n                \"key\": \"addons\",\n                \"order\": 200,\n                \"label\": \"Zusatzleistungen\",\n                \"type\": \"select\",\n                \"options\": [\n                    {\n                        \"label\": \"GPS-Tracking\",\n                        \"value\": \"gpsTracking\"\n                    }\n                ],\n                \"rules\": {\n                    \"required\": true\n                },\n                \"availableIf\": [\n                    {\n                        \"field\": \"values.vehicleType\",\n                        \"operator\": \"eq\",\n                        \"value\": \"E-Bike\"\n                    },\n                    {\n                        \"field\": \"values.preinstalledGps\",\n                        \"operator\": \"eq\",\n                        \"value\": \"none\"\n                    }\n                ]\n            }\n        }\n    },\n    \"requestData\": {\n        \"productName\": \"ebike2026_DE\",\n        \"values\": {},\n        \"package\": \"infoOptions\",\n        \"addons\": []\n    }\n}\n\n</code></pre>\n<p>infoOptions v1 example response:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"gross\": 0,\n    \"premium\": 0,\n    \"taxes\": 0,\n    \"premiumExclDiscounts\": 0,\n    \"taxesExclDiscounts\": 0,\n    \"grossExclDiscounts\": 0,\n    \"addons\": [],\n    \"package\": {\n        \"name\": \"infoOptions\",\n        \"payments\": []\n    },\n    \"metadata\": {\n        \"country\": \"DE\",\n        \"package\": {\n            \"type\": \"array\",\n            \"options\": [\n                \"basis\",\n                \"komfort\",\n                \"premium\",\n                \"leasingZusatz\"\n            ]\n        },\n        \"addons\": {\n            \"type\": \"array\",\n            \"condition\": {\n                \"vehicleType\": \"E-Bike\",\n                \"preinstalledGps\": \"-\"\n            },\n            \"options\": [\n                \"gpsTracking\"\n            ]\n        },\n        \"vehicleType\": {\n            \"type\": \"array\",\n            \"options\": [\n                \"E-Bike\",\n                \"Fahrrad\"\n            ]\n        },\n        \"type\": {\n            \"type\": \"array\",\n            \"options\": [\n                \"Stadtrad\",\n                \"Lasten- / Transportrad\",\n                \"Mountainbike\",\n                \"Gravelbike / Rennrad\",\n                \"S-Pedelecs\",\n                \"Downhill- / Dirtbike\",\n                \"Sonstige\"\n            ]\n        },\n        \"bikeStatus\": {\n            \"type\": \"array\",\n            \"options\": [\n                \"Neu\",\n                \"Gebraucht\",\n                \"Dienstradanschluss\",\n                \"Leasingzusatz\"\n            ]\n        },\n        \"price\": {\n            \"type\": \"float\",\n            \"precision\": 2,\n            \"min\": 0,\n            \"max\": 20000\n        },\n        \"preinstalledGps\": {\n            \"type\": \"array\",\n            \"condition\": {\n                \"vehicleType\": \"E-Bike\"\n            },\n            \"options\": [\n                \"-\",\n                \"BikeFinder\",\n                \"Bosch ConnectModule\",\n                \"CaGo Me\",\n                \"Comodule\",\n                \"Corratec C-Finder\",\n                \"IT'S MY BIKE\",\n                \"My Boo Track &amp; Protect\",\n                \"Powunity\",\n                \"RX-Chip/RX Connect\",\n                \"UD #Smart 2.0 GPS-Tracker\",\n                \"Velco\",\n                \"Velomate\"\n            ]\n        },\n        \"policyStartDate\": {\n            \"type\": \"date\",\n            \"format\": \"YYYY-MM-DD\",\n            \"min\": \"now\",\n            \"max\": \"+1M\"\n        },\n        \"purchasedAt\": {\n            \"type\": \"date\",\n            \"format\": \"YYYY-MM-DD\",\n            \"min\": \"-39M\",\n            \"max\": \"now\"\n        }\n    },\n    \"requestData\": {\n        \"productName\": \"ebike2026_DE\",\n        \"values\": {},\n        \"package\": \"infoOptions\",\n        \"addons\": []\n    }\n}\n\n</code></pre>\n<p>infoPackages example request:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"productName\": \"ebike2026_DE\",\n    \"values\": {\n        \"paymentSchedule\": \"annual\",\n        \"policyStartDate\": \"2026-03-01\",\n        \"purchasedAt\": \"2026-02-12\",\n        \"price\": 600,\n        \"vehicleType\": \"E-Bike\",\n        \"bikeStatus\": \"Neu\",\n        \"type\": \"Stadtrad\",\n        \"preinstalledGps\": \"-\"\n    },\n    \"package\": \"infoPackages\",    // basis, komfort, premium, leasingZusatz // infoOptions, infoPackages\n    \"addons\": [\n    ]\n}   \n\n</code></pre>\n<p>infoPackages v2 example response:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"gross\": 0,\n    \"premium\": 0,\n    \"taxes\": 0,\n    \"premiumExclDiscounts\": 0,\n    \"taxesExclDiscounts\": 0,\n    \"grossExclDiscounts\": 0,\n    \"addons\": [\n        {\n            \"name\": \"gpsTracking\",\n            \"payments\": []\n        }\n    ],\n    \"package\": {\n        \"name\": \"infoPackages\",\n        \"payments\": []\n    },\n    \"metadata\": {\n        \"meta\": {\n            \"version\": \"1.1.0\",\n            \"countryCode\": \"DE\",\n            \"localeCode\": \"de-DE\",\n            \"currencyCode\": \"EUR\",\n            \"currencySymbol\": \"€\"\n        },\n        \"packages\": {\n            \"key\": \"package\",\n            \"type\": \"select\",\n            \"order\": 100,\n            \"label\": \"package\",\n            \"options\": [\n                {\n                    \"key\": \"basis\",\n                    \"type\": \"select\",\n                    \"order\": 200,\n                    \"label\": \"Basis\",\n                    \"termsAndConditions\": \"https://s3.eu-central-1.amazonaws.com/static.alteos.com/products/ebike2026/versions/2026_gps/Vertragsunterlagen_basis.pdf\",\n                    \"waitingPeriods\": [\n                        {\n                            \"key\": \"theft\",\n                            \"coverageKey\": \"diebstahlZubehoerAkku\",\n                            \"type\": \"waitingPeriod\",\n                            \"endDate\": \"2026-04-10\",\n                            \"label\": \"Wartezeit Diebstahl\",\n                            \"description\": \"Der Versicherungsschutz für Diebstahl beginnt erst nach Ablauf der vierwöchigen Frist.\"\n                        }\n                    ],\n                    \"premiums\": [\n                        {\n                            \"key\": \"monthly\",\n                            \"label\": \"Monatsbeitrag\",\n                            \"order\": 201,\n                            \"type\": \"number\",\n                            \"precision\": 2,\n                            \"value\": 5.8,\n                            \"upfrontDiscountAmount\": 0,\n                            \"upfrontDiscountPercentage\": 0\n                        },\n                        {\n                            \"key\": \"annual\",\n                            \"label\": \"Jahresbeitrag\",\n                            \"order\": 202,\n                            \"type\": \"number\",\n                            \"precision\": 2,\n                            \"value\": 60,\n                            \"upfrontDiscountAmount\": 9.6,\n                            \"upfrontDiscountPercentage\": 13.79\n                        },\n                        {\n                            \"key\": \"oneTime\",\n                            \"label\": \"Beitrag für 5 Jahre\",\n                            \"order\": 203,\n                            \"type\": \"number\",\n                            \"precision\": 2,\n                            \"value\": 255,\n                            \"upfrontDiscountAmount\": 93,\n                            \"upfrontDiscountPercentage\": 26.72\n                        }\n                    ],\n                    \"coverage\": [\n                        {\n                            \"key\": \"diebstahlZubehoerAkku\",\n                            \"order\": 220,\n                            \"type\": \"coverage\",\n                            \"label\": \"Diebstahl inkl. Zubehör &amp; Akku\",\n                            \"included\": true,\n                            \"detail\": null\n                        },\n                        {\n                            \"key\": \"einbruchdiebstahlRaub\",\n                            \"order\": 221,\n                            \"type\": \"coverage\",\n                            \"label\": \"Einbruchdiebstahl &amp; Raub\",\n                            \"included\": true,\n                            \"detail\": null\n                        },\n                        {\n                            \"key\": \"mobilitaetsschutz\",\n                            \"order\": 222,\n                            \"type\": \"coverage\",\n                            \"label\": \"Mobilitätsschutz\",\n                            \"included\": true,\n                            \"detail\": null\n                        },\n                        {\n                            \"key\": \"gewerblicheNutzung\",\n                            \"order\": 223,\n                            \"type\": \"coverage\",\n                            \"label\": \"Gewerbliche Nutzung\",\n                            \"included\": true,\n                            \"detail\": null\n                        },\n                        {\n                            \"key\": \"allgemeineSchaeden\",\n                            \"order\": 224,\n                            \"type\": \"coverage\",\n                            \"label\": \"Schäden an Elektronik, Sturz, Vandalismus, Natur\",\n                            \"included\": false,\n                            \"detail\": null\n                        },\n                        {\n                            \"key\": \"materialProduktionsfehler\",\n                            \"order\": 225,\n                            \"type\": \"coverage\",\n                            \"label\": \"Material- &amp; Produktionsfehler\",\n                            \"included\": false,\n                            \"detail\": null\n                        },\n                        {\n                            \"key\": \"bedienungsfehler\",\n                            \"order\": 226,\n                            \"type\": \"coverage\",\n                            \"label\": \"Bedienungsfehler\",\n                            \"included\": false,\n                            \"detail\": null\n                        },\n                        {\n                            \"key\": \"inflationsausgleich\",\n                            \"order\": 227,\n                            \"type\": \"coverage\",\n                            \"label\": \"Inflationsausgleich\",\n                            \"included\": false,\n                            \"detail\": null\n                        },\n                        {\n                            \"key\": \"ersatzradDiebstahlTotalschaden\",\n                            \"order\": 228,\n                            \"type\": \"coverage\",\n                            \"label\": \"Ersatzrad bei Diebstahl &amp; Totalschaden\",\n                            \"included\": false,\n                            \"detail\": null\n                        },\n                        {\n                            \"key\": \"verschleissVonEinzelteilen\",\n                            \"order\": 229,\n                            \"type\": \"coverage\",\n                            \"label\": \"Verschleiß von Einzelteilen\",\n                            \"included\": false,\n                            \"detail\": null\n                        },\n                        {\n                            \"key\": \"verschleissAkku\",\n                            \"order\": 230,\n                            \"type\": \"coverage\",\n                            \"label\": \"Verschleiß des Akkus\",\n                            \"included\": false,\n                            \"detail\": null\n                        },\n                        {\n                            \"key\": \"verschleissReifenUndBremsen\",\n                            \"order\": 231,\n                            \"type\": \"coverage\",\n                            \"label\": \"Verschleiß Reifen und Bremsen\",\n                            \"included\": false,\n                            \"detail\": null\n                        }\n                    ]\n                },\n                {\n                    \"key\": \"komfort\",\n                    \"type\": \"select\",\n                    \"order\": 300,\n                    \"label\": \"Komfort\",\n                    \"termsAndConditions\": \"https://s3.eu-central-1.amazonaws.com/static.alteos.com/products/ebike2026/versions/2026_gps/Vertragsunterlagen_komfort.pdf\",\n                    \"waitingPeriods\": [\n                        {\n                            \"key\": \"theft\",\n                            \"coverageKey\": \"diebstahlZubehoerAkku\",\n                            \"type\": \"waitingPeriod\",\n                            \"endDate\": \"2026-04-10\",\n                            \"label\": \"Wartezeit Diebstahl\",\n                            \"description\": \"Der Versicherungsschutz für Diebstahl beginnt erst nach Ablauf der vierwöchigen Frist.\"\n                        },\n                        {\n                            \"key\": \"wearAndTear\",\n                            \"coverageKey\": \"verschleissVonEinzelteilen\",\n                            \"type\": \"waitingPeriod\",\n                            \"endDate\": \"2026-09-13\",\n                            \"label\": \"Wartezeit Verschleiß\",\n                            \"description\": \"Der Versicherungsschutz für Verschleiß beginnt erst nach Ablauf von sechs Monaten.\"\n                        }\n                    ],\n                    \"premiums\": [\n                        {\n                            \"key\": \"monthly\",\n                            \"label\": \"Monatsbeitrag\",\n                            \"order\": 301,\n                            \"type\": \"number\",\n                            \"precision\": 2,\n                            \"value\": 6.2,\n                            \"upfrontDiscountAmount\": 0,\n                            \"upfrontDiscountPercentage\": 0\n                        },\n                        {\n                            \"key\": \"annual\",\n                            \"label\": \"Jahresbeitrag\",\n                            \"order\": 302,\n                            \"type\": \"number\",\n                            \"precision\": 2,\n                            \"value\": 65,\n                            \"upfrontDiscountAmount\": 9.4,\n                            \"upfrontDiscountPercentage\": 12.63\n                        },\n                        {\n                            \"key\": \"oneTime\",\n                            \"label\": \"Beitrag für 5 Jahre\",\n                            \"order\": 303,\n                            \"type\": \"number\",\n                            \"precision\": 2,\n                            \"value\": 280,\n                            \"upfrontDiscountAmount\": 92,\n                            \"upfrontDiscountPercentage\": 24.73\n                        }\n                    ],\n                    \"coverage\": [\n                        {\n                            \"key\": \"diebstahlZubehoerAkku\",\n                            \"order\": 320,\n                            \"type\": \"coverage\",\n                            \"label\": \"Diebstahl inkl. Zubehör &amp; Akku\",\n                            \"included\": true,\n                            \"detail\": null\n                        },\n                        {\n                            \"key\": \"einbruchdiebstahlRaub\",\n                            \"order\": 321,\n                            \"type\": \"coverage\",\n                            \"label\": \"Einbruchdiebstahl &amp; Raub\",\n                            \"included\": true,\n                            \"detail\": null\n                        },\n                        {\n                            \"key\": \"mobilitaetsschutz\",\n                            \"order\": 322,\n                            \"type\": \"coverage\",\n                            \"label\": \"Mobilitätsschutz\",\n                            \"included\": true,\n                            \"detail\": null\n                        },\n                        {\n                            \"key\": \"gewerblicheNutzung\",\n                            \"order\": 323,\n                            \"type\": \"coverage\",\n                            \"label\": \"Gewerbliche Nutzung\",\n                            \"included\": true,\n                            \"detail\": null\n                        },\n                        {\n                            \"key\": \"allgemeineSchaeden\",\n                            \"order\": 324,\n                            \"type\": \"coverage\",\n                            \"label\": \"Schäden an Elektronik, Sturz, Vandalismus, Natur\",\n                            \"included\": true,\n                            \"detail\": null\n                        },\n                        {\n                            \"key\": \"materialProduktionsfehler\",\n                            \"order\": 325,\n                            \"type\": \"coverage\",\n                            \"label\": \"Material- &amp; Produktionsfehler\",\n                            \"included\": true,\n                            \"detail\": null\n                        },\n                        {\n                            \"key\": \"bedienungsfehler\",\n                            \"order\": 326,\n                            \"type\": \"coverage\",\n                            \"label\": \"Bedienungsfehler\",\n                            \"included\": true,\n                            \"detail\": null\n                        },\n                        {\n                            \"key\": \"verschleissVonEinzelteilen\",\n                            \"order\": 327,\n                            \"type\": \"coverage\",\n                            \"label\": \"Verschleiß von Einzelteilen\",\n                            \"included\": true,\n                            \"detail\": \"Bis zu 150€ pro Jahr\"\n                        },\n                        {\n                            \"key\": \"verschleissAkku\",\n                            \"order\": 328,\n                            \"type\": \"coverage\",\n                            \"label\": \"Verschleiß des Akkus\",\n                            \"included\": false,\n                            \"detail\": null\n                        },\n                        {\n                            \"key\": \"verschleissReifenUndBremsen\",\n                            \"order\": 329,\n                            \"type\": \"coverage\",\n                            \"label\": \"Verschleiß Reifen und Bremsen\",\n                            \"included\": false,\n                            \"detail\": null\n                        },\n                        {\n                            \"key\": \"inflationsausgleich\",\n                            \"order\": 330,\n                            \"type\": \"coverage\",\n                            \"label\": \"Inflationsausgleich\",\n                            \"included\": false,\n                            \"detail\": null\n                        },\n                        {\n                            \"key\": \"ersatzradDiebstahlTotalschaden\",\n                            \"order\": 331,\n                            \"type\": \"coverage\",\n                            \"label\": \"Ersatzrad bei Diebstahl &amp; Totalschaden\",\n                            \"included\": false,\n                            \"detail\": null\n                        }\n                    ]\n                },\n                {\n                    \"key\": \"premium\",\n                    \"type\": \"select\",\n                    \"order\": 400,\n                    \"label\": \"Premium\",\n                    \"termsAndConditions\": \"https://s3.eu-central-1.amazonaws.com/static.alteos.com/products/ebike2026/versions/2026_gps/Vertragsunterlagen_premium.pdf\",\n                    \"premiums\": [\n                        {\n                            \"key\": \"monthly\",\n                            \"label\": \"Monatsbeitrag\",\n                            \"order\": 401,\n                            \"type\": \"number\",\n                            \"precision\": 2,\n                            \"value\": 6.7,\n                            \"upfrontDiscountAmount\": 0,\n                            \"upfrontDiscountPercentage\": 0\n                        },\n                        {\n                            \"key\": \"annual\",\n                            \"label\": \"Jahresbeitrag\",\n                            \"order\": 402,\n                            \"type\": \"number\",\n                            \"precision\": 2,\n                            \"value\": 70,\n                            \"upfrontDiscountAmount\": 10.4,\n                            \"upfrontDiscountPercentage\": 12.94\n                        },\n                        {\n                            \"key\": \"oneTime\",\n                            \"label\": \"Beitrag für 5 Jahre\",\n                            \"order\": 403,\n                            \"type\": \"number\",\n                            \"precision\": 2,\n                            \"value\": 300,\n                            \"upfrontDiscountAmount\": 102,\n                            \"upfrontDiscountPercentage\": 25.37\n                        }\n                    ],\n                    \"coverage\": [\n                        {\n                            \"key\": \"diebstahlZubehoerAkku\",\n                            \"order\": 420,\n                            \"type\": \"coverage\",\n                            \"label\": \"Diebstahl inkl. Zubehör &amp; Akku\",\n                            \"included\": true,\n                            \"detail\": null\n                        },\n                        {\n                            \"key\": \"einbruchdiebstahlRaub\",\n                            \"order\": 421,\n                            \"type\": \"coverage\",\n                            \"label\": \"Einbruchdiebstahl &amp; Raub\",\n                            \"included\": true,\n                            \"detail\": null\n                        },\n                        {\n                            \"key\": \"mobilitaetsschutz\",\n                            \"order\": 422,\n                            \"type\": \"coverage\",\n                            \"label\": \"Mobilitätsschutz\",\n                            \"included\": true,\n                            \"detail\": null\n                        },\n                        {\n                            \"key\": \"allgemeineSchaeden\",\n                            \"order\": 423,\n                            \"type\": \"coverage\",\n                            \"label\": \"Schäden an Elektronik und durch Sturz, Unfall, Vandalismus, Feuchtigkeit, Naturgewalten\",\n                            \"included\": true,\n                            \"detail\": null\n                        },\n                        {\n                            \"key\": \"materialProduktionsfehler\",\n                            \"order\": 424,\n                            \"type\": \"coverage\",\n                            \"label\": \"Material- &amp; Produktionsfehler\",\n                            \"included\": true,\n                            \"detail\": null\n                        },\n                        {\n                            \"key\": \"bedienungsfehler\",\n                            \"order\": 425,\n                            \"type\": \"coverage\",\n                            \"label\": \"Bedienungsfehler\",\n                            \"included\": true,\n                            \"detail\": null\n                        },\n                        {\n                            \"key\": \"verschleissVonEinzelteilen\",\n                            \"order\": 426,\n                            \"type\": \"coverage\",\n                            \"label\": \"Verschleiß von Einzelteilen\",\n                            \"included\": true,\n                            \"detail\": null\n                        },\n                        {\n                            \"key\": \"verschleissAkku\",\n                            \"order\": 427,\n                            \"type\": \"coverage\",\n                            \"label\": \"Verschleiß des Akkus\",\n                            \"included\": true,\n                            \"detail\": null\n                        },\n                        {\n                            \"key\": \"verschleissReifenUndBremsen\",\n                            \"order\": 428,\n                            \"type\": \"coverage\",\n                            \"label\": \"Verschleiß Reifen und Bremsen\",\n                            \"included\": false,\n                            \"detail\": null\n                        },\n                        {\n                            \"key\": \"inflationsausgleich\",\n                            \"order\": 429,\n                            \"type\": \"coverage\",\n                            \"label\": \"Inflationsausgleich\",\n                            \"included\": true,\n                            \"detail\": null\n                        },\n                        {\n                            \"key\": \"ersatzradDiebstahlTotalschaden\",\n                            \"order\": 430,\n                            \"type\": \"coverage\",\n                            \"label\": \"Ersatzrad bei Diebstahl &amp; Totalschaden\",\n                            \"included\": true,\n                            \"detail\": null\n                        },\n                        {\n                            \"key\": \"gewerblicheNutzung\",\n                            \"order\": 431,\n                            \"type\": \"coverage\",\n                            \"label\": \"Gewerbliche Nutzung\",\n                            \"included\": false,\n                            \"detail\": null\n                        }\n                    ]\n                }\n            ],\n            \"rules\": {\n                \"required\": true\n            }\n        },\n        \"addons\": {\n            \"key\": \"addons\",\n            \"type\": \"select\",\n            \"order\": 500,\n            \"label\": \"Zusatzleistungen\",\n            \"options\": [\n                {\n                    \"key\": \"gpsTracking\",\n                    \"order\": 510,\n                    \"label\": \"GPS-Tracker ITS MY BIKE\",\n                    \"value\": \"gpsTracking\",\n                    \"premiums\": [\n                        {\n                            \"key\": \"monthly\",\n                            \"order\": 511,\n                            \"label\": \"Monatlich\",\n                            \"value\": 1.5,\n                            \"grossPremium\": 1.5\n                        },\n                        {\n                            \"key\": \"annual\",\n                            \"order\": 512,\n                            \"label\": \"Jährlich\",\n                            \"value\": 18,\n                            \"grossPremium\": 18\n                        },\n                        {\n                            \"key\": \"oneTime\",\n                            \"order\": 513,\n                            \"label\": \"5 Jahre vorab, anschließend jährlich\",\n                            \"value\": 90,\n                            \"grossPremium\": 90\n                        }\n                    ]\n                }\n            ],\n            \"rules\": {\n                \"required\": true\n            }\n        },\n        \"consents\": {\n            \"key\": \"consents\",\n            \"type\": \"multiselect\",\n            \"order\": 600,\n            \"label\": \"Einwilligungen\",\n            \"options\": [\n                {\n                    \"key\": \"customerPortalConsent\",\n                    \"type\": \"checkbox\",\n                    \"order\": 610,\n                    \"label\": \"Einwilligung zur Nutzung des Kunden Portals\",\n                    \"description\": \"Ich habe die [Nutzungsbedingungen] gelesen und erkläre mich mit diesen einverstanden. Zudem bestätige ich, die [Datenschutzhinweise] zur Kenntnis genommen zu haben.\",\n                    \"links\": [\n                        {\n                            \"placeholder\": \"Nutzungsbedingungen\",\n                            \"url\": \"https://s3.eu-central-1.amazonaws.com/static.alteos.com/legal/nutzungsbedingungen_portal.pdf\",\n                            \"target\": \"_blank\"\n                        },\n                        {\n                            \"placeholder\": \"Datenschutzhinweise\",\n                            \"url\": \"https://s3.eu-central-1.amazonaws.com/static.alteos.com/legal/datenschutzhinweise_portal.pdf\",\n                            \"target\": \"_blank\"\n                        }\n                    ],\n                    \"rules\": {\n                        \"required\": false\n                    }\n                }\n            ]\n        }\n    },\n    \"requestData\": {\n        \"productName\": \"ebike2026_DE\",\n        \"values\": {\n            \"policyStartDate\": \"2026-03-13\",\n            \"paymentSchedule\": \"monthly\",\n            \"price\": 499,\n            \"type\": \"Stadtrad\",\n            \"purchasedAt\": \"2024-02-13\",\n            \"vehicleType\": \"E-Bike\",\n            \"preinstalledGps\": \"-\",\n            \"bikeStatus\": \"Neu\"\n        },\n        \"package\": \"infoPackages\",\n        \"addons\": [\n            \"gpsTracking\"\n        ]\n    }\n}\n\n</code></pre>\n<p>infoPackages v1 example response:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"gross\": 0,\n    \"premium\": 0,\n    \"taxes\": 0,\n    \"premiumExclDiscounts\": 0,\n    \"taxesExclDiscounts\": 0,\n    \"grossExclDiscounts\": 0,\n    \"addons\": [],\n    \"package\": {\n        \"name\": \"infoPackages\",\n        \"payments\": []\n    },\n    \"metadata\": {\n        \"country\": \"DE\",\n        \"packages\": [\n            {\n                \"packageName\": \"basis\",\n                \"displayName\": \"Basis\",\n                \"termsAndConditions\": \"https://s3.eu-central-1.amazonaws.com/static.alteos.com/products/ebike2026/versions/2026_gps/Vertragsunterlagen_basis.pdf\",\n                \"premiums\": {\n                    \"monthly\": {\n                        \"displayName\": \"Monatlich\",\n                        \"grossPremium\": 8.1,\n                        \"upfrontDiscountAmount\": 0,\n                        \"upfrontDiscountPercentage\": 0\n                    },\n                    \"annual\": {\n                        \"displayName\": \"Jährlich\",\n                        \"grossPremium\": 85,\n                        \"upfrontDiscountAmount\": 12.2,\n                        \"upfrontDiscountPercentage\": 12.55\n                    },\n                    \"oneTime\": {\n                        \"displayName\": \"5 Jahre vorab, anschließend jährlich\",\n                        \"grossPremium\": 365,\n                        \"upfrontDiscountAmount\": 121,\n                        \"upfrontDiscountPercentage\": 24.9\n                    }\n                }\n            },\n            {\n                \"packageName\": \"komfort\",\n                \"displayName\": \"Komfort\",\n                \"termsAndConditions\": \"https://s3.eu-central-1.amazonaws.com/static.alteos.com/products/ebike2026/versions/2026_gps/Vertragsunterlagen_komfort.pdf\",\n                \"premiums\": {\n                    \"monthly\": {\n                        \"displayName\": \"Monatlich\",\n                        \"grossPremium\": 9.1,\n                        \"upfrontDiscountAmount\": 0,\n                        \"upfrontDiscountPercentage\": 0\n                    },\n                    \"annual\": {\n                        \"displayName\": \"Jährlich\",\n                        \"grossPremium\": 95,\n                        \"upfrontDiscountAmount\": 14.2,\n                        \"upfrontDiscountPercentage\": 13\n                    },\n                    \"oneTime\": {\n                        \"displayName\": \"5 Jahre vorab, anschließend jährlich\",\n                        \"grossPremium\": 405,\n                        \"upfrontDiscountAmount\": 141,\n                        \"upfrontDiscountPercentage\": 25.82\n                    }\n                }\n            },\n            {\n                \"packageName\": \"premium\",\n                \"displayName\": \"Premium\",\n                \"termsAndConditions\": \"https://s3.eu-central-1.amazonaws.com/static.alteos.com/products/ebike2026/versions/2026_gps/Vertragsunterlagen_premium.pdf\",\n                \"premiums\": {\n                    \"monthly\": {\n                        \"displayName\": \"Monatlich\",\n                        \"grossPremium\": 10.1,\n                        \"upfrontDiscountAmount\": 0,\n                        \"upfrontDiscountPercentage\": 0\n                    },\n                    \"annual\": {\n                        \"displayName\": \"Jährlich\",\n                        \"grossPremium\": 105,\n                        \"upfrontDiscountAmount\": 16.2,\n                        \"upfrontDiscountPercentage\": 13.37\n                    },\n                    \"oneTime\": {\n                        \"displayName\": \"5 Jahre vorab, anschließend jährlich\",\n                        \"grossPremium\": 450,\n                        \"upfrontDiscountAmount\": 156,\n                        \"upfrontDiscountPercentage\": 25.74\n                    }\n                }\n            }\n        ],\n        \"addons\": [\n            {\n                \"addonName\": \"gpsTracking\",\n                \"displayName\": \"GPS-Tracking\",\n                \"premiums\": {\n                    \"monthly\": {\n                        \"displayName\": \"Monatlich\",\n                        \"grossPremium\": 1.5\n                    },\n                    \"annual\": {\n                        \"displayName\": \"Jährlich\",\n                        \"grossPremium\": 18\n                    },\n                    \"oneTime\": {\n                        \"displayName\": \"5 Jahre vorab, anschließend jährlich\",\n                        \"grossPremium\": 90\n                    }\n                }\n            }\n        ],\n        \"coverages\": [\n            {\n                \"basis\": {\n                    \"Diebstahl inkl. Zubehör &amp; Akku\": true,\n                    \"Einbruchdiebstahl &amp; Raub\": true,\n                    \"Mobilitätsschutz\": true,\n                    \"Gewerbliche Nutzung\": true,\n                    \"Schäden an Elektronik und durch Sturz, Unfall, Vandalismus, Feuchtigkeit, Naturgewalten\": false,\n                    \"Material- &amp; Produktionsfehler\": false,\n                    \"Bedienungsfehler\": false,\n                    \"Verschleiß von Einzelteilen\": false,\n                    \"Verschleiß des Akkus\": false,\n                    \"Inflationsausgleich\": false,\n                    \"Ersatzrad bei Diebstahl &amp; Totalschaden\": false\n                }\n            },\n            {\n                \"komfort\": {\n                    \"Diebstahl inkl. Zubehör &amp; Akku\": true,\n                    \"Einbruchdiebstahl &amp; Raub\": true,\n                    \"Mobilitätsschutz\": true,\n                    \"Gewerbliche Nutzung\": true,\n                    \"Schäden an Elektronik und durch Sturz, Unfall, Vandalismus, Feuchtigkeit, Naturgewalten\": true,\n                    \"Material- &amp; Produktionsfehler\": true,\n                    \"Bedienungsfehler\": true,\n                    \"Verschleiß von Einzelteilen bis 150€ pro Jahr\": true,\n                    \"Verschleiß des Akkus\": false,\n                    \"Inflationsausgleich\": false,\n                    \"Ersatzrad bei Diebstahl &amp; Totalschaden\": false\n                }\n            },\n            {\n                \"premium\": {\n                    \"Diebstahl inkl. Zubehör &amp; Akku\": true,\n                    \"Einbruchdiebstahl &amp; Raub\": true,\n                    \"Mobilitätsschutz\": true,\n                    \"Schäden an Elektronik und durch Sturz, Unfall, Vandalismus, Feuchtigkeit, Naturgewalten\": true,\n                    \"Material- &amp; Produktionsfehler\": true,\n                    \"Bedienungsfehler\": true,\n                    \"Verschleiß von Einzelteilen\": true,\n                    \"Verschleiß des Akkus\": true,\n                    \"Inflationsausgleich\": true,\n                    \"Ersatzrad bei Diebstahl &amp; Totalschaden\": true,\n                    \"Gewerbliche Nutzung\": true\n                }\n            }\n        ]\n    },\n    \"requestData\": {\n        \"productName\": \"ebike2026_DE\",\n        \"values\": {\n            \"paymentSchedule\": \"annual\",\n            \"policyStartDate\": \"2026-03-01\",\n            \"purchasedAt\": \"2026-02-12\",\n            \"price\": 600,\n            \"vehicleType\": \"E-Bike\",\n            \"bikeStatus\": \"Neu\",\n            \"type\": \"Stadtrad\",\n            \"preinstalledGps\": \"-\"\n        },\n        \"package\": \"infoPackages\",\n        \"addons\": []\n    }\n}\n\n</code></pre>\n<p>All other packages</p>\n<p>basis, komfort, premium, leasingZusatz</p>\n<p>Use these packages to retrieve information for a specific insurance offer.</p>\n<p>Parameters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th><strong>Mandatory/Optional</strong>  <br />(Data type)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>productName</td>\n<td><strong>Mandatory  <br /></strong>(string)</td>\n<td><strong>\"ebike2026_DE\",  <br />\"ebike2026_AT\"</strong></td>\n</tr>\n<tr>\n<td>policyStartDate</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>States the date at which the police starts  <br />  <br />Format: YYYY-MM-DD  <br />  <br />Minimum starting date:  <br />current date (today)  <br />Maximum starting date:  <br />3 months from current date  <br />  <br /><strong>e.g. \"2025-10-28\"</strong></td>\n</tr>\n<tr>\n<td>paymentSchedule</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Specifies the intervalls at which the insurance premium is paid  <br />  <br /><strong>Possible values:  <br />\"monthly\"  <br />\"annual\"</strong>  <br /><strong>\"oneTime\"</strong> (upfront payment for the first five years followed by annual payments)</td>\n</tr>\n<tr>\n<td>price</td>\n<td><strong>Mandatory</strong>  <br />(number)</td>\n<td>Price of the insured (E-)Bike (in EUR)  <br />  <br />max: 20000  <br />  <br /><strong>e.g. \"5786.32\"</strong></td>\n</tr>\n<tr>\n<td>purchasedAt</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>Purchase date of the insured E-Bike  <br />  <br />YYYY-MM-DD format  <br />  <br />- Max 39 months in the past (only 3 months in the past for bikeStatus = 'LeasingZusatz')  <br />  <br />- if the bike is older than 1 year, \"premiumschutz\" package is not available  <br />- for bikeStatus = 'Dienstradanschlussversicherung' and 'Leasingzusatz': this represents the start date of the leasing contract  <br />  <br /><strong>e.g. \"2025-08-26\"</strong></td>\n</tr>\n<tr>\n<td>vehicleType</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Specifies what type of object is insured  <br />  <br /><strong>Possible values:  <br />\"Fahrrad\"  <br />\"E-Bike\"</strong>  <br />  <br />Note that addon \"gpsTracking\" is not available if vehicleType \"Fahrrad\" selected.</td>\n</tr>\n<tr>\n<td>preinstalledGps</td>\n<td><strong>Optional</strong>  <br />(select)</td>\n<td>Specifies if, and if yes which, GPS tracker is already used  <br />  <br />Note that no gpsTracking addon is available if a preinstalledGps is selected  <br />  <br /><strong>Possible values:  <br />\"-\"</strong> <strong>(no GPS tracker used)</strong>  <br /><strong>\"BikeFinder\"  <br />\"Bosch ConnectModule\"  <br />\"CaGo Me\"  <br />Comodule\"  <br />\"Corratec C-Finder\"  <br />\"IT'S MY BIKE\"  <br />\"My Boo Track &amp; Protect\"  <br />\"Powunity\"  <br />\"RX-Chip/RX-Connect\"  <br />\"UD #Smart 2.0 GPS-Tracker\"  <br />\"Velco\"  <br />\"Velomate\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p>Packages and addons</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>package</td>\n<td>Type of coverage selected  <br />  <br /><strong>Possible values:</strong>  <br /><strong>\"info\"</strong> (for information about all available offers),  <br />Actual packages:  <br /><strong>\"basis\"  <br />\"komfort\"  <br />\"premium\"</strong>  <br /><strong>\"leasingZusatz\"</strong></td>\n</tr>\n<tr>\n<td>addons</td>\n<td>List of selected policy-addons  <br />(empty array, if none selected)  <br />  <br /><strong>Possible addons:  <br />\"gpsTracking\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies","quote"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"3dda58fc-f006-48cb-b0a5-ba33cf4d7e8d","name":"Successful Quotation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike2026_DE\",\n    \"values\": {\n        \"price\":           1500.01,\n        \"policyStartDate\": \"2026-01-01\",\n        \"purchasedAt\":     \"2025-01-01\",\n        \"paymentSchedule\": \"monthly\",\n        \"preinstalledGps\": \"BikeFinder\" // optional\n    },\n    \"package\": \"komfort\",\n    \"addons\": []\n} ","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 3.75,\n    \"premium\": 3.15,\n    \"taxes\": 0.6,\n    \"premiumExclDiscounts\": 3.15,\n    \"taxesExclDiscounts\": 0.6,\n    \"grossExclDiscounts\": 3.75,\n    \"addons\": [],\n    \"package\": {\n        \"name\": \"komfort\",\n        \"payments\": [\n            {\n                \"premium\": 3.15,\n                \"tax\": 0.6\n            }\n        ],\n        \"gross\": 3.75\n    },\n    \"metadata\": {\n        \"preinstalledGPSReduction\": 0.38,\n        \"availablePaymentSchedules\": [\n            \"monthly\",\n            \"annual\",\n            \"oneTime\"\n        ],\n        \"availablePackages\": [\n            \"basis\",\n            \"komfort\",\n            \"premium\",\n            \"leasingZusatz\"\n        ],\n        \"availableAddons\": [\n            \"gpsTracking\"\n        ],\n        \"monthlyRatesDE\": [\n            {\n                \"Basis\": 3.57\n            },\n            {\n                \"Komfort\": 4.165\n            },\n            {\n                \"Premium\": 10.71\n            },\n            {\n                \"LeasingZusatz\": -1\n            },\n            {\n                \"gpsTracking\": 1.5\n            }\n        ],\n        \"annualRatesDE\": [\n            {\n                \"Basis\": 42.84\n            },\n            {\n                \"Komfort\": 49.98\n            },\n            {\n                \"Premium\": 128.52\n            },\n            {\n                \"LeasingZusatz\": -1\n            },\n            {\n                \"gpsTracking\": 18\n            }\n        ],\n        \"oneTimeRatesDE\": [\n            {\n                \"Basis\": 214.2\n            },\n            {\n                \"Komfort\": 249.9\n            },\n            {\n                \"Premium\": 642.6\n            },\n            {\n                \"LeasingZusatz\": -1\n            },\n            {\n                \"gpsTracking\": 90\n            }\n        ]\n    },\n    \"requestData\": {\n        \"productName\": \"ebike2026_DE\",\n        \"values\": {\n            \"policyStartDate\": \"2025-12-17\",\n            \"paymentSchedule\": \"monthly\",\n            \"price\": \"1500.01\",\n            \"purchasedAt\": \"2025-05-13\",\n            \"vehicleType\": \"E-Bike\",\n            \"preinstalledGps\": \"BikeFinder\"\n        },\n        \"package\": \"komfort\",\n        \"addons\": []\n    }\n}"},{"id":"72e367a5-929b-4bce-b84c-cb245e02eee0","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike2024\",\n    \"values\": {\n        \"policyStartDate\": \"2024-02-12\",\n        \"paymentSchedule\": \"oneTime\",\n        \"price\": \"1000.01-1500.00\",\n        \"purchasedAt\": \"2024-02-12\",\n        \"vehicleType\": \"E-Bike\"\n\n    },\n    \"package\": \"diebstahlschutz\",\n    \"addons\": [\n        \"gpsTracking\"\n    ]\n}   ","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"9cd4c59b-402c-4f54-8f04-dc8ec3941ddb"},{"name":"eBike NL Product B2C | 2025","id":"91d0903f-4acd-4630-98d2-15b49975b229","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-App-Key","value":"{{appKeyAlteos}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike-netherlands\",\n    \"values\": {\n        \"policyStartDate\": \"2025-10-17\",\n        \"paymentSchedule\": \"monthly\",\n        \"price\": \"1750.01-2000.00\",\n        \"vehicleType\": \"E-Bike\",\n        \"addressZip\": \"4286CB\",\n        \"type\":\"Gravelbike / Racefiets\"\n    },\n    \"package\": \"theft\",\n    \"addons\": []\n}   "},"url":"https://api.sandbox.alteos.com/v2/policies/quote","description":"<p>Use this API to retrieve the quote for the eBike Netherlands Product.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory / Optional  <br />(data type)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>productName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Name of the product  <br />  <br /><strong>Possible values:</strong>  <br /><strong>\"ebike-netherlands\"</strong></td>\n</tr>\n<tr>\n<td>policyStartDate</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>Start date of the policy  <br />  <br />Format: YYYY-MM-DD  <br />  <br />  <br />- Date of handover of the bike or up to four weeks later.  <br />- Coverage starts on this day.  <br />- Minimum Date: 1 day before today  <br />- Maximum Date: 1 month in the future  <br />  <br /><strong>e.g. \"2024-12-01\"</strong></td>\n</tr>\n<tr>\n<td>paymentSchedule</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Defines the preferred payment schedule for the contract. The contract has a default duration of 5 years unless canceled earlier by the customer.  <br />  <br /><strong>- monthly</strong>: The customer pays each month for 5 years.  <br />- <strong>annual</strong>: The customer pays once every year for 5 years.  <br />- <strong>3years</strong>: The customer makes an upfront payment for the first 3 years, followed by two annual payments for the remaining 2 years.  <br />- <strong>oneTime</strong>: The customer makes a single upfront payment for the entire 5-year period  <br />  <br /><strong>Possible values:  <br />\"monthly\"  <br />\"annual\"  <br />\"3years\"  <br />\"oneTime\"</strong></td>\n</tr>\n<tr>\n<td>addressZip</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Postal code of the customer's address  <br />  <br /><strong>e.g. \"4286CB\"</strong></td>\n</tr>\n<tr>\n<td>price</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Price of the insured E-Bike (in 250 EUR increments)  <br />  <br />max: 15.000 EUR  <br />  <br /><strong>Possible values:  <br />\"0.00-250.00\"  <br />\"250.01-500.00\"  <br />\"500.01-750.00\"  <br />...  <br />\"14750.01-15000.00\"</strong></td>\n</tr>\n<tr>\n<td>vehicleType</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Specifies the type of the insured bike  <br />  <br /><strong>Possible values:  <br />\"Fiets\"  <br />\"E-Bike\"</strong>  <br />  <br />Note: GPS addon is not available if \"Fiets\" has been selected.</td>\n</tr>\n<tr>\n<td>type</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Further specifies the type of the insured bike.  <br />Deductibles are depending on bike type.  <br />  <br /><strong>Possible values:  <br />\"Bakfiets / transportfiets\"  <br />\"Mountainbike\"  <br />\"Gravelbike / Racefiets\"  <br />\"Stadfiets\"  <br />\"Andere Fietsen\"</strong></td>\n</tr>\n<tr>\n<td>package</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Package that controlls the insured risks  <br />  <br /><strong>Possible values:  <br />\"theft\"  <br />\"casco\"  <br />\"warranty\"</strong></td>\n</tr>\n<tr>\n<td>addons</td>\n<td><strong>Mandatory</strong></td>\n<td>Select the \"gpsTrackingIoT\" addon to get an \"IT'S MY BIKE\" GPS device from IoT Venture bundled to the insurance.  <br />  <br /><strong>Possible values:  <br />\"gpsTrackingIoT\"</strong> (only available for \"theft\" and \"casco\" package)</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies","quote"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"0df55a48-ccdd-4635-9203-9e207ad0a8a4","name":"Successful Quotation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike-netherlands\",\n    \"values\": {\n        \"policyStartDate\": \"2025-10-17\",\n        \"paymentSchedule\": \"monthly\",\n        \"price\": \"1750.01-2000.00\",\n        \"vehicleType\": \"E-Bike\",\n        \"addressZip\": \"4286CB\",\n        \"type\":\"Gravelbike / Racefiets\"\n    },\n    \"package\": \"theft\",\n    \"addons\": []\n}   ","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 5.3,\n    \"premium\": 4.38,\n    \"taxes\": 0.92,\n    \"premiumExclDiscounts\": 4.38,\n    \"taxesExclDiscounts\": 0.92,\n    \"grossExclDiscounts\": 5.3,\n    \"addons\": [],\n    \"package\": {\n        \"name\": \"theft\",\n        \"payments\": [\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            },\n            {\n                \"premium\": 4.38,\n                \"tax\": 0.92\n            }\n        ],\n        \"gross\": 5.3\n    },\n    \"metadata\": {\n        \"commissionValue\": 0.88,\n        \"commissionCurrency\": \"EUR\",\n        \"preinstalledGPSReductionValue\": 0,\n        \"preinstalledGPSReductionCurrency\": \"EUR\",\n        \"deductibleTheftPercentage\": 20,\n        \"descriptionDeductibleTheft\": \"Het eigen risico bij diefstal bedraagt 20% van het verzekerde bedrag\",\n        \"deductibleDamageMinimumCurrency\": \"EUR\"\n    },\n    \"requestData\": {\n        \"productName\": \"ebike-netherlands\",\n        \"values\": {\n            \"policyStartDate\": \"2025-10-17\",\n            \"paymentSchedule\": \"monthly\",\n            \"price\": \"1750.01-2000.00\",\n            \"vehicleType\": \"E-Bike\",\n            \"addressZip\": \"4286CB\",\n            \"type\": \"Gravelbike / Racefiets\"\n        },\n        \"package\": \"theft\",\n        \"addons\": []\n    }\n}"},{"id":"aa09a371-8b6e-4cfe-93c4-320477273e2c","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebikeNetherlands\",\n    \"values\": {\n        \"policyStartDate\": \"2024-05-21\",\n        \"paymentSchedule\": \"annual\",\n        \"price\": \"14750.01-15000.00\",\n        \"purchasedAt\": \"2024-05-21\",\n        \"vehicleType\": \"E-Bike\",\n        \"insuredObjectPlz\": \"1234AB\"\n    },\n    \"package\": \"garantiePlus\",\n    \"addons\": [\n        \n        \n\n    ]\n}   ","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"91d0903f-4acd-4630-98d2-15b49975b229"},{"name":"eBike NLM Product B2C | 2026","id":"55d7c08d-57bd-4046-bc88-a59a01683726","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-App-Key","value":"{{appKeyAlteos}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike-netherlands-mantel\",\n    \"values\": {\n        \"policyStartDate\": \"2026-04-01\",\n        \"paymentSchedule\": \"annual\",\n        \"price\": \"500.01-750.00\",\n        \"vehicleType\": \"E-Bike\",\n        \"type\":\"Mountain bike\",\n        \"preinstalledGps\":\"-\",\n        \"addressZip\": \"1012GX\"        \n    },\n    \"package\": \"theft\",\n    \"addons\": []\n}  "},"url":"https://api.sandbox.alteos.com/v2/policies/quote","description":"<p>Use this API to retrieve the quote for the eBike Netherlands Product.</p>\n<p><strong>Name of the product</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th>Mandatory / Optional  <br />(data type)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>productName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Name of the product  <br />  <br /><strong>\"ebike-netherlands-mantel\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Values</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory / Optional  <br />(data type)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>policyStartDate</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>Start date of the policy  <br />  <br />Format: YYYY-MM-DD  <br />  <br />  <br />- Date of handover of the bike or up to four weeks later.  <br />- Coverage starts on this day.  <br />- Minimum Date: 1 day before today  <br />- Maximum Date: 1 month in the future  <br />  <br /><strong>example:  <br />\"2026-04-01\"</strong></td>\n</tr>\n<tr>\n<td>paymentSchedule</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Defines the preferred payment schedule for the contract. The contract has a default duration of 5 years unless canceled earlier by the customer.  <br />  <br /><strong>- monthly</strong>: The customer pays each month for 5 years.  <br />- <strong>annual</strong>: The customer pays once every year for 5 years.  <br />- <strong>oneTime</strong>: The customer makes a single upfront payment for the entire 5-year period  <br />  <br /><strong>Possible values:  <br />\"monthly\"  <br />\"annual\"  <br />\"oneTime\"</strong></td>\n</tr>\n<tr>\n<td>price</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Price of the insured E-Bike (in 250 EUR increments)  <br />  <br />max: 15.000 EUR  <br />  <br /><strong>Possible values:  <br />\"0.00-250.00\"  <br />\"250.01-500.00\"  <br />\"500.01-750.00\"  <br />...  <br />\"14750.01-15000.00\"</strong></td>\n</tr>\n<tr>\n<td>vehicleType</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Specifies the type of the insured bike  <br />  <br /><strong>Possible values:  <br />\"Bike\"  <br />\"E-Bike\"</strong>  <br />  <br />Note: GPS addon is not available if \"Fiets\" has been selected.</td>\n</tr>\n<tr>\n<td>type</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Further specifies the type of the insured bike.  <br />Deductibles are depending on bike type.  <br />  <br /><strong>Possible values:</strong>  <br /><strong>\"Cargo bike\"  <br />\"Mountain bike\"  <br />\"Gravel bike / Road bike\"  <br />\"Others\"</strong></td>\n</tr>\n<tr>\n<td>preinstalledGps</td>\n<td><strong>Optional</strong>  <br />(select)</td>\n<td>Select field which controls discounts for preinstalled GPS trackers (by brand).  <br />  <br /><strong>Possible values:  <br />\"-\" (no preinstalled GPS)</strong>  <br /><strong>\"Bosch ConnectModule\"</strong>  <br /><strong>\"IT'S MY BIKE\"  <br /></strong>\"<strong>Comodule</strong>\"  <br />\"<strong>Tracefy</strong>\"  <br /><strong>\"AXA Smart Guard\"  <br />\"Van Moof\"  <br />\"RX-Chip\"  <br />\"Specialized - Apple Find My\"</strong></td>\n</tr>\n<tr>\n<td>addressZip</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Postal code of the customer's address  <br />  <br /><strong>example:  <br />\"1012GX\" , \"1012 GX\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Packages</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Mandatory / Optional  <br />(data type)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>package</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Type of coverage  <br />  <br /><strong>Possible values:  <br />\"theft\"  <br />\"casco\"</strong></td>\n</tr>\n<tr>\n<td>addons</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>List of selected policy-addons (can be an empty array, if no addons are selected).  <br />Mandatory for  <br />Sport Bikes (Mountain bike or Gravel bike) from Urban Arrow.  <br /><strong>Possible values:  <br />\"gpsTracking\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies","quote"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"fbe51e1a-4a02-4d9e-8c09-33e2680b1001","name":"Successful Quotation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike-netherlands-mantel\",\n    \"values\": {\n        \"policyStartDate\": \"2026-04-01\",\n        \"paymentSchedule\": \"annual\",\n        \"price\": \"500.01-750.00\",\n        \"vehicleType\": \"E-Bike\",\n        \"type\":\"Mountain bike\",\n        \"preinstalledGps\":\"-\",\n        \"addressZip\": \"1012GX\"        \n    },\n    \"package\": \"theft\",\n    \"addons\": []\n}  ","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 160.95,\n    \"premium\": 133.02,\n    \"taxes\": 27.93,\n    \"premiumExclDiscounts\": 133.02,\n    \"taxesExclDiscounts\": 27.93,\n    \"grossExclDiscounts\": 160.95,\n    \"addons\": [],\n    \"package\": {\n        \"name\": \"theft\",\n        \"payments\": [\n            {\n                \"premium\": 133.02,\n                \"tax\": 27.93\n            },\n            {\n                \"premium\": 133.02,\n                \"tax\": 27.93\n            },\n            {\n                \"premium\": 133.02,\n                \"tax\": 27.93\n            },\n            {\n                \"premium\": 133.02,\n                \"tax\": 27.93\n            },\n            {\n                \"premium\": 133.02,\n                \"tax\": 27.93\n            }\n        ],\n        \"gross\": 160.95\n    },\n    \"metadata\": {\n        \"commissionValue\": 33.26,\n        \"commissionCurrency\": \"EUR\",\n        \"preinstalledGPSReductionValue\": 0,\n        \"preinstalledGPSReductionCurrency\": \"EUR\",\n        \"deductibleTheftPercentage\": 20,\n        \"deductibleDamagePercentage\": 0,\n        \"deductibleDamageMinimumValue\": 0,\n        \"deductibleDamageMinimumCurrency\": \"EUR\"\n    },\n    \"requestData\": {\n        \"productName\": \"ebike-netherlands-mantel\",\n        \"values\": {\n            \"policyStartDate\": \"2026-04-01\",\n            \"paymentSchedule\": \"annual\",\n            \"price\": \"500.01-750.00\",\n            \"vehicleType\": \"E-Bike\",\n            \"type\": \"Mountain bike\",\n            \"preinstalledGps\":\"-\",\n            \"addressZip\": \"1012GX\"\n        },\n        \"package\": \"theft\",\n        \"addons\": []\n    }\n}"},{"id":"91a14c6e-7748-4d74-9514-6731b881fc2c","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebikeNetherlands\",\n    \"values\": {\n        \"policyStartDate\": \"2024-05-21\",\n        \"paymentSchedule\": \"annual\",\n        \"price\": \"14750.01-15000.00\",\n        \"purchasedAt\": \"2024-05-21\",\n        \"vehicleType\": \"E-Bike\",\n        \"insuredObjectPlz\": \"1234AB\"\n    },\n    \"package\": \"garantiePlus\",\n    \"addons\": [\n        \n        \n\n    ]\n}   ","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"55d7c08d-57bd-4046-bc88-a59a01683726"}],"id":"f4c27afa-1692-4b9e-94e2-cce635dda0fb","description":"<p>The Policy Quotation API is used to retrieve the conditional premium of an insurance product. As soon as the quote is accepted, a policy can be created using the Policy Creation API.</p>\n","event":[{"listen":"prerequest","script":{"id":"d0fe9517-6330-4d4f-b454-9875cae7e7c5","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"74166b7c-2c98-4907-b15d-1ce489724158","type":"text/javascript","exec":[""]}}],"_postman_id":"f4c27afa-1692-4b9e-94e2-cce635dda0fb"},{"name":"Policy Quotation HearingAid Products","item":[{"name":"Hearing Aids 2026","id":"7918fff2-d37e-41c4-a919-cb7e6651dbca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"f503fa45-b830-415a-af32-0476e9320699","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"hoerschutz2026\",\n\t\"values\": {\n        \"paymentSchedule\": \"oneTime\",\n        \"itemValue\": \"999.90\",\n\t\t\"healthInsuranceType\": \"public\",\n\t\t\"purchasedAt\": \"2025-08-18\",\n\t\t\"numberOfDevices\": \"2\",\n\t\t\"brand1\": \"Phonak\",\n\t\t\"model1\": \"Virto R Infinio\",\n\t\t\"serialNum1\": \"12345678\"\n\t},\n    \"package\": \"premiumschutz\",\n    \"addons\": []\n}"},"url":"https://api.sandbox.alteos.com/v2/policies/quote","description":"<p>Use this API to retrieve the quote for the Hearing Aids Product.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>productName</th>\n<th><strong>\"<strong>hoerschutz2026</strong>\"</strong></th>\n</tr>\n</thead>\n<tbody>\n</tbody>\n</table>\n</div><p><em><strong>Values</strong></em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th><strong>Mandatory/Optional</strong>  <br /><strong>(data type)</strong></th>\n<th>Description and values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>itemValue</td>\n<td><strong>Mandatory</strong>  <br />(float)</td>\n<td>Total value of both hearing aids devices and accesories up to 15000 €.  <br />  <br />e.g. <strong>999.90</strong></td>\n</tr>\n<tr>\n<td>paymentSchedule</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Gives the frequency of payments  <br />  <br /><strong>Available values:</strong>  <br /><strong>\"monthly\"</strong>  <br /><strong>\"annual\"</strong>  <br /><strong>\"threeYear\"</strong> (upfront payment for the first year, followed by consecutive anual payments)  <br /><strong>\"oneTime\"</strong></td>\n</tr>\n<tr>\n<td>partnerCode</td>\n<td><strong>Mandatory / Optional</strong>  <br />(string)</td>\n<td>7 number partner identifier, enables recognition of third party (e.g. store or branch)  <br />If the partnerSetting is ERP, this value is mandatory.  <br />  <br /><strong>e.g. \"1234\"</strong></td>\n</tr>\n<tr>\n<td>numberOfDevices</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>An integer indicating how many hearing aids are insured.  <br />Accesories are a plus up to three.  <br />  <br /><strong>Available values:  <br />\"1\" (<strong>one hearing aid</strong>)  <br />\"2\" (<strong>two hearing aids</strong>)  <br />\"3\" (<strong>no hearing aid, just accesory</strong>)</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p><em><strong>Others</strong></em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th><strong>Mandatory/Optional</strong>  <br /><strong>(data type)</strong></th>\n<th>Description and values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>package</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>The selectable packages are adjusted in terms of type of partner as follows  <br />  <br /><em><strong>Shop partner:</strong></em>  <br />  <br /><strong>\"verlustschutz\"  <br />\"premiumschutz\"</strong>  <br /><strong>\"verlustschutz\"</strong>  <br />  <br /><em><strong>Purchasing groups:</strong></em>  <br />  <br /><strong>\"IAS+ Verlust\"</strong>  <br /><strong>\"IAS Premium\"</strong>  <br /><strong>\"IAS Komfort\"</strong>  <br />  <br /><strong>\"ISMA Verlustschutz 5 Jahre\"  <br />\"ISMA Verlustschutz 6 Jahre\"</strong>  <br /><strong>\"ISMA Premiumschutz 5 Jahre\"  <br />\"ISMA Premiumschutz 6 Jahre\"</strong>  <br />  <br /><strong>\"audimus\"</strong></td>\n</tr>\n<tr>\n<td>addons</td>\n<td><strong>Mandatory</strong></td>\n<td>There is no addons for this product, for quotation or creation, must be entered []</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies","quote"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"e1b45947-a4b1-4ea2-b756-407494fbb79b","name":"Successful Quotation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"hoerschutz2026\",\n\t\"values\": {\n        \"paymentSchedule\": \"oneTime\",\n        \"itemValue\": \"999.90\",\n\t\t\"healthInsuranceType\": \"public\",\n\t\t\"purchasedAt\": \"2026-01-01\",\n\t\t\"numberOfDevices\": \"2\",\n\t\t\"brand1\": \"Phonak\",\n\t\t\"model1\": \"Virto R Infinio\",\n\t\t\"serialNum1\": \"12345678\"\n\t},\n    \"package\": \"premiumschutz\",\n    \"addons\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 210.95,\n    \"premium\": 177.27,\n    \"taxes\": 33.68,\n    \"premiumExclDiscounts\": 177.27,\n    \"taxesExclDiscounts\": 33.68,\n    \"grossExclDiscounts\": 210.95,\n    \"addons\": [],\n    \"package\": {\n        \"name\": \"premiumschutz\",\n        \"payments\": [],\n        \"gross\": 210.95\n    },\n    \"metadata\": {},\n    \"requestData\": {\n        \"productName\": \"hoerschutz2026\",\n        \"values\": {\n            \"paymentSchedule\": \"oneTime\",\n            \"itemValue\": \"999.90\",\n            \"healthInsuranceType\": \"public\",\n            \"purchasedAt\": \"2026-01-01\",\n            \"numberOfDevices\": \"2\",\n            \"brand1\": \"Phonak\",\n            \"model1\": \"Virto R Infinio\",\n            \"serialNum1\": \"12345678\"\n        },\n        \"package\": \"premiumschutz\",\n        \"addons\": []\n    }\n}"},{"id":"a57c760b-044a-4ff8-87a0-5ecb9769c1c2","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"hoerschutz-erp\",\n    \"values\": {\n        \"paymentSchedule\": \"annual\",\n        \"itemValue\": \"0-1000\",\n        \"partnerCode\":1,\n        \"onlyAccessories\": true\n    },\n    \"package\": \"komplettschutz\",\n    \"addons\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"7918fff2-d37e-41c4-a919-cb7e6651dbca"},{"name":"Hearing Aid Trial 2022","id":"17f28f82-9b7e-4601-8530-dc713ff82acb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-app-key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"ausprobeschutz-2022\",\n    \"package\":\"ausprobeschutz\",\n\t\"values\": {\n\t\t\"numberOfDevices\": \"1\"    },\n    \"addons\": [\n    ]\n}"},"url":"https://api.sandbox.alteos.com/v2/policies","description":"<p>Use this API to retrieve the quote for the Hearing Aid Trial Product \"AusprobeSchutz2022\".</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>productName</th>\n<th>\"ausprobeschutz-2022\"</th>\n</tr>\n</thead>\n<tbody>\n</tbody>\n</table>\n</div><p><strong>Values:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description and values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>numberOfDevices</td>\n<td>Specifies how many devices are insured  <br />  <br /><strong>Possible values:  <br />\"1\"  <br />\"2\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Other</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description and values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>package</td>\n<td>Type of coverage  <br />  <br /><strong>Possible values:  <br />\"ausprobeschutz\"</strong></td>\n</tr>\n<tr>\n<td>addons</td>\n<td>For this product, no addons are available.  <br />  <br />Must be an empty array: []</td>\n</tr>\n</tbody>\n</table>\n</div><p>The policy creation response will also return the <code>requestData</code> object which contains all the data that was given by the user during the policy creation and the <code>quote</code> object which contains all the quotation calculations.</p>\n","urlObject":{"path":["v2","policies"],"host":["https://api.sandbox.alteos.com"],"query":[{"disabled":true,"description":{"content":"<p>Coverage period of the insurance.</p>\n","type":"text/plain"},"key":"duration","value":""},{"disabled":true,"description":{"content":"<p>Date of purchase of the eBike. Must not be older than 6 months before the insurance starting date.</p>\n","type":"text/plain"},"key":"purchasedAt","value":""}],"variable":[]}},"response":[{"id":"c644d304-c1d6-479e-a9e0-cd7eefa0c0b1","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"ausprobeschutz-2022\",\n    \"package\":\"ausprobeschutz\",\n\t\"values\": {\n\t\t\"numberOfDevices\": \"1\"    },\n    \"addons\": [\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 10.95,\n    \"premium\": 9.2,\n    \"taxes\": 1.75,\n    \"premiumExclDiscounts\": 9.2,\n    \"taxesExclDiscounts\": 1.75,\n    \"grossExclDiscounts\": 10.95,\n    \"addons\": [],\n    \"package\": {\n        \"name\": \"ausprobeschutz\",\n        \"payments\": []\n    },\n    \"metadata\": {},\n    \"requestData\": {\n        \"productName\": \"ausprobeschutz-2022\",\n        \"package\": \"ausprobeschutz\",\n        \"values\": {\n            \"numberOfDevices\": \"1\"\n        },\n        \"addons\": []\n    }\n}"}],"_postman_id":"17f28f82-9b7e-4601-8530-dc713ff82acb"},{"name":"Rottler Trial","id":"6543d0bd-b16f-4289-bced-7fca9952c40c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKeyAlteos}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"rottler-ausprobe\",\n    \"values\": {\n    },\n    \"package\": \"Rottler Ausprobe\",\n    \"addons\": []\n}"},"url":"https://api.sandbox.alteos.com/v2/policies/quote","description":"<p>Use this API to retrieve the quote for the Hearing Aids Product.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>productName</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>\"rottler-ausprobe\"</td>\n</tr>\n</tbody>\n</table>\n</div><p>Parameters (all mandatory):</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>paymentSchedule</td>\n<td>One of: \"<strong>monthly</strong>\", \"annual\", \"threeYear\" or \"oneTime\".  <br />(monthly payment is new in the 2025 product version)</td>\n</tr>\n<tr>\n<td>contractCode  <br />(previously partnerCode)</td>\n<td>partner ID to capture a third party involved in policy creation process (e.g. a store or branch where the contract is created)</td>\n</tr>\n<tr>\n<td>package</td>\n<td>Type of coverage selected from a set of options: \"verlustschutz\", \"komfortschutz\",  <br />\"komplettschutz\"</td>\n</tr>\n<tr>\n<td>onlyAccessories</td>\n<td>(boolean) true or false.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies","quote"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"f1cf1503-3652-492f-8d61-f66e6230e65f","name":"Successful Quotation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"rottler-ausprobe\",\n    \"values\": {\n    },\n    \"package\": \"Rottler Ausprobe\",\n    \"addons\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 2.5,\n    \"premium\": 2.1,\n    \"taxes\": 0.4,\n    \"premiumExclDiscounts\": 2.1,\n    \"taxesExclDiscounts\": 0.4,\n    \"grossExclDiscounts\": 2.5,\n    \"addons\": [],\n    \"package\": {\n        \"name\": \"Rottler Ausprobe\",\n        \"payments\": []\n    },\n    \"metadata\": {},\n    \"requestData\": {\n        \"productName\": \"rottler-ausprobe\",\n        \"values\": {},\n        \"package\": \"Rottler Ausprobe\",\n        \"addons\": []\n    }\n}"},{"id":"99935d48-26a8-43e3-8e14-5baf474d93af","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"hoerschutz-erp\",\n    \"values\": {\n        \"paymentSchedule\": \"annual\",\n        \"itemValue\": \"0-1000\",\n        \"partnerCode\":1,\n        \"onlyAccessories\": true\n    },\n    \"package\": \"komplettschutz\",\n    \"addons\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"6543d0bd-b16f-4289-bced-7fca9952c40c"},{"name":"Hearing Aids Partnerproducts","id":"d39276eb-5302-4efe-bb45-7a6c59f2eb1a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKeyAlteos}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"hoerschutz-partner\",\n\t\"values\": {\n        \"purchasePrice\": 750,\n        \"partnerCode\":\"0002\",\n        \"distributionChannel\": \"ERP\",\n        \"paymentSchedule\": \"oneTime\",\n        \"durationSelector\": \"\"\n        \t},\n    \"package\": \"ISMA Verlustschutz\",\n    \"addons\": []\n}"},"url":"https://api.sandbox.alteos.com/v2/policies/quote","description":"<p>Use this API to retrieve the quote for the Hearing Aids Partnrtproducts.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>productName</th>\n<th>hoerschutz-partner</th>\n</tr>\n</thead>\n<tbody>\n</tbody>\n</table>\n</div><p>Parameters (all mandatory):</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Mandatory / Optional</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>purchasePrice</td>\n<td>mandatory</td>\n<td>corresponds to the total value of both hearing aids devices.  <br />  <br />according to the partner, type the number value between:  <br />  <br />Audimus, IAS:  <br />0 up to 15000  <br />  <br />ISMA:  <br />0 upt to 10000</td>\n</tr>\n<tr>\n<td>partnerCode</td>\n<td>mandatory</td>\n<td>partner ID to capture a third party involved in policy creation process (e.g. a store or branch where the contract is created)  <br />Test Code \"1234\"</td>\n</tr>\n<tr>\n<td>distributionChannel</td>\n<td>optional</td>\n<td>(selection) mandatory only if applicable:  <br />“app” or “ERP”</td>\n</tr>\n<tr>\n<td>paymentSchedule</td>\n<td>mandatory: IAS  <br />optional: others</td>\n<td>Defines the customer's preferred payment schedule for the contract. The contract has a default duration of 5 years unless canceled earlier by the customer.  <br />- annual: The customer pays once every year for 6 years.  <br />- 3years: The customer makes an upfront payment for the first 3 years, followed by two annual payments for the remaining 3 years.  <br />- oneTime: The customer makes a single upfront payment for the entire 6-year period  <br />  <br />One of:  <br />\"annual\", \"3years\", \"oneTime\"</td>\n</tr>\n<tr>\n<td>durationSelector</td>\n<td>mandatory: ISMA  <br />optional: others</td>\n<td>Defines the customer's preferred duration of the contract. The contract has a default duration of 6 years. For ISMA the duration can be changed by the customer between 5 and 6 years.  <br />  <br />One of:  <br />\"5\", \"6\"</td>\n</tr>\n<tr>\n<td>package</td>\n<td>mandatory</td>\n<td>Package that controlls the insured risks.  <br />  <br />One of:  <br />“IAS+ Verlust”,  <br />\"IAS Premium\",  <br />\"IAS Komfort\",  <br />\"audimus\",  <br />\"ISMA Verlustschutz\",  <br />\"ISMA Premiumschutz\"</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies","quote"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"e51172cf-2896-4fd3-a651-141bd5cda9f2","name":"Successful Quotation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"hoerschutz-partner\",\n\t\"values\": {\n        \"purchasePrice\": 750,\n        \"partnerCode\":\"0003\",\n        \"distributionChannel\": \"ERP\",\n        \"paymentSchedule\": \"oneTime\",\n        \"durationSelector\": \"6\"\n        \t},\n    \"package\": \"IAS+ Verlust\",\n    \"addons\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 130.45,\n    \"premium\": 109.62,\n    \"taxes\": 20.83,\n    \"premiumExclDiscounts\": 109.62,\n    \"taxesExclDiscounts\": 20.83,\n    \"grossExclDiscounts\": 130.45,\n    \"addons\": [],\n    \"package\": {\n        \"name\": \"IAS+ Verlust\",\n        \"payments\": []\n    },\n    \"metadata\": {},\n    \"requestData\": {\n        \"productName\": \"hoerschutz-partner\",\n        \"values\": {\n            \"purchasePrice\": 750,\n            \"partnerCode\": \"0003\",\n            \"distributionChannel\": \"ERP\",\n            \"paymentSchedule\": \"oneTime\",\n            \"durationSelector\": \"6\"\n        },\n        \"package\": \"IAS+ Verlust\",\n        \"addons\": []\n    }\n}"},{"id":"471a9abe-3438-4208-8ccc-8fc39d90b11c","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"hoerschutz-ikg\",\n\t\"values\": {\n        \"purchasePrice\": 750,\n        \"partnerCode\": \"0007\"\n\t},\n    \"package\": \"original\",\n    \"addons\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"d39276eb-5302-4efe-bb45-7a6c59f2eb1a"},{"name":"Hearing Aids Hörgeräteversicherung ERP 2025","id":"6aeec6a4-cc38-460d-84dc-127cfeaf274c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKeyAlteos}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"hoerschutz-erp\",\n\t\"values\": {\n\t\t\"paymentSchedule\": \"annual\",            // monthly, annual, 3years, oneTime\n        \"itemValue\": \"1000.01-1500.00\",\n        \"partnerCode\":\"1234\",                   // partnerCode 1234 for testing\n        \"numberOfDevices\":\"2\"                   // \"1\", \"2\"\n\t},\n    \"package\": \"verlustschutz\",                 // verlustschutz, komfortschutz, premiumschutz\n    \"addons\": []\n}"},"url":"https://api.sandbox.alteos.com/v2/policies/quote","description":"<p>Use this API to retrieve the quote for the Hearing Aids Hörgeräteversicherung ERP 2025.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>productName</th>\n<th>hoerschutz-erp</th>\n</tr>\n</thead>\n<tbody>\n</tbody>\n</table>\n</div><p>Parameters (all mandatory):</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Mandatory / Optional  <br />(data type)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>partnerCode</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Partner ID to capture a third party involved in the policy creation process (e.g. a store or branch where the contract is created).  <br />  <br />Example: <strong>\"1234\"</strong> (for testing)</td>\n</tr>\n<tr>\n<td>paymentSchedule</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Defines the customer's preferred payment schedule for the contract. The contract has a default duration of 6 years unless canceled earlier by the customer.  <br />-<strong>monthly</strong>: The customer pays once every month for 6 years.  <br />- <strong>annual</strong>: The customer pays once every year for 6 years.  <br />- <strong>3years</strong>: The customer makes an upfront payment for the first 3 years, followed by three annual payments for the remaining 3 years.  <br />- <strong>oneTime</strong>: The customer makes a single upfront payment for the entire 6-year period  <br />  <br /><strong>Possible values:</strong>  <br /><strong>\"monthly\"  <br />\"annual\"  <br />\"3years\"  <br />\"oneTime\"</strong></td>\n</tr>\n<tr>\n<td>package</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Package that controls the insured risks.  <br />  <br /><strong>Possible values:  <br />\"komfortschutz\",  <br />\"verlustschutz\",  <br />\"premiumschutz\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies","quote"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"49051dfa-d052-48de-a68d-28dff71ab1b3","name":"Successful Quotation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"hoerschutz-erp\",\n\t\"values\": {\n\t\t\"paymentSchedule\": \"annual\",\n        \"itemValue\": \"1000.01-1500.00\",\n        \"partnerCode\":\"1234\",\n        \"numberOfDevices\":\"2\"\n\t},\n    \"package\": \"verlustschutz\",\n    \"addons\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 36.95,\n    \"premium\": 31.05,\n    \"taxes\": 5.9,\n    \"premiumExclDiscounts\": 31.05,\n    \"taxesExclDiscounts\": 5.9,\n    \"grossExclDiscounts\": 36.95,\n    \"addons\": [],\n    \"package\": {\n        \"name\": \"verlustschutz\",\n        \"payments\": [\n            {\n                \"premium\": 31.05,\n                \"tax\": 5.9\n            },\n            {\n                \"premium\": 31.05,\n                \"tax\": 5.9\n            },\n            {\n                \"premium\": 31.05,\n                \"tax\": 5.9\n            },\n            {\n                \"premium\": 31.05,\n                \"tax\": 5.9\n            },\n            {\n                \"premium\": 31.05,\n                \"tax\": 5.9\n            },\n            {\n                \"premium\": 31.05,\n                \"tax\": 5.9\n            }\n        ],\n        \"gross\": 36.95\n    },\n    \"metadata\": {\n        \"Link zu den Vertragsunterlagen\": \"https://s3.eu-central-1.amazonaws.com/static.alteos.com/products/hoerschutz-erp/Vertragsunterlagen+Verlustschutz.pdf\",\n        \"rates\": [\n            {\n                \"paymentSchedule\": \"monthly\",\n                \"verlustschutz\": 3.5,\n                \"komfortschutz\": 3.9,\n                \"premiumschutz\": 5.1\n            },\n            {\n                \"paymentSchedule\": \"annual\",\n                \"verlustschutz\": 36.95,\n                \"komfortschutz\": 40.95,\n                \"premiumschutz\": 52.95\n            },\n            {\n                \"paymentSchedule\": \"3years\",\n                \"verlustschutz\": 104.95,\n                \"komfortschutz\": 116.95,\n                \"premiumschutz\": 150.95\n            },\n            {\n                \"paymentSchedule\": \"oneTime\",\n                \"verlustschutz\": 176.95,\n                \"komfortschutz\": 196.95,\n                \"premiumschutz\": 253.95\n            }\n        ]\n    },\n    \"requestData\": {\n        \"productName\": \"hoerschutz-erp\",\n        \"values\": {\n            \"paymentSchedule\": \"annual\",\n            \"itemValue\": \"1000.01-1500.00\",\n            \"partnerCode\": \"1234\",\n            \"numberOfDevices\": \"2\"\n        },\n        \"package\": \"verlustschutz\",\n        \"addons\": []\n    }\n}"},{"id":"3346dc5a-16e3-4d16-8214-3e0a88446ab0","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"hoerschutz-ikg\",\n\t\"values\": {\n        \"purchasePrice\": 750,\n        \"partnerCode\": \"0007\"\n\t},\n    \"package\": \"original\",\n    \"addons\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"6aeec6a4-cc38-460d-84dc-127cfeaf274c"},{"name":"Bonsel Kundenkarte Plus","id":"e6f591ee-d204-4083-8278-1151665d16e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-app-key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"bonsel-kundenkarte\",\n\t\"values\": {\n        \"tarifDescription\": \"Kundenkarte Plus 2-Sterne Kategorie\"\n\t},\n    \"package\": \"Bonsel Kundenkarte Plus\",\n    \"addons\": []\n}  "},"url":"https://api.sandbox.alteos.com/v2/policies","description":"<p>Use this API to retrieve the quote for the Bonsel Kundenkarte Plus Product.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>productName</th>\n<th>\"bonsel-kundenkarte\"</th>\n</tr>\n</thead>\n<tbody>\n</tbody>\n</table>\n</div><p><strong>Values:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Mandatory / Optional</th>\n<th>Description and values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>tarifDescription</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Specifies the category of the Bonsel Kundenkarte  <br />  <br />Impacts the sum insured and premium  <br />  <br /><strong>Possible values:  <br />\"Kundenkarte Plus 2-Sterne-Kategorie\"</strong>  <br /><strong>\"Kundenkarte Plus 2-Sterne Kategorie\"  <br />\"Kundenkarte Plus 3-Sterne-Kategorie\"</strong>  <br /><strong>\"Kundenkarte Plus 3-Sterne Kategorie\"  <br />\"Kundenkarte Plus 4-Sterne-Kategorie\"</strong>  <br /><strong>\"Kundenkarte Plus 4-Sterne Kategorie\"  <br />\"Kundenkarte Plus 5-Sterne-Kategorie\"</strong>  <br /><strong>\"Kundenkarte Plus 5-Sterne Kategorie\"  <br />\"Kundenkarte Plus 6-Sterne-Kategorie\"</strong>  <br /><strong>\"Kundenkarte Plus 6-Sterne Kategorie\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Other</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Mandatory / Optional</th>\n<th>Description and values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>package</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Type of coverage  <br />  <br /><strong>Possible values:  <br />\"Bonsel Kundenkarte plus\"</strong></td>\n</tr>\n<tr>\n<td>addons</td>\n<td><strong>Mandatory</strong></td>\n<td>No addons are available for this product  <br />Must be an empty array</td>\n</tr>\n</tbody>\n</table>\n</div><p>The policy creation response will also return the <code>requestData</code> object which contains all the data that was given by the user during the policy creation and the <code>quote</code> object which contains all the quotation calculations.</p>\n","urlObject":{"path":["v2","policies"],"host":["https://api.sandbox.alteos.com"],"query":[{"disabled":true,"description":{"content":"<p>Coverage period of the insurance.</p>\n","type":"text/plain"},"key":"duration","value":""},{"disabled":true,"description":{"content":"<p>Date of purchase of the eBike. Must not be older than 6 months before the insurance starting date.</p>\n","type":"text/plain"},"key":"purchasedAt","value":""}],"variable":[]}},"response":[{"id":"1676fb16-19f8-49e3-b798-17159553fcef","name":"Successful Quotation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"bonsel-kundenkarte\",\n\t\"values\": {\n        \"tarifDescription\": \"Kundenkarte Plus 2-Sterne Kategorie\"\n\t},\n    \"package\": \"Bonsel Kundenkarte Plus\",\n    \"addons\": []\n}  ","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 34.95,\n    \"premium\": 29.37,\n    \"taxes\": 5.58,\n    \"premiumExclDiscounts\": 29.37,\n    \"taxesExclDiscounts\": 5.58,\n    \"grossExclDiscounts\": 34.95,\n    \"addons\": [],\n    \"package\": {\n        \"name\": \"Bonsel Kundenkarte Plus\",\n        \"payments\": []\n    },\n    \"metadata\": {},\n    \"requestData\": {\n        \"productName\": \"bonsel-kundenkarte\",\n        \"values\": {\n            \"tarifDescription\": \"Kundenkarte Plus 2-Sterne Kategorie\"\n        },\n        \"package\": \"Bonsel Kundenkarte Plus\",\n        \"addons\": []\n    }\n}"}],"_postman_id":"e6f591ee-d204-4083-8278-1151665d16e2"},{"name":"Hearing Aids Project Alpha 2025","id":"29f0e13d-339a-43ce-942c-913c431e0a48","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKeyAlteos}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"projectAlpha_productName\",\n\t\"values\": {\n        \"purchasePrice\": 10\n        \t},\n    \"package\": \"projectAlpha_packageName\",\n    \"addons\": []\n}"},"url":"https://api.sandbox.alteos.com/v2/policies/quote","description":"<p>Use this API to retrieve the quote for the Hearing Aids projectAlpha_productName.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>productName</th>\n<th>projectAlpha_productName</th>\n</tr>\n</thead>\n<tbody>\n</tbody>\n</table>\n</div><p>Parameters (all mandatory):</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Mandatory / Optional  <br />(data type)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>price</td>\n<td><strong>mandatory</strong>  <br />(number)</td>\n<td>Corresponds to the total value of one or both hearing aids and potentially accessories.  <br />  <br />  <br />Example: 10</td>\n</tr>\n<tr>\n<td>package</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>\"packageName\"  <br />Package that controls the insured risks and deductible.  <br />  <br />One of:  <br />\"Teleaudiologie\",  <br />\"Standard\".</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies","quote"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"3ed4fb47-740e-4489-812e-d87a57466f2a","name":"Successful Quotation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"projectAlpha_productName\",\n\t\"values\": {\n        \"purchasePrice\": 10\n        \t},\n    \"package\": \"projectAlpha_packageName\",\n    \"addons\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 300,\n    \"premium\": 252.1,\n    \"taxes\": 47.9,\n    \"premiumExclDiscounts\": 252.1,\n    \"taxesExclDiscounts\": 47.9,\n    \"grossExclDiscounts\": 300,\n    \"addons\": [],\n    \"package\": {\n        \"name\": \"projectAlpha_packageName\",\n        \"payments\": [],\n        \"gross\": 300\n    },\n    \"metadata\": {},\n    \"requestData\": {\n        \"productName\": \"projectAlpha_productName\",\n        \"values\": {\n            \"price\": 10\n        },\n        \"package\": \"projectAlpha_packageName\",\n        \"addons\": []\n    }\n}"},{"id":"f9cace2e-0c93-441c-9327-1ea677b37dc3","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"hoerschutz-ikg\",\n\t\"values\": {\n        \"purchasePrice\": 750,\n        \"partnerCode\": \"0007\"\n\t},\n    \"package\": \"original\",\n    \"addons\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"29f0e13d-339a-43ce-942c-913c431e0a48"},{"name":"Hearing Aids Project Alpha Beta 2025","id":"3bc1ef9c-5913-44c1-96ac-3a2a293468ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKeyAlteos}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"projectAlphaBeta_productName\",\n\t\"values\": {\n        \"purchasePrice\": 10\n        \t},\n    \"package\": \"projectAlphaBeta_packageName\",\n    \"addons\": []\n}"},"url":"https://api.sandbox.alteos.com/v2/policies/quote","description":"<p>Use this API to retrieve the quote for the Hearing Aids projectAlphaBeta_productName.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>productName</th>\n<th>projectAlphaBeta_productName</th>\n</tr>\n</thead>\n<tbody>\n</tbody>\n</table>\n</div><p>Parameters (all mandatory):</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Mandatory / Optional  <br />(data type)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>price</td>\n<td><strong>mandatory</strong>  <br />(number)</td>\n<td>Corresponds to the total value of one or both hearing aids and potentially accessories.  <br />  <br />  <br />Example: 10</td>\n</tr>\n<tr>\n<td>package</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>\"packageName\"  <br />Package that controls the insured risks.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies","quote"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"1f050325-d25a-4c77-95ef-3cf6ff65c14d","name":"Successful Quotation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"projectAlphaBeta_productName\",\n\t\"values\": {\n        \"purchasePrice\": 10\n        \t},\n    \"package\": \"projectAlphaBeta_packageName\",\n    \"addons\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 145,\n    \"premium\": 121.85,\n    \"taxes\": 23.15,\n    \"premiumExclDiscounts\": 121.85,\n    \"taxesExclDiscounts\": 23.15,\n    \"grossExclDiscounts\": 145,\n    \"addons\": [],\n    \"package\": {\n        \"name\": \"projectAlphaBeta_packageName\",\n        \"payments\": []\n    },\n    \"metadata\": {},\n    \"requestData\": {\n        \"productName\": \"projectAlphaBeta_productName\",\n        \"values\": {\n            \"purchasePrice\": 10\n        },\n        \"package\": \"projectAlphaBeta_packageName\",\n        \"addons\": []\n    }\n}"},{"id":"bde3dc3f-d2eb-4d40-aaed-44abe314758b","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"hoerschutz-ikg\",\n\t\"values\": {\n        \"purchasePrice\": 750,\n        \"partnerCode\": \"0007\"\n\t},\n    \"package\": \"original\",\n    \"addons\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"3bc1ef9c-5913-44c1-96ac-3a2a293468ea"}],"id":"a48b9523-4865-4d63-8f3a-6747c30ba264","description":"<p>The Policy Quotation API is used to retrieve the conditional premium of an insurance product. As soon as the quote is accepted, a policy can be created using the Policy Creation API.</p>\n","event":[{"listen":"prerequest","script":{"id":"d0fe9517-6330-4d4f-b454-9875cae7e7c5","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"74166b7c-2c98-4907-b15d-1ce489724158","type":"text/javascript","exec":[""]}}],"_postman_id":"a48b9523-4865-4d63-8f3a-6747c30ba264"},{"name":"Policy Quotation Broker Products","item":[{"name":"Hausrat Product","id":"d73a1b67-46c3-4d97-8368-1af8f5318aaa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"X-App-Key","type":"text","value":"{{appKeyAlteos}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"hausrat\",\n    \"values\": {\n        \"insuredObjectPlz\": \"10123\",\n        \"insuredObjectSqMeters\": \"40\",\n        \"selbstbehalt\": \"\",\n        \"insuredObjectStreet\": \"streetStr\",\n        \"insuredObjectHouseNumber\": \"123\",\n        \"insuredObjectCity\": \"Berlin\",\n        \"withCellar\": true,\n        \"cellarSqMeters\": 10,\n        \"cellarLivingSqMeters\": 0,\n        \"insuredObjectType\": \"Mehrfamilienhaus\",\n        \"underinsuranceWaiver\": false,\n        \"deckungssumme\": \"10\",\n        \"ueberspannung\": 15,\n        \"amountOfValuables\": 10,\n        \"customerDateOfBirth\": \"1995-01-01\",\n        \"paymentSchedule\": \"annual\",\n        \"bauartklasse\": \"BAK I\",\n        \"previousClaims\": false,\n        \"previousClaimsQuantity\": \"\",\n        \"zuersZone\": 2,\n        \"bicycleValue\": \"400\",\n        \"vermittlernummer\": \"123456\"\n    },\n    \"package\": \"Platin\",\n    \"addons\": [\n        \"fahrradDiebstahl\",\n        \"glasversicherung\",\n        \"elementarschaeden\",\n        \"ueberschwemmungDurchStarkregen\"\n    ],\n    \"metadata\": {\n        \"transactionId\": \"24343434\",\n        \"applicationNumber\": \"53637\"\n    }\n}"},"url":"https://api.sandbox.alteos.com/v2/policies/quote","description":"<p>Use this API to retrieve the quote for the Hausrat Product</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ProductName</th>\n<th>hausrat</th>\n</tr>\n</thead>\n<tbody>\n</tbody>\n</table>\n</div><p>Values</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>insuredObjectPlz (string)</td>\n<td>Mandatory</td>\n<td>postcode of the property, max 10 chars</td>\n</tr>\n<tr>\n<td>insuredObjectSqMeters (number)</td>\n<td>Mandatory</td>\n<td>meters squared of the property</td>\n</tr>\n<tr>\n<td>insuredObjectStreet (string)</td>\n<td>Optional/Mandatory with Elementarschaeden addon</td>\n<td>street of the property, min 2 and max 60 chars</td>\n</tr>\n<tr>\n<td>insuredObjectHouseNumber (string)</td>\n<td>Optional/Mandatory with Elementarschaeden addon</td>\n<td>house number of property, max 17 chars</td>\n</tr>\n<tr>\n<td>insuredObjectCity (string)</td>\n<td>Optional/Mandatory with Elementarschaeden addon</td>\n<td>city of property, max 60 chars</td>\n</tr>\n<tr>\n<td>withCellar (boolean)</td>\n<td>Optional</td>\n<td>true/false, does the property have a cellar</td>\n</tr>\n<tr>\n<td>cellarSqMeters (number)</td>\n<td>Optional</td>\n<td>size of cellar</td>\n</tr>\n<tr>\n<td>cellarLivingSqMeters</td>\n<td>Optional</td>\n<td>basement living space</td>\n</tr>\n<tr>\n<td>insuredObjectType (select)</td>\n<td>Mandatory</td>\n<td>Accepts \"Einfamilienhaus\", \"Zweifamilienhaus\", or \"Mehrfamilienhaus\"</td>\n</tr>\n<tr>\n<td>customerDateOfBirth (date)</td>\n<td>Mandatory</td>\n<td>YYYY-MM-DD format</td>\n</tr>\n<tr>\n<td>paymentSchedule</td>\n<td>Mandatory</td>\n<td>must be one of \"annual\", \"biannual\", \"quarterly\", \"monthly\"</td>\n</tr>\n<tr>\n<td>paymentType (select)</td>\n<td>Mandatory</td>\n<td>currently must be “Lastschrift”</td>\n</tr>\n<tr>\n<td>selbstbehalt (number)</td>\n<td>Mandatory</td>\n<td>deductible</td>\n</tr>\n<tr>\n<td>underinsuranceWaiver (boolean)</td>\n<td>Mandatory</td>\n<td>true/false (true by default)</td>\n</tr>\n<tr>\n<td>deckungssumme (number)</td>\n<td>Optional</td>\n<td>extended sum insured</td>\n</tr>\n<tr>\n<td>ueberspannung (number)</td>\n<td>Optional</td>\n<td>free %</td>\n</tr>\n<tr>\n<td>bicycleValue (number)</td>\n<td>Optional/Mandatory with fahrradDiebstahl</td>\n<td>maximum of 10000</td>\n</tr>\n<tr>\n<td>vermittlernummer (string made by only letters, numbers and commas)</td>\n<td>Mandatory</td>\n<td>Broker ID (corresponds to the Broker pool ID); if single broker IDs also need to be included, separate single IDs with comma(s) inside one string eg. \"5ZK3627,63GD727\" - \"46755\" is a current working example</td>\n</tr>\n<tr>\n<td>amountOfValuables (number)</td>\n<td>Optional</td>\n<td>free %</td>\n</tr>\n<tr>\n<td>transactionId (string)</td>\n<td>Optional</td>\n<td>business process ID (Vorgangsnummer)</td>\n</tr>\n<tr>\n<td>applicationNumber (string)</td>\n<td>Optional</td>\n<td>broker application number (Antragsnummer)</td>\n</tr>\n</tbody>\n</table>\n</div><p>Values (underwriting questions)</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>bauartklasse (string)</td>\n<td>Mandatory</td>\n<td>Pass: BAK I, BAK II, BAK III, FHG I, FHG II (Roman or Arabic numerals accepted)</td>\n</tr>\n<tr>\n<td>zuersZone (number)</td>\n<td>Optional</td>\n<td>rejects policy if &gt; 2</td>\n</tr>\n<tr>\n<td>previousClaims (boolean)</td>\n<td>Mandatory</td>\n<td>true/false</td>\n</tr>\n<tr>\n<td>previousClaimsQuantity (number)</td>\n<td>Optional/Mandatory if previousClaims =true</td>\n<td>quantity of previous claims, rejects policy if &gt; 2</td>\n</tr>\n<tr>\n<td>propertyOccupied (boolean)</td>\n<td>Mandatory</td>\n<td>true/false</td>\n</tr>\n<tr>\n<td>burglarAlarm (boolean)</td>\n<td>Optional (can be mandatory by request)</td>\n<td>true/false</td>\n</tr>\n<tr>\n<td>noNearbyFireRisk (boolean)</td>\n<td>Optional (can be mandatory by request)</td>\n<td>true/false</td>\n</tr>\n<tr>\n<td>minimumSecurity (boolean)</td>\n<td>Optional (can be mandatory by request)</td>\n<td>true/false</td>\n</tr>\n</tbody>\n</table>\n</div><p>Other</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>package</td>\n<td>accepts any of: \"Basis\", \"Basis-Plus\", \"Bronze\", \"Silber\", \"Gold\", \"Platin\", \"Diamant\"</td>\n</tr>\n<tr>\n<td>addons (array)</td>\n<td>contains combination from:</td>\n</tr>\n<tr>\n<td></td>\n<td>\"fahrradDiebstahl\",</td>\n</tr>\n<tr>\n<td></td>\n<td>\"glasversicherung\",</td>\n</tr>\n<tr>\n<td></td>\n<td>\"elementarschaeden\",</td>\n</tr>\n<tr>\n<td></td>\n<td>\"ueberschwemmungDurchStarkregen\"</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies","quote"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"04ba287a-eff1-4575-bdbb-7b461d8c6ed6","name":"Successful Quotation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"hausrat\",\n    \"values\": {\n        \"insuredObjectPlz\": \"10123\",\n        \"insuredObjectSqMeters\": \"40\",\n        \"selbstbehalt\": \"\",\n        \"insuredObjectStreet\": \"streetStr\",\n        \"insuredObjectHouseNumber\": \"123\",\n        \"insuredObjectCity\": \"Berlin\",\n        \"withCellar\": true,\n        \"cellarSqMeters\": 10,\n        \"cellarLivingSqMeters\": 0,\n        \"insuredObjectType\": \"Mehrfamilienhaus\",\n        \"underinsuranceWaiver\": false,\n        \"deckungssumme\": \"10\",\n        \"ueberspannung\": 15,\n        \"amountOfValuables\": 10,\n        \"customerDateOfBirth\": \"1995-01-01\",\n        \"paymentSchedule\": \"annual\",\n        \"bauartklasse\": \"BAK I\",\n        \"previousClaims\": false,\n        \"previousClaimsQuantity\": \"\",\n        \"zuersZone\": 2,\n        \"bicycleValue\": \"400\",\n        \"vermittlernummer\": \"123456\",\n        \"propertyOccupied\":true,\n        \"noNearbyFirerisk\":true,\n        \"minimumSecurity\":true\n    },\n    \"package\": \"Platin\",\n    \"addons\": [\n        \"fahrradDiebstahl\",\n        \"glasversicherung\",\n        \"elementarschaeden\",\n        \"ueberschwemmungDurchStarkregen\"\n    ],\n    \"metadata\": {\n        \"transactionId\": \"24343434\",\n        \"applicationNumber\": \"53637\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 103,\n    \"premium\": 103,\n    \"taxes\": 0,\n    \"premiumExclDiscounts\": 103,\n    \"taxesExclDiscounts\": 0,\n    \"grossExclDiscounts\": 103,\n    \"addons\": [\n        {\n            \"name\": \"fahrradDiebstahl\",\n            \"payments\": []\n        },\n        {\n            \"name\": \"glasversicherung\",\n            \"payments\": []\n        },\n        {\n            \"name\": \"elementarschaeden\",\n            \"payments\": []\n        },\n        {\n            \"name\": \"ueberschwemmungDurchStarkregen\",\n            \"payments\": []\n        }\n    ],\n    \"package\": {\n        \"name\": \"Silber\",\n        \"payments\": []\n    },\n    \"metadata\": {\n        \"transactionId\": \"24343434\"\n    },\n    \"requestData\": {\n        \"productName\": \"hausrat\",\n        \"values\": {\n            \"insuredObjectPlz\": \"10123\",\n            \"insuredObjectSqMeters\": \"40\",\n            \"selbstbehalt\": \"\",\n            \"insuredObjectStreet\": \"streetStr\",\n            \"insuredObjectHouseNumber\": \"123\",\n            \"insuredObjectCity\": \"Berlin\",\n            \"withCellar\": true,\n            \"cellarSqMeters\": 10,\n            \"cellarLivingSqMeters\": 0,\n            \"insuredObjectType\": \"Mehrfamilienhaus\",\n            \"underinsuranceWaiver\": false,\n            \"deckungssumme\": \"\",\n            \"ueberspannung\": 15,\n            \"amountOfValuables\": 10,\n            \"customerDateOfBirth\": \"1995-01-01\",\n            \"paymentSchedule\": \"quarterly\",\n            \"bauartklasse\": \"BAK I\",\n            \"previousClaims\": false,\n            \"previousClaimsQuantity\": \"\",\n            \"zuersZone\": \"2\",\n            \"bicycleValue\": \"400\",\n            \"vermittlernummer\": \"46755\"\n        },\n        \"package\": \"Silber\",\n        \"addons\": [\n            \"fahrradDiebstahl\",\n            \"glasversicherung\",\n            \"elementarschaeden\",\n            \"ueberschwemmungDurchStarkregen\"\n        ],\n        \"metadata\": {\n            \"transactionId\": \"24343434\",\n            \"applicationNumber\": \"53637\"\n        }\n    }\n}"}],"_postman_id":"d73a1b67-46c3-4d97-8368-1af8f5318aaa"},{"name":"Haftplicht Product","id":"f7568b89-d3e4-49a8-8e25-c1d75c7a292f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"X-App-Key","type":"text","value":"{{appKeyAlteos}}"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"haftpflicht\",\n\t\"values\": {\n    \"coverageScope\": \"single\",\n    \"deductible\":0,\n    \"publicService\":false,\n    \"policyHolderDateOfBirth\": \"1966-08-08\",\n    \"policyHolderPlz\": \"01567\",\n    \"paymentSchedule\": \"quarterly\",\n    \"vermittlernummer\": \"46755\",\n    \"previousClaimsPeriodLength\":\"2\",\n    \"previousClaimsQuantity\": \"1\",\n    \"underwritingQuestion\": true\n  },\n    \"package\": \"Basis-Plus\",\n    \"addons\": [\n    ],\n    \"metadata\": {\n        \"transactionId\": \"24343434\",\n        \"applicationNumber\": \"53637\"\n    }\n}"},"url":"https://api.sandbox.alteos.com/v2/policies/quote","description":"<p>Use this API to create a quote for the Haftplicht Product.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ProductName</th>\n<th>haftplicht</th>\n</tr>\n</thead>\n<tbody>\n</tbody>\n</table>\n</div><p>Values</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>coverageScope</td>\n<td>Mandatory</td>\n<td>(selection) Options as follows:  <br />\"single\",  <br />\"withPartner\",  <br />\"withChildren\",  <br />\"withFamily\"</td>\n</tr>\n<tr>\n<td>deductible</td>\n<td>Mandatory</td>\n<td>(number) value of EUR total deductible</td>\n</tr>\n<tr>\n<td>publicService</td>\n<td>Mandatory</td>\n<td>(true/false) true in case policy holder is part of the public service; otherwise false</td>\n</tr>\n<tr>\n<td>policyHolderPlz</td>\n<td>Mandatory</td>\n<td>(string) postcode of the insured person, max 5 chars</td>\n</tr>\n<tr>\n<td>policyHolderDateOfBirth</td>\n<td>Mandatory</td>\n<td>(string) birth date of insured person (Format: YYYY-MM-DD)</td>\n</tr>\n<tr>\n<td>paymentType</td>\n<td>Mandatory</td>\n<td>(selection) currently must be “Lastschrift”</td>\n</tr>\n<tr>\n<td>paymentSchedule</td>\n<td>Mandatory</td>\n<td>(selection) must be one of \"annual\", \"biannual\", \"quarterly\", \"monthly\"</td>\n</tr>\n<tr>\n<td>vermittlernummer</td>\n<td>Mandatory</td>\n<td>(string made by only letters, numbers and commas) Broker ID given by Alteos.  <br />If individual broker IDs also need to be included, separate IDs with comma(s) inside one string eg. \"5ZK3627,63GD727\"</td>\n</tr>\n</tbody>\n</table>\n</div><p>Values (underwriting questions)</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>previousClaimsQuantity</td>\n<td>Mandatory</td>\n<td>(number) quantity of previous claims, rejects policy if &gt; 2</td>\n</tr>\n<tr>\n<td>previousClaimsPeriodLength</td>\n<td>Mandatory</td>\n<td>(number) number of years considered for quantity of previous claims</td>\n</tr>\n<tr>\n<td>underwritingQuestion</td>\n<td>Optional (can be mandatory by request)</td>\n<td>(true/false) can be used for individual underwriting questions</td>\n</tr>\n</tbody>\n</table>\n</div><p>Other</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>package</td>\n<td>(selection) accepts any of: \"Basis\", \"Basis-Plus\", \"Bronze\", \"Silber\", \"Gold\", \"Platin\", \"Diamant\"</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies","quote"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"50090474-0281-4b4f-9d66-1e6d47a012b9","name":"Successful Quotation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"haftpflicht\",\n\t\"values\": {\n    \"coverageScope\": \"withPartner\",\n    \"policyHolderDateOfBirth\": \"1967-10-10\",\n    \"policyHolderPlz\": \"12527\",\n    \"previousClaimsPeriodLength\": 2,\n    \"paymentType\": \"Lastschrift\",\n    \"previousInsurer\": \"\",\n    \"previousInsuranceNumber\": \"\",\n    \"previousInsuranceCancelledBy\": \"\",\n    \"previousInsuranceDate\": \"\",\n    \"previousClaims\": false,\n    \"previousClaimsQuantity\": \"\",\n    \"vermittlernummer\": \"46755\",\n    \"paymentSchedule\": \"monthly\",\n    \"policyStartDate\": \"2022-12-31\",\n    \"underwritingQuestion\": true,\n    \"publicService\": false,\n    \"deductible\": 599\n  },\n    \"package\": \"Basis-Plus\",\n    \"addons\": [\n    ],\n    \"metadata\": {\n        \"transactionId\": \"24343434\",\n        \"applicationNumber\": \"53637\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 1.5,\n    \"premium\": 1.26,\n    \"taxes\": 0.24,\n    \"premiumExclDiscounts\": 1.26,\n    \"taxesExclDiscounts\": 0.24,\n    \"grossExclDiscounts\": 1.5,\n    \"addons\": [],\n    \"package\": {\n        \"name\": \"Basis-Plus\",\n        \"payments\": []\n    },\n    \"metadata\": {\n        \"transactionId\": \"24343434\",\n        \"applicationNumber\": \"53637\"\n    },\n    \"requestData\": {\n        \"productName\": \"haftpflicht\",\n        \"values\": {\n            \"coverageScope\": \"withPartner\",\n            \"policyHolderDateOfBirth\": \"1967-10-10\",\n            \"policyHolderPlz\": \"12527\",\n            \"previousClaimsPeriodLength\": 2,\n            \"paymentType\": \"Lastschrift\",\n            \"previousInsurer\": \"\",\n            \"previousInsuranceNumber\": \"\",\n            \"previousInsuranceCancelledBy\": \"\",\n            \"previousInsuranceDate\": \"\",\n            \"previousClaims\": false,\n            \"previousClaimsQuantity\": \"\",\n            \"vermittlernummer\": \"46755\",\n            \"paymentSchedule\": \"monthly\",\n            \"policyStartDate\": \"2022-12-31\",\n            \"underwritingQuestion\": true,\n            \"publicService\": false,\n            \"deductible\": 599\n        },\n        \"package\": \"Basis-Plus\",\n        \"addons\": [],\n        \"metadata\": {\n            \"transactionId\": \"24343434\",\n            \"applicationNumber\": \"53637\"\n        }\n    }\n}"}],"_postman_id":"f7568b89-d3e4-49a8-8e25-c1d75c7a292f"},{"name":"Unfall Product","id":"bf924697-7957-4f46-b63b-186c348b4780","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"X-App-Key","type":"text","value":"{{appKeyAlteos}}"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"unfall\",\n\t\"values\": {\n    \"paymentType\": \"Lastschrift\",\n    \"paymentSchedule\":\"annual\",\n    \"previousClaimsPeriodLength\":2,\n    \"policyStartDate\":\"2024-06-06\",\n\n\n    \"insuredPerson1_dateOfBirth\":\"1992-06-06\",\n    \"insuredPerson1_occupationCategory\":\"A\",\n    \"insuredPerson1_occupation\":\"Dentist\",\n    \"insuredPerson1_basicAmount\":27000,\n    \"insuredPerson1_progression\":\"350%\",\n    \"insuredPerson1_package\":\"Bronze\",\n    \"insuredPerson1_dailyAllowanceAddon\":100,\n    \"insuredPerson1_accidentPensionAddon\":100,\n    \"insuredPerson1_deathBenefitAddon\":100,\n    \"insuredPerson1_accidentSickPayAddon\":100,\n    \"insuredPerson1_accidentSickPayAddonDays\": \"43\",\n    \"insuredPerson1_transitionalBenefitAddon\":100,\n    \"insuredPerson1_previousClaimsQuantity\": 2,\n\n\n    \"insuredPerson2_dateOfBirth\":\"1994-06-06\",\n    \"insuredPerson2_occupationCategory\":\"A\",\n    \"insuredPerson2_occupation\":\"Dentist\",\n    \"insuredPerson2_basicAmount\":27000,\n    \"insuredPerson2_progression\":\"350%\",\n    \"insuredPerson2_package\":\"Gold\",\n    \"insuredPerson2_dailyAllowanceAddon\":100,\n    \"insuredPerson2_accidentPensionAddon\":100,\n    \"insuredPerson2_deathBenefitAddon\":100,\n    \"insuredPerson2_accidentSickPayAddon\":100,\n    \"insuredPerson2_accidentSickPayAddonDays\": \"43\",\n    \"insuredPerson2_transitionalBenefitAddon\":100,\n    \"insuredPerson2_previousClaimsQuantity\": 2,\n\n    \"insuredPerson3_dateOfBirth\":\"1996-06-06\",\n    \"insuredPerson3_occupationCategory\":\"A\",\n    \"insuredPerson3_occupation\":\"Dentist\",\n    \"insuredPerson3_basicAmount\":27000,\n    \"insuredPerson3_progression\":\"350%\",\n    \"insuredPerson3_package\":\"Bronze\",\n    \"insuredPerson3_dailyAllowanceAddon\":100,\n    \"insuredPerson3_accidentPensionAddon\":100,\n    \"insuredPerson3_deathBenefitAddon\":100,\n    \"insuredPerson3_accidentSickPayAddon\":100,\n    \"insuredPerson3_accidentSickPayAddonDays\": \"43\",\n    \"insuredPerson3_transitionalBenefitAddon\":100,\n    \"insuredPerson3_previousClaimsQuantity\": 2\n  },\n    \"package\": \"unfall\",\n    \"addons\": [\n        \"insuredPerson1\",\n        \"insuredPerson2\",\n        \"insuredPerson3\"\n    ]\n}"},"url":"https://api.sandbox.alteos.com/v2/policies/quote","description":"<p>Use this API to quote a policy for the Unfall Product.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ProductName</th>\n<th>unfall</th>\n</tr>\n</thead>\n<tbody>\n</tbody>\n</table>\n</div><p><strong>Values</strong></p>\n<p>Each of these fields below relates to data captured regarding one insured person. For each instance, use the prefix \"insuredPersonX_\" where X is the relevant number.</p>\n<p>e.g: For the first insured person, the name field would be \"insuredPerson1_name\": \"Dave\"</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>paymentSchedule</td>\n<td>Mandatory</td>\n<td>(selection) must be one of \"annual\", \"biannual\", \"quarterly\", \"monthly\"</td>\n</tr>\n<tr>\n<td>policyStartDate</td>\n<td>Mandatory</td>\n<td>Format: YYYY-MM-DD</td>\n</tr>\n<tr>\n<td>paymentType</td>\n<td>Mandatory</td>\n<td>(selection) currently must be “Lastschrift”</td>\n</tr>\n<tr>\n<td>previousClaimsPeriodLength</td>\n<td>Mandatory</td>\n<td>(number) number of years considered for quantity of previous claims</td>\n</tr>\n<tr>\n<td>insuredPerson1_dateOfBirth</td>\n<td>Mandatory</td>\n<td>Format: YYYY-MM-DD</td>\n</tr>\n<tr>\n<td>insuredPerson1_occupationCategory</td>\n<td>Mandatory</td>\n<td>(selection) A or B for the occupation class category.</td>\n</tr>\n<tr>\n<td>insuredPerson1_occupation</td>\n<td>Optional</td>\n<td>(string) insured person's occupation;</td>\n</tr>\n<tr>\n<td>insuredPerson1_basicAmount</td>\n<td>Mandatory</td>\n<td>(number) Default base amount which the policy holder is insured for. * for progression 225% up to 440,000€  <br />* for progression 350% up to 280,000€  <br />* for progression 500% up to 200,000€  <br />Basic amount: 10,000€ up to max. 500,000€</td>\n</tr>\n<tr>\n<td>insuredPerson1_progression</td>\n<td>Mandatory</td>\n<td>(selection)  <br />Options as follows:  <br />100%  <br />225%  <br />350%  <br />500%  <br />600%</td>\n</tr>\n<tr>\n<td>insuredPerson1_package</td>\n<td>Mandatory</td>\n<td>(selection) accepts any of:  <br />\"Bronze\",  <br />\"Silber\",  <br />\"Gold\",  <br />\"Platin\",  <br />\"Diamant\"</td>\n</tr>\n<tr>\n<td>insuredPerson1_dailyAllowanceAddon</td>\n<td>Optional</td>\n<td>(number) sum insured for the daily allowance addon  <br />Allowed values: 0 to 100. <em>German: KH-Tagegeld rate per €</em></td>\n</tr>\n<tr>\n<td>insuredPerson1_accidentPensionAddon</td>\n<td>Optional</td>\n<td>(number) sum insured for the accident Pension addon  <br />Allowed values: 0 to 2000. <em>German:</em> Unfallrente rate per €</td>\n</tr>\n<tr>\n<td>insuredPerson1_deathBenefitAddon</td>\n<td>Optional</td>\n<td>(number) sum insured for the death benefit addon.  <br />*Todesfallsumme for adults: max. 100,000€  <br />*Todesfallsumme für Kinder: max. 20,000€ <em>German:</em> Todesfallsumme rate per €.</td>\n</tr>\n<tr>\n<td>insuredPerson1_accidentSickPayAddon</td>\n<td>Optional</td>\n<td>(number) sum insured for the accident sick pay addon  <br />Allowed values: 0 to 100. <em>German:</em> Unfall-Krankentagegeld</td>\n</tr>\n<tr>\n<td>insuredPerson1_accidentSickPayAddonDays</td>\n<td>Optional</td>\n<td>(number) Beginning from which day of the sickness the add-on is to be paid out. Not supported values: 8th, 16th or 29th sick day. We only accept from the <strong>43rd</strong> day. <em>German:</em> Unfall-Krankentagegeld</td>\n</tr>\n<tr>\n<td>insuredPerson1_transitionalBenefitAddon</td>\n<td>Optional</td>\n<td>(number) sum insured for the transitional benefit addon  <br />Allowed values: 0 to 10.000. <em>German: Übergangsleistung</em></td>\n</tr>\n<tr>\n<td>insuredPerson1_previousClaimsQuantity</td>\n<td>Optional</td>\n<td>(number) quantity of previous claims, rejects policy if &gt; 2</td>\n</tr>\n</tbody>\n</table>\n</div><p><em>note: In case of more than one insured person, all the parameters above should be added again in the Payload.</em></p>\n<p>eg: insuredPerson2_name, insuredPerson2_dateOfBirth, insuredPerson2_occupationCategory and etc.</p>\n<p><strong>Other</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>package</td>\n<td>unfall</td>\n</tr>\n</tbody>\n</table>\n</div><p>In order to create policies for more than one insured person, each included insured person must be considered as an \"addon\".</p>\n<p>For example: insuredPerson1 is the first insured person and insuredPerson2 is the second insured person. <em><strong>note: Max of 8 insured persons per policy.</strong></em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Addons</td>\n<td>insuredPerson1 insuredPerson2 insuredPerson3 insuredPerson4 ...</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies","quote"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"0a52fa15-0ce9-4c9b-9f7a-5b8e870dc3c5","name":"Successful Quotation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"unfall\",\n\t\"values\": {\n    \"paymentType\": \"Lastschrift\",\n    \"paymentSchedule\":\"annual\",\n    \"previousClaimsPeriodLength\":2,\n    \"policyStartDate\":\"2024-06-06\",\n\n    \"insuredPerson1_dateOfBirth\":\"1992-06-06\",\n    \"insuredPerson1_occupationCategory\":\"A\",\n    \"insuredPerson1_occupation\":\"Dentist\",\n    \"insuredPerson1_basicAmount\":27000,\n    \"insuredPerson1_progression\":\"350%\",\n    \"insuredPerson1_package\":\"Bronze\",\n    \"insuredPerson1_dailyAllowanceAddon\":100,\n    \"insuredPerson1_accidentPensionAddon\":100,\n    \"insuredPerson1_deathBenefitAddon\":100,\n    \"insuredPerson1_accidentSickPayAddon\":100,\n    \"insuredPerson1_accidentSickPayAddonDays\": \"43\",\n    \"insuredPerson1_transitionalBenefitAddon\":100,\n    \"insuredPerson1_previousClaimsQuantity\": 2,\n\n\n    \"insuredPerson2_dateOfBirth\":\"1994-06-06\",\n    \"insuredPerson2_occupationCategory\":\"A\",\n    \"insuredPerson2_occupation\":\"Dentist\",\n    \"insuredPerson2_basicAmount\":27000,\n    \"insuredPerson2_progression\":\"350%\",\n    \"insuredPerson2_package\":\"Gold\",\n    \"insuredPerson2_dailyAllowanceAddon\":100,\n    \"insuredPerson2_accidentPensionAddon\":100,\n    \"insuredPerson2_deathBenefitAddon\":100,\n    \"insuredPerson2_accidentSickPayAddon\":100,\n    \"insuredPerson2_accidentSickPayAddonDays\": \"43\",\n    \"insuredPerson2_transitionalBenefitAddon\":100,\n    \"insuredPerson2_previousClaimsQuantity\": 2,\n\n    \"insuredPerson3_dateOfBirth\":\"1996-06-06\",\n    \"insuredPerson3_occupationCategory\":\"A\",\n    \"insuredPerson3_occupation\":\"Dentist\",\n    \"insuredPerson3_basicAmount\":27000,\n    \"insuredPerson3_progression\":\"350%\",\n    \"insuredPerson3_package\":\"Bronze\",\n    \"insuredPerson3_dailyAllowanceAddon\":100,\n    \"insuredPerson3_accidentPensionAddon\":100,\n    \"insuredPerson3_deathBenefitAddon\":100,\n    \"insuredPerson3_accidentSickPayAddon\":100,\n    \"insuredPerson3_accidentSickPayAddonDays\": \"43\",\n    \"insuredPerson3_transitionalBenefitAddon\":100,\n    \"insuredPerson3_previousClaimsQuantity\": 2\n  },\n    \"package\": \"unfall\",\n    \"addons\": [\n        \"insuredPerson1\",\n        \"insuredPerson2\",\n        \"insuredPerson3\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 1260.97,\n    \"premium\": 1059.64,\n    \"taxes\": 201.33,\n    \"premiumExclDiscounts\": 1059.64,\n    \"taxesExclDiscounts\": 201.33,\n    \"grossExclDiscounts\": 1260.97,\n    \"addons\": [\n        {\n            \"name\": \"insuredPerson1\",\n            \"payments\": [],\n            \"premium\": 388.18,\n            \"tax\": 73.75,\n            \"gross\": 461.93\n        },\n        {\n            \"name\": \"insuredPerson2\",\n            \"payments\": [],\n            \"premium\": 401.2,\n            \"tax\": 76.23,\n            \"gross\": 477.43\n        },\n        {\n            \"name\": \"insuredPerson3\",\n            \"payments\": [],\n            \"premium\": 388,\n            \"tax\": 73.72,\n            \"gross\": 461.72\n        }\n    ],\n    \"package\": {\n        \"name\": \"unfall\",\n        \"payments\": []\n    },\n    \"metadata\": {},\n    \"requestData\": {\n        \"productName\": \"unfall\",\n        \"values\": {\n            \"paymentType\": \"Lastschrift\",\n            \"paymentSchedule\": \"annual\",\n            \"previousClaimsPeriodLength\": 2,\n            \"insuredPerson1_dateOfBirth\": \"1992-06-06\",\n            \"insuredPerson1_occupationCategory\": \"A\",\n            \"insuredPerson1_occupation\":\"Dentist\",\n            \"insuredPerson1_basicAmount\": 27000,\n            \"insuredPerson1_progression\": \"350%\",\n            \"insuredPerson1_package\": \"Bronze\",\n            \"insuredPerson1_dailyAllowanceAddon\": 100,\n            \"insuredPerson1_accidentPensionAddon\": 100,\n            \"insuredPerson1_deathBenefitAddon\": 100,\n            \"insuredPerson1_accidentSickPayAddon\": 100,\n            \"insuredPerson1_accidentSickPayAddonDays\": \"43\",\n            \"insuredPerson1_transitionalBenefitAddon\": 100,\n            \"insuredPerson1_previousClaimsQuantity\": 2,\n            \"insuredPerson2_dateOfBirth\": \"1994-06-06\",\n            \"insuredPerson2_occupationCategory\": \"A\",\n            \"insuredPerson2_occupation\":\"Dentist\",\n            \"insuredPerson2_basicAmount\": 27000,\n            \"insuredPerson2_progression\": \"350%\",\n            \"insuredPerson2_package\": \"Gold\",\n            \"insuredPerson2_dailyAllowanceAddon\": 100,\n            \"insuredPerson2_accidentPensionAddon\": 100,\n            \"insuredPerson2_deathBenefitAddon\": 100,\n            \"insuredPerson2_accidentSickPayAddon\": 100,\n            \"insuredPerson2_accidentSickPayAddonDays\": \"43\",\n            \"insuredPerson2_transitionalBenefitAddon\": 100,\n            \"insuredPerson2_previousClaimsQuantity\": 2,\n            \"insuredPerson3_dateOfBirth\": \"1996-06-06\",\n            \"insuredPerson3_occupationCategory\": \"A\",\n            \"insuredPerson3_occupationCode\":\"123\",\n            \"insuredPerson3_basicAmount\": 27000,\n            \"insuredPerson3_progression\": \"350%\",\n            \"insuredPerson3_package\": \"Bronze\",\n            \"insuredPerson3_dailyAllowanceAddon\": 100,\n            \"insuredPerson3_accidentPensionAddon\": 100,\n            \"insuredPerson3_deathBenefitAddon\": 100,\n            \"insuredPerson3_accidentSickPayAddon\": 100,\n            \"insuredPerson3_accidentSickPayAddonDays\": \"43\",\n            \"insuredPerson3_transitionalBenefitAddon\": 100,\n            \"insuredPerson3_previousClaimsQuantity\": 2\n        },\n        \"package\": \"unfall\",\n        \"addons\": [\n            \"insuredPerson1\",\n            \"insuredPerson2\",\n            \"insuredPerson3\"\n        ]\n    }\n}"}],"_postman_id":"bf924697-7957-4f46-b63b-186c348b4780"}],"id":"51e919d0-93fc-4953-a96c-fdc53a9286b0","description":"<p>The Policy Quotation API is used to retrieve the conditional premium of an insurance product. As soon as the quote is accepted, a policy can be created using the Policy Creation API.</p>\n","event":[{"listen":"prerequest","script":{"id":"d0fe9517-6330-4d4f-b454-9875cae7e7c5","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"74166b7c-2c98-4907-b15d-1ce489724158","type":"text/javascript","exec":[""]}}],"_postman_id":"51e919d0-93fc-4953-a96c-fdc53a9286b0"},{"name":"Rent Deposit Product 2024","id":"ea5ff899-3f8d-4534-80da-f2d2162da3d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-App-Key","value":"{{appKeyAlteos}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"mietkautionsbuergschaft-2024\",\n    \"values\": {\n            \"depositAmount\": 3000,\n            \"rentPrice\": 1000,\n            \"scoreValue\": \"470\",\n            \"transactionID\": \"1234567890\"\n    },\n    \"package\": \"Mietkautionsbuergschaft\",\n    \"addons\": []\n}"},"url":"https://api.sandbox.alteos.com/v2/policies/quote","description":"<p>Use this API to retrieve the quote for the Rent Deposit Product</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ProductName</th>\n<th>mietkautionsbuergschaft-2024</th>\n</tr>\n</thead>\n<tbody>\n</tbody>\n</table>\n</div><p>Values</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>deposit amount (number)</td>\n<td>deposit amount cannot exceed three times the rent price</td>\n</tr>\n<tr>\n<td>rent price (number)</td>\n<td>monthly rental price.</td>\n</tr>\n<tr>\n<td>scoreValue (string)</td>\n<td>score capturing reliability of tenant</td>\n</tr>\n<tr>\n<td>transaction ID</td>\n<td>Unique ID of the transaction</td>\n</tr>\n</tbody>\n</table>\n</div><p>Other</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>package</td>\n<td>\"Mietkautionsbuergschaft\"</td>\n</tr>\n<tr>\n<td>addons</td>\n<td>[ ]</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies","quote"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"74e20be1-a9d3-443e-abed-2325203d9226","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"mietkautionsbuergschaft-2024\",\n    \"values\": {\n        \"values\": {\n            \"depositAmount\": \"3000\",\n            \"rentPrice\": \"1000\",\n            \"scoreValue\": \"12\",\n            \"transactionID\": \"1234567890\"\n        }\n    },\n    \"package\": \"Mietkautionsbuergschaft\",\n    \"addons\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 205,\n    \"premium\": 200,\n    \"taxes\": 5,\n    \"premiumExclDiscounts\": 200,\n    \"taxesExclDiscounts\": 5,\n    \"grossExclDiscounts\": 205,\n    \"addons\": [],\n    \"package\": {\n        \"name\": \"Mietkautionsbuergschaft\",\n        \"payments\": []\n    },\n    \"metadata\": {\n        \"riskCoefficient\": 0.039\n    }\n}"},{"id":"4185dbbd-3adc-4cdc-8e42-6b6221323899","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"mietkautionsbuergschaft-2024\",\n    \"values\": {\n        \"values\": {\n            \"depositAmount\": \"3000\",\n            \"rentPrice\": \"1000\",\n            \"scoreValue\": \"12\",\n            \"transactionID\": \"1234567890\"\n        }\n    },\n    \"package\": \"Mietkautionsbuergschaft\",\n    \"addons\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"ea5ff899-3f8d-4534-80da-f2d2162da3d2"},{"name":"Ability to Save a Quote","id":"c00a1597-87e2-4493-8c4e-b982ae2403e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"X-App-Key","type":"text","value":"{{appKeyAlteos}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike\",\n    \"values\": {\n        \"policyStartDate\": \"2021-01-10\",\n        \"paymentSchedule\": \"5years\",\n        \"price\": \"1000.01-1500.00\",\n        \"purchasedAt\": \"2020-08-20\",\n        \"brand\": \"Batavus\",\n        \"frameNumber\": \"1245311\",\n        \"batteryNumber\": \"124245311\",\n        \"type\": \"Mountainbike\",\n        \"lockModel\": \"Abus ab 45 € Verkaufspreis\"\n    },\n    \"package\": \"schadenschutz\",\n    \"addons\": [\n        \"akkuVerschleiss\",\n        \"mobilitaetsgarantie\",\n        \"einzelteileVerschleiss\"\n    ]\n}   "},"url":"https://api.sandbox.alteos.com/v2/policies/quote?saveQuote=true","description":"<p>The API to get a quote allows to save a quote for later use (during policy creation). In this way a customer can use his offer later with the same premium (even if prices were changed)</p>\n<p>URL parameters</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>saveQuote (boolean)</td>\n<td>An optional parameter which indicates if a quote should be saved. By default has \"false\" value</td>\n</tr>\n</tbody>\n</table>\n</div><p>This endpoint returns in the response payload a parameter \"<strong>QuoteId</strong>\", which can be used later during the Policy Creation</p>\n<p>Additionally, the endpoint allows sending customer <code>metadata</code> which can be retrieved later. It can be treated as a custom user data storage and be used for example to track a customer's own transactionId.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  [regular quotation data],\n  \"metadata\": {\n    \"transactionId\" : \"0a47af09-b305-4661-85fa-4cbfd82d4383\"\n  }\n}\n\n</code></pre>\n<p>Sent metadata is also stored in the created policy entity.</p>\n<p>Quotation response will also return the <code>requestData</code> object which contains all the data that were used to calculate the quote.</p>\n","urlObject":{"path":["v2","policies","quote"],"host":["https://api.sandbox.alteos.com"],"query":[{"key":"saveQuote","value":"true"}],"variable":[]}},"response":[{"id":"b3aa95c3-d7db-40dd-b46b-be9569712e82","name":"Successful Quotation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike\",\n    \"values\": {\n        \"policyStartDate\": \"2021-01-10\",\n        \"paymentSchedule\": \"5years\",\n        \"price\": \"1000.01-1500.00\",\n        \"purchasedAt\": \"2020-08-20\",\n        \"brand\": \"Batavus\",\n        \"frameNumber\": \"1245311\",\n        \"batteryNumber\": \"124245311\",\n        \"type\": \"Mountainbike\",\n        \"lockModel\": \"Abus ab 45 € Verkaufspreis\"\n    },\n    \"package\": \"schadenschutz\",\n    \"addons\": [\n        \"akkuVerschleiss\",\n        \"mobilitaetsgarantie\",\n        \"einzelteileVerschleiss\"\n    ]\n}   ","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.sandbox.alteos.com/v2/policies/quote?saveQuote=true","host":["https://api.sandbox.alteos.com"],"path":["v2","policies","quote"],"query":[{"key":"saveQuote","value":"true"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"quoteId\": \"7SA2BYT96UQD\",\n    \"gross\": 744.95,\n    \"premium\": 626.01,\n    \"taxes\": 118.94,\n    \"premiumExclDiscounts\": 626.01,\n    \"taxesExclDiscounts\": 118.94,\n    \"grossExclDiscounts\": 744.95,\n    \"addons\": [\n        {\n            \"name\": \"akkuVerschleiss\",\n            \"payments\": [\n                {\n                    \"premium\": 50.42,\n                    \"tax\": 9.58\n                }\n            ],\n            \"gross\": 60\n        },\n        {\n            \"name\": \"mobilitaetsgarantie\",\n            \"payments\": [\n                {\n                    \"premium\": 25.21,\n                    \"tax\": 4.79\n                }\n            ],\n            \"gross\": 30\n        },\n        {\n            \"name\": \"einzelteileVerschleiss\",\n            \"payments\": [\n                {\n                    \"premium\": 403.36,\n                    \"tax\": 76.64\n                }\n            ],\n            \"gross\": 480\n        }\n    ],\n    \"package\": {\n        \"name\": \"schadenschutz\",\n        \"payments\": [\n            {\n                \"premium\": 147.02,\n                \"tax\": 27.93\n            }\n        ],\n        \"gross\": 174.95\n    },\n    \"metadata\": {},\n    \"requestData\": {\n        \"productName\": \"ebike\",\n        \"values\": {\n            \"policyStartDate\": \"2021-01-10\",\n            \"paymentSchedule\": \"5years\",\n            \"price\": \"1000.01-1500.00\",\n            \"purchasedAt\": \"2020-08-20\",\n            \"brand\": \"Batavus\",\n            \"frameNumber\": \"1245311\",\n            \"batteryNumber\": \"124245311\",\n            \"type\": \"Mountainbike\",\n            \"lockModel\": \"Abus ab 45 € Verkaufspreis\"\n        },\n        \"package\": \"schadenschutz\",\n        \"addons\": [\n            \"akkuVerschleiss\",\n            \"mobilitaetsgarantie\",\n            \"einzelteileVerschleiss\"\n        ]\n    }\n}"},{"id":"b18d8c4a-0919-4185-b986-1aa588913378","name":"Successful Quotation With Custom Metadata","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike\",\n    \"metadata\": {\n        \"transactionId\": \"0a47af09-b305-4661-85fa-4cbfd82d4383\"\n    },\n    \"values\": {\n        \"policyStartDate\": \"2021-01-10\",\n        \"paymentSchedule\": \"5years\",\n        \"price\": \"1000.01-1500.00\",\n        \"purchasedAt\": \"2020-08-20\",\n        \"brand\": \"Batavus\",\n        \"frameNumber\": \"1245311\",\n        \"batteryNumber\": \"124245311\",\n        \"type\": \"Mountainbike\",\n        \"lockModel\": \"Abus ab 45 € Verkaufspreis\"\n    },\n    \"package\": \"schadenschutz\",\n    \"addons\": [\n        \"akkuVerschleiss\",\n        \"mobilitaetsgarantie\",\n        \"einzelteileVerschleiss\"\n    ]\n}   ","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.sandbox.alteos.com/v2/policies/quote?saveQuote=true","host":["https://api.sandbox.alteos.com"],"path":["v2","policies","quote"],"query":[{"key":"saveQuote","value":"true"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"quoteId\": \"7SA2BYT96UQD\",\n    \"metadata\": {\n        \"transactionId\": \"0a47af09-b305-4661-85fa-4cbfd82d4383\"\n    },\n    \"gross\": 744.95,\n    \"premium\": 626.01,\n    \"taxes\": 118.94,\n    \"premiumExclDiscounts\": 626.01,\n    \"taxesExclDiscounts\": 118.94,\n    \"grossExclDiscounts\": 744.95,\n    \"addons\": [\n        {\n            \"name\": \"akkuVerschleiss\",\n            \"payments\": [\n                {\n                    \"premium\": 50.42,\n                    \"tax\": 9.58\n                }\n            ],\n            \"gross\": 60\n        },\n        {\n            \"name\": \"mobilitaetsgarantie\",\n            \"payments\": [\n                {\n                    \"premium\": 25.21,\n                    \"tax\": 4.79\n                }\n            ],\n            \"gross\": 30\n        },\n        {\n            \"name\": \"einzelteileVerschleiss\",\n            \"payments\": [\n                {\n                    \"premium\": 403.36,\n                    \"tax\": 76.64\n                }\n            ],\n            \"gross\": 480\n        }\n    ],\n    \"package\": {\n        \"name\": \"schadenschutz\",\n        \"payments\": [\n            {\n                \"premium\": 147.02,\n                \"tax\": 27.93\n            }\n        ],\n        \"gross\": 174.95\n    },\n    \"requestData\": {\n        \"productName\": \"ebike\",\n        \"values\": {\n            \"policyStartDate\": \"2021-01-10\",\n            \"paymentSchedule\": \"5years\",\n            \"price\": \"1000.01-1500.00\",\n            \"purchasedAt\": \"2020-08-20\",\n            \"brand\": \"Batavus\",\n            \"frameNumber\": \"1245311\",\n            \"batteryNumber\": \"124245311\",\n            \"type\": \"Mountainbike\",\n            \"lockModel\": \"Abus ab 45 € Verkaufspreis\"\n        },\n        \"package\": \"schadenschutz\",\n        \"addons\": [\n            \"akkuVerschleiss\",\n            \"mobilitaetsgarantie\",\n            \"einzelteileVerschleiss\"\n        ]\n    }\n}"},{"id":"6c358199-a79b-4d5b-b6aa-efb1fb710843","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike\",\n    \"values\": {\n        \"policyStartDate\": \"2021-01-10\",\n        \"paymentSchedule\": \"5years\",\n        \"price\": \"1000.01-1500.00\",\n        \"purchasedAt\": \"2020-08-20\",\n        \"brand\": \"Batavus\",\n        \"frameNumber\": \"1245311\",\n        \"batteryNumber\": \"124245311\",\n        \"type\": \"Mountainbike\",\n        \"lockModel\": \"Abus ab 45 € Verkaufspreis\"\n    },\n    \"package\": \"schadenschutz\",\n    \"addons\": [\n        \"akkuVerschleiss\",\n        \"mobilitaetsgarantie\",\n        \"einzelteileVerschleiss\"\n    ]\n}   ","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.sandbox.alteos.com/v2/policies/quote?saveQuote=true","host":["https://api.sandbox.alteos.com"],"path":["v2","policies","quote"],"query":[{"key":"saveQuote","value":"true"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"c00a1597-87e2-4493-8c4e-b982ae2403e6"}],"id":"e765ae65-7fab-4939-8d71-8727e610d708","description":"<p>The Policy Quotation API is used to retrieve the conditional premium of an insurance product. As soon as the quote is accepted, a policy can be created using the Policy Creation API.</p>\n","event":[{"listen":"prerequest","script":{"id":"d0fe9517-6330-4d4f-b454-9875cae7e7c5","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"74166b7c-2c98-4907-b15d-1ce489724158","type":"text/javascript","exec":[""]}}],"_postman_id":"e765ae65-7fab-4939-8d71-8727e610d708"},{"name":"Policy Creation","item":[{"name":"Policy Creation Bike Products","item":[{"name":"Prototypes","item":[{"name":"E-Bike Leasing Omega","id":"82b4d1f2-4722-49eb-92f1-d7fb5eec5379","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKeyAlteos}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"productName\":\"ebikeAustria-leasing\",\n  \"customer\": {  \n        \"email\":\"Bäckerei@email.at\" ,  \n        \"firstName\" : \"Bäckerei\",  \n        \"lastName\" : \"GmbH\" ,  \n        \"values\": {  \n            \"companyName\" :\"Bäckerei\",  \n            \"addressStreet\":\"Wienerstr.\",  \n            \"addressHouseNumber\":\"11\",  \n            \"addressPlz\": \"1080\",  \n            \"addressCity\" : \"Wien\"  \n        }  \n    },\n  \"values\":{\n     \"policyStartDate\":\"2025-02-01\",\n     \"bikeUserFirstName\": \"Max\",\n     \"bikeUserFamilyName\": \"Mustermann\",\n     \"bikeUserEmail\": \"maxMustermann@test.com\",\n     \"price\": \"2000\",\n     \"frameNumber\": \"ST12345678\",\n     \"insuredPersonName\": \"Online Retailer GmbH\",\n     \"insuredPersonEmail\": \"Online.Retailer@email.at\",\n     \"model\": \"ST5\",\n     \"vehicleType\": \"Fahrrad\",\n     \"brand\":\"Stromer\",\n     \"type\": \"Stadtrad\",\n     \"paymentSchedule\": \"monthly\",\n     \"hasEligibleLock\": \"TRUE\",\n     \"contractNumber\": \"112345AB\",\n     \"branchID\": \"bike shop\"\n  },\n  \"package\":\"leasingSchutz\",\n  \"addons\":[\n       \"wartungUndVerschleiss\"\n  ]\n}\n"},"url":"https://api.sandbox.alteos.com/v2/policies/policies","description":"<h3 id=\"📋-complete-api-field-reference--leasing-protection-product\">📋 Complete API Field Reference – Leasing Protection Product</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Mandatory / Optional</strong>  <br />(<strong>data type</strong>)</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>productName</strong></td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Name of the Product.  <br />  <br />Example: \"ebikeAustria-leasing\"</td>\n</tr>\n<tr>\n<td><strong>customer</strong></td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Fields that contain the partner's data :  <br />  <br />Example:  <br />\"customer\": {  <br />\"email\":\"<a href=\"https://mailto:Baeckerei@test.at\">Baeckerei@test.at</a>\" ,  <br />\"firstName\" : \"Bäckerei\",  <br />\"lastName\", : \"GmbH\" ,  <br />\"values\": {  <br />\"companyName\" :\"Bäckerei\",  <br />\"addressStreet\":\"Wienerstr.\",  <br />\"addressHouseNumber\":\"11\",  <br />\"addressPlz\": \"1080\",  <br />\"addressCity\" : \"Wien\"  <br />}  <br />}</td>\n</tr>\n<tr>\n<td><strong>Values:</strong></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>policyStartDate</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>The expected input of the policyStartDate is the date of the handover of the bike which is also the issue date of the policy.  <br />  <br />Format: <code>YYYY-MM-DD</code>  <br />Example: <code>\"2025-03-01\"</code>  <br />  <br />  <br />- Coverage starts on the day of the handover of the bike.  <br />- if policyStartDate is the first of the month : Leasing start date is the policyStartDate .  <br />- if policyStartDate is not the first of the month : Leasing start date is the 1st day of the following month.</td>\n</tr>\n<tr>\n<td>insuredPersonName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>C ompany name of the employer of the bike User .  <br />  <br />Example: <code>\"Online Retailer GmbH\"</code></td>\n</tr>\n<tr>\n<td>insuredPersonEmail</td>\n<td><strong>Mandatory</strong>  <br />(email)</td>\n<td>Email address of the employer.  <br />  <br />Example: <code>\"Online.Retailer@email.at\"</code></td>\n</tr>\n<tr>\n<td>bikeUserFirstName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>First Name of the bike user.  <br />  <br />Example: <code>\"Max\"</code></td>\n</tr>\n<tr>\n<td>bikeUserFamilyName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Family name of the bike user.  <br />  <br />Example: <code>\"Hoffmann\"</code></td>\n</tr>\n<tr>\n<td>bikeUserEmail</td>\n<td><strong>Mandatory</strong>  <br />(email)</td>\n<td>Email address of the bike user.  <br />  <br />Example: <code>\"max@example.com\"</code></td>\n</tr>\n<tr>\n<td>contractNumber</td>\n<td>Optional  <br />(string)</td>\n<td>Contract or lease number associated with the insured bike.</td>\n</tr>\n<tr>\n<td>branchID</td>\n<td>Optional  <br />(string)</td>\n<td>A unique identifier of the bike retailer.  <br />  <br />Example: <code>\"bike shop\"</code></td>\n</tr>\n<tr>\n<td>price</td>\n<td><strong>Mandatory</strong>  <br />(number)</td>\n<td>Purchase price of the insured bike.  <br />  <br />Example: <code>2000</code></td>\n</tr>\n<tr>\n<td>brand</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Brand of the insured bike.  <br />  <br />Example: <code>\"Stromer\"</code></td>\n</tr>\n<tr>\n<td>model</td>\n<td>Optional  <br />(string)</td>\n<td>Model of the insured bike.  <br />  <br />Example: <code>\"ST5\"</code></td>\n</tr>\n<tr>\n<td>frameNumber</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Frame number of the bike.  <br />  <br />Example: <code>\"ST12345678\"</code></td>\n</tr>\n<tr>\n<td>hasEligibleLock</td>\n<td><strong>Mandatory</strong>  <br />(String)</td>\n<td>Indicates if the lock meets security requirements defined in the Terms and Conditions.  <br />  <br />One of: <code>\"TRUE\"</code>, <code>\"FALSE\"</code></td>\n</tr>\n<tr>\n<td>type</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Category of the bike.  <br />  <br />One of: <code>\"Stadtrad\"</code>, <code>\"Lasten- / Transportrad\"</code>, <code>\"Mountainbike\"</code>, <code>\"Gravelbike / Rennrad\"</code>, <code>\"S-Pedelecs\"</code>, <code>\"Sonstige\"</code></td>\n</tr>\n<tr>\n<td>vehicleType</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Type of the insured Bike.  <br />  <br />One of:  <br /><code>\"E-Bike\"</code>, <code>\"Fahrrad\"</code></td>\n</tr>\n<tr>\n<td>sumInsured</td>\n<td>Optional  <br />(string)</td>\n<td>Insured value of the bike.  <br />  <br />Example: <code>\"2000\"</code></td>\n</tr>\n<tr>\n<td><strong>packageName</strong></td>\n<td>Mandatory  <br />(string)</td>\n<td>Name of the insurance package.  <br />  <br /><code>\"Leasingschutz\"</code></td>\n</tr>\n<tr>\n<td><strong>addons</strong></td>\n<td>Optional  <br />(string)</td>\n<td>Name of the chosen addon.  <br />  <br />One of:  <br />\"wartungUndVerschleiß\"</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies","policies"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"c96f718b-ae8b-4525-923d-88c36f6e5cef","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"policyId\": \"e3a83609-9010-4c36-86f3-721571eb804e\",\n    \"prettyId\": \"2XFYEC\",\n    \"requestData\": {\n        \"productName\": \"ebikeAustria-leasing\",\n        \"customer\": {\n            \"email\": \"hac@alteos.com\",\n            \"firstName\": \"Bäckerei\",\n            \"lastName\": \"GmbH\",\n            \"values\": {\n                \"companyName\": \"Bäckerei\",\n                \"addressStreet\": \"Wienerstr.\",\n                \"addressHouseNumber\": \"11\",\n                \"addressPlz\": \"1080\",\n                \"addressCity\": \"Wien\"\n            }\n        },\n        \"values\": {\n            \"policyStartDate\": \"2025-02-01\",\n            \"bikeUserFirstName\": \"Max\",\n            \"bikeUserFamilyName\": \"Mustermann\",\n            \"bikeUserEmail\": \"maxMustermann@test.com\",\n            \"price\": \"2000\",\n            \"frameNumber\": \"ST12345678\",\n            \"insuredPersonName\": \"Online Retailer GmbH\",\n            \"insuredPersonEmail\": \"Online.Retailer@test.com\",\n            \"model\": \"ST5\",\n            \"vehicleType\": \"Fahrrad\",\n            \"brand\": \"Stromer\",\n            \"type\": \"Stadtrad\",\n            \"paymentSchedule\": \"monthly\",\n            \"hasEligibleLock\": \"TRUE\",\n            \"contractNumber\": \"112345AB\",\n            \"branchID\": \"bike shop\"\n        },\n        \"package\": \"leasingSchutz\",\n        \"addons\": [\n            \"wartungUndVerschleiss\"\n        ]\n    },\n    \"quote\": {\n        \"gross\": 19.08,\n        \"premium\": 17.19,\n        \"taxes\": 1.89,\n        \"premiumExclDiscounts\": 17.19,\n        \"taxesExclDiscounts\": 1.89,\n        \"grossExclDiscounts\": 19.08,\n        \"addons\": [\n            {\n                \"tax\": 1.09,\n                \"name\": \"wartungUndVerschleiss\",\n                \"gross\": 11,\n                \"premium\": 9.91,\n                \"payments\": [\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    }\n                ]\n            }\n        ],\n        \"package\": {\n            \"tax\": 0.8,\n            \"name\": \"leasingSchutz\",\n            \"gross\": 8.08,\n            \"premium\": 7.28,\n            \"payments\": [\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                }\n            ]\n        }\n    },\n    \"draftInvoice\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"e3a83609-9010-4c36-86f3-721571eb804e\",\n    \"prettyId\": \"2XFYEC\",\n    \"requestData\": {\n        \"productName\": \"ebikeAustria-leasing\",\n        \"customer\": {\n            \"email\": \"hac@alteos.com\",\n            \"firstName\": \"Bäckerei\",\n            \"lastName\": \"GmbH\",\n            \"values\": {\n                \"companyName\": \"Bäckerei\",\n                \"addressStreet\": \"Wienerstr.\",\n                \"addressHouseNumber\": \"11\",\n                \"addressPlz\": \"1080\",\n                \"addressCity\": \"Wien\"\n            }\n        },\n        \"values\": {\n            \"policyStartDate\": \"2025-02-01\",\n            \"bikeUserFirstName\": \"Max\",\n            \"bikeUserFamilyName\": \"Mustermann\",\n            \"bikeUserEmail\": \"maxMustermann@test.com\",\n            \"price\": \"2000\",\n            \"frameNumber\": \"ST12345678\",\n            \"insuredPersonName\": \"Online Retailer GmbH\",\n            \"insuredPersonEmail\": \"Online.Retailer@test.com\",\n            \"model\": \"ST5\",\n            \"vehicleType\": \"Fahrrad\",\n            \"brand\": \"Stromer\",\n            \"type\": \"Stadtrad\",\n            \"paymentSchedule\": \"monthly\",\n            \"hasEligibleLock\": \"TRUE\",\n            \"contractNumber\": \"112345AB\",\n            \"branchID\": \"bike shop\"\n        },\n        \"package\": \"leasingSchutz\",\n        \"addons\": [\n            \"wartungUndVerschleiss\"\n        ]\n    },\n    \"quote\": {\n        \"gross\": 19.08,\n        \"premium\": 17.19,\n        \"taxes\": 1.89,\n        \"premiumExclDiscounts\": 17.19,\n        \"taxesExclDiscounts\": 1.89,\n        \"grossExclDiscounts\": 19.08,\n        \"addons\": [\n            {\n                \"tax\": 1.09,\n                \"name\": \"wartungUndVerschleiss\",\n                \"gross\": 11,\n                \"premium\": 9.91,\n                \"payments\": [\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    },\n                    {\n                        \"tax\": 1.09,\n                        \"premium\": 9.91\n                    }\n                ]\n            }\n        ],\n        \"package\": {\n            \"tax\": 0.8,\n            \"name\": \"leasingSchutz\",\n            \"gross\": 8.08,\n            \"premium\": 7.28,\n            \"payments\": [\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                },\n                {\n                    \"tax\": 0.8,\n                    \"premium\": 7.28\n                }\n            ]\n        }\n    },\n    \"draftInvoice\": {}\n}"},{"id":"d2e48606-cb85-4dc9-bee4-d2891c71de1c","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike-Leasing-2024\",\n    \"values\": {\n        \"policyStartDate\": \"2024-02-29\",\n        \"paymentSchedule\": \"monthly\",\n        \"price\": \"3000.01-3500.00\"\n    },\n    \"package\": \"LeasingSchutz\",\n    \"addons\": [\n        \"gpsTracking\",\n        \"mobilitaetsschutz\",\n        \"gewerblicheNutzung\",\n        \"inspektion\",\n        \"wartungUndVerschleiss\",\n        \"einzelteileVerschleiss\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"82b4d1f2-4722-49eb-92f1-d7fb5eec5379"},{"name":"eBike NL Product B2C | 2024 Project Alpha","id":"733457da-d7f1-4830-9dbb-ac304ae94294","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-app-key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"projectAlpha_productName\",\n    \"customer\": {\n        \"email\": \"test@alteos.com\",\n        \"firstName\": \"John\",\n        \"lastName\": \"Doe\",\n        \"values\": {\n            \"addressStreet\": \"Hoofdstraat\",\n            \"addressHouseNumber\": \"12\",\n            \"addressPlz\": \"1234 AB\",\n            \"addressCity\": \"Amsterdam\",\n            \"dateOfBirth\": \"2000-09-10\"\n        }\n    },\n    \"values\": {\n        \"policyStartDate\": \"2024-12-20\",\n        \"paymentSchedule\": \"monthly\",\n        \"price\": \"7000.01-7250.00\",\n        \"purchasedAt\": \"2024-12-20\",\n        \"vehicleType\": \"E-Bike\",\n        \"brand\": \"Brand of the E-Bike\",\n        \"type\": \"Others\",\n        \"frameNumber\": \"1245311\",\n        \"hasEligibleLock\": true,\n        \"partnerCode\": \"0123\",\n        \"employeeId\": \"0123\",\n        \"addressZip\": \"\",\n        \"preinstalledGps\": \"Bosch ConnectModule\"\n    },\n    \"package\": \"theft\",\n    \"addons\": []\n}"},"url":"https://api.sandbox.alteos.com/v2/policies","description":"<p>Use this API to create a policy for the eBike Product.</p>\n<p>Parameters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Mandatory / Optional  <br />(data type)</th>\n<th>Description and values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>productName</td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>projectAlpha_productName</td>\n</tr>\n<tr>\n<td>customer</td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>Contains sub-fields:  <br />\"customer\": {  <br />\"email\",  <br />\"firstName\",  <br />\"lastName\",  <br />\"values\": {  <br />\"addressStreet\",  <br />\"addressHouseNumber\",  <br />\"addressPlz\",  <br />\"addressCity\",  <br />\"dateOfBirth\"  <br />}  <br />}</td>\n</tr>\n<tr>\n<td>policyStartDate</td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>Start date of the policy.  <br />  <br />Format: YYYY-MM-DD  <br />Example: \"2024-12-01\"  <br />  <br />- Date of handover of the bike.  <br />- Coverage starts on this day.  <br />- Minimum Date: One day before today.  <br />- Maximum Date: One month in the future.</td>\n</tr>\n<tr>\n<td>addressZip</td>\n<td><strong>Mandatory for quotation  <br />Optional for creation</strong>  <br />(string)</td>\n<td>Additional value which is mandatory for quotation. It is the postal code of the customer's address.  <br />  <br />Example: \"1234 AB\"  <br />Note:  <br />Creation uses customer.addressPlz.</td>\n</tr>\n<tr>\n<td>paymentSchedule</td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>value: \"monthly\"</td>\n</tr>\n<tr>\n<td>price</td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>Price of the insured E-Bike (max: 15.000 EUR).  <br />Can be one of:  <br />  <br />- \"0.00-250.00\"  <br />- \"250.01-500.00\"  <br />- \"500.01-750.00\"  <br />... in 250 Eur increments until:  <br />- \"14750.01-15000.00\"</td>\n</tr>\n<tr>\n<td>purchasedAt</td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>Purchase date of the insured E-Bike.  <br />Format: YYYY-MM-DD  <br />Example: \"2024-12-01\"  <br />  <br />Note: Must be within the last 24 months to qualify for insurance.</td>\n</tr>\n<tr>\n<td>vehicleType</td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>One of: \"Bike\" or \"E-Bike\"  <br />  <br />Note: that GPS addon is not available if Bike has been selected.</td>\n</tr>\n<tr>\n<td>brand</td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>specific value from a list of available options</td>\n</tr>\n<tr>\n<td>type</td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>One of:  <br />\"Cargo bike\",  <br />\"Mountain bike\"  <br />\"Gravel bike / Road bike\",  <br />\"Others\"</td>\n</tr>\n<tr>\n<td>frameNumber</td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>Frame number of the (E-)Bike  <br />Example: \"XYZ123456\"</td>\n</tr>\n<tr>\n<td>hasEligibleLock</td>\n<td><strong>Mandatory</strong> (boolean)</td>\n<td>Customer should confirm that has been using a lock worth at least €35.</td>\n</tr>\n<tr>\n<td>preinstalledGps</td>\n<td>optional</td>\n<td>Select field which controls the discount for supported preinstalled GPS trackers. The customer is responsible to pay for the hardware, the service and the installation of the device.  <br />  <br />One of:  <br />  <br />\"Bosch ConnectModule\",  <br />\"IT'S MY BIKE\"</td>\n</tr>\n<tr>\n<td>partnerCode</td>\n<td>optional</td>\n<td>partner ID to capture a third party involved in policy creation process (e.g. a store or branch where the contract is created)</td>\n</tr>\n<tr>\n<td>employeeId</td>\n<td>optional</td>\n<td>employee ID to capture an employee involved in policy creation process (e.g. an employee who sold the policy)</td>\n</tr>\n<tr>\n<td>package</td>\n<td><strong>Mandatory</strong> (boolean)</td>\n<td>Package that controlls the insured risks.  <br />  <br />One of:  <br />\"theft\",  <br />\"casco\".</td>\n</tr>\n</tbody>\n</table>\n</div><p>The policy creation response will also return the <code>requestData</code> object which contains all the data that was given by the user during the policy creation and the <code>quote</code> object which contains all the quotation calculations.</p>\n","urlObject":{"path":["v2","policies"],"host":["https://api.sandbox.alteos.com"],"query":[{"disabled":true,"description":{"content":"<p>Coverage period of the insurance.</p>\n","type":"text/plain"},"key":"duration","value":""},{"disabled":true,"description":{"content":"<p>Date of purchase of the eBike. Must not be older than 6 months before the insurance starting date.</p>\n","type":"text/plain"},"key":"purchasedAt","value":""}],"variable":[]}},"response":[{"id":"916873db-d00f-4b9b-b8aa-7220bc0f4e80","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"projectAlpha_productName\",\n    \"customer\": {\n        \"email\": \"test@alteos.com\",\n        \"firstName\": \"John\",\n        \"lastName\": \"Doe\",\n        \"values\": {\n            \"addressStreet\": \"Hoofdstraat\",\n            \"addressHouseNumber\": \"12\",\n            \"addressPlz\": \"1234 AB\",\n            \"addressCity\": \"Amsterdam\"\n        }\n    },\n    \"values\": {\n        \"policyStartDate\": \"2024-12-20\",\n        \"paymentSchedule\": \"monthly\",\n        \"price\": \"7000.01-7250.00\",\n        \"purchasedAt\": \"2024-12-20\",\n        \"vehicleType\": \"E-Bike\",\n        \"brand\": \"Brand of the E-Bike\",\n        \"type\": \"Others\",\n        \"frameNumber\": \"1245311\",\n        \"hasEligibleLock\": true,\n        \"partnerCode\": \"0123\",\n        \"addressZip\": \"\",\n        \"preinstalledGps\": \"Bosch ConnectModule\"\n    },\n    \"package\": \"theft\",\n    \"addons\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"057bd9e3-b88d-406b-881c-2b4ecdade737\",\n    \"prettyId\": \"ELNRY7\",\n    \"requestData\": {\n        \"productName\": \"productName_projectAlpha\",\n        \"customer\": {\n            \"email\": \"test@alteos.com\",\n            \"firstName\": \"John\",\n            \"lastName\": \"Doe\",\n            \"values\": {\n                \"addressStreet\": \"Hoofdstraat.\",\n                \"addressHouseNumber\": \"12\",\n                \"addressPlz\": \"1234 AB\",\n                \"addressCity\": \"Amsterdam\",\n            \"dateOfBirth\": \"2000-09-10\"\n            }\n        },\n        \"values\": {\n            \"policyStartDate\": \"2024-08-20\",\n            \"paymentSchedule\": \"monthly\",\n            \"price\": \"7000.01-7250.00\",\n            \"purchasedAt\": \"2024-08-02\",\n            \"vehicleType\": \"E-Bike\",\n            \"brand\": \"Batavus\",\n            \"type\": \"Others\",\n            \"frameNumber\": \"1245311\",\n            \"hasEligibleLock\": true,\n            \"partnerCode\": \"0123\",\n            \"addressZip\": \"\",\n            \"preinstalledGps\": \"Bosch ConnectModule\"\n        },\n        \"package\": \"theft\",\n        \"addons\": []\n    },\n    \"quote\": {\n        \"gross\": 121,\n        \"premium\": 100,\n        \"taxes\": 21,\n        \"premiumExclDiscounts\": 100,\n        \"taxesExclDiscounts\": 21,\n        \"grossExclDiscounts\": 121,\n        \"addons\": [],\n        \"package\": {\n            \"name\": \"theft\",\n            \"payments\": []\n        }\n    },\n    \"draftInvoice\": {}\n}"}],"_postman_id":"733457da-d7f1-4830-9dbb-ac304ae94294"},{"name":"E-Bike Leasing Project Beta","id":"7bd8cbf6-dcb9-4fe5-9cdd-1afa2cb5e019","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-app-key","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"projectBeta_productName\",\n    \"customer\": {\n        \"email\": \"company@example.de\",\n        \"firstName\": \"Anna\",\n        \"lastName\": \"Mueller\",\n        \"values\": {\n            \"companyName\": \"Bäckerei Müller GmBH\",\n            \"addressStreet\": \"Hardenbergerstr.\",\n            \"addressHouseNumber\": \"32\",\n            \"addressPlz\": \"10625\",\n            \"addressCity\": \"Berlin\"\n        }\n    },\n    \"values\": {\n        \n        \"policyStartDate\": \"2025-02-04\",\n        \"paymentSchedule\": \"monthly\",\n        \"price\": 11567.54,\n        \"vehicleType\": \"E-Bike\",\n        \"purchasedAt\": \"2025-02-04\",\n        \"brand\": \"Riese & Müller\",\n        \"type\": \"Stadtrad\",\n        \"frameNumber\": \"XYZ123456\",\n        \"insuredPersonName\": \"Bäckerei Müller GmBH\",\n        \"insuredPersonEmail\": \"company@example.com\",\n        \"bikeId\": \"SDFWE23453\",\n        \"bikeUserName\": \"1234ABC\", // Employee ID\n        \"commercialUse\" : false \n    },\n    \"package\": \"leasingschutz\",\n    \"addons\": [\"Inspektion\"]\n}"},"url":"https://api.sandbox.alteos.com/v2/policies","description":"<p>Use this API to create a policy for the Bike Leasing product.</p>\n<p>Parameters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Mandatory / Optional  <br />(data type)</th>\n<th>Description and values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>productName</strong></td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>Name of the product : \"projectBeta_productName\"</td>\n</tr>\n<tr>\n<td><strong>customer</strong></td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>Contains sub-fields:  <br />\"customer\": {  <br />\"email\",  <br />\"firstName\",  <br />\"lastName\",  <br />\"values\":{  <br />\"companyName\",  <br />\"addressStreet\", \"addressHouseNumber\",  <br />\"addressPlz\",  <br />\"addressCity\"  <br />}  <br />}</td>\n</tr>\n<tr>\n<td><strong>values:</strong></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>policyStartDate</td>\n<td><strong>Mandatory</strong> (date)</td>\n<td>Start date of the policy.  <br />  <br />Format: YYYY-MM-DD  <br />Example: \"2025-02-04\"  <br />  <br />- Date of handover of the bike or up to four weeks later.  <br />- Coverage starts on this day.  <br />- Minimum Date: One day before today.  <br />- Maximum Date: One month in the future.</td>\n</tr>\n<tr>\n<td>price</td>\n<td><strong>Mandatory</strong> (number)</td>\n<td>Price of the insured E-Bike (max: 15.000 EUR).  <br />  <br />Example: 11567.54</td>\n</tr>\n<tr>\n<td>purchasedAt</td>\n<td><strong>Mandatory</strong> (date)</td>\n<td>Purchase date of the insured (E-)Bike.  <br />Format: YYYY-MM-DD  <br />  <br />Example: \"2025-02-04\"</td>\n</tr>\n<tr>\n<td>vehicleType</td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>Specifies the type of the bike.  <br />  <br />One of:  <br />\"Fahrrad\",  <br />\"E-Bike\"</td>\n</tr>\n<tr>\n<td>brand</td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>Specifies the brand.  <br />  <br />Example: \"Riese &amp; Müller\"</td>\n</tr>\n<tr>\n<td>model</td>\n<td>Optional (string)</td>\n<td>Specifies the model.  <br />  <br />Example: \"Superdelite5 GT vario\"</td>\n</tr>\n<tr>\n<td>type</td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>Describes the type of the bike.  <br />  <br />One of:  <br />\"Stadtrad\",  <br />\"Lasten- / Transportrad\",  <br />\"Mountainbike\"  <br />\"Gravelbike / Rennrad\",  <br />\"S-Pedelecs\",  <br />\"Sonstige\"</td>\n</tr>\n<tr>\n<td>frameNumber</td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>Frame number of the (E-)Bike  <br />  <br />Example: \"XYZ123456\"</td>\n</tr>\n<tr>\n<td>insuredPersonName</td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>Company name of the employer.  <br />  <br />Example:  <br />\"Bäckerei Müller\"</td>\n</tr>\n<tr>\n<td>insuredPersonFamilyName</td>\n<td>Optional (string)</td>\n<td>Family name of the employer.  <br />  <br />Example: \"GmbH\"</td>\n</tr>\n<tr>\n<td>insuredPersonEmail</td>\n<td>Mandatory (string)</td>\n<td>Email address of the employer.  <br />  <br />Example: \"<a href=\"https://mailto:ller@email.de\">bäckerei.müller@email.de</a>\"</td>\n</tr>\n<tr>\n<td>bikeUserName</td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>Employee ID / number of the bike user.  <br />  <br />Example:  <br />\"1234ABC\"</td>\n</tr>\n<tr>\n<td>bikeId</td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>Partner's internal identifier for the leasing contract.  <br />  <br />Example: \"SDFWE23453\"</td>\n</tr>\n<tr>\n<td>commercialUse</td>\n<td><strong>Mandatory</strong> (boolean)</td>\n<td>Evaluates if a Bike is used commercially or for private purposes only.  <br />  <br />One of:  <br />true,  <br />false</td>\n</tr>\n<tr>\n<td><strong>package</strong></td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>Package name  <br />\"leasingschutz\"</td>\n</tr>\n<tr>\n<td><strong>addons</strong></td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>List of selected add-ons:  <br />  <br />\"Ruecknahmegarantie\",  <br />\"Inspektion\" / \"Inspektion-Verschleiss\",  <br />[] (no addon selected)  <br />  <br />(\"Inspektion\" and \"Inspektion-Verschleiss\" are mutually exclusive. Ruecknahmegarantie can be combined with one of the Inspektion add-ons.)</td>\n</tr>\n</tbody>\n</table>\n</div><p>The policy creation response will also return the <code>requestData</code> object which contains all the data that was given by the user during the policy creation and the <code>quote</code> object which contains all the quotation calculations.</p>\n","urlObject":{"path":["v2","policies"],"host":["https://api.sandbox.alteos.com"],"query":[{"disabled":true,"description":{"content":"<p>Coverage period of the insurance.</p>\n","type":"text/plain"},"key":"duration","value":""},{"disabled":true,"description":{"content":"<p>Date of purchase of the eBike. Must not be older than 6 months before the insurance starting date.</p>\n","type":"text/plain"},"key":"purchasedAt","value":""}],"variable":[]}},"response":[{"id":"e8090520-41f7-4898-b688-661919b9b29e","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-App-Key","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike-leasing-project-beta\",\n    \"customer\": {\n        \"email\": \"company@example.de\",\n        \"firstName\": \"Anna\",\n        \"lastName\": \"Mueller\",\n        \"values\": {\n            \"companyName\": \"Bäckerei Müller GmBH\",\n            \"addressStreet\": \"Hardenbergerstr.\",\n            \"addressHouseNumber\": \"32\",\n            \"addressPlz\": \"10625\",\n            \"addressCity\": \"Berlin\"\n        }\n    },\n    \"values\": {\n        \n        \"policyStartDate\": \"2025-02-04\",\n        \"paymentSchedule\": \"monthly\",\n        \"price\": 11567.54,\n        \"vehicleType\": \"E-Bike\",\n        \"purchasedAt\": \"2025-02-04\",\n        \"brand\": \"Riese & Müller\",\n        \"type\": \"Stadtrad\",\n        \"frameNumber\": \"XYZ123456\",\n        \"insuredPersonName\": \"Bäckerei Müller GmBH\",\n        \"bikeUserFirstName\": \"Max\",\n        \"bikeUserFamilyName\": \"Mustermann\",\n        \"bikeUserEmail\": \"MaxMustermann@example.de\",\n        \"insuredPersonEmail\": \"company@example.com\",\n        \"bikeId\": \"SDFWE23453\",\n        \"commercialUse\" : false \n    },\n    \"package\": \"leasingschutz\",\n    \"addons\": [\"Inspektion\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"be4f4bd1-1a0a-49a2-9344-f102162daf17\",\n    \"prettyId\": \"L4SKZX\",\n    \"requestData\": {\n        \"productName\": \"ebike-leasing-project-beta\",\n        \"customer\": {\n            \"email\": \"company@example.de\",\n            \"firstName\": \"Anna\",\n            \"lastName\": \"Mueller\",\n            \"values\": {\n                \"companyName\": \"Bäckerei Müller GmBH\",\n                \"addressStreet\": \"Hardenbergerstr.\",\n                \"addressHouseNumber\": \"32\",\n                \"addressPlz\": \"10625\",\n                \"addressCity\": \"Berlin\"\n            }\n        },\n        \"values\": {\n            \"policyStartDate\": \"2025-02-04\",\n            \"paymentSchedule\": \"monthly\",\n            \"price\": 11567.54,\n            \"vehicleType\": \"E-Bike\",\n            \"purchasedAt\": \"2025-02-04\",\n            \"brand\": \"Riese & Müller\",\n            \"type\": \"Stadtrad\",\n            \"frameNumber\": \"XYZ123456\",\n            \"insuredPersonName\": \"Bäckerei Müller GmBH\",\n            \"insuredPersonEmail\": \"company@example.com\",\n            \"bikeId\": \"SDFWE23453\",\n            \"bikeUserName\": \"1234ABC\", \n            \"commercialUse\": false\n        },\n        \"package\": \"leasingschutz\",\n        \"addons\": [\n            \"Inspektion\"\n        ]\n    },\n    \"quote\": {\n        \"gross\": 41.49,\n        \"premium\": 34.87,\n        \"taxes\": 6.62,\n        \"premiumExclDiscounts\": 34.87,\n        \"taxesExclDiscounts\": 6.62,\n        \"grossExclDiscounts\": 41.49,\n        \"addons\": [\n            {\n                \"name\": \"Inspektion\",\n                \"payments\": []\n            }\n        ],\n        \"package\": {\n            \"name\": \"leasingschutz\",\n            \"gross\": 41.49,\n            \"payments\": [\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                }\n            ]\n        }\n    },\n    \"draftInvoice\": {\n        \"invoiceId\": \"in_af17_ffok5MRgBtGxD\",\n        \"paymentOrderId\": \"ipo_tGxD_5995VhdQNCX9\"\n    }\n}"}],"_postman_id":"7bd8cbf6-dcb9-4fe5-9cdd-1afa2cb5e019"}],"id":"848b1c6e-70e2-4aaa-b1e6-c5d34ffcf4e6","_postman_id":"848b1c6e-70e2-4aaa-b1e6-c5d34ffcf4e6","description":""},{"name":"Leasing Product B2B2C 2024","id":"8cf04b6e-ccb2-4355-af83-678f5e4de9c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKeyAlteos}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"productName\": \"ebike-Leasing-2024\",\n  \"customer\": {\n    \"email\": \"test@alteos.com\",\n    \"phone\": \"0372637638\",\n    \"firstName\": \"Paul\",\n    \"lastName\": \"Luke\",\n    \"values\": {\n      \"addressStreet\": \"Tauentzienstr.\",\n      \"addressHouseNumber\": \"7\",\n      \"addressPlz\": \"10000\",\n      \"addressCity\": \"Berlin\",\n      \"companyName\": \"test\"\n    }\n  },\n  \"values\": {\n    \"policyStartDate\": \"2024-03-01\",\n    \"insuredPersonName\": \"Paul\",\n    \"insuredPersonFamilyName\": \"Test\",\n    \"insuredPersonEmail\":\"test@alteos.com\",\n    \"bikeUserFirstName\": \"Anna\",\n    \"bikeUserFamilyName\": \"Musterfrau\",\n    \"bikeUserEmail\":\"test@alteos.com\",\n    \"lockModel\": \"LITELOK X3\",\n    \"lockPrice\": 200.99,\n    \"hasEligibleLock\": true,\n    \"price\": 3000.99,\n    \"frameNumber\": \"BK35YX3120201180\",\n    \"type\": \"E-Bike\",\n    \"brand\": \"3GBikes\",\n    \"model\": \"Fischer Montis 8.0i MTB\"\n  },\n  \"package\": \"LeasingSchutz\",\n  \"addons\": [\n        \"gpsTracking\",\n        \"mobilitaetsschutz\",\n        \"gewerblicheNutzung\",\n        \"inspektion\",\n        \"wartungUndVerschleiss\",\n        \"einzelteileVerschleiss\"\n      ]\n}"},"url":"https://api.sandbox.alteos.com/v2/policies/policies","description":"<p>Use this API to create a policy for the Leasing E-Bike/Fahrrad Product</p>\n<p>Customer</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th>Mandatory/Optional  <br />(data type)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>email</td>\n<td><strong>Mandatory</strong>  <br />(email)</td>\n<td>email address of the customer  <br />  <br /><strong>e.g. \"</strong><a href=\"https://mailto:test@alteos.com\"><b>test@alteos.com</b></a><strong>\"</strong></td>\n</tr>\n<tr>\n<td>phone</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>phone number of the customer  <br />  <br /><strong>e.g. \"0372637638\"</strong></td>\n</tr>\n<tr>\n<td>firstName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>first name of the customer  <br />  <br /><strong>e.g. \"Paul\"</strong></td>\n</tr>\n<tr>\n<td>lastName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>last name of the customer  <br />  <br /><strong>e.g. \"Luke\"</strong></td>\n</tr>\n<tr>\n<td>addressStreet</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Street name of the customer's address  <br />  <br /><strong>e.g. \"Tauentzienstr.\"</strong></td>\n</tr>\n<tr>\n<td>addressHouseNumber</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>House number of the customer's address  <br />  <br /><strong>e.g. \"7\"</strong></td>\n</tr>\n<tr>\n<td>addressPlz</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Postal code of the customer's address  <br />  <br /><strong>e.g. \"10000\"</strong></td>\n</tr>\n<tr>\n<td>addressCity</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Name of the city of the customer's address  <br />  <br /><strong>e.g. \"Berlin\"</strong></td>\n</tr>\n<tr>\n<td>companyName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Name of the customer company that sells the leasing contract  <br />  <br /><strong>e.g. \"test\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p>Values</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory/Optional  <br />(data type)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>policyStartDate</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>The first date at which the policy is active  <br />- Also corresponding to date of handover of the bike  <br />- Coverage starts on this day as well  <br />Formate: YYYY-MM-DD  <br />  <br /><strong>e.g. \"2024-03-01\"</strong></td>\n</tr>\n<tr>\n<td>insuredPersonName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>The first name of the insured person  <br />In case of a company: use this field to store the company name  <br />  <br /><strong>e.g. \"Paul\"</strong></td>\n</tr>\n<tr>\n<td>insuredPersonFamilyName</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Familiy name of the insured person  <br />In case of a company: this can be left blank  <br />  <br /><strong>e.g. \"Test\"</strong></td>\n</tr>\n<tr>\n<td>insuredPersonEmail</td>\n<td><strong>Mandatory</strong>  <br />(email)</td>\n<td>Email adress of the insured person/company  <br />  <br /><strong>eg. \"</strong><a href=\"https://mailto:username@username.com\"><b>test@alteos.com\"</b></a></td>\n</tr>\n<tr>\n<td>bikeUserFirstName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>First name of the person that will use the bike  <br />  <br /><strong>e.g. \"Anna\"</strong></td>\n</tr>\n<tr>\n<td>bikeUserFamilyName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Family name of the person that will use the bike  <br />  <br /><strong>e.g. \"Musterfrau\"</strong></td>\n</tr>\n<tr>\n<td>bikeUserEmail</td>\n<td><strong>Mandatory</strong>  <br />(email)</td>\n<td>Email adress of the person that will use the bike  <br />  <br />eg. \"<a href=\"https://mailto:username@username.com\"><b>test@alteos.com</b></a>\"</td>\n</tr>\n<tr>\n<td>lockModel</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Name of the lock model that is used by the bike user  <br />  <br /><strong>e.g. \"LITELOK X3\"</strong></td>\n</tr>\n<tr>\n<td>lockPrice</td>\n<td><strong>Mandatory</strong>  <br />(number)</td>\n<td>Price of the lock (in euros) that is used by the bike user  <br />  <br /><strong>e.g. \"200\"</strong></td>\n</tr>\n<tr>\n<td>hasEligibleLock</td>\n<td><strong>Mandatory</strong>  <br />(boolean)</td>\n<td>Value that states if the lock, used by the bike user, is acceptable for the contract  <br />  <br /><strong>e.g.  <br />\"true\"  <br />\"false\"</strong></td>\n</tr>\n<tr>\n<td>price</td>\n<td><strong>Mandatory</strong>  <br />(number)</td>\n<td>Price of the bike or ebike (in euros) incl. taxes  <br />  <br /><strong>e.g. \"3000\"</strong></td>\n</tr>\n<tr>\n<td>frameNumber</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Individual identification number for each bike  <br />  <br /><strong>e.g. \"BK35YX3126801180\"</strong></td>\n</tr>\n<tr>\n<td>batteryNumber</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Identifying number of the battery of the leased e-bike, only available for e-bikes  <br />  <br />Default value: \"-\"  <br />  <br /><strong>e.g. \"123456879\"</strong></td>\n</tr>\n<tr>\n<td>vehicleType</td>\n<td><strong>Optional</strong>  <br />(select)</td>\n<td>Specifies what type of bike the insured bike is  <br />  <br /><strong>Possible values:  <br />\"E-Bike\"  <br />\"Fahrrad\"</strong></td>\n</tr>\n<tr>\n<td>type</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Further describes the insured bike  <br />  <br /><strong>e.g. \"Stadtrad\"</strong></td>\n</tr>\n<tr>\n<td>brand</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Brand name of the insured bike  <br />  <br /><strong>e.g. \"3GBikes\"</strong></td>\n</tr>\n<tr>\n<td>model</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Name of the (E)Bike's model  <br />  <br /><strong>e.g. \"Fischer Montis 8.0i MTB\"</strong></td>\n</tr>\n<tr>\n<td>contractNumber</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Leasing contract number  <br />  <br /><strong>e.g. \"D4568-FG596\"</strong></td>\n</tr>\n<tr>\n<td>withGPS</td>\n<td><strong>Optional</strong>  <br />(boolean)</td>\n<td>Specifies if the leased bike has a GPS tracker  <br />  <br /><strong>Possible values:  <br />true  <br />false</strong></td>\n</tr>\n<tr>\n<td>commercialUse</td>\n<td><strong>Optional</strong>  <br />(boolean)</td>\n<td>Specifies if the leased bike is use for commercial purposes  <br />  <br /><strong>Possible values:  <br />true  <br />false</strong></td>\n</tr>\n<tr>\n<td>withCommercialAddon</td>\n<td><strong>Optional</strong>  <br />(boolean)</td>\n<td>Specifies if the addon \"gewerblicheNutzung\" is selected  <br />  <br /><strong>Possible values:  <br />true  <br />false</strong></td>\n</tr>\n<tr>\n<td>paymentSchedule</td>\n<td><strong>Optional</strong>  <br />(select)</td>\n<td>Specifies the intervalls at which the customers pays his insurance fees  <br />  <br />Default value: \"Monthly\"  <br />  <br /><strong>Possible values:  <br />\"Monthly\"</strong></td>\n</tr>\n<tr>\n<td>bikeShopRepresentativeEmail</td>\n<td><strong>Optional</strong>  <br />(email)</td>\n<td>email address of the bike shop that sold the leasing contract  <br />  <br /><strong>e.g. \"</strong><a href=\"https://mailto:test@shop.com\"><b>test@shop.com</b></a><strong>\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p>Packages &amp; Add-ons</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>package</td>\n<td>Name of the insurance package chosen for this conract  <br />  <br /><strong>e.g. \"LeasingSchutz\"</strong></td>\n</tr>\n<tr>\n<td>addons</td>\n<td>States which of the available addons have been chosen for this contract  <br />  <br /><strong>e.g.  <br />\"mobilitaetsschutz\" (should be included by default)  <br />\"gpsTracking\"  <br />\"gewerblicheNutzung\"  <br />\"inspektion\"  <br />\"wartungUndVerschleiss\"</strong>  <br /><strong>\"einzelteileVerschleiss\"  <br />\"ruecknahmegarantie\" (is not available if \"gewerbliche Nutzung\" is selected)</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies","policies"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"5ef931d5-2e38-4b61-b370-da8e6e63c77c","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n \"productName\": \"ebike-Leasing-2024\",\n \"customer\": {\n   \"email\": \"test@alteos.com\",\n   \"phone\": \"0372637638\",\n   \"firstName\": \"Paul\",\n   \"lastName\": \"Luke\",\n   \"values\": {\n     \"addressStreet\": \"Tauentzienstr.\",\n     \"addressHouseNumber\": \"7\",\n     \"addressPlz\": \"10000\",\n     \"addressCity\": \"Berlin\",\n     \"companyName\": \"test\"\n   }\n },\n \"values\": {\n   \"policyStartDate\": \"2025-09-15\",\n   \"insuredPersonName\": \"Paul\",\n   \"insuredPersonFamilyName\": \"Test\",\n   \"insuredPersonEmail\":\"test@alteos.com\",\n   \"bikeUserFirstName\": \"Anna\",\n   \"bikeUserFamilyName\": \"Musterfrau\",\n   \"bikeUserEmail\":\"test@alteos.com\",\n   \"lockModel\": \"LITELOK X3\",\n   \"lockPrice\": 200.99,\n   \"hasEligibleLock\": true,\n   \"price\": 3000.99,\n   \"frameNumber\": \"BK35YX3120201180\",\n   \"type\": \"E-Bike\",\n   \"brand\": \"3GBikes\",\n   \"model\": \"Fischer Montis 8.0i MTB\"\n },\n \"package\": \"LeasingSchutz\",\n \"addons\": [\n       \"gpsTracking\",\n       \"mobilitaetsschutz\",\n       \"gewerblicheNutzung\",\n       \"inspektion\",\n       \"wartungUndVerschleiss\",\n       \"einzelteileVerschleiss\"\n     ]\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"ac4c801d-67e0-4d3a-83f4-746a8c6bf740\",\n    \"prettyId\": \"ERMQD6\",\n    \"requestData\": {\n        \"productName\": \"ebike-Leasing-2024\",\n        \"customer\": {\n            \"email\": \"test@alteos.com\",\n            \"phone\": \"0372637638\",\n            \"firstName\": \"Paul\",\n            \"lastName\": \"Luke\",\n            \"values\": {\n                \"addressStreet\": \"Tauentzienstr.\",\n                \"addressHouseNumber\": \"7\",\n                \"addressPlz\": \"10000\",\n                \"addressCity\": \"Berlin\",\n                \"companyName\": \"test\"\n            }\n        },\n        \"values\": {\n            \"policyStartDate\": \"2025-09-15\",\n            \"insuredPersonName\": \"Paul\",\n            \"insuredPersonFamilyName\": \"Test\",\n            \"insuredPersonEmail\": \"test@alteos.com\",\n            \"bikeUserFirstName\": \"Anna\",\n            \"bikeUserFamilyName\": \"Musterfrau\",\n            \"bikeUserEmail\": \"test@alteos.com\",\n            \"lockModel\": \"LITELOK X3\",\n            \"lockPrice\": 200.99,\n            \"hasEligibleLock\": true,\n            \"price\": 3000.99,\n            \"frameNumber\": \"BK35YX3120201180\",\n            \"type\": \"E-Bike\",\n            \"brand\": \"3GBikes\",\n            \"model\": \"Fischer Montis 8.0i MTB\"\n        },\n        \"package\": \"LeasingSchutz\",\n        \"addons\": [\n            \"gpsTracking\",\n            \"mobilitaetsschutz\",\n            \"gewerblicheNutzung\",\n            \"inspektion\",\n            \"wartungUndVerschleiss\",\n            \"einzelteileVerschleiss\"\n        ]\n    },\n    \"quote\": {\n        \"gross\": 49.25,\n        \"premium\": 41.38,\n        \"taxes\": 7.87,\n        \"premiumExclDiscounts\": 41.38,\n        \"taxesExclDiscounts\": 7.87,\n        \"grossExclDiscounts\": 49.25,\n        \"addons\": [\n            {\n                \"tax\": 0,\n                \"name\": \"gpsTracking\",\n                \"gross\": 0,\n                \"premium\": 0,\n                \"payments\": []\n            },\n            {\n                \"tax\": 0,\n                \"name\": \"mobilitaetsschutz\",\n                \"gross\": 0,\n                \"premium\": 0,\n                \"payments\": []\n            },\n            {\n                \"tax\": 0.47,\n                \"name\": \"gewerblicheNutzung\",\n                \"gross\": 2.95,\n                \"premium\": 2.48,\n                \"payments\": []\n            },\n            {\n                \"tax\": 1.27,\n                \"name\": \"inspektion\",\n                \"gross\": 7.95,\n                \"premium\": 6.68,\n                \"payments\": []\n            },\n            {\n                \"tax\": 2.55,\n                \"name\": \"wartungUndVerschleiss\",\n                \"gross\": 15.95,\n                \"premium\": 13.4,\n                \"payments\": []\n            },\n            {\n                \"tax\": 1.75,\n                \"name\": \"einzelteileVerschleiss\",\n                \"gross\": 10.95,\n                \"premium\": 9.2,\n                \"payments\": []\n            }\n        ],\n        \"package\": {\n            \"tax\": 1.83,\n            \"name\": \"LeasingSchutz\",\n            \"gross\": 11.45,\n            \"premium\": 9.62,\n            \"payments\": []\n        }\n    },\n    \"draftInvoice\": {\n        \"invoiceId\": \"in_f740_k9xxILW5o4xnY\",\n        \"paymentOrderId\": \"ipo_4xnY_PeergDAVgLvm\"\n    }\n}"},{"id":"512dbe4d-7781-4828-9d93-64b6b319eff5","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike-Leasing-2024\",\n    \"values\": {\n        \"policyStartDate\": \"2024-02-29\",\n        \"paymentSchedule\": \"monthly\",\n        \"price\": \"3000.01-3500.00\"\n    },\n    \"package\": \"LeasingSchutz\",\n    \"addons\": [\n        \"gpsTracking\",\n        \"mobilitaetsschutz\",\n        \"gewerblicheNutzung\",\n        \"inspektion\",\n        \"wartungUndVerschleiss\",\n        \"einzelteileVerschleiss\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"8cf04b6e-ccb2-4355-af83-678f5e4de9c3"},{"name":"Leasing Product B2B2C 2024 NO SEPA","id":"6e68aff9-d22d-4525-8b07-05a7b6739d32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKeyAlteos}}","type":"text"},{"key":"Authorization","value":"Bearer {{accessToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike-Leasing-2024-no-sepa\",\n    \"customer\": {\n        \"email\": \"test@alteos.com\",\n        \"phone\": \"08084413230\",\n        \"firstName\": \"Test Company\",\n        \"lastName\": \"GmbH\",\n        \"type\":\"business\",\n        \"values\": {\n            \"companyName\": \"Test Company GmbH\",\n            \"addressStreet\": \"Teststr.\",\n            \"addressHouseNumber\": \"13\",\n            \"addressPlz\": \"12345\",\n            \"addressCity\": \"Berlin\"\n        }\n    },\n    \"values\": {\n        \"policyStartDate\": \"2025-09-17\",\n         \"price\": \"2949.00\",\n          \"brand\": \"Cube\",\n          \"model\": \"Touring Hybrid Pro 625 Trapeze 46 XS\",\n          \"frameNumber\": \"WOW13532KGET\",\n           \"batteryNumber\": \"0 275 007 543 Bosch 625WH\",\n            \"type\": \"Touring Hybrid Pro 625 Trapeze 46 XS\",\n           \"hasEligibleLock\": true,\n           \"insuredPersonName\": \"Test GmbH\",\n           \"insuredPersonEmail\": \"test@alteos.com\",\n           \"bikeUserFirstName\": \"Miriam\",\n           \"bikeUserFamilyName\": \"Musterfrau\",\n           \"bikeUserEmail\": \"test@alteos.de\",\n           \"lockModel\": \"ABUS Stahlkabelschloss Ivera Steel-O-Flex 7200/110\",\n           \"lockPrice\": \"50.00\",\n           \"insuredPersonFamilyName\": \"\",\n           \"noSEPA\": true,\n           \"reimbursementType\": \"leasingBalance\"\n    },\n    \"package\": \"LeasingSchutz\",\n    \"addons\": [\n        \"gpsTracking\",\n        \"mobilitaetsschutz\"\n    ]\n}"},"url":"https://api.sandbox.alteos.com/v2/policies/policies","description":"<p>Use this API to create a policy for the Leasing E-Bike/Fahrrad Product</p>\n<p>Customer</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory/Optional  <br />(Data )</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>email</td>\n<td><strong>Mandatory</strong>  <br />(email)</td>\n<td>Contact email address of the customer/customer company  <br />  <br /><strong>e.g. \"</strong><a href=\"https://mailto:test@gmail.com\"><b>test@alteos.com</b></a><strong>\"</strong></td>\n</tr>\n<tr>\n<td>firstName</td>\n<td><strong>Mandatory</strong>  <br />(String)</td>\n<td>First name of the customer  <br />In case of company: Please split the company name between firstName and lastName  <br />  <br /><strong>e.g. \"Test Company\"</strong></td>\n</tr>\n<tr>\n<td>lastName</td>\n<td><strong>Mandatory</strong>  <br />(String)</td>\n<td>Family name of the customer  <br />  <br /><strong>e.g. \"GmbH\"</strong></td>\n</tr>\n<tr>\n<td>addressStreet</td>\n<td><strong>Mandatory</strong>  <br />(String)</td>\n<td>Street name of the customer's contact address  <br />  <br /><strong>e.g. \"Teststr.\"</strong></td>\n</tr>\n<tr>\n<td>addressHouseNumber</td>\n<td><strong>Mandatory</strong>  <br />(String)</td>\n<td>House number of the customer's contact address  <br />  <br /><strong>e.g. \"13\"</strong></td>\n</tr>\n<tr>\n<td>addressPLZ</td>\n<td><strong>Mandatory</strong>  <br />(String)</td>\n<td>Area Code of the customer's contact address  <br />  <br /><strong>e.g. \"12345\"</strong></td>\n</tr>\n<tr>\n<td>addressCity</td>\n<td><strong>Mandatory</strong>  <br />(String)</td>\n<td>Name of the city of the customer's contact address  <br />  <br /><strong>e.g. \"Berlin\"</strong></td>\n</tr>\n<tr>\n<td>companyName</td>\n<td><strong>Mandatory</strong>  <br />(String)</td>\n<td>Name of the customer company  <br />  <br /><strong>e.g. \"Test Company GmbH\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p>Values</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory/Optional  <br />(Data )</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>policyStartDate</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>Starting date of the insurance contract, cannot be a date in the past  <br />  <br />YYYY-MM-DD format  <br />  <br />- Also corresponding to date of handover of the bike  <br />- Coverage starts on this day  <br />  <br /><strong>e.g. \"2025-09-17\"</strong></td>\n</tr>\n<tr>\n<td>insuredPersonName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>First name of the insured person  <br />In case of a company: use this field to store the company name  <br />  <br /><strong>e.g. \"Test GmbH\"</strong></td>\n</tr>\n<tr>\n<td>insuredPersonFamilyName</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Family name of the insured person  <br />In case of a company: can be left blank  <br />  <br /><strong>e.g. \"\"</strong></td>\n</tr>\n<tr>\n<td>insuredPersonEmail</td>\n<td><strong>Mandatory</strong>  <br />(email)</td>\n<td>Email address of the insured person  <br />  <br /><strong>e.g. \"</strong><a href=\"https://mailto:test@alteos.com\"><b>test@alteos.com</b></a><strong>\"</strong></td>\n</tr>\n<tr>\n<td>bikeUserFirstName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>First name of the person that will use the insured bike  <br />  <br /><strong>e.g. \"Miriam\"</strong></td>\n</tr>\n<tr>\n<td>bikeUserFamilyName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Last name of the person that will use the insured bike  <br />  <br /><strong>e.g. \"Musterfrau\"</strong></td>\n</tr>\n<tr>\n<td>bikeUserEmail</td>\n<td><strong>Mandatory</strong>  <br />(email)</td>\n<td>Email address of the person that will use the insured bike  <br />  <br /><strong>e.g. \"</strong><a href=\"https://mailto:username@username.com\"><b>test@alteos.com\"</b></a></td>\n</tr>\n<tr>\n<td>lockModel</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Name of the specific lock model used to secure the insured bike  <br />  <br /><strong>e.g. \"ABUS Stahlkabelschloss Ivera Steel-O-Flex 7200/110\"</strong></td>\n</tr>\n<tr>\n<td>lockPrice</td>\n<td><strong>Mandatory</strong>  <br />(float)</td>\n<td>Price of the lock used to secure the insured bike in €  <br />  <br /><strong>e.g. \"50.00\"</strong></td>\n</tr>\n<tr>\n<td>hasEligibleLock</td>\n<td><strong>Mandatory</strong>  <br />(boolean)</td>\n<td>Value that states if the bike users lock is suitable for this contract  <br />  <br /><strong>possible values:  <br />true  <br />false</strong></td>\n</tr>\n<tr>\n<td>price</td>\n<td><strong>Mandatory</strong>  <br />(float)</td>\n<td>Price of the insured bike (or ebike) incl. taxes in €  <br />  <br /><strong>e.g. \"2949.00\"</strong></td>\n</tr>\n<tr>\n<td>frameNumber</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Frame number of the insured bike  <br />  <br /><strong>e.g. \"WOW13532KGET\"</strong></td>\n</tr>\n<tr>\n<td>batteryNumber</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Battery number of the insured E-bike  <br />  <br /><strong>e.g. \"123456789T\"</strong></td>\n</tr>\n<tr>\n<td>type</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Description of the insured bike by model or intended use  <br />  <br /><strong>e.g. \"Touring Hybrid Pro 625 Trapeze 46 XS\", \"Lastenrad\"</strong></td>\n</tr>\n<tr>\n<td>brand</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Brand of the insured bike  <br />  <br /><strong>e.g. \"Cube\"</strong></td>\n</tr>\n<tr>\n<td>model</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Model of the insured (E-)Bike  <br />  <br /><strong>e.g. \"Touring Hybrid Pro 625 Trapeze 46 XS\"</strong></td>\n</tr>\n<tr>\n<td>noSEPA</td>\n<td><strong>Mandatory</strong>  <br />(boolean)</td>\n<td>This field is a validation to ensure that it is expected not to include SEPA payment for this product. It must be set to true for the policy creation to succeed.  <br />  <br /><strong>possible values:  <br />true  <br />false</strong></td>\n</tr>\n<tr>\n<td>contractNumber</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Leasing contract number  <br />  <br /><strong>e.g. \"23156-64565-595\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p>Packages &amp; Add-ons</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>package</td>\n<td>LeasingSchutz</td>\n</tr>\n<tr>\n<td>addons (array)</td>\n<td>one or multiple of the below available addons (with the logic described)</td>\n</tr>\n<tr>\n<td>\"gpsTracking\"</td>\n<td></td>\n</tr>\n<tr>\n<td>\"mobilitaetsschutz\"</td>\n<td>should be included by default; throws error if omitted</td>\n</tr>\n<tr>\n<td>\"gewerblicheNutzung\"</td>\n<td>if the bike/ebike is meant for commercial use.  <br />  <br />Note: if this addon is selected, the Rücknahmegarantie Module is not available</td>\n</tr>\n<tr>\n<td>\"inspektion\"</td>\n<td></td>\n</tr>\n<tr>\n<td>\"wartungUndVerschleiss\"</td>\n<td></td>\n</tr>\n<tr>\n<td>\"ruecknahmegarantie\"</td>\n<td></td>\n</tr>\n<tr>\n<td>\"einzelteileVerschleiss\"</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies","policies"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"c879e5bf-1b07-4673-a2e8-f47ae115870b","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike-Leasing-2024-no-sepa\",\n    \"customer\": {\n        \"email\": \"test@alteos.com\",\n        \"phone\": \"08084413230\",\n        \"firstName\": \"Test Company\",\n        \"lastName\": \"GmbH\",\n        \"type\":\"business\",\n        \"values\": {\n            \"companyName\": \"Test Company GmbH\",\n            \"addressStreet\": \"Teststr.\",\n            \"addressHouseNumber\": \"13\",\n            \"addressPlz\": \"12345\",\n            \"addressCity\": \"Berlin\"\n        }\n    },\n    \"values\": {\n        \"policyStartDate\": \"2025-09-17\",\n         \"price\": \"2949.00\",\n          \"brand\": \"Cube\",\n          \"model\": \"\",\n          \"frameNumber\": \"WOW13532KGET\",\n           \"batteryNumber\": \"0 275 007 543 Bosch 625WH\",\n           \"type\": \"Touring Hybrid Pro 625 Trapeze 46 XS\",\n           \"hasEligibleLock\": true,\n           \"insuredPersonName\": \"Test GmbH\",\n           \"insuredPersonFamilyName\": \"\",\n           \"insuredPersonEmail\": \"test@alteos.com\",\n           \"bikeUserFirstName\": \"Miriam\",\n           \"bikeUserFamilyName\": \"Musterfrau\",\n           \"bikeUserEmail\": \"test@alteos.de\",\n           \"lockModel\": \"ABUS Stahlkabelschloss Ivera Steel-O-Flex 7200/110\",\n           \"lockPrice\": \"50.00\",\n           \"noSEPA\": true,\n           \"reimbursementType\": \"leasingBalance\"\n    },\n    \"package\": \"LeasingSchutz\",\n    \"addons\": [\n        \"gpsTracking\",\n        \"mobilitaetsschutz\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"6e2d85fc-acd1-4b25-9fd9-05b3851329e2\",\n    \"prettyId\": \"ML9UKA\",\n    \"requestData\": {\n        \"productName\": \"ebike-Leasing-2024-no-sepa\",\n        \"customer\": {\n            \"email\": \"test@alteos.com\",\n            \"phone\": \"08084413230\",\n            \"firstName\": \"Test Company\",\n            \"lastName\": \"GmbH\",\n            \"values\": {\n                \"companyName\": \"Test Company GmbH\",\n                \"addressStreet\": \"Teststr.\",\n                \"addressHouseNumber\": \"13\",\n                \"addressPlz\": \"12345\",\n                \"addressCity\": \"Berlin\"\n            }\n        },\n        \"values\": {\n            \"policyStartDate\": \"2025-09-17\",\n            \"price\": \"2949.00\",\n            \"brand\": \"Cube\",\n            \"model\": \"\",\n            \"frameNumber\": \"WOW13532KGET\",\n            \"batteryNumber\": \"0 275 007 543 Bosch 625WH\",\n            \"type\": \"Touring Hybrid Pro 625 Trapeze 46 XS\",\n            \"hasEligibleLock\": true,\n            \"insuredPersonName\": \"Test GmbH\",\n            \"insuredPersonFamilyName\": \"\",\n            \"insuredPersonEmail\": \"test@alteos.com\",\n            \"bikeUserFirstName\": \"Miriam\",\n            \"bikeUserFamilyName\": \"Musterfrau\",\n            \"bikeUserEmail\": \"test@alteos.de\",\n            \"lockModel\": \"ABUS Stahlkabelschloss Ivera Steel-O-Flex 7200/110\",\n            \"lockPrice\": \"50.00\",\n            \"noSEPA\": true,\n            \"reimbursementType\": \"leasingBalance\"\n        },\n        \"package\": \"LeasingSchutz\",\n        \"addons\": [\n            \"gpsTracking\",\n            \"mobilitaetsschutz\"\n        ]\n    },\n    \"quote\": {\n        \"gross\": 9.45,\n        \"premium\": 7.94,\n        \"taxes\": 1.51,\n        \"premiumExclDiscounts\": 7.94,\n        \"taxesExclDiscounts\": 1.51,\n        \"grossExclDiscounts\": 9.45,\n        \"addons\": [\n            {\n                \"tax\": 0,\n                \"name\": \"gpsTracking\",\n                \"gross\": 0,\n                \"premium\": 0,\n                \"payments\": []\n            },\n            {\n                \"tax\": 0,\n                \"name\": \"mobilitaetsschutz\",\n                \"gross\": 0,\n                \"premium\": 0,\n                \"payments\": []\n            }\n        ],\n        \"package\": {\n            \"tax\": 1.51,\n            \"name\": \"LeasingSchutz\",\n            \"gross\": 9.45,\n            \"premium\": 7.94,\n            \"payments\": []\n        }\n    },\n    \"draftInvoice\": {}\n}"},{"id":"602c2b81-8f3c-4796-86c8-b26529df47f8","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n  \"productName\": \"ebike-Leasing-2024-no-sepa\",\n  \"customer\": {\n    \"email\": \"username@username.com\",\n    \"firstName\": \"Paul\",\n    \"lastName\": \"Luke\",\n    \"values\": {\n      \"addressStreet\": \"Hardenbergerstr.\",\n      \"addressHouseNumber\": \"32\",\n       \"addressPlz\": \"10623\",\n       \"addressCity\": \"Berlin\",\n      \"companyName\": \"CompanyName\"\n    }\n  },\n  \"values\": {\n      \n    \"policyStartDate\": \"2024-03-01\",\n    \"insuredPersonName\": \"ttest\",\n    \"insuredPersonFamilyName\": \"test\",\n    \"insuredPersonEmail\":\"test@alteos.com\",\n    \"bikeUserFirstName\": \"ttest\",\n    \"bikeUserFamilyName\": \"test\",\n    \"bikeUserEmail\":\"test@alteos.com\",\n    \"lockModel\": \"123\",\n    \"lockPrice\": 12,\n    \"hasEligibleLock\": true,\n    \"price\": 1000,\n    \"frameNumber\": \"23\",\n    \"type\": \"E-Bike\",\n    \"brand\": \"3GBikes\",\n    \"model\": \"testModel\",\n    \"noSEPA\": true\n  },\n  \"package\": \"LeasingSchutz\",\n  \"addons\": [\n      \n        \"gpsTracking\",\n        \"mobilitaetsschutz\",\n        \"gewerblicheNutzung\",\n        \"inspektion\",\n        \"wartungUndVerschleiss\",\n        \"einzelteileVerschleiss\"\n      ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"6e68aff9-d22d-4525-8b07-05a7b6739d32"},{"name":"Leasing Product B2B2C Austria 2025","id":"27d797d0-392b-4a85-9b34-4a32c92604b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKeyAlteos}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"productName\": \"ebikeAustria-leasing\",\n  \"customer\": {\n    \"email\": \"test@alteos.com\",\n    \"phone\": \"0123456\",\n    \"firstName\": \"John\",\n    \"lastName\": \"Doe\",\n    \"values\": {\n      \"addressStreet\": \"Teststr.\",\n      \"addressHouseNumber\": \"21\",\n      \"addressPlz\": \"1080\",\n      \"addressCity\": \"Wien\",\n      \"companyName\": \"Test Company GmbH\"\n    }\n  },\n  \"values\": {\n    \"policyStartDate\": \"2025-09-28\",\n    \"insuredPersonName\": \"Test GmbH\",\n    \"insuredPersonEmail\":\"test@alteos.com\",\n    \"bikeUserFirstName\": \"test\",\n    \"bikeUserFamilyName\": \"Tester\",\n    \"bikeUserEmail\":\"test@alteos.com\",\n    \"contractNumber\": \"Test GmbH\",\n    \"lockModel\": \"Tex-Lock Eyelet M / U/X-Lock bundle / chateau red / 120cm\",\n    \"lockPrice\": 139.90,\n    \"hasEligibleLock\": \"TRUE\",\n    \"price\": 7180.90,\n    \"frameNumber\": \"124245345345\",\n    \"type\": \"Stadtrad\",\n    \"vehicleType\": \"Fahrrad\",\n    \"brand\": \"Vello\",\n    \"model\": \"SUB (Modell: Gears) inkl.\"\n  },\n  \"package\": \"leasingSchutz\",\n  \"addons\": [\n      ]\n}"},"url":"https://api.sandbox.alteos.com/v2/policies/policies","description":"<p>Use this API to create a policy for the Leasing E-Bike/Fahrrad Product</p>\n<p>Product name</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Mandatory/Optional  <br />(data type)</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>productname</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>name of the chosen product  <br />  <br /><strong>Possible values:  <br />\"eBikeAustria-leasing</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p>Customer</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Mandatory/Optional  <br />(data type)</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>email</td>\n<td><strong>Mandatory</strong>  <br />(email)</td>\n<td>email address of the customer  <br />  <br /><strong>e.g. \"</strong><a href=\"https://mailto:test@alteos.com\"><b>test@alteos.com</b></a><strong>\"</strong></td>\n</tr>\n<tr>\n<td>phone</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>phone number of the customer  <br />  <br /><strong>e.g. \"0123456\"</strong></td>\n</tr>\n<tr>\n<td>firstName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>first name of the customer  <br />  <br /><strong>e.g. \"John\"</strong></td>\n</tr>\n<tr>\n<td>lastName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>last name of the customer  <br />  <br /><strong>e.g. \"Doe\"</strong></td>\n</tr>\n<tr>\n<td>addressStreet</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Street name of the customer's address  <br />  <br /><strong>e.g. \"Teststr.\"</strong></td>\n</tr>\n<tr>\n<td>addressHouseNumber</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>House number of the customer's address  <br />  <br /><strong>e.g. \"21\"</strong></td>\n</tr>\n<tr>\n<td>addressPlz</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Postal code of the customer's address  <br />  <br /><strong>e.g. \"1080\"</strong></td>\n</tr>\n<tr>\n<td>addressCity</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Name of the city of the customer's address  <br />  <br /><strong>e.g. \"Wien\"</strong></td>\n</tr>\n<tr>\n<td>companyName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Name of the customer company that sells the leasing contract  <br />  <br /><strong>e.g. \"Test Company GmbH\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p>Values</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Mandatory/Optional  <br />(data type)</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>policyStartDate</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>The first date at which the policy is active  <br />- Also corresponding to date of handover of the bike  <br />- Coverage starts on this day as well  <br />Formate: YYYY-MM-DD  <br />Max: 1 month from today  <br /><strong>e.g. \"2025-09-28\"</strong></td>\n</tr>\n<tr>\n<td>insuredPersonName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Name of the insured person  <br />In case of a company: use this field to store the company name  <br />  <br /><strong>e.g. \"Test GmbH\"</strong></td>\n</tr>\n<tr>\n<td>insuredPersonEmail</td>\n<td><strong>Mandatory</strong>  <br />(email)</td>\n<td>Email adress of the insured person/company  <br />  <br /><strong>eg. \"</strong><a href=\"https://mailto:username@username.com\"><b>test@alteos.com\"</b></a></td>\n</tr>\n<tr>\n<td>insuredPersonCostCenter</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Specifies the employer's cost center referred to in the csv section of the monthly invoice  <br />  <br /><strong>e.g. \"Cost center 1\"</strong></td>\n</tr>\n<tr>\n<td>bikeUserFirstName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>First name of the person that will use the bike  <br />  <br /><strong>e.g. \"test\"</strong></td>\n</tr>\n<tr>\n<td>bikeUserFamilyName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Family name of the person that will use the bike  <br />  <br /><strong>e.g. \"Tester\"</strong></td>\n</tr>\n<tr>\n<td>bikeUserEmail</td>\n<td><strong>Mandatory</strong>  <br />(email)</td>\n<td>Email adress of the person that will use the bike  <br />  <br />eg. \"<a href=\"https://mailto:username@username.com\"><b>test@alteos.com</b></a>\"</td>\n</tr>\n<tr>\n<td>lockModel</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Name of the lock model that is used by the bike user  <br />  <br /><strong>e.g. \"Tex-Lock Eyelet M / U/X-Lock bundle / chateau red / 120cm\"</strong></td>\n</tr>\n<tr>\n<td>lockPrice</td>\n<td><strong>Optional</strong>  <br />(number)</td>\n<td>Price of the lock (in euros) that is used by the bike user  <br />  <br /><strong>e.g. \"139.90\"</strong></td>\n</tr>\n<tr>\n<td>hasEligibleLock</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Value that states if the lock, used by the bike user, is acceptable for the contract  <br />Must have the value \"TRUE\" for a succesful contract creation  <br />  <br /><strong>Possible values:  <br />\"TRUE\"  <br />\"FALSE\"</strong></td>\n</tr>\n<tr>\n<td>price</td>\n<td><strong>Mandatory</strong>  <br />(number)</td>\n<td>Price of the insured bike or ebike (in euros) incl. taxes  <br />  <br /><strong>e.g. \"7180.00\"</strong></td>\n</tr>\n<tr>\n<td>frameNumber</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Individual identification number for each bike  <br />  <br /><strong>e.g. \"124245345345\"</strong></td>\n</tr>\n<tr>\n<td>batteryNumber</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Identifying number of the battery of the leased e-bike, only available for e-bikes  <br />  <br />Default value: \"-\"  <br />  <br /><strong>e.g. \"123456879\"</strong></td>\n</tr>\n<tr>\n<td>vehicleType</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Specifies what type of bike the insured bike is  <br />  <br /><strong>Possible values:  <br />\"E-Bike\"  <br />\"Fahrrad\"</strong></td>\n</tr>\n<tr>\n<td>type</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Further describes the insured bike  <br />  <br /><strong>Possible values:  <br />\"Stadtrad\"  <br />\"Lasten- / Transportrad\"  <br />\"Mountainbike\"  <br />\"Gravelbike / Rennrad\"  <br />\"S-Pedelecs\"  <br />\"Sonstige\"</strong></td>\n</tr>\n<tr>\n<td>brand</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Brand name of the insured bike  <br />  <br /><strong>e.g. \"3GBikes\"</strong></td>\n</tr>\n<tr>\n<td>model</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Name of the (E)Bike's model  <br />  <br /><strong>e.g. \"SUB (Modell: Gears) inkl.\"</strong></td>\n</tr>\n<tr>\n<td>sumInsured</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Total sum of all insured objects (in euros)  <br />  <br /><strong>e.g. \"7180.00\"</strong></td>\n</tr>\n<tr>\n<td>contractNumber</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Leasing contract number  <br />  <br /><strong>e.g. \"D4568-FG596\"</strong></td>\n</tr>\n<tr>\n<td>withGPS</td>\n<td><strong>Optional</strong>  <br />(boolean)</td>\n<td>Specifies if the leased bike has a GPS tracker  <br />  <br /><strong>Possible values:  <br />true  <br />false</strong></td>\n</tr>\n<tr>\n<td>bikeShopName</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Name of the bike shop that sells the leasing contract  <br />  <br /><strong>e.g. \"WeSellBikes\"</strong></td>\n</tr>\n<tr>\n<td>bikeShopEmail</td>\n<td><strong>Optional</strong>  <br />(email)</td>\n<td>email address of the bike shop that sold the leasing contract  <br />  <br /><strong>e.g. \"</strong><a href=\"https://mailto:test@shop.com\"><b>test@shop.com</b></a><strong>\"</strong></td>\n</tr>\n<tr>\n<td>bikeShopAddressStreet</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Street name of the bike shop that sold the leasing contract  <br />  <br /><strong>e.g. \"Teststr.\"</strong></td>\n</tr>\n<tr>\n<td>bikeShopAddressHouseNumber</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>House number of the bike shop that sold the leasing contract  <br />  <br /><strong>e.g. \"56\"</strong></td>\n</tr>\n<tr>\n<td>bikeShopAddressPlz</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Postal code of the bike shop that sold the leasing contract  <br />  <br /><strong>e.g. \"1080\"</strong></td>\n</tr>\n<tr>\n<td>bikeShopAddressCity</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>City of the bike shop that sold the leasing contract  <br />  <br /><strong>e.g. \"Wien\"</strong></td>\n</tr>\n<tr>\n<td>commercialUse</td>\n<td><strong>Optional</strong>  <br />(boolean)</td>\n<td>Specifies if the leased bike is use for commercial purposes  <br />  <br /><strong>Possible values:  <br />true  <br />false</strong></td>\n</tr>\n<tr>\n<td>withCommercialAddon</td>\n<td><strong>Optional</strong>  <br />(boolean)</td>\n<td>Specifies if the addon \"gewerblicheNutzung\" is selected  <br />  <br /><strong>Possible values:  <br />true  <br />false</strong></td>\n</tr>\n<tr>\n<td>paymentSchedule</td>\n<td><strong>Optional</strong>  <br />(select)</td>\n<td>Specifies the intervalls at which the customers pays his insurance fees  <br />  <br />Default value: \"Monthly\"  <br />  <br /><strong>Possible values:  <br />\"Monthly\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p>Packages &amp; Add-ons</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>package</td>\n<td>Name of the insurance package chosen for this conract  <br />  <br /><strong>e.g. \"leasingSchutz\"</strong></td>\n</tr>\n<tr>\n<td>addons</td>\n<td>States which of the available addons have been chosen for this contract  <br />  <br /><strong>e.g.  <br />\"gpsTracking\"  <br />\"wartungUndVerschleiss\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies","policies"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"21bd1a33-c0ab-4d07-8e07-c841a7c4fca0","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"productName\": \"ebikeAustria-leasing\",\n  \"customer\": {\n    \"email\": \"test@alteos.com\",\n    \"phone\": \"\",\n    \"firstName\": \"John\",\n    \"lastName\": \"Doe\",\n    \"values\": {\n      \"addressStreet\": \"Teststr.\",\n      \"addressHouseNumber\": \"21\",\n      \"addressPlz\": \"1080\",\n      \"addressCity\": \"Wien\",\n      \"companyName\": \"Test Company GmbH\"\n    }\n  },\n  \"values\": {\n    \"policyStartDate\": \"2025-09-28\",\n    \"insuredPersonName\": \"Test GmbH\",\n    \"insuredPersonEmail\":\"test@alteos.com\",\n    \"bikeUserFirstName\": \"test\",\n    \"bikeUserFamilyName\": \"Tester\",\n    \"bikeUserEmail\":\"test@alteos.com\",\n    \"contractNumber\": \"Test GmbH\",\n    \"lockModel\": \"Tex-Lock Eyelet M / U/X-Lock bundle / chateau red / 120cm\",\n    \"lockPrice\": 139.90,\n    \"hasEligibleLock\": \"TRUE\",\n    \"price\": 7180.90,\n    \"frameNumber\": \"124245345345\",\n    \"type\": \"Stadtrad\",\n    \"vehicleType\": \"Fahrrad\",\n    \"brand\": \"Vello\",\n    \"model\": \"SUB (Modell: Gears) inkl.\"\n  },\n  \"package\": \"leasingSchutz\",\n  \"addons\": [\n      ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"e3ce324a-1193-4d4a-b494-4eb5bdfbf87f\",\n    \"prettyId\": \"Z2Y64M\",\n    \"requestData\": {\n        \"productName\": \"ebikeAustria-leasing\",\n        \"customer\": {\n            \"email\": \"test@alteos.com\",\n            \"phone\": \"\",\n            \"firstName\": \"John\",\n            \"lastName\": \"Doe\",\n            \"values\": {\n                \"addressStreet\": \"Teststr.\",\n                \"addressHouseNumber\": \"21\",\n                \"addressPlz\": \"1080\",\n                \"addressCity\": \"Wien\",\n                \"companyName\": \"Test Company GmbH\"\n            }\n        },\n        \"values\": {\n            \"policyStartDate\": \"2025-09-28\",\n            \"insuredPersonName\": \"Test GmbH\",\n            \"insuredPersonEmail\": \"test@alteos.com\",\n            \"bikeUserFirstName\": \"test\",\n            \"bikeUserFamilyName\": \"Tester\",\n            \"bikeUserEmail\": \"test@alteos.com\",\n            \"contractNumber\": \"Test GmbH\",\n            \"lockModel\": \"Tex-Lock Eyelet M / U/X-Lock bundle / chateau red / 120cm\",\n            \"lockPrice\": 139.9,\n            \"hasEligibleLock\": \"TRUE\",\n            \"price\": 7180.9,\n            \"frameNumber\": \"124245345345\",\n            \"type\": \"Stadtrad\",\n            \"vehicleType\": \"Fahrrad\",\n            \"brand\": \"Vello\",\n            \"model\": \"SUB (Modell: Gears) inkl.\"\n        },\n        \"package\": \"leasingSchutz\",\n        \"addons\": []\n    },\n    \"quote\": {\n        \"gross\": 29.01,\n        \"premium\": 26.14,\n        \"taxes\": 2.87,\n        \"premiumExclDiscounts\": 26.14,\n        \"taxesExclDiscounts\": 2.87,\n        \"grossExclDiscounts\": 29.01,\n        \"addons\": [],\n        \"package\": {\n            \"tax\": 2.87,\n            \"name\": \"leasingSchutz\",\n            \"gross\": 29.01,\n            \"premium\": 26.14,\n            \"payments\": [\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                },\n                {\n                    \"tax\": 2.87,\n                    \"premium\": 26.14\n                }\n            ]\n        }\n    },\n    \"draftInvoice\": {}\n}"},{"id":"9efaab11-b69f-4689-8e97-0ff2cfea4126","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike-Leasing-2024\",\n    \"values\": {\n        \"policyStartDate\": \"2024-02-29\",\n        \"paymentSchedule\": \"monthly\",\n        \"price\": \"3000.01-3500.00\"\n    },\n    \"package\": \"LeasingSchutz\",\n    \"addons\": [\n        \"gpsTracking\",\n        \"mobilitaetsschutz\",\n        \"gewerblicheNutzung\",\n        \"inspektion\",\n        \"wartungUndVerschleiss\",\n        \"einzelteileVerschleiss\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"27d797d0-392b-4a85-9b34-4a32c92604b3"},{"name":"E-Bike Leasing JobRad AT","id":"dba1212c-69ab-44de-8689-dcf7c26fa928","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-app-key","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"bike-leasing-jobrad-at\",\n    \"customer\": {\n        \"email\": \"test@alteos.com\",\n        \"firstName\": \"abc Finance\",\n        \"lastName\": \"GmbH\",\n        \"values\": {\n            \"addressStreet\": \"Teststrasse\",\n            \"addressHouseNumber\": \"1\",\n            \"addressPlz\": \"0000\",\n            \"addressCity\": \"Wien\",\n            \"companyName\": \"abc Finance GmbH\"\n        }\n    },\n    \"values\": {\n        // general\n        \"partnerPolicyIdentifier\": \"JR_SLC-0017235\",                                    // jobrad_vertragsnummer\n        \"issueDate\": \"2025-08-01\",                                                      // uebernahmedatum\n        \"monthlyPremium\": 16.78,                                                        // versicherungsrate\n        \"totalPremium\": 122.99,                                                         // leasinggesamtrate\n        \"policyEndDate\": \"2028-06-30\",                                                  // leasingende\n        \"duration\": 48,                                                                 // new, duration of the leasing contract\n\n        // leasingnehmer\n        \"insuredPersonContactNumber\": \"AT036953\",                                        // leasingnehmer.abc_kontaktnummer\n        \"insuredPersonName\": \"Max Muster GmbH\",                                          // leasingnehmer.name\n        \"insuredPersonAddressStreet\": \"Test-Straße 8-10\",                                // leasingnehmer.strasse\n        \"insuredPersonAddressPostalCode\": \"1040\",                                        // leasingnehmer.postleitzahl\n        \"insuredPersonAddressCity\": \"Wien\",                                              // leasingnehmer.ort\n        \"insuredPersonEmail\": \"max.muster@musterfirma.com\",                              // leasingnehmer.email\n\n        // zweirad\n        \"frameNumber\": \"AV1111111\",                                                      // zweirad.rahmennummer\n        \"vehicleType\": \"Fahrrad\",                                                        // zweirad.kategorie\n        \"type\": \"Hardtail\",                                                      // zweirad.unterkategorie\n        \"model\": \"Reaction Hybrid Race 800\",                                             // zweirad.modell\n        \"bikeAccessories\": \"Trinkflaschenhalter, HPP, Anbauteile, Cube, 1.0, 16.95; ...\",    // zweirad.zubehoer\n        \"brand\": \"MMM\",                                                                  // zweirad.hersteller\n        \"price\": 2083.34,                                                                // zweirad.nettowert\n\n        // nutzer\n        \"bikeUserContactNumber\": \"00309000017Wc31AAC\",                                   // nutzer.jobrad_kontaktnummer\"\n        \"bikeUserFamilyName\": \"Gabriele Musterfrau\",                                     // nutzer.name\n        \"bikeUserEmail\": \"gabriele.musterfrau@gmx.com\"                                   // nutzer.email\n\n    },\n    \"package\": \"premium\",                                                                // basis,premium,premium+\n    \"addons\": []\n}"},"url":"https://api.sandbox.alteos.com/v2/policies","description":"<p>Use this API to create a policy for the Bike Leasing JobRad AT product.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Value</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>productName</strong></td>\n<td><strong>bike-leasing-jobrad-at</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p>Customer</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Mandatory/Optional  <br />(data type)</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>email</td>\n<td><strong>Mandatory</strong>  <br />(email)</td>\n<td>email address of the leasing provider  <br />  <br /><strong>e.g. \"</strong><a href=\"https://mailto:test@alteos.com\"><b>test@alteos.com</b></a><strong>\"</strong></td>\n</tr>\n<tr>\n<td>phone</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>phone number of the leasing provider  <br />  <br /><strong>e.g. \"0123456\"</strong></td>\n</tr>\n<tr>\n<td>firstName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>First name of the leasing provider  <br />  <br /><strong>e.g. \"Test Company\"</strong></td>\n</tr>\n<tr>\n<td>lastName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Last name of the leasing provider  <br />  <br /><strong>e.g. \"GmbH\"</strong></td>\n</tr>\n<tr>\n<td>addressStreet</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Street name of the leasing provider's address  <br />  <br /><strong>e.g. \"Teststrasse\"</strong></td>\n</tr>\n<tr>\n<td>addressHouseNumber</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>House number of the leasing provider's address  <br />  <br /><strong>e.g. \"1\"</strong></td>\n</tr>\n<tr>\n<td>addressPlz</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Postal code of the leasing provider's address  <br />  <br /><strong>e.g. \"1234\"</strong></td>\n</tr>\n<tr>\n<td>addressCity</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Name of the city of the leasing provider's address  <br />  <br /><strong>e.g. \"Wien\"</strong></td>\n</tr>\n<tr>\n<td>companyName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Name of the leasing provider  <br />  <br /><strong>e.g. \"Test Company GmbH\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p>Values:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Mandatory / Optional  <br /></strong>(data type)</th>\n<th><strong>Description and values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>partnerPolicyIdentifier</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Leasing contract number created by the partner in their system to identify the policy  <br />  <br /><strong>e.g. \"JR_SLC-0017235\"</strong></td>\n</tr>\n<tr>\n<td>issueDate</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>Issue date of the policy  <br />  <br />Format: YYYY-MM-DD  <br />  <br />- Date of handover of the bike  <br />- Coverage starts on this day.  <br />- Maximum Date: today  <br />  <br /><strong>e.g. \"2025-08-11\"</strong></td>\n</tr>\n<tr>\n<td>monthlyPremium</td>\n<td><strong>Mandatory</strong>  <br />(number)</td>\n<td>Monthly premium of the insurance policy  <br />  <br /><strong>e.g. 18.87</strong></td>\n</tr>\n<tr>\n<td>totalPremium</td>\n<td><strong>Mandatory</strong>  <br />(number)</td>\n<td>Total premium of the insurance policy and leasing contract combined  <br />  <br /><strong>e.g. 122.99</strong></td>\n</tr>\n<tr>\n<td>policyEndDate</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>End date of the leasing contract  <br />  <br /><strong>e.g. \"2028-06-30\"</strong></td>\n</tr>\n<tr>\n<td>duration</td>\n<td><strong>Mandatory</strong>  <br />(number)</td>\n<td>Duration of the leasing contract in months.  <br />  <br /><strong>Possible values:  <br />24  <br />36  <br />48</strong></td>\n</tr>\n<tr>\n<td>price</td>\n<td><strong>Mandatory</strong>  <br />(number)</td>\n<td>Price of the insured (E-)Bike in EUR  <br />  <br />max: 20.000  <br />  <br /><strong>e.g. 11567.54</strong></td>\n</tr>\n<tr>\n<td>vehicleType</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Specifies the type of the bike.  <br />  <br /><strong>Possible values:  <br />\"Fahrrad\"  <br />\"Pedelec\"  <br />\"E-Bike\"</strong></td>\n</tr>\n<tr>\n<td>brand</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Specifies the brand of the insured bike  <br />  <br /><strong>e.g. \"Riese &amp; Müller\"</strong></td>\n</tr>\n<tr>\n<td>model</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Specifies the model the model of the insured bike  <br />  <br /><strong>e.g. \"Superdelite5 GT vario\"</strong></td>\n</tr>\n<tr>\n<td>type</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Describes the type of the insured bike  <br />  <br /><strong>Possible values:  <br />\"Stadtrad\",  <br />\"Lasten- / Transportrad\",  <br />\"Mountainbike\"  <br />\"Gravelbike / Rennrad\",  <br />\"S-Pedelecs\",  <br />\"Sonstige\"</strong></td>\n</tr>\n<tr>\n<td>frameNumber</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Frame number of the insured (E-)Bike  <br />  <br /><strong>e.g. \"XYZ123456\"</strong></td>\n</tr>\n<tr>\n<td>insuredPersonContactNumber</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Lessee identifier  <br /><strong>e.g. \"AT036953\"</strong></td>\n</tr>\n<tr>\n<td>insuredPersonName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Company name of the employer/ lessee  <br />  <br /><strong>e.g. \"Max Muster GmbH\"</strong></td>\n</tr>\n<tr>\n<td>insuredPersonAddressStreet</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Street and house nr. of the employer / lessee  <br />  <br /><strong>e.g. \"Test-Straße 8-10\"</strong></td>\n</tr>\n<tr>\n<td>insuredPersonAddressPostalCode</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Postal Code of the employer / lessee  <br />  <br />Format: 4 digits  <br />  <br /><strong>e.g. \"1040\"</strong></td>\n</tr>\n<tr>\n<td>insuredPersonAddressCity</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>City of the employer / lessee  <br />  <br /><strong>e.g. \"Wien\"</strong></td>\n</tr>\n<tr>\n<td>insuredPersonEmail</td>\n<td><strong>Mandatory</strong>  <br />(email)</td>\n<td>Email address of the employer / lessee.  <br />  <br /><strong>e.g. \"</strong><a href=\"https://mailto:max.muster@musterfirma.com\"><b>max.muster@musterfirma.com</b></a><strong>\"</strong></td>\n</tr>\n<tr>\n<td>bikeUserFamilyName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>First and last name of the bike user  <br />  <br /><strong>e.g. \"Gabriele Musterfrau\"</strong></td>\n</tr>\n<tr>\n<td>bikeUserEmail</td>\n<td><strong>Mandatory</strong>  <br />(email)</td>\n<td>Email address of the bike user  <br />  <br /><strong>e.g. \"</strong><a href=\"https://mailto:gabriele.musterfrau@gmx.com\"><b>gabriele.musterfrau@gmx.com</b></a><strong>\"</strong></td>\n</tr>\n<tr>\n<td>bikeUserContactNumber</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Identifier of the bike user  <br />  <br /><strong>e.g. \"00309000017Wc31AAC\"</strong></td>\n</tr>\n<tr>\n<td>bikeAccessories</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Lists the accessories (amounts, brand and price) to the insured bike  <br />  <br /><strong>e.g. \"Trinkflaschenhalter, HPP, Anbauteile, Cube, 1.0, 16.95; ...\"</strong></td>\n</tr>\n<tr>\n<td>migratedContract</td>\n<td><strong>Optional</strong>  <br />(boolean)</td>\n<td>Use this boolean to flag migrated contracts  <br />  <br />Possible values:  <br />true  <br />false</td>\n</tr>\n<tr>\n<td>insuredPersonCompanyMoreThan500Employees</td>\n<td><strong>Optional</strong>  <br />(boolean)</td>\n<td>Specifies, if the company that leases the bike has more than 500 employees  <br />  <br /><strong>Possible values:  <br />true  <br />false</strong></td>\n</tr>\n<tr>\n<td>bikeDealerId</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Identifies the shop that sold the leasing contract via its individual ID  <br />  <br /><strong>e.g. \"123456\"</strong></td>\n</tr>\n<tr>\n<td>bikeDealerCompanyName</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Name of the shop that sells the leasing contract  <br />  <br /><strong>e.g. \"WeSellBikes\"</strong></td>\n</tr>\n<tr>\n<td>package</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Package name  <br />  <br /><strong>Possible values:  <br />\"basis\"  <br />\"premium\"  <br />\"premium+\"</strong></td>\n</tr>\n<tr>\n<td>addons</td>\n<td><strong>Mandatory</strong></td>\n<td>No addons are available for this product  <br />Must be an empty array</td>\n</tr>\n</tbody>\n</table>\n</div><p>The policy creation response will also return the <code>requestData</code> object which contains all the data that was given by the user during the policy creation and the <code>quote</code> object which contains all the quotation calculations.</p>\n","urlObject":{"path":["v2","policies"],"host":["https://api.sandbox.alteos.com"],"query":[{"disabled":true,"description":{"content":"<p>Coverage period of the insurance.</p>\n","type":"text/plain"},"key":"duration","value":""},{"disabled":true,"description":{"content":"<p>Date of purchase of the eBike. Must not be older than 6 months before the insurance starting date.</p>\n","type":"text/plain"},"key":"purchasedAt","value":""}],"variable":[]}},"response":[{"id":"6b58fb53-3a3b-4232-a5d2-5e00c5b2367b","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-App-Key","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"bike-leasing-jobrad-at\",\n    \"customer\": {\n        \"email\": \"test@alteos.com\",\n        \"firstName\": \"abc Finance\",\n        \"lastName\": \"GmbH\",\n        \"values\": {\n            \"addressStreet\": \"Teststrasse\",\n            \"addressHouseNumber\": \"1\",\n            \"addressPlz\": \"0000\",\n            \"addressCity\": \"Wien\",\n            \"companyName\": \"abc Finance GmbH\"\n        }\n    },\n    \"values\": {\n        // general\n        \"partnerPolicyIdentifier\": \"JR_SLC-0017235\",                                    // jobrad_vertragsnummer\n        \"issueDate\": \"2025-08-01\",                                                      // uebernahmedatum\n        \"monthlyPremium\": 16.78,                                                        // versicherungsrate\n        \"totalPremium\": 122.99,                                                         // leasinggesamtrate\n        \"policyEndDate\": \"2028-06-30\",                                                  // leasingende\n        \"duration\": 48,                                                                 // new, duration of the leasing contract\n\n        // leasingnehmer\n        \"insuredPersonContactNumber\": \"AT036953\",                                        // leasingnehmer.abc_kontaktnummer\n        \"insuredPersonName\": \"Max Muster GmbH\",                                          // leasingnehmer.name\n        \"insuredPersonAddressStreet\": \"Test-Straße 8-10\",                                // leasingnehmer.strasse\n        \"insuredPersonAddressPostalCode\": \"1040\",                                        // leasingnehmer.postleitzahl\n        \"insuredPersonAddressCity\": \"Wien\",                                              // leasingnehmer.ort\n        \"insuredPersonEmail\": \"max.muster@musterfirma.com\",                              // leasingnehmer.email\n\n        // zweirad\n        \"frameNumber\": \"AV1111111\",                                                      // zweirad.rahmennummer\n        \"vehicleType\": \"Fahrrad\",                                                        // zweirad.kategorie\n        \"type\": \"Hardtail\",                                                      // zweirad.unterkategorie\n        \"model\": \"Reaction Hybrid Race 800\",                                             // zweirad.modell\n        \"bikeAccessories\": \"Trinkflaschenhalter, HPP, Anbauteile, Cube, 1.0, 16.95; ...\",    // zweirad.zubehoer\n        \"brand\": \"MMM\",                                                                  // zweirad.hersteller\n        \"price\": 2083.34,                                                                // zweirad.nettowert\n\n        // nutzer\n        \"bikeUserContactNumber\": \"00309000017Wc31AAC\",                                   // nutzer.jobrad_kontaktnummer\"\n        \"bikeUserFamilyName\": \"Gabriele Musterfrau\",                                     // nutzer.name\n        \"bikeUserEmail\": \"gabriele.musterfrau@gmx.com\"                                   // nutzer.email\n\n    },\n    \"package\": \"premium\",                                                                // basis,premium,premium+\n    \"addons\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"56609529-3a5a-4105-8170-776f5d5ef56b\",\n    \"prettyId\": \"M2ZB8R\",\n    \"requestData\": {\n        \"productName\": \"bike-leasing-jobrad-at\",\n        \"customer\": {\n            \"email\": \"test@alteos.com\",\n            \"firstName\": \"abc Finance\",\n            \"lastName\": \"GmbH\",\n            \"values\": {\n                \"addressStreet\": \"Teststrasse\",\n                \"addressHouseNumber\": \"1\",\n                \"addressPlz\": \"0000\",\n                \"addressCity\": \"Wien\",\n                \"companyName\": \"abc Finance GmbH\"\n            }\n        },\n        \"values\": {\n            \"issueDate\": \"2025-08-01\",\n            \"monthlyPremium\": 16.78,\n            \"totalPremium\": 122.99,\n            \"policyEndDate\": \"2028-06-30\",\n            \"duration\": 48,\n            \"insuredPersonContactNumber\": \"AT036953\",\n            \"insuredPersonName\": \"Max Muster GmbH\",\n            \"insuredPersonAddressStreet\": \"Test-Straße 8-10\",\n            \"insuredPersonAddressPostalCode\": \"1040\",\n            \"insuredPersonAddressCity\": \"Wien\",\n            \"insuredPersonEmail\": \"max.muster@musterfirma.com\",\n            \"frameNumber\": \"AV1111111\",\n            \"vehicleType\": \"Fahrrad\",\n            \"type\": \"Hardtail\",\n            \"model\": \"Reaction Hybrid Race 800\",\n            \"bikeAccessories\": \"Trinkflaschenhalter, HPP, Anbauteile, Cube, 1.0, 16.95; ...\",\n            \"brand\": \"MMM\",\n            \"price\": 2083.34,\n            \"bikeUserContactNumber\": \"00309000017Wc31AAC\",\n            \"bikeUserFamilyName\": \"Gabriele Musterfrau\",\n            \"bikeUserEmail\": \"gabriele.musterfrau@gmx.com\"\n        },\n        \"package\": \"premium\",\n        \"addons\": []\n    },\n    \"quote\": {\n        \"gross\": 16.78,\n        \"premium\": 15.12,\n        \"taxes\": 1.66,\n        \"premiumExclDiscounts\": 15.12,\n        \"taxesExclDiscounts\": 1.66,\n        \"grossExclDiscounts\": 16.78,\n        \"addons\": [],\n        \"package\": {\n            \"name\": \"premium\",\n            \"payments\": []\n        }\n    },\n    \"draftInvoice\": {}\n}"}],"_postman_id":"dba1212c-69ab-44de-8689-dcf7c26fa928"},{"name":"E-Bike Leasing LeaseMyBike B2B","id":"f92f9eba-206c-4a0c-b76a-a61d1d386478","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"productName\": \"leasemybike\",\n    \"customer\": {\n        \"email\": \"Smith.Wagner@email.at\",\n        \"firstName\": \"Smith\",\n        \"lastName\": \"Wagner\",\n        \"values\": {\n            \"addressStreet\": \"teststreet\",\n            \"addressHouseNumber\": \"21\",\n            \"addressPlz\": \"1212\",\n            \"addressCity\": \"Wien\",\n            \"companyName\": \"Bakery GmbH\"\n        }\n    },\n    \"values\": {\n        \"premium\": \"40\",\n        \"policyStartDate\": \"2025-02-01T00:00:00.000Z\",\n        \"policyEndDate\": \"2027-03-01T00:00:00.000Z\",\n        \"purchasedAt\": \"2025-02-06T00:00:00.000Z\",\n        \"brand\": \"Riese & Müller\",\n        \"vehicleType\": \"Fahrrad\",\n        \"frameNumber\": \"AV1111111\",\n        \"model\": \"Superdelite5 GT vario\",\n        \"leaseNumber\": \"LABCD1234\",\n        \"insuredPersonAddressHouseNumber\": \"Wien 1\",\n        \"insuredPersonName\": \"Bakery GmbH\",\n        \"insuredPersonEmail\": \"bakery@email.at\",\n        \"insuredPersonAddressCity\": \"Wien\",\n        \"insuredPersonAddressPostalCode\": \"1234\",\n        \"insuredPersonAddressCountry\": \"Austria\",\n        \"price\": 13735.21,\n        \"sumInsured\": 14276.18,\n        \"durationId\": \"36 Monate\",\n        \"plan\": \"Leasingbike insurance\",\n        \"bikeUserEmail\": \"maria.meyer@email.at\",\n        \"bikeUserFirstName\": \"Maria\",\n        \"bikeUserFamilyName\": \"Meyer\"\n    },\n    \"package\": \"Basis24\",\n    \"addons\": []\n}","options":{"raw":{"language":"json"}}},"description":"<p>Use this API to create a policy for the Leasing E-Bike LeaseMyBike Product</p>\n<p><strong>Product name:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>productName</strong></td>\n<td>name of the chosen product  <br />  <br /><strong>Possible values:  <br />\"leasemybike\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Customer:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory / Optional  <br />(Data type)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>email</td>\n<td><strong>Mandatory</strong>  <br />(email)</td>\n<td>contact email adress of the customer/customer company  <br />  <br /><strong>e.g. \"</strong><a href=\"https://mailto:test@gmail.com\"><b>Smith.Wagner@email.at</b></a><strong>\"</strong></td>\n</tr>\n<tr>\n<td>firstName</td>\n<td><strong>Mandatory</strong>  <br />(String)</td>\n<td>First name of the customer  <br />  <br /><strong>e.g. \"Smith\"</strong></td>\n</tr>\n<tr>\n<td>lastName</td>\n<td><strong>Mandatory</strong>  <br />(String)</td>\n<td>Family name of the customer  <br />  <br /><strong>e.g. \"Wagner\"</strong></td>\n</tr>\n<tr>\n<td>addressStreet</td>\n<td><strong>Mandatory</strong>  <br />(String)</td>\n<td>Street name of the customer's contact address  <br />  <br /><strong>e.g. \"teststreet\"</strong></td>\n</tr>\n<tr>\n<td>addressHouseNumber</td>\n<td><strong>Mandatory</strong>  <br />(String)</td>\n<td>House number of the customer's contact address  <br />  <br /><strong>e.g. \"21\"</strong></td>\n</tr>\n<tr>\n<td>addressPLZ</td>\n<td><strong>Mandatory</strong>  <br />(String)</td>\n<td>Area Code of the customer's contact address  <br />  <br /><strong>e.g. \"1212\"</strong></td>\n</tr>\n<tr>\n<td>addressCity</td>\n<td><strong>Mandatory</strong>  <br />(String)</td>\n<td>Name of the city of the customer's contact address  <br />  <br /><strong>e.g. \"Wien\"</strong></td>\n</tr>\n<tr>\n<td>companyName</td>\n<td><strong>Mandatory</strong>  <br />(String)</td>\n<td>Name of the customer company  <br />  <br /><strong>e.g. \"Bakery GmbH\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Values:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory / Optional  <br />(Data type)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>policyStartDate</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>Start date of the policy  <br />  <br />- Date of handover of the bike.  <br />- Coverage starts on this day.  <br />- Minimum Date: One day before today.  <br />- Maximum Date: One month in the future.  <br />  <br />Format: YYYY-MM-DD  <br />  <br /><strong>e.g. \"2025-03-01\"</strong></td>\n</tr>\n<tr>\n<td>policyEndDate</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>Last day of coverage.  <br />  <br />Format: YYYY-MM-DD  <br />  <br /><strong>e.g. \"2027-03-01\"</strong></td>\n</tr>\n<tr>\n<td>paymentSchedule</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Specifies the intervall at which the insurance fees are paid  <br />  <br /><strong>Possible values:  <br />\"monthly\"  <br />\"oneTime\"</strong></td>\n</tr>\n<tr>\n<td>price</td>\n<td><strong>Mandatory</strong>  <br />(float)</td>\n<td>Price of the insured E-bike in €  <br />  <br />Min: 0  <br />Max: 15000  <br />  <br /><strong>e.g. 13735.21</strong></td>\n</tr>\n<tr>\n<td>sumInsured</td>\n<td><strong>Mandatory</strong>  <br />(float)</td>\n<td>Total sum (in €) insured, includes bike and the additional values related to leasing  <br />  <br />Min: 0  <br />Max: 17500  <br />  <br /><strong>e.g. 14276.18</strong></td>\n</tr>\n<tr>\n<td>brand</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Name of the insured bike's brand  <br />  <br /><strong>e.g. \"Riese &amp; Müller\"</strong></td>\n</tr>\n<tr>\n<td>model</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Name of the insured bike's model  <br />  <br /><strong>e.g. \"Superdelite5 GT vario\"</strong></td>\n</tr>\n<tr>\n<td>frameNumber</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Frame number of the bike.  <br />  <br /><strong>e.g. \"AV1111111\"</strong></td>\n</tr>\n<tr>\n<td>vehicleType</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Type of the bike.  <br />  <br /><strong>Possible values:</strong>  <br /><strong>\"Pedelec\"  <br />\"Fahrrad\"</strong></td>\n</tr>\n<tr>\n<td>purchasedAt</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Purchase date of the bike  <br />  <br />Format:  <br />YYYY-MM-DD  <br />  <br /><strong>e.g. \"2025-02-06\"</strong></td>\n</tr>\n<tr>\n<td>insuredPersonAddressHouseNumber</td>\n<td><strong>Mandatory  <br /></strong>(string)</td>\n<td>Street name and house number of the insured person/company's address  <br />  <br /><strong>e.g. \"Teststr. 1\"</strong></td>\n</tr>\n<tr>\n<td>insuredPersonAddressCity</td>\n<td><strong>Mandatory  <br /></strong>(string)</td>\n<td>Name of the city of the insured person/company's address  <br />  <br /><strong>e.g. \"Wien\"</strong></td>\n</tr>\n<tr>\n<td>insuredPersonAddressPostalCode</td>\n<td><strong>Mandatory  <br /></strong>(string)</td>\n<td>Postal code of the insured person/company's address  <br />  <br /><strong>e.g. \"1234\"</strong></td>\n</tr>\n<tr>\n<td>insuredPersonAddressCountry</td>\n<td><strong>Mandatory  <br /></strong>(string)</td>\n<td>Country of the insured person/company's address  <br />  <br /><strong>e.g. \"Austria\"</strong></td>\n</tr>\n<tr>\n<td>insuredPersonName</td>\n<td><strong>Mandatory  <br /></strong>(string)</td>\n<td>Employer's company name.  <br />  <br /><strong>e.g. \"Bakery GmbH\"</strong></td>\n</tr>\n<tr>\n<td>insuredPersonEmail</td>\n<td><strong>Mandatory</strong>  <br />(email)</td>\n<td>Email address of the employer.  <br />  <br /><strong>e.g. \"</strong><a href=\"https://mailto:bakery@email.de\"><b>bakery@email.com</b></a><strong>\"</strong></td>\n</tr>\n<tr>\n<td>bikeUserEmail</td>\n<td><strong>Optional</strong>  <br />(email)</td>\n<td>Email address of the insured bike's user  <br />  <br /><strong>e.g. \"maria.meyer</strong><a href=\"https://mailto:bikeuser@email.de\"><b>@email.com</b></a><strong>\"</strong></td>\n</tr>\n<tr>\n<td>bikeUserFirstName</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>First Name of the insured bike's user  <br />  <br /><strong>e.g. \"Maria\"</strong></td>\n</tr>\n<tr>\n<td>bikeUserFamilyName</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Family name of the bike user.  <br />  <br /><strong>e.g. \"Meyer\"</strong></td>\n</tr>\n<tr>\n<td>leaseNumber</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Leasing contract number  <br />  <br /><strong>e.g. \"LABCD1234\"</strong></td>\n</tr>\n<tr>\n<td>partnerPolicyIdentifier</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Identifies a possible third party involved in creating the new contract e.g. a bike shop  <br />  <br /><strong>e.g. \"Partnershop123\"</strong></td>\n</tr>\n<tr>\n<td>package</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Name of the insurance package  <br />  <br /><strong>Possible values:  <br />\"Basis24\"  <br />\"Premium24\"</strong></td>\n</tr>\n<tr>\n<td>durationId</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Indicates the duration of the leasing contract.  <br />  <br /><strong>Possible values:  <br />\"1 Monat\"  <br />\"2 Monate\"  <br />...  <br />\"48 Monate\"</strong></td>\n</tr>\n<tr>\n<td>duration</td>\n<td><strong>Optional</strong>  <br />(number)</td>\n<td>Indicates the duration (in months) of the leasing contract  <br />  <br /><strong>e.g. \"36\"</strong></td>\n</tr>\n<tr>\n<td>premium</td>\n<td><strong>Mandatory</strong>  <br />(float)</td>\n<td>Monthly premium for the leasing contract in €  <br />  <br /><strong>e.g. 40.00</strong></td>\n</tr>\n<tr>\n<td>plan</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Plan defines whether the insurance premium is paid upfront or via monthly payments.  <br />  <br /><strong>Possible values:  <br />\"Purchase insurance\"</strong> (upfront)  <br /><strong>\"Leasingbike insurance\"</strong> (monthly)</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-ids-explanation\">Response ids explanation</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>policyId</strong></td>\n<td>ID - unique Policy identifier</td>\n</tr>\n<tr>\n<td><strong>prettyId</strong></td>\n<td>Pretty ID - unique \"user-friendly\" Policy identifier</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"query":[],"variable":[]},"url":""},"response":[{"id":"26ef9127-97f7-4203-bcfe-1c1899c7dd5b","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"leasemybike\",\n    \"customer\": {\n        \"email\": \"Smith.Wagner@email.at\",\n        \"firstName\": \"Smith\",\n        \"lastName\": \"Wagner\",\n        \"values\": {\n            \"addressStreet\": \"teststreet\",\n            \"addressHouseNumber\": \"21\",\n            \"addressPlz\": \"1212\",\n            \"addressCity\": \"Wien\",\n            \"companyName\": \"Bakery GmbH\"\n        }\n    },\n    \"values\": {\n        \"premium\": \"40\",\n        \"policyStartDate\": \"2025-02-01T00:00:00.000Z\",\n        \"policyEndDate\": \"2027-03-01T00:00:00.000Z\",\n        \"purchasedAt\": \"2025-02-06T00:00:00.000Z\",\n        \"brand\": \"Riese & Müller\",\n        \"vehicleType\": \"Fahrrad\",\n        \"frameNumber\": \"AV1111111\",\n        \"model\": \"Superdelite5 GT vario\",\n        \"leaseNumber\": \"LABCD1234\",\n        \"insuredPersonAddressHouseNumber\": \"Wien 1\",\n        \"insuredPersonName\": \"Bakery GmbH\",\n        \"insuredPersonEmail\": \"bakery@email.at\",\n        \"insuredPersonAddressCity\": \"Wien\",\n        \"insuredPersonAddressPostalCode\": \"1234\",\n        \"insuredPersonAddressCountry\": \"Austria\",\n        \"price\": 13735.21,\n        \"sumInsured\": 14276.18,\n        \"durationId\": \"36 Monate\",\n        \"plan\": \"Leasingbike insurance\",\n        \"bikeUserEmail\": \"maria.meyer@email.at\",\n        \"bikeUserFirstName\": \"Maria\",\n        \"bikeUserFamilyName\": \"Meyer\"\n    },\n    \"package\": \"Basis24\",\n    \"addons\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"da87bd47-0818-44a2-84d9-e73c7058afd6\",\n    \"prettyId\": \"7B7XTL\",\n    \"requestData\": {\n        \"productName\": \"leasemybike\",\n        \"customer\": {\n            \"email\": \"Smith.Wagner@email.at\",\n            \"firstName\": \"Smith\",\n            \"lastName\": \"Wagner\",\n            \"values\": {\n                \"addressStreet\": \"teststreet\",\n                \"addressHouseNumber\": \"21\",\n                \"addressPlz\": \"1212\",\n                \"addressCity\": \"Wien\",\n                \"companyName\": \"Bakery GmbH\"\n            }\n        },\n        \"values\": {\n            \"premium\": \"40\",\n            \"policyStartDate\": \"2025-02-01T00:00:00.000Z\",\n            \"policyEndDate\": \"2027-03-01T00:00:00.000Z\",\n            \"purchasedAt\": \"2025-02-06T00:00:00.000Z\",\n            \"brand\": \"Riese & Müller\",\n            \"vehicleType\": \"Fahrrad\",\n            \"frameNumber\": \"AV1111111\",\n            \"model\": \"Superdelite5 GT vario\",\n            \"leaseNumber\": \"LABCD1234\",\n            \"insuredPersonAddressHouseNumber\": \"Wien 1\",\n            \"insuredPersonName\": \"Bakery GmbH\",\n            \"insuredPersonEmail\": \"bakery@email.at\",\n            \"insuredPersonAddressCity\": \"Wien\",\n            \"insuredPersonAddressPostalCode\": \"1234\",\n            \"insuredPersonAddressCountry\": \"Austria\",\n            \"price\": 13735.21,\n            \"sumInsured\": 14276.18,\n            \"durationId\": \"36 Monate\",\n            \"plan\": \"Leasingbike insurance\",\n            \"bikeUserEmail\": \"maria.meyer@email.at\",\n            \"bikeUserFirstName\": \"Maria\",\n            \"bikeUserFamilyName\": \"Meyer\"\n        },\n        \"package\": \"Basis24\",\n        \"addons\": []\n    },\n    \"quote\": {\n        \"gross\": 40,\n        \"premium\": 36.04,\n        \"taxes\": 3.96,\n        \"premiumExclDiscounts\": 36.04,\n        \"taxesExclDiscounts\": 3.96,\n        \"grossExclDiscounts\": 40,\n        \"addons\": [],\n        \"package\": {\n            \"name\": \"Basis24\",\n            \"payments\": []\n        }\n    },\n    \"draftInvoice\": {}\n}"},{"id":"3be70c22-3425-493d-ae57-c7525cfb9d0d","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike-Leasing-2024\",\n    \"values\": {\n        \"policyStartDate\": \"2024-02-29\",\n        \"paymentSchedule\": \"monthly\",\n        \"price\": \"3000.01-3500.00\"\n    },\n    \"package\": \"LeasingSchutz\",\n    \"addons\": [\n        \"gpsTracking\",\n        \"mobilitaetsschutz\",\n        \"gewerblicheNutzung\",\n        \"inspektion\",\n        \"wartungUndVerschleiss\",\n        \"einzelteileVerschleiss\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"f92f9eba-206c-4a0c-b76a-a61d1d386478"},{"name":"e-bike Leasing Company Bike","id":"0ffb1061-5007-485b-bff2-b5b7b34f84bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKeyAlteos}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike-leasing-companybike\",\n    \"customer\": {\n        \"email\": \"company@example.de\",\n        \"firstName\": \"Alex\",\n        \"lastName\": \"Mueller\",\n        \"values\": {\n            \"companyName\": \"Bäckerei Müller GmBH\",\n            \"addressStreet\": \"Hardenbergerstr.\",\n            \"addressHouseNumber\": \"32\",\n            \"addressPlz\": \"10625\",\n            \"addressCity\": \"Berlin\"\n        }\n    },\n    \"values\": {\n        \n        \"policyStartDate\": \"2025-02-11\",\n        \"paymentSchedule\": \"monthly\",\n        \"price\": 11567.54,\n        \"vehicleType\": \"E-Bike\",\n        \"purchasedAt\": \"2025-01-30\",\n        \"brand\": \"Riese & Müller\",\n        \"type\": \"Stadtrad\",\n        \"frameNumber\": \"XYZ123456\",\n        \"insuredPersonName\": \"Bäckerei Müller GmBH\",\n        \"bikeUserName\": \"Max Mustermann\",\n        \"insuredPersonEmail\": \"company@example.com\",\n        \"bikeId\": \"SDFWE23453\",\n        \"commercialUse\" : false \n    },\n    \"package\": \"leasingschutz\",\n    \"addons\": [\"Inspektion\"]\n}"},"url":"https://api.sandbox.alteos.com/v2/policies/policies","description":"<p>Use this API to create a policy for the Leasing E-Bike/Companybike Leasing Product</p>\n<p>Customer</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory / Optional  <br />(data type)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>email</td>\n<td><strong>Mandatory</strong>  <br />(email)</td>\n<td>Email address of the customer  <br />  <br /><strong>e.g. \"</strong><a href=\"https://mailto:company@example.de\"><b>company@example.de</b></a><strong>\"</strong></td>\n</tr>\n<tr>\n<td>firstName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>First name of the customer  <br />In case of company: please split company name between \"firstName\" and \"last Name\"  <br />  <br /><strong>e.g. \"Alex\"</strong></td>\n</tr>\n<tr>\n<td>lastName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Last name of the customer  <br />  <br /><strong>e.g. \"Mueller\"</strong></td>\n</tr>\n<tr>\n<td>companyName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Name of the company that wants to start the insurance  <br />  <br /><strong>e.g. \"Bäckerei Müller GmbH\"</strong></td>\n</tr>\n<tr>\n<td>addressStreet</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Street name of the customer's address  <br />  <br /><strong>e.g. \"Hardenbergerstr.\"</strong></td>\n</tr>\n<tr>\n<td>addressHouseNumber</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>House number of the customer's address  <br />  <br /><strong>e.g. \"32\"</strong></td>\n</tr>\n<tr>\n<td>addressPlz</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Postal code of the customer's address  <br />  <br /><strong>e.g. \"10625\"</strong></td>\n</tr>\n<tr>\n<td>addressCity</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Nameof the city of the customer's address  <br />  <br /><strong>e.g. \"Berlin\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p>Values</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory / Optional  <br />(data type)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>policyStartDate</strong></td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>Start date of the policy.  <br />- Date of handover of the bike.  <br />- Coverage starts on this day.  <br />- Minimum Date: One day before today  <br />- Maximum Date: One month in the future  <br />  <br />Format: YYYY-MM-DD  <br />  <br /><strong>e.g. \"2025-03-01\"</strong></td>\n</tr>\n<tr>\n<td><strong>paymentSchedule</strong></td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Describes at which intervalls the customer is charged  <br />  <br /><strong>Possible values:  <br />\"monthly\"</strong></td>\n</tr>\n<tr>\n<td><strong>price</strong></td>\n<td><strong>Mandatory</strong>  <br />(number)</td>\n<td>Price of the insured (E-)bike in €  <br />Max: 15000  <br />  <br /><strong>Example: 12453.13</strong></td>\n</tr>\n<tr>\n<td><strong>purchasedAt</strong></td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>Date at which the bike was purchased  <br />  <br /><strong>e.g. \"2025-01-30\"</strong></td>\n</tr>\n<tr>\n<td><strong>brand</strong></td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Specifies the brand of the insured (E-)bike  <br />  <br /><strong>e.g. \"Riese &amp; Müller\"</strong></td>\n</tr>\n<tr>\n<td><strong>model</strong></td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Specifies the model of the insured (E-)bike  <br />  <br /><strong>e.g. \" Stromer ST7\"</strong></td>\n</tr>\n<tr>\n<td><strong>frameNumber</strong></td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Specifies the frame number of the insured (E-)bike  <br />  <br /><strong>e.g. \"ST1212121\"</strong></td>\n</tr>\n<tr>\n<td><strong>type</strong></td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Specifies the category of the (E-) bike  <br />  <br /><strong>Possible values:  <br />\"Lastenrad / Transportfahrrad\"</strong>  <br /><strong>\"Mountainbike\"</strong>  <br /><strong>\"Gravelbike / Rennrad\"</strong>  <br /><strong>\"Stadtrad\"</strong>  <br /><strong>\"Andere Fahrräder\"</strong></td>\n</tr>\n<tr>\n<td><strong>vehicleType</strong></td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Specifies the type of the insured bike  <br />  <br /><strong>Possible values:  <br />\"E-Bike\"  <br />\"Fahrrad\"</strong></td>\n</tr>\n<tr>\n<td><strong>insuredPersonName</strong></td>\n<td><strong>Mandatory  <br /></strong>(string)</td>\n<td>Name of the insured person/company  <br />  <br /><strong>e.g. \"Bäckerei Müller GmbH\"</strong></td>\n</tr>\n<tr>\n<td><strong>insuredPersonFamilyName</strong></td>\n<td><strong>Optional  <br /></strong>(string)</td>\n<td>Family name of the insured person  <br />  <br /><strong>e.g. \"Müller\"</strong></td>\n</tr>\n<tr>\n<td><strong>insuredPersonEmail</strong></td>\n<td><strong>Mandatory</strong>  <br />(email)</td>\n<td>Email address of the employer's company.  <br />  <br /><strong>e.g. \"</strong><a href=\"https://mailto:bakery@email.de\"><b>company@example.com</b></a><strong>\"</strong></td>\n</tr>\n<tr>\n<td><strong>bikeUserName</strong></td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>First and last name of the bike user.  <br />  <br /><strong>e.g. \"Max Mustermann\"</strong></td>\n</tr>\n<tr>\n<td><strong>bikeID</strong></td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Unique identifier of the insured (E-)bike  <br />  <br /><strong>e.g. \"SDFWE23453\"</strong></td>\n</tr>\n<tr>\n<td><strong>partnerPolicyIdentifier</strong></td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Unique identifier for every partner  <br />  <br /><strong>e.g. \"123456\"</strong></td>\n</tr>\n<tr>\n<td><strong>commercialUse</strong></td>\n<td><strong>Mandatory</strong>  <br />(boolean)</td>\n<td>Specifies if the insured (E-)bike is used for commercial purposes  <br />  <br /><strong>Possible values:  <br />true  <br />false</strong></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>package</strong></td>\n<td>Name of the insurance package  <br />  <br /><strong>Possible values:  <br />\"leasingschutz \"</strong></td>\n</tr>\n<tr>\n<td><strong>addons</strong></td>\n<td>Specifies the selected addons  <br />(empty arry if no addon is selected)  <br />  <br /><strong>Possible addons:  <br />\"Inspektion\"  <br />\"Inspektion-Verschleiss\"  <br />\"Ruecknahmegarantie\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies","policies"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"36aa4a7d-7dd1-4ee1-96d4-6253c7d469ff","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike-leasing-companybike\",\n    \"customer\": {\n        \"email\": \"company@example.de\",\n        \"firstName\": \"Alex\",\n        \"lastName\": \"Mueller\",\n        \"values\": {\n            \"companyName\": \"Bäckerei Müller GmBH\",\n            \"addressStreet\": \"Hardenbergerstr.\",\n            \"addressHouseNumber\": \"32\",\n            \"addressPlz\": \"10625\",\n            \"addressCity\": \"Berlin\"\n        }\n    },\n    \"values\": {\n        \n        \"policyStartDate\": \"2025-02-11\",\n        \"paymentSchedule\": \"monthly\",\n        \"price\": 11567.54,\n        \"vehicleType\": \"E-Bike\",\n        \"purchasedAt\": \"2025-01-30\",\n        \"brand\": \"Riese & Müller\",\n        \"type\": \"Stadtrad\",\n        \"frameNumber\": \"XYZ123456\",\n        \"insuredPersonName\": \"Bäckerei Müller GmBH\",\n        \"bikeUserName\": \"Max Mustermann\",\n        \"insuredPersonEmail\": \"company@example.com\",\n        \"bikeId\": \"SDFWE23453\",\n        \"commercialUse\" : false \n    },\n    \"package\": \"leasingschutz\",\n    \"addons\": [\"Inspektion\"]\n}\n\n\n\n\n\n","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"84837925-2d4e-4c07-81d0-af5f7e2a4f86\",\n    \"prettyId\": \"SVAZQX\",\n    \"requestData\": {\n        \"productName\": \"ebike-leasing-companybike\",\n        \"customer\": {\n            \"email\": \"company@example.de\",\n            \"firstName\": \"Alex\",\n            \"lastName\": \"Mueller\",\n            \"values\": {\n                \"companyName\": \"Bäckerei Müller GmBH\",\n                \"addressStreet\": \"Hardenbergerstr.\",\n                \"addressHouseNumber\": \"32\",\n                \"addressPlz\": \"10625\",\n                \"addressCity\": \"Berlin\"\n            }\n        },\n        \"values\": {\n            \"policyStartDate\": \"2025-02-11\",\n            \"paymentSchedule\": \"monthly\",\n            \"price\": 11567.54,\n            \"vehicleType\": \"E-Bike\",\n            \"purchasedAt\": \"2025-01-30\",\n            \"brand\": \"Riese & Müller\",\n            \"type\": \"Stadtrad\",\n            \"frameNumber\": \"XYZ123456\",\n            \"insuredPersonName\": \"Bäckerei Müller GmBH\",\n            \"bikeUserName\": \"Max Mustermann\",\n            \"insuredPersonEmail\": \"company@example.com\",\n            \"bikeId\": \"SDFWE23453\",\n            \"commercialUse\": false\n        },\n        \"package\": \"leasingschutz\",\n        \"addons\": [\n            \"Inspektion\"\n        ]\n    },\n    \"quote\": {\n        \"gross\": 41.49,\n        \"premium\": 34.87,\n        \"taxes\": 6.62,\n        \"premiumExclDiscounts\": 34.87,\n        \"taxesExclDiscounts\": 6.62,\n        \"grossExclDiscounts\": 41.49,\n        \"addons\": [\n            {\n                \"tax\": 0.88,\n                \"name\": \"Inspektion\",\n                \"gross\": 5.8,\n                \"premium\": 6.9,\n                \"payments\": [\n                    {\n                        \"tax\": 0.88,\n                        \"premium\": 4.92\n                    },\n                    {\n                        \"tax\": 0.88,\n                        \"premium\": 4.92\n                    },\n                    {\n                        \"tax\": 0.88,\n                        \"premium\": 4.92\n                    },\n                    {\n                        \"tax\": 0.88,\n                        \"premium\": 4.92\n                    },\n                    {\n                        \"tax\": 0.88,\n                        \"premium\": 4.92\n                    },\n                    {\n                        \"tax\": 0.88,\n                        \"premium\": 4.92\n                    },\n                    {\n                        \"tax\": 0.88,\n                        \"premium\": 4.92\n                    },\n                    {\n                        \"tax\": 0.88,\n                        \"premium\": 4.92\n                    },\n                    {\n                        \"tax\": 0.88,\n                        \"premium\": 4.92\n                    },\n                    {\n                        \"tax\": 0.88,\n                        \"premium\": 4.92\n                    },\n                    {\n                        \"tax\": 0.88,\n                        \"premium\": 4.92\n                    },\n                    {\n                        \"tax\": 0.88,\n                        \"premium\": 4.92\n                    },\n                    {\n                        \"tax\": 0.88,\n                        \"premium\": 4.92\n                    },\n                    {\n                        \"tax\": 0.88,\n                        \"premium\": 4.92\n                    },\n                    {\n                        \"tax\": 0.88,\n                        \"premium\": 4.92\n                    },\n                    {\n                        \"tax\": 0.88,\n                        \"premium\": 4.92\n                    },\n                    {\n                        \"tax\": 0.88,\n                        \"premium\": 4.92\n                    },\n                    {\n                        \"tax\": 0.88,\n                        \"premium\": 4.92\n                    },\n                    {\n                        \"tax\": 0.88,\n                        \"premium\": 4.92\n                    },\n                    {\n                        \"tax\": 0.88,\n                        \"premium\": 4.92\n                    },\n                    {\n                        \"tax\": 0.88,\n                        \"premium\": 4.92\n                    },\n                    {\n                        \"tax\": 0.88,\n                        \"premium\": 4.92\n                    },\n                    {\n                        \"tax\": 0.88,\n                        \"premium\": 4.92\n                    },\n                    {\n                        \"tax\": 0.88,\n                        \"premium\": 4.92\n                    },\n                    {\n                        \"tax\": 0.88,\n                        \"premium\": 4.92\n                    },\n                    {\n                        \"tax\": 0.88,\n                        \"premium\": 4.92\n                    },\n                    {\n                        \"tax\": 0.88,\n                        \"premium\": 4.92\n                    },\n                    {\n                        \"tax\": 0.88,\n                        \"premium\": 4.92\n                    },\n                    {\n                        \"tax\": 0.88,\n                        \"premium\": 4.92\n                    },\n                    {\n                        \"tax\": 0.88,\n                        \"premium\": 4.92\n                    },\n                    {\n                        \"tax\": 0.88,\n                        \"premium\": 4.92\n                    },\n                    {\n                        \"tax\": 0.88,\n                        \"premium\": 4.92\n                    },\n                    {\n                        \"tax\": 0.88,\n                        \"premium\": 4.92\n                    },\n                    {\n                        \"tax\": 0.88,\n                        \"premium\": 4.92\n                    },\n                    {\n                        \"tax\": 0.88,\n                        \"premium\": 4.92\n                    },\n                    {\n                        \"tax\": 0.88,\n                        \"premium\": 4.92\n                    }\n                ]\n            }\n        ],\n        \"package\": {\n            \"name\": \"leasingschutz\",\n            \"gross\": 41.49,\n            \"payments\": [\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                },\n                {\n                    \"tax\": 6.62,\n                    \"premium\": 34.87\n                }\n            ]\n        }\n    },\n    \"draftInvoice\": {}\n}"},{"id":"333f7cef-6fba-4248-a6ef-f6a7ace10f94","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike-Leasing-2024\",\n    \"values\": {\n        \"policyStartDate\": \"2024-02-29\",\n        \"paymentSchedule\": \"monthly\",\n        \"price\": \"3000.01-3500.00\"\n    },\n    \"package\": \"LeasingSchutz\",\n    \"addons\": [\n        \"gpsTracking\",\n        \"mobilitaetsschutz\",\n        \"gewerblicheNutzung\",\n        \"inspektion\",\n        \"wartungUndVerschleiss\",\n        \"einzelteileVerschleiss\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"0ffb1061-5007-485b-bff2-b5b7b34f84bb"},{"name":"e-bike Wuerth Leasing 2024","id":"000e5b8c-844d-400e-9254-d05ffafa83d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKeyAlteos}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"wuerth-Leasing-2024\",\n    \"customer\": {\n        \"email\": \"test@alteos.com\",\n        \"firstName\": \"Lisa\",\n        \"lastName\": \"Musterfrau\",\n        \"values\": {\n            \"companyName\": \"Test Company GmbH\",\n            \"addressStreet\": \"Teststr.\",\n            \"addressHouseNumber\": \"2\",\n            \"addressPlz\": \"12345\",\n            \"addressCity\": \"Berlin\"\n        }\n    },\n    \"values\": {\n        \"policyStartDate\": \"2025-09-25\",\n        \"paymentSchedule\": \"monthly\",\n        \"insuredPersonName\": \"Test GmbH\",\n        \"insuredPersonEmail\":\"test@alteos.com\",\n        \"bikeUserFirstName\": \"Martin\",\n        \"bikeUserFamilyName\": \"Tester\",\n        \"bikeUserEmail\":\"test@alteos.com\",\n        \"price\": \"1565.25\",\n        \"brand\": \"Batavus\",\n        \"vehicleType\": \"E-Bike\",\n        \"branchID\": \"Example Branch\",\n        \"frameNumber\": \"1245311\"\n    },\n    \"package\": \"BIKE LEASE Exklusiv Schutz\",\n    \"addons\": [\n    ]\n}"},"url":"https://api.sandbox.alteos.com/v2/policies/policies","description":"<p>Use this API to create a policy for the Wuerth Leasing 2024 (e-)bike Product</p>\n<p>Customer</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory / Optional  <br />(data type)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>email</strong></td>\n<td><strong>Mandatory</strong>  <br />(email)</td>\n<td>Email address of the customer  <br />  <br /><strong>e.g. \"test</strong><a href=\"https://mailto:company@example.de\"><b>@alteos.com</b></a><strong>\"</strong></td>\n</tr>\n<tr>\n<td><strong>firstName</strong></td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>First name of the customer  <br />In case of company: please split company name between \"firstName\" and \"last Name\"  <br />  <br /><strong>e.g. \"Lisa\"</strong></td>\n</tr>\n<tr>\n<td><strong>lastName</strong></td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Last name of the customer  <br />  <br /><strong>e.g. \"Musterfrau\"</strong></td>\n</tr>\n<tr>\n<td><strong>salutation</strong></td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Salutation used to address the customer  <br />**  <br />Possible values:  <br />\"Herr\"  <br />\"Frau\"  <br />\"Divers\"**</td>\n</tr>\n<tr>\n<td><strong>companyName</strong></td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Name of the company that wants to start the insurance  <br />  <br /><strong>e.g. \"Test Company GmbH\"</strong></td>\n</tr>\n<tr>\n<td><strong>addressStreet</strong></td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Street name of the customer's address  <br />  <br /><strong>e.g. \"Teststr</strong>.<strong>\"</strong></td>\n</tr>\n<tr>\n<td><strong>addressHouseNumber</strong></td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>House number of the customer's address  <br />  <br /><strong>e.g. \"2\"</strong></td>\n</tr>\n<tr>\n<td><strong>addressPlz</strong></td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Postal code of the customer's address  <br />  <br /><strong>e.g. \"12345\"</strong></td>\n</tr>\n<tr>\n<td><strong>addressCity</strong></td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Nameof the city of the customer's address  <br />  <br /><strong>e.g. \"Berlin\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p>Values</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory / Optional  <br />(data type)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>policyStartDate</strong></td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>Start date of the policy  <br />  <br />- Date of handover of the bike.  <br />- Coverage starts on this day.  <br />- Minimum date: 3 months before current date  <br />- Maximum date: One month in the future  <br />  <br />Format: YYYY-MM-DD  <br />  <br /><strong>e.g. \"2025-03-01\"</strong></td>\n</tr>\n<tr>\n<td><strong>paymentSchedule</strong></td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Describes at which intervalls the customer is charged  <br />  <br /><strong>Possible values:  <br />\"monthly\"</strong></td>\n</tr>\n<tr>\n<td><strong>price</strong></td>\n<td><strong>Mandatory</strong>  <br />(number)</td>\n<td>Price of the insured (E-)bike in €  <br />Max: 15000  <br />  <br /><strong>e.g. 12453.13</strong></td>\n</tr>\n<tr>\n<td><strong>brand</strong></td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Specifies the brand of the insured (E-)bike  <br />  <br /><strong>e.g. \"Riese &amp; Müller\"</strong></td>\n</tr>\n<tr>\n<td><strong>model</strong></td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Specifies the model of the insured (E-)bike  <br />  <br /><strong>e.g. \" Stromer ST7\"</strong></td>\n</tr>\n<tr>\n<td><strong>frameNumber</strong></td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Specifies the frame number of the insured (E-)bike  <br />  <br /><strong>e.g. \"ST1212121\"</strong></td>\n</tr>\n<tr>\n<td><strong>batteryNumber</strong></td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Specifies the battery number of the insured e-bike, only applicable for e-bikes  <br />  <br /><strong>e.g. \"ST1212121\"</strong></td>\n</tr>\n<tr>\n<td><strong>type</strong></td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Specifies the category of the (E-)bike  <br />  <br /><strong>e.g. \"Mountainbike\"</strong></td>\n</tr>\n<tr>\n<td><strong>vehicleType</strong></td>\n<td><strong>Optional</strong>  <br />(select)</td>\n<td>Specifies the type of the bike  <br />  <br /><strong>Possible values:  <br />\"E-Bike\"  <br />\"Fahrrad\"</strong></td>\n</tr>\n<tr>\n<td><strong>sumInsured</strong></td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Combined value of the insured (E-) bike and potential accessories in EUR  <br />  <br />Max: 15'000  <br />  <br /><strong>e.g. \"13736.25\"</strong></td>\n</tr>\n<tr>\n<td><strong>insuredPersonName</strong></td>\n<td><strong>Mandatory  <br /></strong>(string)</td>\n<td>Name of the insured person/company  <br />  <br /><strong>e.g. \"Bäckerei Müller GmbH\"</strong></td>\n</tr>\n<tr>\n<td><strong>insuredPersonFamilyName</strong></td>\n<td><strong>Optional  <br /></strong>(string)</td>\n<td>Family name of the insured person  <br />  <br /><strong>e.g. \"Müller\"</strong></td>\n</tr>\n<tr>\n<td><strong>insuredPersonEmail</strong></td>\n<td><strong>Mandatory</strong>  <br />(email)</td>\n<td>Email address of the insured person  <br />  <br /><strong>e.g. \"</strong><a href=\"https://mailto:bakery@email.de\"><b>test@alteos.com</b></a><strong>\"</strong></td>\n</tr>\n<tr>\n<td><strong>bikeUserFirstName</strong></td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>First name of the person that will use the insured bike  <br />  <br /><strong>e.g. \"Martin\"</strong></td>\n</tr>\n<tr>\n<td><strong>bikeUserFamilyName</strong></td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Family name of the person that will use the insured bike  <br />  <br /><strong>e.g. \"Martin\"</strong></td>\n</tr>\n<tr>\n<td><strong>bikeUserEmail</strong></td>\n<td><strong>Mandatory</strong>  <br />(email)</td>\n<td>Email address of the person that will use the insured bike  <br />  <br /><strong>e.g. \"</strong><a href=\"https://mailto:bakery@email.de\"><b>test@alteos.com</b></a><strong>\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>package</strong></td>\n<td>Name of the insurance package  <br />  <br /><strong>Possible values:  <br />\"BIKE LEASE Exklusiv Schutz \"</strong></td>\n</tr>\n<tr>\n<td><strong>addons</strong></td>\n<td>Specifies the selected addons  <br />(empty array if no addon is selected)  <br />  <br /><strong>Possible addons:  <br />\"gpsTracking\"  <br />\"mobilitaetsschutz\"  <br />\"wartungUndVerschleiss\"  <br />\"ruecknahmegarantie\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies","policies"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"7f7d7047-19bc-4af9-a128-ce4d3a0ea6cb","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"wuerth-Leasing-2024\",\n    \"customer\": {\n        \"email\": \"test@alteos.com\",\n        \"firstName\": \"Lisa\",\n        \"lastName\": \"Musterfrau\",\n        \"values\": {\n            \"companyName\": \"Test Company GmbH\",\n            \"addressStreet\": \"Teststr.\",\n            \"addressHouseNumber\": \"2\",\n            \"addressPlz\": \"12345\",\n            \"addressCity\": \"Berlin\"\n        }\n    },\n    \"values\": {\n        \"policyStartDate\": \"2025-09-25\",\n        \"paymentSchedule\": \"monthly\",\n        \"insuredPersonName\": \"Test GmbH\",\n        \"insuredPersonEmail\":\"test@alteos.com\",\n        \"bikeUserFirstName\": \"Martin\",\n        \"bikeUserFamilyName\": \"Tester\",\n        \"bikeUserEmail\":\"test@alteos.com\",\n        \"price\": \"1565.25\",\n        \"brand\": \"Batavus\",\n        \"vehicleType\": \"E-Bike\",\n        \"branchID\": \"Example Branch\",\n        \"frameNumber\": \"1245311\"\n    },\n    \"package\": \"BIKE LEASE Exklusiv Schutz\",\n    \"addons\": [\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"76b3e6ef-5f98-4b60-b0b9-0ba0e913053c\",\n    \"prettyId\": \"VAHANY\",\n    \"requestData\": {\n        \"productName\": \"wuerth-Leasing-2024\",\n        \"customer\": {\n            \"email\": \"test@alteos.com\",\n            \"firstName\": \"Lisa\",\n            \"lastName\": \"Musterfrau\",\n            \"values\": {\n                \"companyName\": \"Test Company GmbH\",\n                \"addressStreet\": \"Teststr.\",\n                \"addressHouseNumber\": \"2\",\n                \"addressPlz\": \"12345\",\n                \"addressCity\": \"Berlin\"\n            }\n        },\n        \"values\": {\n            \"policyStartDate\": \"2025-09-25\",\n            \"paymentSchedule\": \"monthly\",\n            \"insuredPersonName\": \"Test GmbH\",\n            \"insuredPersonEmail\": \"test@alteos.com\",\n            \"bikeUserFirstName\": \"Martin\",\n            \"bikeUserFamilyName\": \"Tester\",\n            \"bikeUserEmail\": \"test@alteos.com\",\n            \"price\": \"1565.25\",\n            \"brand\": \"Batavus\",\n            \"vehicleType\": \"E-Bike\",\n            \"branchID\": \"Example Branch\",\n            \"frameNumber\": \"1245311\"\n        },\n        \"package\": \"BIKE LEASE Exklusiv Schutz\",\n        \"addons\": []\n    },\n    \"quote\": {\n        \"gross\": 14.4,\n        \"premium\": 12.1,\n        \"taxes\": 2.3,\n        \"premiumExclDiscounts\": 12.1,\n        \"taxesExclDiscounts\": 2.3,\n        \"grossExclDiscounts\": 14.4,\n        \"addons\": [],\n        \"package\": {\n            \"tax\": 2.3,\n            \"name\": \"BIKE LEASE Exklusiv Schutz\",\n            \"gross\": 14.4,\n            \"premium\": 12.1,\n            \"payments\": []\n        }\n    },\n    \"draftInvoice\": {}\n}"},{"id":"b1a43218-1ba0-42bd-bc6d-119456cdb472","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike-Leasing-2024\",\n    \"values\": {\n        \"policyStartDate\": \"2024-02-29\",\n        \"paymentSchedule\": \"monthly\",\n        \"price\": \"3000.01-3500.00\"\n    },\n    \"package\": \"LeasingSchutz\",\n    \"addons\": [\n        \"gpsTracking\",\n        \"mobilitaetsschutz\",\n        \"gewerblicheNutzung\",\n        \"inspektion\",\n        \"wartungUndVerschleiss\",\n        \"einzelteileVerschleiss\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"000e5b8c-844d-400e-9254-d05ffafa83d2"},{"name":"E-Bike Leasing Extension","id":"b193dbf7-54e9-47fe-b84f-dd7ea136e228","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKeyAlteos}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"dienstradanschluss\",\n    \"customer\": {\n        \"email\": \"test@alteos.com\",\n        \"firstName\": \"John\",\n        \"lastName\": \"Doe\",\n        \"values\": {\n            \"dateOfBirth\": \"1999-01-02\",\n            \"addressStreet\": \"Hardenbergerstr.\",\n            \"addressHouseNumber\": \"32\",\n            \"addressPlz\": \"12345\",\n            \"addressCity\": \"Berlin\"\n        }\n    },\n    \"values\": {\n        \"policyStartDate\": \"2025-11-19\",\n        \"paymentSchedule\": \"annual\",\n        \"price\": \"1000.01-1500.00\",\n        \"purchasedAt\": \"2025-01-20\",\n        \"vehicleType\": \"E-Bike\",\n        \"brand\": \"Batavus\",\n        \"frameNumber\": \"1245311\",\n        \"hasEligibleLock\": true\n    },\n    \"package\": \"dienstradanschluss\",\n    \"addons\": [\n    ]\n}"},"url":"https://api.sandbox.alteos.com/v2/policies/policies","description":"<p>Use this API to create a policy for the (E-)Bike Leasing Extension Product</p>\n<p>Customer</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory / Optional  <br />(data type)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>email</strong></td>\n<td><strong>Mandatory</strong>  <br />(email)</td>\n<td>Email address of the customer  <br />  <br /><strong>e.g. \"test</strong><a href=\"https://mailto:company@example.de\"><b>@alteos.com</b></a><strong>\"</strong></td>\n</tr>\n<tr>\n<td><strong>firstName</strong></td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>First name of the customer  <br />In case of company: please split company name between \"firstName\" and \"last Name\"  <br />  <br /><strong>e.g. \"John\"</strong></td>\n</tr>\n<tr>\n<td><strong>lastName</strong></td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Last name of the customer  <br />  <br /><strong>e.g. \"Doe\"</strong></td>\n</tr>\n<tr>\n<td><strong>salutation</strong></td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Salutation used to address the customer  <br />  <br /><strong>Possible values:  <br />\"Herr\"  <br />\"Frau\"  <br />\"Divers\"</strong></td>\n</tr>\n<tr>\n<td><strong>dateOfBirth</strong></td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>The customer's date of birth  <br />  <br /><strong>e.g. \"1999-01-02\"</strong></td>\n</tr>\n<tr>\n<td><strong>addressStreet</strong></td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Street name of the customer's address  <br />  <br /><strong>e.g. \"Hardenbergerstr</strong>.<strong>\"</strong></td>\n</tr>\n<tr>\n<td><strong>addressHouseNumber</strong></td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>House number of the customer's address  <br />  <br /><strong>e.g. \"32\"</strong></td>\n</tr>\n<tr>\n<td><strong>addressPlz</strong></td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Postal code of the customer's address  <br />  <br /><strong>e.g. \"12345\"</strong></td>\n</tr>\n<tr>\n<td><strong>addressCity</strong></td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Nameof the city of the customer's address  <br />  <br /><strong>e.g. \"Berlin\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p>Values</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory / Optional  <br />(data type)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>policyStartDate</strong></td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>Start date of the policy  <br />  <br />- Coverage starts on this day.  <br />- Minimum date: current date  <br />- Maximum date: three months in the future  <br />  <br />Format: YYYY-MM-DD  <br />  <br /><strong>e.g. \"2025-11-19\"</strong></td>\n</tr>\n<tr>\n<td><strong>paymentSchedule</strong></td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Describes at which intervalls the customer is charged  <br />  <br /><strong>Possible values:  <br />\"monthly\"</strong>  <br /><strong>\"annual\"</strong></td>\n</tr>\n<tr>\n<td><strong>price</strong></td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Price of the insured (E-)bike in increments of 500 EUR  <br />Max: 14500.01-15000.00  <br />  <br /><strong>Possible values:  <br />\"0.00-500.00\"  <br />\"500.01-1000.00\"  <br />\"1000.01-1500.00\"  <br />...  <br />\"14500.01-15000.00\"</strong></td>\n</tr>\n<tr>\n<td><strong>brand</strong></td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Specifies the brand of the insured (E-)bike  <br />  <br /><strong>e.g. \"Batavus\"</strong></td>\n</tr>\n<tr>\n<td><strong>frameNumber</strong></td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Specifies the frame number of the insured (E-)bike  <br />  <br /><strong>e.g. \"1245311\"</strong></td>\n</tr>\n<tr>\n<td><strong>vehicleType</strong></td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Specifies the type of the bike  <br />  <br /><strong>Possible values:  <br />\"E-Bike\"  <br />\"Fahrrad\"</strong></td>\n</tr>\n<tr>\n<td><strong>purchasedAt</strong></td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>date at which the insured bike was initially bought  <br />  <br />Minimum: two years before current date  <br />Maximum: current date  <br />  <br /><strong>e.g. \"2025-01-20\"</strong></td>\n</tr>\n<tr>\n<td><strong>hasEligibleLock</strong></td>\n<td><strong>Mandatory</strong>  <br />(boolean)</td>\n<td>Specifies if the lock used to secure the insured bike has an original value of 45 EUR or more  <br />  <br /><strong>Possible values:</strong>  <br /><strong>true</strong> (lock costs 45 EUR or more)  <br /><strong>false</strong> (lock costs less than 45 EUR)</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>package</strong></td>\n<td>Name of the insurance package  <br />  <br /><strong>Possible values:  <br />\"dienstradanschluss \"</strong></td>\n</tr>\n<tr>\n<td><strong>addons</strong></td>\n<td>Specifies the selected addons  <br />(empty array if no addon is selected)  <br />  <br /><strong>Possible addons:  <br />\"gpsTracking\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies","policies"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"8de1d170-adc6-4df0-bec6-87cb37196489","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"dienstradanschluss\",\n    \"customer\": {\n        \"email\": \"test@alteos.com\",\n        \"firstName\": \"John\",\n        \"lastName\": \"Doe\",\n        \"values\": {\n            \"dateOfBirth\": \"1999-01-02\",\n            \"addressStreet\": \"Hardenbergerstr.\",\n            \"addressHouseNumber\": \"32\",\n            \"addressPlz\": \"10623\",\n            \"addressCity\": \"Berlin\"\n        }\n    },\n    \"values\": {\n        \"policyStartDate\": \"2025-11-19\",\n        \"paymentSchedule\": \"annual\",\n        \"price\": \"1000.01-1500.00\",\n        \"purchasedAt\": \"2025-01-20\",\n        \"vehicleType\": \"E-Bike\",\n        \"brand\": \"Batavus\",\n        \"frameNumber\": \"1245311\",\n        \"hasEligibleLock\": true\n    },\n    \"package\": \"dienstradanschluss\",\n    \"addons\": [\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"8ef024e1-1803-42b3-8b1a-7b31ddc076bf\",\n    \"prettyId\": \"2HF6VB\",\n    \"requestData\": {\n        \"productName\": \"dienstradanschluss\",\n        \"customer\": {\n            \"email\": \"test@alteos.com\",\n            \"firstName\": \"John\",\n            \"lastName\": \"Doe\",\n            \"values\": {\n                \"dateOfBirth\": \"1999-01-02\",\n                \"addressStreet\": \"Hardenbergerstr.\",\n                \"addressHouseNumber\": \"32\",\n                \"addressPlz\": \"10623\",\n                \"addressCity\": \"Berlin\"\n            }\n        },\n        \"values\": {\n            \"policyStartDate\": \"2025-11-19\",\n            \"paymentSchedule\": \"annual\",\n            \"price\": \"1000.01-1500.00\",\n            \"purchasedAt\": \"2025-01-20\",\n            \"vehicleType\": \"E-Bike\",\n            \"brand\": \"Batavus\",\n            \"frameNumber\": \"1245311\",\n            \"hasEligibleLock\": true\n        },\n        \"package\": \"dienstradanschluss\",\n        \"addons\": []\n    },\n    \"quote\": {\n        \"gross\": 95,\n        \"premium\": 79.83,\n        \"taxes\": 15.17,\n        \"premiumExclDiscounts\": 79.83,\n        \"taxesExclDiscounts\": 15.17,\n        \"grossExclDiscounts\": 95,\n        \"addons\": [],\n        \"package\": {\n            \"tax\": 15.17,\n            \"name\": \"dienstradanschluss\",\n            \"gross\": 95,\n            \"premium\": 79.83,\n            \"payments\": []\n        }\n    },\n    \"draftInvoice\": {\n        \"invoiceId\": \"in_76bf_HIfu2oeayy7D8\",\n        \"paymentOrderId\": \"ipo_y7D8_TrC0LlcRfADp\"\n    }\n}"},{"id":"87009956-1336-4ed0-b502-84c03bf09fba","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike-Leasing-2024\",\n    \"values\": {\n        \"policyStartDate\": \"2024-02-29\",\n        \"paymentSchedule\": \"monthly\",\n        \"price\": \"3000.01-3500.00\"\n    },\n    \"package\": \"LeasingSchutz\",\n    \"addons\": [\n        \"gpsTracking\",\n        \"mobilitaetsschutz\",\n        \"gewerblicheNutzung\",\n        \"inspektion\",\n        \"wartungUndVerschleiss\",\n        \"einzelteileVerschleiss\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"b193dbf7-54e9-47fe-b84f-dd7ea136e228"},{"name":"eBike Product B2C | 2025","id":"2b693a9c-91c6-4970-90e7-7da4711bf50a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-app-key","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike\",\n    \"customer\": {\n        \"email\": \"test@alteos.com\",\n        \"firstName\": \"Test\",\n        \"lastName\": \"Carrey\",\n        \"values\": {\n            \"dateOfBirth\": \"2006-03-29\",\n            \"addressStreet\": \"Schönhauser Allee\",\n            \"addressHouseNumber\": \"1\",\n            \"addressPlz\": \"10119\",\n            \"addressCity\": \"Berlin\"\n        }\n    },\n    \"values\": {\n        \"preinstalledGps\": \"-\",\n        \"gpsPermissionCheck\": true,\n        \"vehicleType\": \"E-Bike\",\n        \"type\": \"Stadtrad\",\n        \"policyStartDate\": \"2025-09-28\",\n        \"paymentSchedule\": \"annual\",\n        \"price\": \"1000.01-1500.00\",\n        \"purchasedAt\": \"2025-08-26\",\n        \"brand\": \"2Flash\",\n        \"hasEligibleLock\": true,\n        \"frameNumber\": \"dueed\",\n        \"employeeId\": \"AKIN\",\n        \"partnerKey\": \"ahead\"\n    },\n    \"package\": \"diebstahlschutz\",\n    \"addons\": [\n        \"gpsTracking\"\n    ]\n}"},"url":"https://api.sandbox.alteos.com/v2/policies","description":"<p>Use this API to create a policy for the eBike Product.</p>\n<p>Name of the product:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Mandatory / Optional  <br />(data type)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>productName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Name of the product  <br />  <br /><strong>Possible value:  <br />\"ebike\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p>Customer:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Mandatory / Optional  <br />(data type)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>email</td>\n<td><strong>Mandatory</strong>  <br />(email)</td>\n<td>Contact email address of the customer/customer company  <br />  <br /><strong>e.g. \"</strong><a href=\"https://mailto:test@alteos.com\"><b>test@alteos.com</b></a><strong>\"</strong></td>\n</tr>\n<tr>\n<td>firstName</td>\n<td><strong>Mandatory</strong>  <br />(String)</td>\n<td>First name of the customer  <br />In case of company: Please split the company name between firstName and lastName  <br />  <br /><strong>e.g. \"Test\"</strong></td>\n</tr>\n<tr>\n<td>lastName</td>\n<td><strong>Mandatory</strong>  <br />(String)</td>\n<td>Family name of the customer  <br />  <br /><strong>e.g. \"Carrey\"</strong></td>\n</tr>\n<tr>\n<td>dateOfBirth</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>Customer's date of birth  <br />  <br />YYYY-MM-DD format  <br />  <br /><strong>e.g. \"2000-08-15\"</strong></td>\n</tr>\n<tr>\n<td>addressStreet</td>\n<td><strong>Mandatory</strong>  <br />(String)</td>\n<td>Street name of the customer's contact address  <br />  <br /><strong>e.g. \"Schönhauser Allee\"</strong></td>\n</tr>\n<tr>\n<td>addressHouseNumber</td>\n<td><strong>Mandatory</strong>  <br />(String)</td>\n<td>House number of the customer's contact address  <br />  <br /><strong>e.g. \"1\"</strong></td>\n</tr>\n<tr>\n<td>addressPLZ</td>\n<td><strong>Mandatory</strong>  <br />(String)</td>\n<td>Area Code of the customer's contact address  <br />  <br /><strong>e.g. \"12345\"</strong></td>\n</tr>\n<tr>\n<td>addressCity</td>\n<td><strong>Mandatory</strong>  <br />(String)</td>\n<td>Name of the city of the customer's contact address  <br />  <br /><strong>e.g. \"Berlin\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p>Values:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Mandatory / Optional  <br />(data type)</th>\n<th>Description and values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>policyStartDate</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>Starting date of the insurance contract, cannot be a date in the past  <br />  <br />YYYY-MM-DD format  <br />  <br />- Coverage starts on this day  <br />  <br /><strong>e.g. \"2025-09-28\"</strong></td>\n</tr>\n<tr>\n<td>paymentSchedule</td>\n<td><strong>Mandatory</strong>  <br />(String)</td>\n<td>Specifies the payment intervalls  <br />  <br /><strong>Possible values:  <br />\"monthly\"  <br />\"annual\"  <br />\"3years\"</strong> (one initial payment for the first 3 years, then annual payments)**  <br />\"oneTime\"**</td>\n</tr>\n<tr>\n<td>price</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Price of the insured E-Bike in 500 € increments  <br />  <br />Max: 15.000 €  <br />  <br /><strong>Possible values:  <br />\"0.00-500.00\"  <br />\"500.01-1000.00\"  <br />\"1000.01-1500.00\"  <br />...  <br />\"14500.01-15000.00\"</strong></td>\n</tr>\n<tr>\n<td>purchasedAt</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>Purchase date of the insured E-Bike  <br />  <br />YYYY-MM-DD format  <br />  <br />- Max 39 months in the past  <br />- if the bike is older than 1 year, only \"diebstahlschutz\" package is available  <br />  <br /><strong>e.g. \"2025-08-26\"</strong></td>\n</tr>\n<tr>\n<td>vehicleType</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Specifies the type of the insured object  <br />  <br /><strong>Possible values:  <br />\"Fahrrad\"  <br />\"E-Bike\"</strong>  <br />  <br />Note that \"gpsTracking\" addon is not available if \"Fahrrad\" selected.</td>\n</tr>\n<tr>\n<td>brand</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Specifies the brand of the insured object, chosen from a list of possible options  <br />  <br /><strong>e.g. \"2Flash\"</strong></td>\n</tr>\n<tr>\n<td>type</td>\n<td><strong>Optional</strong>  <br />(select)</td>\n<td>Specifies the brand of the insured object  <br />  <br /><strong>Possible values:  <br />\"Stadtrad\"  <br />\"Lasten- / Transportrad\"  <br />\"Mountainbike\"  <br />\"Gravelbike / Rennrad\"  <br />\"S-Pedelecs\"  <br />\"Sonstige\"</strong></td>\n</tr>\n<tr>\n<td>frameNumber</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Frame Number of the insured bike  <br />  <br /><strong>e.g. \"123456HGF789\"</strong></td>\n</tr>\n<tr>\n<td>hasEligibleLock</td>\n<td><strong>Mandatory</strong>  <br />(boolean)</td>\n<td>Specifies if the customer uses a lock that is worth at least 45 €  <br />  <br /><strong>Possible values:</strong>  <br /><strong>true</strong> (lock is worth at least 45 €)  <br /><strong>false</strong> (lock is worth less than 45 €)</td>\n</tr>\n<tr>\n<td>preinstalledGps</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Select field which controls discounts for preinstalled GPS trackers (by brand).  <br />  <br /><strong>Possible Values:  <br />\"-\" (no preinstalled GPS)  <br />\"Bikefinder\"</strong>  <br /><strong>\"Bosch ConnectModule\"</strong>  <br /><strong>\"CaGo Me\"</strong>  <br /><strong>\"Comodule\"</strong>  <br /><strong>\"Corratec C-Finder\"</strong>  <br /><strong>\"IT'S MY BIKE\"</strong>  <br /><strong>\"My Boo Track &amp; Protect\"</strong>  <br /><strong>\"Powunity\"</strong>  <br /><strong>\"RX-Chip/RX Connect\"</strong>  <br /><strong>\"UD #Smart 2.0 GPS-Tracker\"</strong>  <br /><strong>\"Velco\"</strong>  <br /><strong>\"Velomate\"</strong></td>\n</tr>\n<tr>\n<td>gpsPermissionCheck</td>\n<td><strong>Optional</strong>  <br />(boolean)</td>\n<td>Specifies if alteos is permitted to give customer data to a bike dealer for them to be able to contact the customer for GPS installation  <br />  <br />Mandatory, if insured object is an E-bike and no preinstalled GPS exists  <br />  <br /><strong>Possible values:  <br />true  <br />false</strong></td>\n</tr>\n<tr>\n<td>partnerKey</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>partner ID to capture a third party involved in policy creation process (e.g. a store or branch where the contract is created)  <br />  <br /><strong>e.g. \"20222123\"</strong></td>\n</tr>\n<tr>\n<td>employeeId</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Specifies the ID and/or name of the person recommending the insurance  <br />  <br />Min length 3  <br />Max length 30  <br />  <br /><strong>e.g. \"Martin\"</strong></td>\n</tr>\n<tr>\n<td>package</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Type of coverage  <br />  <br /><strong>Possible values:  <br />\"diebstahlschutz\"  <br />\"komfortschutz\"  <br />\"premiumschutz\"</strong></td>\n</tr>\n<tr>\n<td>addons</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>List of selected policy-addons (can be an empty array, if no addons are selected)  <br />  <br /><strong>Possible values:  <br />\"gpsTracking\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p>The policy creation response will also return the <code>requestData</code> object which contains all the data that was given by the user during the policy creation and the <code>quote</code> object which contains all the quotation calculations.</p>\n","urlObject":{"path":["v2","policies"],"host":["https://api.sandbox.alteos.com"],"query":[{"disabled":true,"description":{"content":"<p>Coverage period of the insurance.</p>\n","type":"text/plain"},"key":"duration","value":""},{"disabled":true,"description":{"content":"<p>Date of purchase of the eBike. Must not be older than 6 months before the insurance starting date.</p>\n","type":"text/plain"},"key":"purchasedAt","value":""}],"variable":[]}},"response":[{"id":"3e344b79-49b3-4420-988b-ceecd0873ebb","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-App-Key","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike\",\n    \"customer\": {\n        \"email\": \"test@alteos.com\",\n        \"firstName\": \"Test\",\n        \"lastName\": \"Carrey\",\n        \"values\": {\n            \"dateOfBirth\": \"2006-03-29\",\n            \"addressStreet\": \"Schönhauser Allee\",\n            \"addressHouseNumber\": \"1\",\n            \"addressPlz\": \"10119\",\n            \"addressCity\": \"Berlin\"\n        }\n    },\n    \"values\": {\n        \"preinstalledGps\": \"-\",\n        \"gpsPermissionCheck\": true,\n        \"vehicleType\": \"E-Bike\",\n        \"type\": \"Stadtrad\",\n        \"policyStartDate\": \"2025-09-28\",\n        \"paymentSchedule\": \"annual\",\n        \"price\": \"1000.01-1500.00\",\n        \"purchasedAt\": \"2025-08-26\",\n        \"brand\": \"2Flash\",\n        \"hasEligibleLock\": true,\n        \"frameNumber\": \"dueed\",\n        \"employeeId\": \"AKIN\",\n        \"partnerKey\": \"ahead\"\n    },\n    \"package\": \"diebstahlschutz\",\n    \"addons\": [\n        \"gpsTracking\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"be801e33-fcc5-4f9a-94a6-b383ea155e5d\",\n    \"prettyId\": \"8P2C6Q\",\n    \"requestData\": {\n        \"productName\": \"ebike\",\n        \"customer\": {\n            \"email\": \"test@alteos.com\",\n            \"firstName\": \"Test\",\n            \"lastName\": \"Carrey\",\n            \"values\": {\n                \"dateOfBirth\": \"2006-03-29\",\n                \"addressStreet\": \"Schönhauser Allee\",\n                \"addressHouseNumber\": \"1\",\n                \"addressPlz\": \"10119\",\n                \"addressCity\": \"Berlin\"\n            }\n        },\n        \"values\": {\n            \"preinstalledGps\": \"-\",\n            \"gpsPermissionCheck\": true,\n            \"vehicleType\": \"E-Bike\",\n            \"type\": \"Stadtrad\",\n            \"policyStartDate\": \"2025-09-28\",\n            \"paymentSchedule\": \"annual\",\n            \"price\": \"1000.01-1500.00\",\n            \"purchasedAt\": \"2025-08-26\",\n            \"brand\": \"2Flash\",\n            \"hasEligibleLock\": true,\n            \"frameNumber\": \"dueed\",\n            \"employeeId\": \"AKIN\",\n            \"partnerKey\": \"ahead\"\n        },\n        \"package\": \"diebstahlschutz\",\n        \"addons\": [\n            \"gpsTracking\"\n        ]\n    },\n    \"quote\": {\n        \"gross\": 103,\n        \"premium\": 86.56,\n        \"taxes\": 16.44,\n        \"premiumExclDiscounts\": 86.56,\n        \"taxesExclDiscounts\": 16.44,\n        \"grossExclDiscounts\": 103,\n        \"addons\": [\n            {\n                \"name\": \"gpsTracking\",\n                \"gross\": 18,\n                \"payments\": [\n                    {\n                        \"tax\": 2.87,\n                        \"premium\": 15.13\n                    },\n                    {\n                        \"tax\": 2.87,\n                        \"premium\": 15.13\n                    },\n                    {\n                        \"tax\": 2.87,\n                        \"premium\": 15.13\n                    },\n                    {\n                        \"tax\": 2.87,\n                        \"premium\": 15.13\n                    },\n                    {\n                        \"tax\": 2.87,\n                        \"premium\": 15.13\n                    }\n                ]\n            }\n        ],\n        \"package\": {\n            \"name\": \"diebstahlschutz\",\n            \"gross\": 85,\n            \"payments\": [\n                {\n                    \"tax\": 13.57,\n                    \"premium\": 71.43\n                },\n                {\n                    \"tax\": 13.57,\n                    \"premium\": 71.43\n                },\n                {\n                    \"tax\": 13.57,\n                    \"premium\": 71.43\n                },\n                {\n                    \"tax\": 13.57,\n                    \"premium\": 71.43\n                },\n                {\n                    \"tax\": 13.57,\n                    \"premium\": 71.43\n                }\n            ]\n        }\n    },\n    \"draftInvoice\": {\n        \"invoiceId\": \"in_5e5d_LbZJvFPVAyZtQ\",\n        \"paymentOrderId\": \"ipo_yZtQ_SJibGjsgQJBs\"\n    }\n}"}],"_postman_id":"2b693a9c-91c6-4970-90e7-7da4711bf50a"},{"name":"eBike Product B2C | 2026","id":"8542c419-6bc3-43ab-b095-5116a8a8abca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-app-key","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike2026_DE\",\n    \"customer\": {\n        \"email\": \"test@alteos.com\",\n        \"firstName\": \"Jim\",\n        \"lastName\": \"Carrey\",\n        \"values\": {\n            \"dateOfBirth\": \"2000-01-01\",\n            \"addressStreet\": \"Schönhauser Allee\",\n            \"addressHouseNumber\": \"1\",\n            \"addressPlz\": \"10119\",\n            \"addressCity\": \"Berlin\"\n        }\n    },\n    \"values\": {\n        \"paymentSchedule\": \"oneTime\",\n        \"policyStartDate\": \"2025-12-15\",\n        \"vehicleType\": \"E-Bike\",\n        \"bikeStatus\": \"Gebraucht\",\n        \"price\": \"1500.01\",\n        \"purchasedAt\": \"2025-08-26\",\n        \"brand\": \"2Flash\",\n        \"type\": \"Stadtrad\",\n        \"frameNumber\": \"123456HGF789\",\n        \"preinstalledGps\": \"-\",\n        \"hasEligibleLock\": true  \n    },\n    \"package\": \"komfort\",\n    \"addons\": [\n        \"gpsTracking\"\n    ]\n}"},"url":"https://api.sandbox.alteos.com/v2/policies","description":"<p>Use this API to create a policy for the eBike2026 Product.</p>\n<p>Name of the product:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Mandatory / Optional  <br />(data type)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>productName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Name of the product  <br />  <br /><strong>Possible value:  <br />\"ebike2026_DE\",  <br />\"ebike2026_AT\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p>Customer:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Mandatory / Optional  <br />(data type)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>email</td>\n<td><strong>Mandatory</strong>  <br />(email)</td>\n<td>Contact email address of the customer/customer company  <br />  <br /><strong>e.g. \"</strong><a href=\"https://mailto:test@alteos.com\"><b>test@alteos.com</b></a><strong>\"</strong></td>\n</tr>\n<tr>\n<td>firstName</td>\n<td><strong>Mandatory</strong>  <br />(String)</td>\n<td>First name of the customer  <br />In case of company: Please split the company name between firstName and lastName  <br />  <br /><strong>e.g. \"Jim\"</strong></td>\n</tr>\n<tr>\n<td>lastName</td>\n<td><strong>Mandatory</strong>  <br />(String)</td>\n<td>Family name of the customer  <br />  <br /><strong>e.g. \"Carrey\"</strong></td>\n</tr>\n<tr>\n<td>dateOfBirth</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>Customer's date of birth  <br />  <br />YYYY-MM-DD format  <br />  <br /><strong>e.g. \"2000-08-15\"</strong></td>\n</tr>\n<tr>\n<td>addressStreet</td>\n<td><strong>Mandatory</strong>  <br />(String)</td>\n<td>Street name of the customer's contact address  <br />  <br /><strong>e.g. \"Schönhauser Allee\"</strong></td>\n</tr>\n<tr>\n<td>addressHouseNumber</td>\n<td><strong>Mandatory</strong>  <br />(String)</td>\n<td>House number of the customer's contact address  <br />  <br /><strong>e.g. \"1\"</strong></td>\n</tr>\n<tr>\n<td>addressPLZ</td>\n<td><strong>Mandatory</strong>  <br />(String)</td>\n<td>Area Code of the customer's contact address  <br />  <br /><strong>e.g. \"12345\"</strong></td>\n</tr>\n<tr>\n<td>addressCity</td>\n<td><strong>Mandatory</strong>  <br />(String)</td>\n<td>Name of the city of the customer's contact address  <br />  <br /><strong>e.g. \"Berlin\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p>Values:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Mandatory / Optional  <br />(data type)</th>\n<th>Description and values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>policyStartDate</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>Starting date of the insurance contract, cannot be a date in the past  <br />  <br />YYYY-MM-DD format  <br />  <br />- Coverage starts on this day  <br />  <br /><strong>e.g. \"2025-09-28\"</strong></td>\n</tr>\n<tr>\n<td>paymentSchedule</td>\n<td><strong>Mandatory</strong>  <br />(String)</td>\n<td>Specifies the payment intervalls  <br />  <br /><strong>Possible values:  <br />\"monthly\"  <br />\"annual\"</strong>  <br /><strong>\"oneTime\"</strong> (upfront payment for the first five years followed by annual payments)</td>\n</tr>\n<tr>\n<td>price</td>\n<td><strong>Mandatory</strong>  <br />(number)</td>\n<td>Price of the insured (E-)Bike (in EUR)  <br />  <br />max: 20000  <br />  <br /><strong>e.g. \"5786.32\"</strong></td>\n</tr>\n<tr>\n<td>bikeStatus</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Specifies the condition of the bike  <br />  <br /><strong>Possible values:  <br />\"Neu\"</strong> (has access to all packages if not older than 1 year. If older than 1 year, only \"basis\" and \"komfort\" are available)  <br /><strong>\"Gebraucht\"</strong> (only packages \"basis\" and \"komfort\" are available)  <br /><strong>\"Generalüberholt/Refurbished\"</strong> (only packages \"basis\" and \"komfort\" are available)  <br /><strong>\"Leasinganschluss\"</strong> (only packages \"basis\" and \"komfort\" are available)  <br /><strong>\"LeasingZusatz\"</strong> (only package \"premium\" is available)</td>\n</tr>\n<tr>\n<td>purchasedAt</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>Purchase date of the insured E-Bike  <br />  <br />YYYY-MM-DD format  <br />  <br />- Max 51 months in the past for bikeStatus = 'Leasinganschluss'  <br />- Max 39 months in the past (only 3 months in the past for bikeStatus = 'LeasingZusatz')  <br />  <br />- if the bike is older than 1 year, \"premiumschutz\" package is not available  <br />- for bikeStatus = 'Leasinganschluss' and 'LeasingZusatz': this represents the start date of the leasing contract  <br />  <br /><strong>e.g. \"2025-08-26\"</strong></td>\n</tr>\n<tr>\n<td>vehicleType</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Specifies the type of the insured object  <br />  <br /><strong>Possible values:  <br />\"Fahrrad\"  <br />\"E-Bike\"</strong>  <br />  <br />Note that \"gpsTracking\" addon is not available if \"Fahrrad\" selected.</td>\n</tr>\n<tr>\n<td>brand</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Specifies the brand of the insured object, chosen from a list of possible options  <br />  <br /><strong>e.g. \"2Flash\"</strong></td>\n</tr>\n<tr>\n<td>type</td>\n<td><strong>Optional</strong>  <br />(select)</td>\n<td>Specifies the brand of the insured object  <br />  <br /><strong>Possible values:  <br />\"Stadtrad\"  <br />\"Lasten- / Transportrad\"  <br />\"Mountainbike\"  <br />\"Gravelbike / Rennrad\"  <br />\"S-Pedelecs\"  <br />\"Sonstige\"</strong></td>\n</tr>\n<tr>\n<td>frameNumber</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Frame Number of the insured bike  <br />  <br /><strong>e.g. \"123456HGF789\"</strong></td>\n</tr>\n<tr>\n<td>batteryNumber</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Battery number of the insured bike  <br />  <br /><strong>e.g. \"123456HGF789\"</strong></td>\n</tr>\n<tr>\n<td>hasEligibleLock</td>\n<td><strong>Mandatory</strong>  <br />(boolean)</td>\n<td>Specifies if the customer uses a lock that is worth at least 45 €  <br />  <br /><strong>Possible values:</strong>  <br /><strong>true</strong> (lock is worth at least 45 €)  <br /><strong>false</strong> (lock is worth less than 45 €)</td>\n</tr>\n<tr>\n<td>preinstalledGps</td>\n<td><strong>Optional</strong>  <br />(select)</td>\n<td>Select field which controls discounts for preinstalled GPS trackers (by brand).  <br />  <br /><strong>Possible Values:  <br />\"-\" (no preinstalled GPS)  <br />\"BikeFinder\"</strong>  <br /><strong>\"Bosch ConnectModule\"</strong>  <br /><strong>\"CaGo Me\"</strong>  <br /><strong>\"Comodule\"</strong>  <br /><strong>\"Corratec C-Finder\"</strong>  <br /><strong>\"IT'S MY BIKE\"</strong>  <br /><strong>\"My Boo Track &amp; Protect\"</strong>  <br /><strong>\"Powunity\"</strong>  <br /><strong>\"RX-Chip/RX Connect\"</strong>  <br /><strong>\"UD #Smart 2.0 GPS-Tracker\"</strong>  <br /><strong>\"Velco\"</strong>  <br /><strong>\"Velomate\"</strong></td>\n</tr>\n<tr>\n<td>gpsPermissionCheck</td>\n<td><strong>Optional</strong>  <br />(boolean)</td>\n<td>Specifies if alteos is permitted to give customer data to a bike dealer for them to be able to contact the customer for GPS installation  <br />  <br />Mandatory, if insured object is an E-bike and no preinstalled GPS exists  <br />  <br /><strong>Possible values:  <br />true  <br />false</strong></td>\n</tr>\n<tr>\n<td>partnerCode</td>\n<td><strong>Optional</strong>  <br />(string - UUID)</td>\n<td>partner ID to capture a third party involved in policy creation process (e.g. a store or branch where the contract is created)  <br />  <br />Mandatory for ERP system users.  <br />  <br /><strong>e.g. \"<strong>550e8400-e29b-41d4-a716-446655440000</strong>\"</strong></td>\n</tr>\n<tr>\n<td>employeeId</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Specifies the ID and/or name of the person recommending the insurance  <br />  <br />Min length 3  <br />Max length 30  <br />  <br /><strong>e.g. \"AKIN\"</strong></td>\n</tr>\n<tr>\n<td>partnerPolicyIdentifier</td>\n<td><strong>Optional  <br />(string)</strong></td>\n<td>Identifier for the purchasing group. Example BICO Identifier</td>\n</tr>\n<tr>\n<td>customerPortalConsent</td>\n<td><strong>Optional  <br />(boolean)  <br /></strong></td>\n<td>Return TRUE, if the customer consents to our terms and conditions and allows Alteos to create a user account to give access to policy &amp; claims self-service  <br />  <br />e.g. true</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Packages</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>package</td>\n<td>Type of coverage  <br />  <br /><strong>Possible values:  <br />\"basis\"  <br />\"komfort\"  <br />\"premium\"</strong>  <br /><strong>\"leasingZusatz\"</strong></td>\n</tr>\n<tr>\n<td>addons</td>\n<td>List of selected policy-addons (can be an empty array, if no addons are selected)  <br />  <br /><strong>Possible values:  <br />\"gpsTracking\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p>The policy creation response will also return the <code>requestData</code> object which contains all the data that was given by the user during the policy creation and the <code>quote</code> object which contains all the quotation calculations.</p>\n","urlObject":{"path":["v2","policies"],"host":["https://api.sandbox.alteos.com"],"query":[{"disabled":true,"description":{"content":"<p>Coverage period of the insurance.</p>\n","type":"text/plain"},"key":"duration","value":""},{"disabled":true,"description":{"content":"<p>Date of purchase of the eBike. Must not be older than 6 months before the insurance starting date.</p>\n","type":"text/plain"},"key":"purchasedAt","value":""}],"variable":[]}},"response":[{"id":"ee763b81-cdb2-4eda-b35e-cb7f3d317bc2","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-App-Key","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike2026_DE\",\n    \"customer\": {\n        \"email\": \"test@alteos.com\",\n        \"firstName\": \"Jim\",\n        \"lastName\": \"Carrey\",\n        \"values\": {\n            \"dateOfBirth\": \"2000-01-01\",\n            \"addressStreet\": \"Schönhauser Allee\",\n            \"addressHouseNumber\": \"1\",\n            \"addressPlz\": \"10119\",\n            \"addressCity\": \"Berlin\"\n        }\n    },\n    \"values\": {\n        \"paymentSchedule\": \"oneTime\",\n        \"policyStartDate\": \"2025-12-15\",\n        \"vehicleType\": \"E-Bike\",\n        \"bikeStatus\": \"Gebraucht\",\n        \"price\": \"1500.01\",\n        \"purchasedAt\": \"2025-08-26\",\n        \"brand\": \"2Flash\",\n        \"type\": \"Stadtrad\",\n        \"frameNumber\": \"123456HGF789\",\n        \"preinstalledGps\": \"-\",\n        \"hasEligibleLock\": true\n\n    },\n    \"package\": \"komfort\",\n    \"addons\": [\n        \"gpsTracking\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"7a626b3f-4e8a-4c3d-a7d8-09c5c6327766\",\n    \"prettyId\": \"3WH7HV\",\n    \"requestData\": {\n        \"productName\": \"ebike2026_DE\",\n        \"customer\": {\n            \"email\": \"test@alteos.com\",\n            \"firstName\": \"Jim\",\n            \"lastName\": \"Carrey\",\n            \"values\": {\n                \"dateOfBirth\": \"2000-01-01\",\n                \"addressStreet\": \"Schönhauser Allee\",\n                \"addressHouseNumber\": \"1\",\n                \"addressPlz\": \"10119\",\n                \"addressCity\": \"Berlin\"\n            }\n        },\n        \"values\": {\n        \"paymentSchedule\": \"oneTime\",\n        \"policyStartDate\": \"2025-12-15\",\n        \"vehicleType\": \"E-Bike\",\n        \"bikeStatus\": \"Gebraucht\",\n        \"price\": \"1500.01\",\n        \"purchasedAt\": \"2025-08-26\",\n        \"brand\": \"2Flash\",\n        \"type\": \"Stadtrad\",\n        \"frameNumber\": \"123456HGF789\",\n        \"preinstalledGps\": \"-\",\n        \"hasEligibleLock\": true\n        },\n        \"package\": \"komfort\",\n        \"addons\": [\n            \"gpsTracking\"\n        ]\n    },\n    \"quote\": {\n        \"gross\": 122,\n        \"premium\": 91.63,\n        \"taxes\": 30.37,\n        \"premiumExclDiscounts\": 91.63,\n        \"taxesExclDiscounts\": 30.37,\n        \"grossExclDiscounts\": 122,\n        \"addons\": [\n            {\n                \"name\": \"gpsTracking\",\n                \"gross\": 90,\n                \"payments\": [\n                    {\n                        \"tax\": 14.37,\n                        \"premium\": 75.63\n                    }\n                ]\n            }\n        ],\n        \"package\": {\n            \"name\": \"komfort\",\n            \"gross\": 32,\n            \"payments\": [\n                {\n                    \"tax\": 16,\n                    \"premium\": 16\n                }\n            ]\n        }\n    },\n    \"draftInvoice\": {\n        \"invoiceId\": \"in_7766_oShyo4thLjdA9\",\n        \"paymentOrderId\": \"ipo_jdA9_mabbDdpGdKmR\"\n    }\n}"}],"_postman_id":"8542c419-6bc3-43ab-b095-5116a8a8abca"},{"name":"eBike NL Product B2C | 2025","id":"d810976c-c7c9-4d30-a289-985174d27de3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-app-key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike-netherlands\",\n    \"customer\": {\n        \"email\": \"test@alteos.com\",\n        \"firstName\": \"Georg\",\n        \"lastName\": \"Test\",\n        \"values\": {\n            \"addressStreet\": \"Hardenbergerstr.\",\n            \"addressHouseNumber\": \"32\",\n            \"addressPlz\": \"3100EJ\",\n            \"addressCity\": \"Amsterdam\",\n            \"dateOfBirth\": \"2000-09-10\"\n        }\n    },\n    \"values\": {\n        \"policyStartDate\": \"2025-09-10\",\n        \"purchasedAt\": \"2024-10-20\",\n        \"paymentSchedule\": \"monthly\",\n        \"price\": \"4750.01-5000.00\",\n        \"vehicleType\": \"E-Bike\",\n        \"brand\": \"Batavus\",\n        \"type\": \"Mountainbike\",\n        \"frameNumber\": \"1245311\",\n        \"hasEligibleLock\": true,\n        \"partnerCode\": \"1234\", // 1234 is a test partner code\n        \"addressZip\": \"3100EJ\",\n        \"preinstalledGps\": \"-\"\n    },\n    \"package\": \"casco\",\n    \"addons\": [\"gpsTrackingIoT\"]\n}"},"url":"https://api.sandbox.alteos.com/v2/policies","description":"<p>Use this API to create a policy for the eBike Product.</p>\n<p>Name of the product:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th>Mandatory / Optional  <br />(data type)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>productName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Name of the product  <br />  <br /><strong>Possible values:  <br />\"ebike-netherlands\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p>Customer:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th>Mandatory / Optional  <br />(data type)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>email</td>\n<td><strong>Mandatory</strong>  <br />(email)</td>\n<td>Email address of the customer/customer company  <br />  <br /><strong>e.g. \"</strong><a href=\"https://mailto:test@alteos.com\"><b>test@alteos.com</b></a><strong>\"</strong></td>\n</tr>\n<tr>\n<td>firstName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>First name of the customer  <br />In case of company: Please split the company name between firstName and lastName  <br />  <br /><strong>e.g. \"Georg\"</strong></td>\n</tr>\n<tr>\n<td>lastName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Family name of the customer  <br />  <br /><strong>e.g. \"Test\"</strong></td>\n</tr>\n<tr>\n<td>addressStreet</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Street name of the customer's contact address  <br />  <br /><strong>e.g. \"Hardenbergerstr.\"</strong></td>\n</tr>\n<tr>\n<td>addressHouseNumber</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>House number of the customer's contact address  <br />  <br /><strong>e.g. \"32\"</strong></td>\n</tr>\n<tr>\n<td>addressPLZ</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Postal code of the customer's contact address  <br />  <br /><strong>e.g. \"3100EJ\"</strong></td>\n</tr>\n<tr>\n<td>addressCity</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Name of the city of the customer's contact address  <br />  <br /><strong>e.g. \"Amsterdam\"</strong></td>\n</tr>\n<tr>\n<td>companyName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Name of the customer company  <br />  <br /><strong>e.g. \"Test Company GmbH\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p>Values:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Mandatory / Optional  <br />(data type)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>policyStartDate</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>Starting date of the insurance contract, cannot be a date in the past  <br />  <br />- Date of handover of the bike or up to four weeks later.  <br />- Coverage starts on this day.  <br />- Minimum Date: One day before today.  <br />- Maximum Date: One month in the future.  <br />  <br />Format: YYYY-MM-DD  <br />  <br /><strong>e.g. \"2025-09-15\"</strong></td>\n</tr>\n<tr>\n<td>addressZip</td>\n<td><strong>Mandatory for quotation  <br />Optional for creation</strong>  <br />(string)</td>\n<td>Additional value which is mandatory for quotation. It is the postal code of the customer's address.  <br />  <br /><strong>e.g. \"1234 AB\"</strong>  <br />  <br />Note:  <br />Creation uses customer.addressPlz.</td>\n</tr>\n<tr>\n<td>paymentSchedule</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Defines the customer's preferred payment schedule for the contract. The contract has a default duration of 5 years unless canceled earlier by the customer.  <br />  <br /><strong>- monthly</strong>: The customer pays each month for 5 years.  <br />- <strong>annual</strong>: The customer pays once every year for 5 years.  <br />- <strong>3years</strong>: The customer makes an upfront payment for the first 3 years, followed by two annual payments for the remaining 2 years.  <br />- <strong>oneTime</strong>: The customer makes a single upfront payment for the entire 5-year period  <br />  <br /><strong>Possible values:  <br />\"monthly\"</strong>  <br /><strong>\"annual\"</strong>  <br /><strong>\"3years\"</strong>  <br /><strong>\"oneTime\"</strong></td>\n</tr>\n<tr>\n<td>price</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Price of the insured E-Bike in €  <br />  <br />max: 15000.00  <br />  <br /><strong>Possible values:  <br />\"0.00-250.00\"  <br />\"250.01-500.00\"  <br />\"500.01-750.00\"  <br />...  <br />\"14750.01-15000.00\"</strong></td>\n</tr>\n<tr>\n<td>purchasedAt</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>Purchase date of the insured E-Bike  <br />  <br />Format: YYYY-MM-DD  <br />  <br /><strong>e.g. \"2024-12-01\"  <br /></strong>  <br />Note: Must be within the last 24 months to qualify for insurance for Theft and Casco packages. Must be within the last 3 months for the Warranty package.</td>\n</tr>\n<tr>\n<td>vehicleType</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Specifies the insured bike  <br />  <br /><strong>Possible values:  <br />\"Fiets\"  <br />\"E-Bike\"</strong>  <br />  <br />Note: that the GPS addon is not available if \"Fiets\" has been selected.</td>\n</tr>\n<tr>\n<td>brand</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Specifies the brand of the insured bike  <br />  <br /><strong>e.g. \"2Flash\"</strong></td>\n</tr>\n<tr>\n<td>model</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Specifies the model of the insured bike  <br />  <br /><strong>e.g. \"Touring Hybrid Pro 625 Trapeze 46 XS\"</strong></td>\n</tr>\n<tr>\n<td>type</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Describes the type of the bike. Deductibles are depending on bike type.  <br />  <br />Possible values:  <br /><strong>\"Bakfiets / transportfiets\"  <br />\"Mountainbike\"  <br />\"Gravelbike / Racefiets\"  <br />\"Stadfiets\"  <br />\"Andere Fietsen\"</strong></td>\n</tr>\n<tr>\n<td>frameNumber</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Frame number of the (E-)Bike  <br />  <br /><strong>e.g. \"XYZ123456\"</strong></td>\n</tr>\n<tr>\n<td>hasEligibleLock</td>\n<td><strong>Mandatory</strong>  <br />(boolean)</td>\n<td>Customer must confirm that they have been using a lock worth at least €45.  <br />  <br /><strong>Possible values:  <br />true  <br />false</strong></td>\n</tr>\n<tr>\n<td>preinstalledGps</td>\n<td><strong>Optional</strong>  <br />(select)</td>\n<td>Select field which controls the discount for supported preinstalled GPS trackers. The customer is responsible to pay for the hardware, the service and the installation of the device.  <br />  <br /><strong>Possible values:  <br /></strong>\"-\"  <br /><strong>\"Bosch ConnectModule\"  <br /></strong>\"<strong>Comodule</strong>\"  <br />\"<strong>Tracefy</strong>\"  <br /><strong>\"AXA Smart Guard\"  <br />\"Van Moof\"  <br />\"RX-Chip\"  <br />\"Specialized - Apple Find My\"</strong></td>\n</tr>\n<tr>\n<td>partnerCode</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>partner ID to capture a third party involved in policy creation process (e.g. a bike store or branch where the contract is created)  <br />  <br /><strong>e.g. \"2132546\"  <br />  <br />For testing:  <br /></strong>\"1234\"</td>\n</tr>\n<tr>\n<td>partnerCodeToName</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>name of the store or branch involved in policy creation process  <br />  <br /><strong>e.g. \"Bike Store Amsterdam\"</strong></td>\n</tr>\n<tr>\n<td>employeeId</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>employee ID to capture an employee involved in policy creation process (e.g. an employee who sold the policy)</td>\n</tr>\n<tr>\n<td>package</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Package that controlls the insured risks.  <br />  <br /><strong>Possible values:  <br />\"theft\"  <br />\"casco\"  <br />\"warranty\"</strong></td>\n</tr>\n<tr>\n<td>addons</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Select the \"gpsTrackingIoT\" addon to get an \"IT'S MY BIKE\" GPS device from IoT Venture bundled to the insurance.  <br />  <br /><strong>Possible values:  <br />\"gpsTrackingIoT\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p>The policy creation response will also return the <code>requestData</code> object which contains all the data that was given by the user during the policy creation and the <code>quote</code> object which contains all the quotation calculations.</p>\n","urlObject":{"path":["v2","policies"],"host":["https://api.sandbox.alteos.com"],"query":[{"disabled":true,"description":{"content":"<p>Coverage period of the insurance.</p>\n","type":"text/plain"},"key":"duration","value":""},{"disabled":true,"description":{"content":"<p>Date of purchase of the eBike. Must not be older than 6 months before the insurance starting date.</p>\n","type":"text/plain"},"key":"purchasedAt","value":""}],"variable":[]}},"response":[{"id":"5fd90848-c7f0-4318-a43a-21f3ef209139","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike-netherlands\",\n    \"customer\": {\n        \"email\": \"test@alteos.com\",\n        \"firstName\": \"Georg\",\n        \"lastName\": \"Test\",\n        \"values\": {\n            \"addressStreet\": \"Hardenbergerstr.\",\n            \"addressHouseNumber\": \"32\",\n            \"addressPlz\": \"3100EJ\",\n            \"addressCity\": \"Amsterdam\",\n            \"dateOfBirth\": \"2000-09-10\"\n        }\n    },\n    \"values\": {\n        \"policyStartDate\": \"2025-09-10\",\n        \"purchasedAt\": \"2024-10-20\",\n        \"paymentSchedule\": \"monthly\",\n        \"price\": \"4750.01-5000.00\",\n        \"vehicleType\": \"E-Bike\",\n        \"brand\": \"Batavus\",\n        \"type\": \"Mountainbike\",\n        \"frameNumber\": \"1245311\",\n        \"hasEligibleLock\": true,\n        \"partnerCode\": \"20241006\", // 20241006 for Wilmar partner, 20241020 for Cyclesoft partner\n        \"addressZip\": \"3100EJ\",\n        \"preinstalledGps\": \"-\"\n    },\n    \"package\": \"casco\",\n    \"addons\": [\"gpsTrackingIoT\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"b30a08a4-c93d-4ac5-855d-9ff318727348\",\n    \"prettyId\": \"SBTE67\",\n    \"requestData\": {\n        \"productName\": \"ebike-netherlands\",\n        \"customer\": {\n            \"email\": \"test@alteos.com\",\n            \"firstName\": \"Georg\",\n            \"lastName\": \"Test\",\n            \"values\": {\n                \"addressStreet\": \"Hardenbergerstr.\",\n                \"addressHouseNumber\": \"32\",\n                \"addressPlz\": \"3100EJ\",\n                \"addressCity\": \"Amsterdam\",\n                \"dateOfBirth\": \"2000-09-10\"\n            }\n        },\n        \"values\": {\n            \"policyStartDate\": \"2025-09-10\",\n            \"purchasedAt\": \"2024-10-20\",\n            \"paymentSchedule\": \"monthly\",\n            \"price\": \"4750.01-5000.00\",\n            \"vehicleType\": \"E-Bike\",\n            \"brand\": \"Batavus\",\n            \"type\": \"Mountainbike\",\n            \"frameNumber\": \"1245311\",\n            \"hasEligibleLock\": true,\n            \"partnerCode\": \"20241006\",\n            \"addressZip\": \"3100EJ\",\n            \"preinstalledGps\": \"-\"\n        },\n        \"package\": \"casco\",\n        \"addons\": [\n            \"gpsTrackingIoT\"\n        ]\n    },\n    \"quote\": {\n        \"gross\": 48.2,\n        \"premium\": 39.83,\n        \"taxes\": 8.37,\n        \"premiumExclDiscounts\": 39.83,\n        \"taxesExclDiscounts\": 8.37,\n        \"grossExclDiscounts\": 48.2,\n        \"addons\": [\n            {\n                \"name\": \"gpsTrackingIoT\",\n                \"gross\": 0,\n                \"payments\": [\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    },\n                    {\n                        \"tax\": 0,\n                        \"premium\": 0\n                    }\n                ]\n            }\n        ],\n        \"package\": {\n            \"name\": \"casco\",\n            \"gross\": 48.2,\n            \"payments\": [\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                },\n                {\n                    \"tax\": 8.37,\n                    \"premium\": 39.83\n                }\n            ]\n        }\n    },\n    \"draftInvoice\": {\n        \"invoiceId\": \"in_7348_lSRw1O6GZ05Yk\",\n        \"paymentOrderId\": \"ipo_05Yk_PsvWKVhe9fpd\"\n    }\n}"}],"_postman_id":"d810976c-c7c9-4d30-a289-985174d27de3"},{"name":"eBike NLM Product B2C | 2026","id":"91b8529c-8818-49d0-b73a-d86df90dbf9a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-app-key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike-netherlands-mantel\",\n    \"customer\": {\n        \"email\": \"Simon@alteos.com\",\n        \"firstName\": \"Simon\",\n        \"lastName\": \"Jansen\",\n        \"phone\": \"0201234567\",\n        \"values\": {\n            \"addressStreet\": \"Oudekerksplein\",\n            \"addressHouseNumber\": \"23\",\n            \"addressPlz\": \"1012GX\",\n            \"addressCity\": \"Amsterdam\",\n            \"dateOfBirth\": \"2000-11-11\"\n        }\n    },\n    \"values\": {\n        \"policyStartDate\": \"2026-04-01\",\n        \"purchasedAt\": \"2024-10-20\",\n        \"addressZip\": \"1012GX\",\n        \"paymentSchedule\": \"annual\",\n        \"price\": \"500.01-750.00\",\n        \"vehicleType\": \"E-Bike\",\n        \"brand\": \"Andere merk\",\n        \"type\": \"Mountain bike\",\n        \"frameNumber\": \"XYZ123456\",\n        \"hasEligibleLock\": true,\n        \"preinstalledGps\": \"-\",\n        \"partnerCode\": \"1234\" // 1234 is a test partner code\n        \n        \n    },\n    \"package\": \"casco\",\n    \"addons\": [\"gpsTracking\"]\n}"},"url":"https://api.sandbox.alteos.com/v2/policies","description":"<p>Use this API to create a policy for the eBike Product.</p>\n<h2 id=\"release-notes\">Release Notes</h2>\n<h3 id=\"version-2026-03-26\">Version 2026-03-26</h3>\n<p><strong>Changes for API call</strong></p>\n<p>paymentSchedule: Added the values \"annual\" and \"oneTime\"</p>\n<p>brand: Added list of brands, then changing from string type to select</p>\n<p><strong>Name of the product</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th>Mandatory / Optional  <br />(data type)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>productName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Name of the product  <br />  <br /><strong>\"ebike-netherlands-mantel\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Customer</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th>Mandatory / Optional  <br />(data type)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>email</td>\n<td><strong>Mandatory</strong>  <br />(email)</td>\n<td>Email address of the customer/customer company  <br />  <br /><strong>example:  <br />\"</strong><a href=\"https://mailto:Simon@alteos.com\"><b>Simon@alteos.com</b></a><strong>\"</strong></td>\n</tr>\n<tr>\n<td>firstName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>First name of the customer  <br />In case of company: Please split the company name between firstName and lastName  <br />  <br /><strong>example:  <br />\"Simon\"</strong></td>\n</tr>\n<tr>\n<td>lastName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Family name of the customer  <br />  <br /><strong>example:  <br />\"Jansen\"</strong></td>\n</tr>\n<tr>\n<td>phone</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Phone Number of the customer  <br /><strong>example:</strong>  <br /><strong>\"0201234567\"</strong></td>\n</tr>\n<tr>\n<td>addressStreet</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Street name of the customer's contact address  <br />  <br /><strong>example:  <br />\"Oudekerksplein\"</strong></td>\n</tr>\n<tr>\n<td>addressHouseNumber</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>House number of the customer's contact address  <br />  <br /><strong>example:  <br />\"23\"</strong></td>\n</tr>\n<tr>\n<td>addressPLZ</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Postal code of the customer's contact address  <br />  <br /><strong>Example:  <br />\"1012 GX\" ,</strong>  <br /><strong>\"1012GX\"</strong></td>\n</tr>\n<tr>\n<td>addressCity</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Name of the city of the customer's contact address  <br />  <br /><strong>Example:  <br />\"Amsterdam\"</strong></td>\n</tr>\n<tr>\n<td>dateOfBirth</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>Date of birth of the Customer  <br />Format: YYYY-MM-DD  <br />  <br /><strong>Example:  <br /></strong>\"2000-11-11\"</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Values</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Mandatory / Optional  <br />(data type)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>policyStartDate</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>Starting date of the insurance contract, cannot be a date in the past  <br />  <br />- Date of handover of the bike or up to four weeks later.  <br />- Coverage starts on this day.  <br />- Minimum Date: One day before today.  <br />- Maximum Date: One month in the future.  <br />  <br />Format: YYYY-MM-DD  <br />  <br /><strong>Example:  <br />\"2026-05-02\"</strong></td>\n</tr>\n<tr>\n<td>purchasedAt</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>Purchase date of the insured E-Bike  <br />  <br />Format: YYYY-MM-DD  <br />  <br /><strong>Example:  <br />\"2025-12-01\"  <br /></strong>  <br />Note: Must be within the last 24 months to qualify for insurance .</td>\n</tr>\n<tr>\n<td>addressZip</td>\n<td><strong>Mandatory for quotation  <br />Optional for creation</strong>  <br />(string)</td>\n<td>Additional value which is mandatory for quotation. It is the postal code of the customer's address.  <br />  <br /><strong>Example:  <br />\"1012 GX\"</strong>  <br />  <br />Note:  <br />Creation uses customer.addressPlz.</td>\n</tr>\n<tr>\n<td>paymentSchedule</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Defines the customer's preferred payment schedule for the contract. The contract has a default duration of 5 years unless canceled earlier by the customer.  <br />  <br /><strong>- monthly</strong>: The customer pays each month for 5 years.  <br />- <strong>annual</strong>: The customer pays once every year for 5 years.  <br />- <strong>oneTime</strong> : The customer makes an upfront payment for the first 5 years.  <br />  <br />  <br /><strong>Possible values:  <br />\"monthly\"</strong>  <br /><strong>\"annual\"</strong>  <br /><strong>\"oneTime\"</strong></td>\n</tr>\n<tr>\n<td>price</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Price of the insured E-Bike in €  <br />  <br />max: 15000.00  <br />  <br /><strong>Possible values:  <br />\"0.00-250.00\"  <br />\"250.01-500.00\"  <br />\"500.01-750.00\"  <br />...  <br />\"14750.01-15000.00\"</strong></td>\n</tr>\n<tr>\n<td>vehicleType</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Specifies the insured bike  <br />  <br /><strong>Possible values:  <br />\"Bike\"  <br />\"E-Bike\"</strong>  <br />  <br />Note: GPS addon is not available if \"Bike\" has been selected.</td>\n</tr>\n<tr>\n<td>brand</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Specifies the brand of the insured bike  <br />  <br /><strong>Example:  <br />\"Andere merk\"</strong></td>\n</tr>\n<tr>\n<td>type</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Describes the type of the bike. Deductibles are depending on bike type.  <br />  <br />Possible values:  <br /><strong>\"Cargo bike\"  <br />\"Mountain bike\"  <br />\"Gravel bike / Road bike\"  <br />\"Others\"</strong></td>\n</tr>\n<tr>\n<td>frameNumber</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Frame number of the (E-)Bike  <br />  <br /><strong>Example:  <br />\"XYZ123456\"</strong></td>\n</tr>\n<tr>\n<td>hasEligibleLock</td>\n<td><strong>Mandatory</strong>  <br />(boolean)</td>\n<td>Specifies if the customer uses a lock that is worth at least 45 €  <br />  <br /><strong>Possible values:  <br />true  <br />false</strong></td>\n</tr>\n<tr>\n<td>preinstalledGps</td>\n<td><strong>Optional</strong>  <br />(select)</td>\n<td>Select field which controls discounts for preinstalled GPS trackers (by brand).  <br />  <br /><strong>Possible values:  <br />\"-\" (no preinstalled GPS)</strong>  <br /><strong>\"Bosch ConnectModule\"</strong>  <br /><strong>\"IT'S MY BIKE\"  <br /></strong>\"<strong>Comodule</strong>\"  <br />\"<strong>Tracefy</strong>\"  <br /><strong>\"AXA Smart Guard\"  <br />\"Van Moof\"  <br />\"RX-Chip\"  <br />\"Specialized - Apple Find My\"</strong></td>\n</tr>\n<tr>\n<td>partnerCode</td>\n<td><strong>Optional  <br /></strong>(string - UUID)</td>\n<td>partner ID to capture a third party involved in policy creation process (e.g. a store or branch where the contract is created)  <br />  <br /><strong>example:  <br />\"550e8400-e29b-41d4-a716-446655440000\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Packages</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Mandatory / Optional  <br />(data type)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>package</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Type of coverage  <br />  <br /><strong>Possible values:  <br />\"theft\"  <br />\"casco\"</strong></td>\n</tr>\n<tr>\n<td>addons</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>List of selected policy-addons (can be an empty array, if no addons are selected).  <br />Mandatory for  <br />Sport Bikes (Mountain bike or Gravel bike) from Urban Arrow.  <br /><strong>Possible values:  <br />\"gpsTracking\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p>The policy creation response will also return the <code>requestData</code> object which contains all the data that was given by the user during the policy creation and the <code>quote</code> object which contains all the quotation calculations.</p>\n","urlObject":{"path":["v2","policies"],"host":["https://api.sandbox.alteos.com"],"query":[{"disabled":true,"description":{"content":"<p>Coverage period of the insurance.</p>\n","type":"text/plain"},"key":"duration","value":""},{"disabled":true,"description":{"content":"<p>Date of purchase of the eBike. Must not be older than 6 months before the insurance starting date.</p>\n","type":"text/plain"},"key":"purchasedAt","value":""}],"variable":[]}},"response":[{"id":"43b6da1c-72ce-436f-aaef-0aa410b57913","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike-netherlands-mantel\",\n    \"customer\": {\n        \"email\": \"Simon@alteos.com\",\n        \"firstName\": \"Simon\",\n        \"lastName\": \"Jansen\",\n        \"phone\": \"0201234567\",\n        \"values\": {\n            \"addressStreet\": \"Oudekerksplein\",\n            \"addressHouseNumber\": \"23\",\n            \"addressPlz\": \"1012GX\",\n            \"addressCity\": \"Amsterdam\",\n            \"dateOfBirth\": \"2000-11-11\"\n        }\n    },\n    \"values\": {\n        \"policyStartDate\": \"2026-04-01\",\n        \"purchasedAt\": \"2024-10-20\",\n        \"addressZip\": \"1012GX\",\n        \"paymentSchedule\": \"annual\",\n        \"price\": \"500.01-750.00\",\n        \"vehicleType\": \"E-Bike\",\n        \"brand\": \"Andere merk\",\n        \"type\": \"Mountain bike\",\n        \"frameNumber\": \"XYZ123456\",\n        \"hasEligibleLock\": true,\n        \"preinstalledGps\": \"-\",\n        \"partnerCode\": \"1234\" // 1234 is a test partner code\n        \n        \n    },\n    \"package\": \"casco\",\n    \"addons\": [\"gpsTracking\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"6f051007-ffa0-4b1b-958e-448b48862b85\",\n    \"prettyId\": \"8KWGQ8\",\n    \"requestData\": {\n        \"productName\": \"ebike-netherlands-mantel\",\n        \"customer\": {\n            \"email\": \"Simon@alteos.com\",\n            \"firstName\": \"Simon\",\n            \"lastName\": \"Jansen\",\n            \"phone\": \"0201234567\",\n            \"values\": {\n                \"addressStreet\": \"Oudekerksplein\",\n                \"addressHouseNumber\": \"23\",\n                \"addressPlz\": \"1012GX\",\n                \"addressCity\": \"Amsterdam\",\n                \"dateOfBirth\": \"2000-11-11\"\n            }\n        },\n        \"values\": {\n            \"policyStartDate\": \"2026-04-01\",\n            \"purchasedAt\": \"2024-10-20\",\n            \"addressZip\": \"1012GX\",\n            \"paymentSchedule\": \"annual\",\n            \"price\": \"500.01-750.00\",\n            \"vehicleType\": \"E-Bike\",\n            \"brand\": \"Andere merk\",\n            \"type\": \"Mountain bike\",\n            \"frameNumber\": \"XYZ123456\",\n            \"hasEligibleLock\": true,\n            \"preinstalledGps\": \"-\",\n            \"partnerCode\": \"1234\"\n        },\n        \"package\": \"casco\",\n        \"addons\": [\n            \"gpsTracking\"\n        ]\n    },\n    \"quote\": {\n        \"gross\": 187.95,\n        \"premium\": 155.33,\n        \"taxes\": 32.62,\n        \"premiumExclDiscounts\": 155.33,\n        \"taxesExclDiscounts\": 32.62,\n        \"grossExclDiscounts\": 187.95,\n        \"addons\": [\n            {\n                \"name\": \"gpsTracking\",\n                \"payments\": []\n            }\n        ],\n        \"package\": {\n            \"name\": \"casco\",\n            \"gross\": 187.95,\n            \"payments\": [\n                {\n                    \"tax\": 32.62,\n                    \"premium\": 155.33\n                },\n                {\n                    \"tax\": 32.62,\n                    \"premium\": 155.33\n                },\n                {\n                    \"tax\": 32.62,\n                    \"premium\": 155.33\n                },\n                {\n                    \"tax\": 32.62,\n                    \"premium\": 155.33\n                },\n                {\n                    \"tax\": 32.62,\n                    \"premium\": 155.33\n                }\n            ]\n        }\n    },\n    \"draftInvoice\": {\n        \"invoiceId\": \"in_2b85_8yJskUq0FxO5e\",\n        \"paymentOrderId\": \"ipo_xO5e_8I5E8y7YpTNW\"\n    }\n}"}],"_postman_id":"91b8529c-8818-49d0-b73a-d86df90dbf9a"}],"id":"7042d587-7367-4ef3-be5e-9871bf3b0ba8","description":"<p>The Policy Creation API is used to create an insurance policy with the quote provided by the Policy Quotation API and additional data from the customer.</p>\n","event":[{"listen":"prerequest","script":{"id":"5902a12b-a0f6-404e-b15b-299adb9e911c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"fabebd98-fdcd-454c-819d-e72234eee890","type":"text/javascript","exec":[""]}}],"_postman_id":"7042d587-7367-4ef3-be5e-9871bf3b0ba8"},{"name":"Policy Creation HearingAid Products","item":[{"name":"Hearing Aids 2026","id":"67628637-1bff-43f0-8336-0a3c1521f701","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-app-key","value":"f503fa45-b830-415a-af32-0476e9320699","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"hoerschutz2026\",\n    \"customer\": {\n        \"email\": \"email@kunde.com\",\n        \"firstName\": \"Boris\",\n        \"lastName\": \"Britva\",\n        \"phone\": \"0123456789\",\n        \"values\": {\n            \"salutation\": \"Herr\",\n            \"companyName\": \"-\",\n            \"addressStreet\": \"Hardenbergerstr.\",\n            \"addressHouseNumber\": \"42\",\n            \"addressPlz\": \"12345\",\n            \"addressCity\": \"Berlin\",\n            \"dateOfBirth\": \"1992-02-26\"\n        }\n    },\n    \"values\": {\n        \"paymentSchedule\": \"oneTime\",\n        \"healthInsuranceType\": \"public\",\n        \"numberOfDevices\": \"2\",\n        \"brand1\": \"Phonak\",\n        \"brand2\": \"Oticon\",\n        \"model1\": \"Virto R Infinio\",\n        \"model2\": \"Oticon Jet PX\",\n        \"serialNum1\": \"12345678\",\n        \"serialNum2\": \"23456789\",\n        \"itemValue\": \"999.90\",\n        \"purchasedAt\": \"2026-01-01\",\n        \"employeeId\": \"Mark\",\n        \"partnerCode\":\"1234\",\n        \"accessoryModel1\": \"Phonak Charger Case\",\n        \"accessoryModel2\":\"Oticon Connect Clip\",\n        \"accessoryModel3\": \"Signia StreamLine Mic\",\n        \"accessoryBrand1\":\"Phonak\",\n        \"accessoryBrand2\":\"Oticon\",\n        \"accessoryBrand3\":\"Signia\"\n        \n    },\n    \"package\": \"premiumschutz\",\n    \"addons\": []\n}"},"url":"https://api.sandbox.alteos.com/v2/policies","description":"<p>Use this API to create a policy for the Hearing Aids Product.</p>\n<p><em><strong>Note: Please use this Test</strong></em> <strong>partnerCode</strong> <em><strong>for sandbox: \"1234\"</strong></em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>productName</th>\n<th>\"hoerschutz2026\"</th>\n</tr>\n</thead>\n<tbody>\n</tbody>\n</table>\n</div><p><em><strong>Customer</strong></em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Mandatory / Optional (Datatype)</th>\n<th>Description and values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>email</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Email of the insured person using mail format.  <br />  <br /><strong>e.g. \"email</strong><a href=\"https://mailto:ols@alteos.com\"><b>@kunde.com</b></a><strong>\"</strong></td>\n</tr>\n<tr>\n<td>firstName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>First name of the insured person  <br />  <br /><strong>e.g. \"Boris\"</strong></td>\n</tr>\n<tr>\n<td>lastName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Last name of the insured person  <br />  <br /><strong>e.g. \"Britva\"</strong></td>\n</tr>\n<tr>\n<td>phone</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Phone number of the insured person. Can start with 0 or +49, no spaces allowed, min. 7 characters.  <br />  <br /><strong>e.g.</strong> <strong>\"0123456789\"</strong> or <strong>\"+49123456789\"</strong></td>\n</tr>\n<tr>\n<td>values.dateOfBirth</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Birthday of insured person, in YYYY-MM-DD format  <br /><strong>e.g. \"1992-02-26\"</strong></td>\n</tr>\n<tr>\n<td>values.companyName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Name of the company.  <br />It can be omitted by inserting \"-\"  <br />  <br /><strong>e.g. \"Hardenberg\"</strong> or <strong>\"-\"</strong></td>\n</tr>\n<tr>\n<td>values.adressStreet</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Name of the street of the insured person's home adress  <br />  <br /><strong>e.g. \"Hardenbergstr.\"</strong></td>\n</tr>\n<tr>\n<td>values.addressHouseNumber</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>House number of the insured person's home adress  <br /><strong>e.g. \"42\"</strong></td>\n</tr>\n<tr>\n<td>values.addressPlz</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Postal code of the insured person's home adress  <br /><strong>e.g. \"12345\"</strong></td>\n</tr>\n<tr>\n<td>values.addressCity</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Name of the city in which the insured person lives  <br /><strong>e.g. \"Berlin\"</strong></td>\n</tr>\n<tr>\n<td>values.salutation</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Salutation used to adress the customer based on gender  <br />  <br /><strong>Available values:  <br />\"Herr\"  <br />\"Frau\"  <br />\"Divers\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p><em><strong>Values</strong></em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Mandatory / Optional</th>\n<th>Description and values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>paymentSchedule</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Gives the frequency of payments  <br />  <br /><strong>Available values:</strong>  <br /><strong>\"monthly\"</strong>  <br /><strong>\"annual\"</strong>  <br /><strong>\"threeYear\"</strong> (one payment for the first 3 years, then annual payments)  <br /><strong>\"oneTime\"</strong></td>\n</tr>\n<tr>\n<td>healthInsuranceType</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Indicate whether the insured person has public or private health insurance  <br />  <br /><strong>Selected from:  <br />\"public\"  <br />\"private\"</strong></td>\n</tr>\n<tr>\n<td>numberOfDevices</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>An integer indicating how many hearing aids are insured.  <br />Accesories are a plus up to three.  <br />  <br /><strong>Available values:  <br />\"1\" (<strong>one hearing aid</strong>)  <br />\"2\" (<strong>two hearing aids</strong>)  <br />\"3\" (<strong>no hearing aid, just accesory</strong>)</strong></td>\n</tr>\n<tr>\n<td>brand1</td>\n<td><strong>Mandatory / Optional</strong>  <br />(string)</td>\n<td>Name of the manufacturer of the first insured hearing aid.  <br />  <br />If \"numberOfDevices\" is \"1\" or \"2\", \"brand1\" is mandatory.  <br />  <br /><strong>e.g. \"Phonak\"</strong></td>\n</tr>\n<tr>\n<td>brand2</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Name of the manufacturer of the second insured hearing aid.  <br />  <br /><strong>e.g. \"Oticon\"</strong></td>\n</tr>\n<tr>\n<td>model1</td>\n<td><strong>Mandatory / Optional</strong>  <br />(string)</td>\n<td>Model of the first insured hearing aid.  <br />  <br />If \"numberOfDevices\" is \"1\" or \"2\", \"model1\" is mandatory.  <br />  <br /><strong>e.g. \"Virto R Infinio\"</strong></td>\n</tr>\n<tr>\n<td>model2</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Model of the second insured hearing aid  <br />  <br /><strong>e.g. \"Oticon Jet PX\"</strong></td>\n</tr>\n<tr>\n<td>serialNum1</td>\n<td><strong>Mandatory / Optional</strong>  <br />(string)</td>\n<td>Serial number of the first insured hearing aid.  <br />  <br />If \"numberOfDevices\" is \"1\" or \"2\", \"serialNum1\" is mandatory.  <br />  <br /><strong>e.g. \"12345678\"</strong></td>\n</tr>\n<tr>\n<td>serialNum2</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Serial number of the second insured hearing aid.  <br />  <br /><strong>e.g. \"23456789\"</strong></td>\n</tr>\n<tr>\n<td>itemValue</td>\n<td><strong>Mandatory</strong>  <br />(float)</td>\n<td>Total value of both hearing aids devices and accesories up to 15000 €.  <br />  <br />e.g. <strong>999.90</strong></td>\n</tr>\n<tr>\n<td>purchasedAt</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>Date of purchase of the insured devices, it must be within the last 4 months.  <br />Format YYYY-MM-DD  <br />  <br /><strong>e.g. \"2025-08-18\"</strong></td>\n</tr>\n<tr>\n<td>employeeId</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>ID of the employee who sold the insurance.  <br /><strong>e.g. \"Mark\"</strong></td>\n</tr>\n<tr>\n<td>partnerCode</td>\n<td><strong>Mandatory / Optional</strong>  <br />(string)</td>\n<td>7 number partner identifier, enables recognition of third party (e.g. store or branch)  <br />If the partnerSetting is ERP, this value is mandatory.  <br />  <br /><strong>e.g. \"1234\"</strong></td>\n</tr>\n<tr>\n<td>accessoryModel1</td>\n<td><strong>Mandatory / Optional</strong>  <br />(string)</td>\n<td>Model of the first insured accessory.  <br />  <br />If \"numberOfDevices\" is \"0\", \"accessoryModel1\" is mandatory.  <br />  <br /><strong>e.g. \"Phonak Charger Case\"</strong></td>\n</tr>\n<tr>\n<td>accessoryModel2</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Model of the second insured accessory.  <br />  <br /><strong>e.g. \"Oticon Connect Clip\"</strong></td>\n</tr>\n<tr>\n<td>accessoryModel3</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Model of the third insured accessory.  <br />  <br /><strong>e.g. \"Signia StreamLine Mic\"</strong></td>\n</tr>\n<tr>\n<td>accessoryBrand1</td>\n<td><strong>Mandatory / Optional</strong>  <br />(string)</td>\n<td>Brand of the first insured acessory.  <br />  <br />If \"numberOfDevices\" is \"3\", \"accessoryBrand1\" must be mandatory.  <br />  <br /><strong>e.g. \"Phonak\"</strong></td>\n</tr>\n<tr>\n<td>accessoryBrand2</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Brand of the second insured acessory.  <br />  <br /><strong>e.g. \"Oticon\"</strong></td>\n</tr>\n<tr>\n<td>accessoryBrand3</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Brand of the third insured acessory.  <br />  <br /><strong>e.g. \"Signia\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p><em><strong>Others</strong></em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Mandatory / Optional</th>\n<th>Description and values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>package</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>The selectable packages are adjusted in terms of type of partner as follows  <br />  <br /><em><strong>Shop partner:</strong></em>  <br />  <br /><strong>\"verlustschutz\"  <br />\"premiumschutz\"</strong>  <br /><strong>\"verlustschutz\"</strong>  <br />  <br /><em><strong>Purchasing groups:</strong></em>  <br />  <br /><strong>\"IAS+ Verlust\"</strong>  <br /><strong>\"IAS Premium\"</strong>  <br /><strong>\"IAS Komfort\"</strong>  <br />  <br /><strong>\"ISMA Verlustschutz 5 Jahre\"  <br />\"ISMA Verlustschutz 6 Jahre\"</strong>  <br /><strong>\"ISMA Premiumschutz 5 Jahre\"  <br />\"ISMA Premiumschutz 6 Jahre\"</strong>  <br />  <br /><strong>\"audimus\"</strong></td>\n</tr>\n<tr>\n<td>addons</td>\n<td><strong>Mandatory</strong></td>\n<td>There is no addons for this product, for quotation or creation, must be entered []</td>\n</tr>\n</tbody>\n</table>\n</div><p>The policy creation response will also return the <code>requestData</code> object which contains all the data that was given by the user during the policy creation and the <code>quote</code> object which contains all the quotation calculations.</p>\n","urlObject":{"path":["v2","policies"],"host":["https://api.sandbox.alteos.com"],"query":[{"disabled":true,"description":{"content":"<p>Coverage period of the insurance.</p>\n","type":"text/plain"},"key":"duration","value":""},{"disabled":true,"description":{"content":"<p>Date of purchase of the eBike. Must not be older than 6 months before the insurance starting date.</p>\n","type":"text/plain"},"key":"purchasedAt","value":""}],"variable":[]}},"response":[{"id":"7ba28bbc-4268-4985-ad11-123fc70467c1","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"f503fa45-b830-415a-af32-0476e9320699","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"hoerschutz2026\",\n    \"customer\": {\n        \"email\": \"email@kunde.com\",\n        \"firstName\": \"Boris\",\n        \"lastName\": \"Britva\",\n        \"phone\": \"0123456789\",\n        \"values\": {\n            \"salutation\": \"Herr\",\n            \"companyName\": \"-\",\n            \"addressStreet\": \"Hardenbergerstr.\",\n            \"addressHouseNumber\": \"42\",\n            \"addressPlz\": \"12345\",\n            \"addressCity\": \"Berlin\",\n            \"dateOfBirth\": \"1992-02-26\"\n        }\n    },\n    \"values\": {\n        \"paymentSchedule\": \"oneTime\",\n        \"healthInsuranceType\": \"public\",\n        \"numberOfDevices\": \"2\",\n        \"brand1\": \"Phonak\",\n        \"brand2\": \"Oticon\",\n        \"model1\": \"Virto R Infinio\",\n        \"model2\": \"Oticon Jet PX\",\n        \"serialNum1\": \"12345678\",\n        \"serialNum2\": \"23456789\",\n        \"itemValue\": \"999.90\",\n        \"purchasedAt\": \"2026-01-01\",\n        \"employeeId\": \"Mark\",\n        \"partnerCode\":\"1234\",\n        \"accessoryModel1\": \"Phonak Charger Case\",\n        \"accessoryModel2\":\"Oticon Connect Clip\",\n        \"accessoryModel3\": \"Signia StreamLine Mic\",\n        \"accessoryBrand1\":\"Phonak\",\n        \"accessoryBrand2\":\"Oticon\",\n        \"accessoryBrand3\":\"Signia\"\n        \n    },\n    \"package\": \"premiumschutz\",\n    \"addons\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"477ec79f-f39a-4001-a767-fc9ebcf80f6e\",\n    \"prettyId\": \"4LDECS\",\n    \"requestData\": {\n        \"productName\": \"hoerschutz2026\",\n        \"customer\": {\n            \"email\": \"email@kunde.com\",\n            \"firstName\": \"Boris\",\n            \"lastName\": \"Britva\",\n            \"phone\": \"0123456789\",\n            \"values\": {\n                \"salutation\": \"Herr\",\n                \"companyName\": \"-\",\n                \"addressStreet\": \"Hardenbergerstr.\",\n                \"addressHouseNumber\": \"42\",\n                \"addressPlz\": \"12345\",\n                \"addressCity\": \"Berlin\",\n                \"dateOfBirth\": \"1992-02-26\"\n            }\n        },\n        \"values\": {\n            \"paymentSchedule\": \"oneTime\",\n            \"healthInsuranceType\": \"public\",\n            \"numberOfDevices\": \"2\",\n            \"brand1\": \"Phonak\",\n            \"brand2\": \"Oticon\",\n            \"model1\": \"Virto R Infinio\",\n            \"model2\": \"Oticon Jet PX\",\n            \"serialNum1\": \"12345678\",\n            \"serialNum2\": \"23456789\",\n            \"itemValue\": \"999.90\",\n            \"purchasedAt\": \"2026-01-01\",\n            \"employeeId\": \"Mark\",\n            \"partnerCode\": \"1234\",\n            \"accessoryModel1\": \"Phonak Charger Case\",\n            \"accessoryModel2\": \"Oticon Connect Clip\",\n            \"accessoryModel3\": \"Signia StreamLine Mic\",\n            \"accessoryBrand1\": \"Phonak\",\n            \"accessoryBrand2\": \"Oticon\",\n            \"accessoryBrand3\": \"Signia\"\n        },\n        \"package\": \"premiumschutz\",\n        \"addons\": []\n    },\n    \"quote\": {\n        \"gross\": 210.95,\n        \"premium\": 177.27,\n        \"taxes\": 33.68,\n        \"premiumExclDiscounts\": 177.27,\n        \"taxesExclDiscounts\": 33.68,\n        \"grossExclDiscounts\": 210.95,\n        \"addons\": [],\n        \"package\": {\n            \"name\": \"premiumschutz\",\n            \"gross\": 210.95,\n            \"payments\": []\n        }\n    },\n    \"draftInvoice\": {\n        \"invoiceId\": \"in_0f6e_elTTU8B3FJ8gT\",\n        \"paymentOrderId\": \"ipo_J8gT_iXPyHKkRsUmj\"\n    }\n}"}],"_postman_id":"67628637-1bff-43f0-8336-0a3c1521f701"},{"name":"Hearing Aid Trial 2022","id":"424a3bb1-9726-4de1-9052-83c35ab8bb5b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-app-key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"ausprobeschutz-2022\",\n    \"package\":\"ausprobeschutz\",\n\t\"customer\": {\n\t\t\"email\": \"email@kunde.com\",\n\t\t\"firstName\": \"Max\",\n\t  \t\"lastName\": \"Mustermann\",\n\t  \t\"phone\": \"017112345678\",\n\t\t\"values\": {\n\t    \t\"salutation\": \"Herr\",\n\t    \t\"addressStreet\": \"Teststr.\",\n\t\t\t\"addressHouseNumber\": \"42\",\n\t\t\t\"addressPlz\": \"12345\",\n\t\t\t\"addressCity\": \"Berlin\"\n\t\t}\n\t},\n\t\"values\": {\n\t\t\"policyStartDate\": \"2025-10-28\",\n\t\t\"numberOfDevices\": \"2\",\n        \"salesCategory\": \"S\",\n        \"policyholderName\": \"WeSellHearingAids\",\n        \"policyholderSecondName\": \"GmbH\",\n        \"policyholderEmail\":\"test@alteos.com\",\n        \"policyholderAddressStreet\": \"Test Street\",\n        \"policyholderAddressHouseNumber\": \"42\",\n        \"policyholderAddressCity\":\"test@alteos.com\",\n        \"policyholderAddressPlz\":\"12345\",\n        \"purchasedAt\": \"2025-10-28\",\n        \"brand1\":\"exampleBrand1\",\n        \"serialNum1\":\"exampleserialnumber1\",\n        \"brand2\":\"exampleBrand2\",\n        \"serialNum2\":\"exampleserialnumber2\"\n    },\n    \"addons\": [\n    ]\n}"},"url":"https://api.sandbox.alteos.com/v2/policies","description":"<p>Use this API to create a policy for the Hearing Aid Trial Product \"AusprobeSchutz2022\".</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>productName</th>\n<th>\"ausprobeschutz-2022\"</th>\n</tr>\n</thead>\n<tbody>\n</tbody>\n</table>\n</div><p><em><strong>Customer</strong></em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory / Optional</th>\n<th>Description and values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>email</td>\n<td><strong>Mandatory</strong>  <br />(email)</td>\n<td>email of the insured person/company  <br />  <br /><strong>e.g. \"email</strong><a href=\"https://mailto:ols@alteos.com\"><b>@kunde.com</b></a><strong>\"</strong></td>\n</tr>\n<tr>\n<td>firstName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>first name of the insured person  <br />  <br /><strong>e.g. \"Max\"</strong></td>\n</tr>\n<tr>\n<td>lastName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>last name of the insured person  <br />  <br /><strong>e.g. \"Mustermann\"</strong></td>\n</tr>\n<tr>\n<td>phone</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>phone number of the insured person  <br />  <br />Format:  <br />starting with 0 or +49, no spaces  <br />Min 7 characters  <br />  <br /><strong>e.g. \"017112345678\" or \"+4917112345678\"</strong></td>\n</tr>\n<tr>\n<td>addressStreet</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>name of the street of the insured person's home address  <br />  <br /><strong>e.g. \"Teststr.\"</strong></td>\n</tr>\n<tr>\n<td>addressHouseNumber</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>house number of the insured person's home address  <br /><strong>e.g. \"42\"</strong></td>\n</tr>\n<tr>\n<td>addressPlz</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>postal code of the insured person's home address  <br /><strong>e.g. \"12345\"</strong></td>\n</tr>\n<tr>\n<td>addressCity</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>name of the city in which the insured person lives  <br /><strong>e.g. \"Berlin\"</strong></td>\n</tr>\n<tr>\n<td>salutation</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>salutation used to address the customer based on gender  <br />  <br /><strong>Possible values:  <br />\"Herr\"  <br />\"Frau\"  <br />\"Divers\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Values:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Mandatory / Optional</th>\n<th>Description and values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>policyStartDate</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>Insurance coverage starts on this date  <br />  <br /><strong>e.g. \"2025-08-15\"</strong></td>\n</tr>\n<tr>\n<td>policyholderName</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>First name/company name of the policy holder  <br />  <br /><strong>e.g. \"WeSellHearingAid\"</strong></td>\n</tr>\n<tr>\n<td>policyholderSecondName</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Last name/company name of the policy holder  <br />  <br /><strong>e.g. \"GmbH\"</strong></td>\n</tr>\n<tr>\n<td>policyholderEmail</td>\n<td><strong>Optional</strong>  <br />(email)</td>\n<td>Email address of the policy holder  <br />  <br />e.g. \"<a href=\"https://mailto:test@alteos.com\">test@alteos.com</a>\"</td>\n</tr>\n<tr>\n<td>policyholderAddressStreet</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>name of the street of the policy holder's address  <br />  <br /><strong>e.g. \"Test Street\"</strong></td>\n</tr>\n<tr>\n<td>policyholderAddressHouseNumber</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>House number of the policy holder's address  <br />  <br /><strong>e.g. \"42\"</strong></td>\n</tr>\n<tr>\n<td>policyholderAddressCo</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Name of the person that mail for policy holder can be handed to  <br />  <br /><strong>e.g. \"John Doe\"</strong></td>\n</tr>\n<tr>\n<td>policyholderAddressPlz</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Postal code of the policy holder's address  <br />  <br /><strong>e.g. \"12345\"</strong></td>\n</tr>\n<tr>\n<td>policyholderAddressCity</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>name of the city of the policy holder's address  <br />  <br /><strong>e.g. \"Berlin\"</strong></td>\n</tr>\n<tr>\n<td>numberOfDevices</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Specifies how many devices are insured  <br />  <br /><strong>Possible values:  <br />\"1\"  <br />\"2\"</strong></td>\n</tr>\n<tr>\n<td>brand1</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>name of the manufacturer of the first insured hearing aid.  <br />  <br /><strong>e.g. \"Phonak\"</strong></td>\n</tr>\n<tr>\n<td>brand2</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>name of the manufacturer of the second insured hearing aid.  <br />  <br /><strong>e.g. \"Oticon\"</strong></td>\n</tr>\n<tr>\n<td>model1</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>model of the first insured hearing aid.  <br />  <br /><strong>e.g. \"Virto R Infinio\"</strong></td>\n</tr>\n<tr>\n<td>model2</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>model of the second insured hearing aid  <br />  <br /><strong>e.g. \"Oticon Jet PX\"</strong></td>\n</tr>\n<tr>\n<td>serialNum1</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>serial number of the first insured hearing aid.  <br />  <br /><strong>e.g. \"12345678\"</strong></td>\n</tr>\n<tr>\n<td>serialNum2</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>serial number of the second insured hearing aid.  <br />  <br /><strong>e.g. \"23456789\"</strong></td>\n</tr>\n<tr>\n<td>purchasedAt</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>date of purchase of the insured devices  <br />  <br />Format YYYY-MM-DD  <br />Min.: 4 days before current date  <br />Max.: current date  <br />  <br /><strong>e.g. \"2025-08-18\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Other</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Mandatory / Optional</th>\n<th>Description and values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>package</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Type of coverage  <br />  <br /><strong>Possible values:  <br />\"ausprobeschutz\"</strong></td>\n</tr>\n<tr>\n<td>addons</td>\n<td><strong>Mandatory</strong></td>\n<td>For this product, no addons are available  <br />  <br />Must be an empty array: []</td>\n</tr>\n</tbody>\n</table>\n</div><p>The policy creation response will also return the <code>requestData</code> object which contains all the data that was given by the user during the policy creation and the <code>quote</code> object which contains all the quotation calculations.</p>\n","urlObject":{"path":["v2","policies"],"host":["https://api.sandbox.alteos.com"],"query":[{"disabled":true,"description":{"content":"<p>Coverage period of the insurance.</p>\n","type":"text/plain"},"key":"duration","value":""},{"disabled":true,"description":{"content":"<p>Date of purchase of the eBike. Must not be older than 6 months before the insurance starting date.</p>\n","type":"text/plain"},"key":"purchasedAt","value":""}],"variable":[]}},"response":[{"id":"a081824a-d651-4a55-9965-5398be0eb16e","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"ausprobeschutz-2022\",\n    \"package\":\"ausprobeschutz\",\n\t\"customer\": {\n\t\t\"email\": \"email@kunde.com\",\n\t\t\"firstName\": \"Max\",\n\t  \t\"lastName\": \"Mustermann\",\n\t  \t\"phone\": \"017112345678\",\n\t\t\"values\": {\n\t    \t\"salutation\": \"Herr\",\n\t    \t\"addressStreet\": \"Teststr.\",\n\t\t\t\"addressHouseNumber\": \"42\",\n\t\t\t\"addressPlz\": \"12345\",\n\t\t\t\"addressCity\": \"Berlin\"\n\t\t}\n\t},\n\t\"values\": {\n\t\t\"policyStartDate\": \"2025-10-28\",\n\t\t\"numberOfDevices\": \"2\",\n        \"policyholderName\": \"WeSellHearingAids\",\n        \"policyholderSecondName\": \"GmbH\",\n        \"policyholderEmail\":\"test@alteos.com\",\n        \"policyholderAddressStreet\": \"Test Street\",\n        \"policyholderAddressHouseNumber\": \"42\",\n        \"policyholderAddressCity\":\"test@alteos.com\",\n        \"policyholderAddressPlz\":\"12345\",\n        \"purchasedAt\": \"2025-10-28\",\n        \"brand1\":\"exampleBrand1\",\n        \"serialNum1\":\"exampleserialnumber1\",\n        \"brand2\":\"exampleBrand2\",\n        \"serialNum2\":\"exampleserialnumber2\"\n    },\n    \"addons\": [\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"7cdb8d67-531a-4271-b9b7-69df0d2579c3\",\n    \"prettyId\": \"G9K3E4\",\n    \"requestData\": {\n        \"productName\": \"ausprobeschutz-2022\",\n        \"package\": \"ausprobeschutz\",\n        \"customer\": {\n            \"email\": \"email@kunde.com\",\n            \"firstName\": \"Max\",\n            \"lastName\": \"Mustermann\",\n            \"phone\": \"017112345678\",\n            \"values\": {\n                \"salutation\": \"Herr\",\n                \"addressStreet\": \"Teststr.\",\n                \"addressHouseNumber\": \"42\",\n                \"addressPlz\": \"12345\",\n                \"addressCity\": \"Berlin\"\n            }\n        },\n        \"values\": {\n            \"policyStartDate\": \"2025-10-28\",\n            \"numberOfDevices\": \"2\",\n            \"policyholderName\": \"WeSellHearingAids\",\n            \"policyholderSecondName\": \"GmbH\",\n            \"policyholderEmail\": \"test@alteos.com\",\n            \"policyholderAddressStreet\": \"Test Street\",\n            \"policyholderAddressHouseNumber\": \"42\",\n            \"policyholderAddressCity\": \"test@alteos.com\",\n            \"policyholderAddressPlz\": \"12345\",\n            \"purchasedAt\": \"2025-10-28\",\n            \"brand1\": \"exampleBrand1\",\n            \"serialNum1\": \"exampleserialnumber1\",\n            \"brand2\": \"exampleBrand2\",\n            \"serialNum2\": \"exampleserialnumber2\"\n        },\n        \"addons\": []\n    },\n    \"quote\": {\n        \"gross\": 21.9,\n        \"premium\": 18.4,\n        \"taxes\": 3.5,\n        \"premiumExclDiscounts\": 18.4,\n        \"taxesExclDiscounts\": 3.5,\n        \"grossExclDiscounts\": 21.9,\n        \"addons\": [],\n        \"package\": {\n            \"name\": \"ausprobeschutz\",\n            \"payments\": []\n        }\n    },\n    \"draftInvoice\": {\n        \"invoiceId\": \"in_79c3_Heme1F2RQVIIE\",\n        \"paymentOrderId\": \"ipo_VIIE_ubsNdIyijsv2\"\n    }\n}"}],"_postman_id":"424a3bb1-9726-4de1-9052-83c35ab8bb5b"},{"name":"Hearing Aids Partnerproducts","id":"dc2d4a09-b064-42a2-b756-cb3a0731848a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-app-key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"hoerschutz-partner\",\n\t\"customer\": {\n\t\t\"email\": \"kunde@email.de\",\n\t\t\"firstName\": \"Noah\",\n\t  \t\"lastName\": \"Schmidt\",\n\t  \t\"phone\": \"+4915712345678\",\n\t\t\"values\": {\n\t    \t\"salutation\": \"Herr\",\n\t    \t\"addressStreet\": \"Teststr.\",\n\t\t\t\"addressHouseNumber\": \"21\",\n\t\t\t\"addressPlz\": \"12345\",\n\t\t\t\"addressCity\": \"Berlin\"\n\t\t}\n\t},\n\t\"values\": {\n        \"purchasedAt\": \"2025-10-29\",\n\t\t\"healthInsuranceType\": \"public\",\n\t\t\"paymentSchedule\": \"annual\",\n\t\t\"numberOfDevices\": \"2\",\n        \"brand1\": \"Earth\",\n        \"brand2\": \"Planet\",\n        \"model1\": \"Orbit\",\n        \"model2\": \"Gravity\",\n        \"serialNum1\": \"12345678\",\n        \"serialNum2\": \"87654321\",\n        \"partnerCode\":\"0004\",\n        \"distributionChannel\": \"ERP\",\n        \"purchasePrice\": 7452.12,\n        \"policyStartDate\": \"2025-03-01\",\n        \"insuredPersonSalutation\":\"Frau\",\n        \"insuredPersonDateOfBirth\":\"1999-02-13\",\n        \"insuredPersonName\": \"Alma\",\n        \"insuredPersonFamilyName\": \"Meier\",\n        \"insuredPersonAddressStreet\": \"Test-Straße\",\n        \"insuredPersonAddressHouseNumber\": \"13\",\n        \"insuredPersonAddressPlz\": \"12345\",\n        \"insuredPersonAddressCity\": \"Berlin\"\n\t},\n    \"package\": \"audimus\",\n    \"addons\": []\n}"},"url":"https://api.sandbox.alteos.com/v2/policies","description":"<p>Use this API to create a policy for the Hearing Aids Partnerproduct.</p>\n<p><em><strong>Note: Please use this Test</strong></em> <strong>partnerCode</strong> <em><strong>for sandbox: \"1234\"</strong></em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>productName</th>\n<th>hoerschutz-partner</th>\n</tr>\n</thead>\n<tbody>\n</tbody>\n</table>\n</div><p><strong>Customer</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory / Optional  <br />(Data type)</th>\n<th>Description and values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>email</td>\n<td><strong>Mandatory</strong>  <br />(email)</td>\n<td>email of the customer  <br />  <br /><strong>e.g. \"</strong><a href=\"https://mailto:kunde@email.com\"><b>kunde@email.com</b></a><strong>\"</strong></td>\n</tr>\n<tr>\n<td>firstName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>first name of the customer  <br />  <br /><strong>e.g. \"Testvorname\"</strong></td>\n</tr>\n<tr>\n<td>lastName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>last name of the customer  <br />  <br /><strong>e.g. \"Testnachname\"</strong></td>\n</tr>\n<tr>\n<td>phone</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>phone number of the customer.  <br />Format: starting with 0 or +49, no spaces. Min 7 characters.  <br />  <br /><strong>e.g. \"01234567\" or \"+4909393030\"</strong></td>\n</tr>\n<tr>\n<td>addressStreet</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Street name of the customer's address  <br />  <br /><strong>e.g. \"Teststr.\"</strong></td>\n</tr>\n<tr>\n<td>addressHouseNumber</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>House number of the customer's address  <br />  <br /><strong>e.g. \"42\"</strong></td>\n</tr>\n<tr>\n<td>adressPlz</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Postal code of the customer's address  <br />  <br /><strong>e.g. \"12345\"</strong></td>\n</tr>\n<tr>\n<td>adressCity</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>City of the customer's address  <br />  <br /><strong>e.g. \"Berlin\"</strong></td>\n</tr>\n<tr>\n<td>salutation</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Salutation used to address the customer  <br />  <br /><strong>Possible values:  <br />\"Herr\"  <br />\"Frau\"  <br />\"Divers\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p><em><strong>Values</strong></em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Mandatory / Optional  <br />(Data type)</th>\n<th>Description and values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>policyStartDate</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>Start date of the policy and start date of coverage  <br />  <br />Format: YYYY-MM-DD  <br />  <br /><strong>e.g. \"2025-10-31\"</strong></td>\n</tr>\n<tr>\n<td>purchasePrice</td>\n<td><strong>Mandatory</strong>  <br />(number)</td>\n<td>corresponds to the total value of both hearing aids devices.  <br />  <br />depending on the partner, maximum value: 10'000 / 15'000  <br />  <br /><strong>e.g. \"500\"</strong></td>\n</tr>\n<tr>\n<td>purchasedAt</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>date of purchase stated on invoice  <br />  <br />Format: YYYY-MM-DD  <br />  <br />Min: 4 months before today  <br />Max: today  <br />  <br /><strong>e.g. \"2024-10-11\"</strong></td>\n</tr>\n<tr>\n<td>insuredPersonSalutation</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Salutation used to address the customer  <br />  <br /><strong>Possible values:  <br />\"Herr\"  <br />\"Frau\"  <br />\"Divers\"</strong></td>\n</tr>\n<tr>\n<td>insuredPersonName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>First name of the policy holder  <br />  <br /><strong>e.g. \"testPerson\"</strong></td>\n</tr>\n<tr>\n<td>insuredPersonFamilyName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Family name of the policy holder  <br />  <br /><strong>e.g. \"testPerson\"</strong></td>\n</tr>\n<tr>\n<td>insuredPersonDateOfBirth</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>Birthday of policy holder  <br />  <br />Format: YYYY-MM-DD  <br />  <br /><strong>e.g. \"1996-04-29\"</strong></td>\n</tr>\n<tr>\n<td>insuredPersonAddressStreet</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Street name of the insured person's address  <br />  <br /><strong>e.g. \"Potsdamer Str\"</strong></td>\n</tr>\n<tr>\n<td>insuredPersonAddressHouseNumber</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>House number of the insured person's address  <br />  <br /><strong>e.g. \"1\"</strong></td>\n</tr>\n<tr>\n<td>insuredPersonAddressPlz</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Postal code of the insured person's address  <br />  <br /><strong>e.g. \"10785\"</strong></td>\n</tr>\n<tr>\n<td>insuredPersonAddressCity</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>City of the insured person's address  <br />  <br /><strong>e.g. \"Berlin\"</strong></td>\n</tr>\n<tr>\n<td>healthInsuranceType</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Indicate whether the customer has public or private health insurance  <br />  <br /><strong>Possible values:  <br />\"public\"  <br />\"private\"</strong></td>\n</tr>\n<tr>\n<td>numberOfDevices</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Specifies the number of hearing aids insured in the contract  <br />  <br /><strong>Possible values: \"1\"  <br />\"2\"</strong></td>\n</tr>\n<tr>\n<td>brand1</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Brand of the first insured hearing aid  <br />  <br /><strong>e.g. \"test\"</strong></td>\n</tr>\n<tr>\n<td>brand 2</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Brand of the second insured hearing aid  <br />  <br />Mandatory, if \"numberOfDevices\" is \"2\"  <br />  <br /><strong>e.g. \"test\"</strong></td>\n</tr>\n<tr>\n<td>model1</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Model of the first insured hearing aid  <br />  <br /><strong>e.g. \"test\"</strong></td>\n</tr>\n<tr>\n<td>model 2</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Model of the second insured hearing aid  <br />  <br />Mandatory, if \"numberOfDevices\" is \"2\"  <br />  <br /><strong>e.g. \"test\"</strong></td>\n</tr>\n<tr>\n<td>seriealNum1</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Serial number of the first insured hearing aid  <br />  <br /><strong>e.g. \"12345678\"</strong></td>\n</tr>\n<tr>\n<td>seriealNum2</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Serial number of the first insured hearing aid  <br />  <br />Mandatory, if \"numberOfDevices\" is \"2\"  <br />  <br />  <br /><strong>e.g. \"12345678\"</strong></td>\n</tr>\n<tr>\n<td>partnerCode</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>partner ID to capture a third party involved in policy creation process (e.g. a store or branch where the contract is created)  <br />  <br /><strong>e.g.</strong>  <br />Test Code <strong>\"1234\"</strong></td>\n</tr>\n<tr>\n<td>distributionChannel</td>\n<td><strong>Optional</strong>  <br />(select)</td>\n<td>Mandatory if applicable  <br />  <br /><strong>Possible values:  <br />“app”  <br />\"ERP”</strong></td>\n</tr>\n<tr>\n<td>paymentSchedule</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Defines the customer's payment schedule for the contract. The contract has a default duration of 5 years unless canceled earlier by the customer.  <br />- <strong>annual</strong>: The customer pays once every year for 6 years.  <br />- <strong>3years</strong>: The customer makes an upfront payment for the first 3 years, followed by two annual payments for the remaining 3 years.  <br />- <strong>oneTime</strong>: The customer makes a single upfront payment for the entire 5-year period  <br />  <br /><strong>Possible values:  <br />\"annual\"  <br />\"3years\"  <br />\"oneTime\"</strong></td>\n</tr>\n<tr>\n<td>durationSelector</td>\n<td><strong>Mandatory/Optional</strong> depending on partner</td>\n<td>Defines the customer's preferred duration of the contract. The contract has a default duration of 6 years. Depending on the partner the duration can be changed by the customer between 5 and 6 years.  <br />  <br /><strong>Possible values:  <br />\"5\"  <br />\"6\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p><em><strong>Package</strong></em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory/  <br />Optional</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>package</td>\n<td>mandatory</td>\n<td>Package that controlls the insured risks.  <br />  <br />One of:  <br />“IAS+ Verlust”,  <br />\"IAS Premium\",  <br />\"IAS Komfort\",  <br />\"audimus\",  <br />\"ISMA Verlustschutz\",  <br />\"ISMA Premiumschutz\"</td>\n</tr>\n</tbody>\n</table>\n</div><p>The policy creation response will also return the <code>requestData</code> object which contains all the data that was given by the user during the policy creation and the <code>quote</code> object which contains all the quotation calculations.</p>\n","urlObject":{"path":["v2","policies"],"host":["https://api.sandbox.alteos.com"],"query":[{"disabled":true,"description":{"content":"<p>Coverage period of the insurance.</p>\n","type":"text/plain"},"key":"duration","value":""},{"disabled":true,"description":{"content":"<p>Date of purchase of the eBike. Must not be older than 6 months before the insurance starting date.</p>\n","type":"text/plain"},"key":"purchasedAt","value":""}],"variable":[]}},"response":[{"id":"b20d0b67-8d9d-488b-82b7-412410583eab","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"hoerschutz-partner\",\n\t\"customer\": {\n\t\t\"email\": \"kunde@email.de\",\n\t\t\"firstName\": \"Noah\",\n\t  \t\"lastName\": \"Schmidt\",\n\t  \t\"phone\": \"+4915712345678\",\n\t\t\"values\": {\n\t    \t\"salutation\": \"Herr\",\n\t    \t\"addressStreet\": \"Teststr.\",\n\t\t\t\"addressHouseNumber\": \"21\",\n\t\t\t\"addressPlz\": \"12345\",\n\t\t\t\"addressCity\": \"Berlin\"\n\t\t}\n\t},\n\t\"values\": {\n        \"purchasedAt\": \"2025-10-29\",\n\t\t\"healthInsuranceType\": \"public\",\n\t\t\"paymentSchedule\": \"annual\",\n\t\t\"numberOfDevices\": \"2\",\n        \"brand1\": \"Earth\",\n        \"brand2\": \"Planet\",\n        \"model1\": \"Orbit\",\n        \"model2\": \"Gravity\",\n        \"serialNum1\": \"12345678\",\n        \"serialNum2\": \"87654321\",\n        \"partnerCode\":\"0004\",\n        \"distributionChannel\": \"ERP\",\n        \"purchasePrice\": 7452.12,\n        \"policyStartDate\": \"2025-03-01\",\n        \"insuredPersonSalutation\":\"Frau\",\n        \"insuredPersonDateOfBirth\":\"1999-02-13\",\n        \"insuredPersonName\": \"Alma\",\n        \"insuredPersonFamilyName\": \"Meier\",\n        \"insuredPersonAddressStreet\": \"Test-Straße\",\n        \"insuredPersonAddressHouseNumber\": \"13\",\n        \"insuredPersonAddressPlz\": \"12345\",\n        \"insuredPersonAddressCity\": \"Berlin\"\n\t},\n    \"package\": \"audimus\",\n    \"addons\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"16f15fa1-3a0f-4363-88c8-0bb4de91b87e\",\n    \"prettyId\": \"3P9K2A\",\n    \"requestData\": {\n        \"productName\": \"hoerschutz-partner\",\n        \"customer\": {\n            \"email\": \"kunde@email.de\",\n            \"firstName\": \"Noah\",\n            \"lastName\": \"Schmidt\",\n            \"phone\": \"+4915712345678\",\n            \"values\": {\n                \"salutation\": \"Herr\",\n                \"addressStreet\": \"Teststr.\",\n                \"addressHouseNumber\": \"21\",\n                \"addressPlz\": \"12345\",\n                \"addressCity\": \"Berlin\"\n            }\n        },\n        \"values\": {\n            \"purchasedAt\": \"2025-10-29\",\n            \"healthInsuranceType\": \"public\",\n            \"paymentSchedule\": \"annual\",\n            \"numberOfDevices\": \"2\",\n            \"brand1\": \"Earth\",\n            \"brand2\": \"Planet\",\n            \"model1\": \"Orbit\",\n            \"model2\": \"Gravity\",\n            \"serialNum1\": \"12345678\",\n            \"serialNum2\": \"87654321\",\n            \"partnerCode\": \"0004\",\n            \"distributionChannel\": \"ERP\",\n            \"purchasePrice\": 7452.12,\n            \"policyStartDate\": \"2025-03-01\",\n            \"insuredPersonSalutation\": \"Frau\",\n            \"insuredPersonDateOfBirth\": \"1999-02-13\",\n            \"insuredPersonName\": \"Alma\",\n            \"insuredPersonFamilyName\": \"Meier\",\n            \"insuredPersonAddressStreet\": \"Test-Straße\",\n            \"insuredPersonAddressHouseNumber\": \"13\",\n            \"insuredPersonAddressPlz\": \"12345\",\n            \"insuredPersonAddressCity\": \"Berlin\"\n        },\n        \"package\": \"audimus\",\n        \"addons\": []\n    },\n    \"quote\": {\n        \"gross\": 615.95,\n        \"premium\": 517.61,\n        \"taxes\": 98.34,\n        \"premiumExclDiscounts\": 517.61,\n        \"taxesExclDiscounts\": 98.34,\n        \"grossExclDiscounts\": 615.95,\n        \"addons\": [],\n        \"package\": \"\"\n    },\n    \"draftInvoice\": {\n        \"invoiceId\": \"in_b87e_ihil2miYWrbrY\",\n        \"paymentOrderId\": \"ipo_rbrY_qXbOEQzo9rEQ\"\n    }\n}"}],"_postman_id":"dc2d4a09-b064-42a2-b756-cb3a0731848a"},{"name":"Hearing Aids Hörgeräteversicherung ERP 2025","id":"c5ec1c9b-450a-4f46-bef8-87b634ad4509","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-app-key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"hoerschutz-erp\",\n\t\"customer\": {\n\t\t\"email\": \"test@alteos.com\",\n\t\t\"firstName\": \"Testvorname\",\n\t  \t\"lastName\": \"Testnachname\",\n\t  \t\"phone\": \"+49170123456\",\n\t\t\"values\": {\n\t    \t\"salutation\": \"Herr\",\n\t    \t\"addressStreet\": \"Teststr.\",\n\t\t\t\"addressHouseNumber\": \"42\",\n\t\t\t\"addressPlz\": \"12345\",\n\t\t\t\"addressCity\": \"Berlin\"\n\t\t}\n\t},\n\t\"values\": {\n        // customer insurance info\n\t\t\"healthInsuranceType\": \"public\",\n        \n        // partner data\n        \"partnerCode\":\"1234\",\n        \"employeeId\": \"Mark\",\n        \"distributionChannel\": \"ERP\",\n\n        // payment schedule\n        \"paymentSchedule\": \"oneTime\",                   // \"monthly\", \"annual\", \"3years\", \"oneTime\"\n\n        // insured object\n        \"price\": 1900,                                  // 15000 max\n        \"itemValue\": \"1500.01-2000.00\",                 \n        \"purchasedAt\": \"2025-08-05\",\n\n        // hearing aid (up to 2 possible)\n        \"numberOfDevices\": \"1\",                         // \"1\", \"2\"\n        \"serialNum1\": \"skeufrhwekur235u3wfbwfj\",\n        \"brand1\": \"Bernafon\",\n        \"model1\": \"Encanta 300 ENGAGE\",\n\n        // accessories (optional, up to 3 possible)\n        \"accessoryModel1\": \"TV Connector\",\n        \"accessoryBrand1\": \"Phonak\",\n        \"accessoryModel2\": \"ReSound Multi Mic\",\n        \"accessoryBrand2\": \"ReSound\",\n        \"accessoryModel3\": \"Oticon ConnectClip\",\n        \"accessoryBrand3\": \"Oticon\"\n\n\t},\n    \"package\": \"verlustschutz\",                         // \"verlustschutz\", \"komfortschutz\", \"premiumschutz\"\n    \"addons\": []\n}\n"},"url":"https://api.sandbox.alteos.com/v2/policies","description":"<p>Use this API to create a policy for the Hearing Aids Hörgeräteversicherung ERP 2025.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>productName</th>\n<th>hoerschutz-erp</th>\n</tr>\n</thead>\n<tbody>\n</tbody>\n</table>\n</div><p><strong>Customer</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory / Optional  <br />(data type)</th>\n<th>Description and values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>firstName</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>First name of the insured person.  <br />  <br />Example: \"Noah\"</td>\n</tr>\n<tr>\n<td>lastName</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Last name of the insured person.  <br />  <br />Example: \"Schmidt\"</td>\n</tr>\n<tr>\n<td>email</td>\n<td><strong>mandatory</strong>  <br />(email)</td>\n<td>Email of the insured person (in email format).  <br />  <br />Example: <a href=\"https://mailto:noah.schmidt@email.de\">noah.schmidt@email.de</a></td>\n</tr>\n<tr>\n<td>phone</td>\n<td><strong>optional</strong>  <br />(string)</td>\n<td>Phone number of the insured person.  <br />  <br />Format: starting with 0 or +49, no spaces. Min 7 characters.  <br />  <br />Example: \"01234567\" or \"+4915738929598\"</td>\n</tr>\n<tr>\n<td>addressStreet</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Street name of the insured person's address.  <br />  <br />Example: \"Sendlinger Strasse\"</td>\n</tr>\n<tr>\n<td>addressHouseNumber</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>House number of the insured person's address.  <br />  <br />Example: \"21\"</td>\n</tr>\n<tr>\n<td>addressPlz</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Postal code (PLZ) of the insured person's address.  <br />  <br />Example: \"21212\"</td>\n</tr>\n<tr>\n<td>addressCity</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>City of the insured person's address.  <br />  <br />Example: \"Munich\"</td>\n</tr>\n<tr>\n<td>salutation</td>\n<td><strong>optional</strong>  <br />(string)</td>\n<td>The salutation or title of the insured person.  <br />  <br />One of:  <br />\"Herr\",  <br />\"Frau\",  <br />\"Divers\"  <br />  <br />Example: \"Herr\"</td>\n</tr>\n</tbody>\n</table>\n</div><p><em><strong>Values</strong></em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Mandatory / Optional</th>\n<th>Description and values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>itemValue</td>\n<td><strong>mandatory</strong>  <br />(select)</td>\n<td>Corresponds to the total value of one or both hearing aids and additional accessories (optional).  <br />  <br />  <br /><strong>e.g. \"2000.01-2500.00\"</strong></td>\n</tr>\n<tr>\n<td>purchasedAt</td>\n<td><strong>mandatory</strong>  <br />(date)</td>\n<td>The date of purchase stated on the invoice.  <br />  <br />Minimum: 6 months in the past  <br />Maximum: 1 day into the future.  <br />  <br />Format YYYY-MM-DD  <br />  <br /><strong>e.g. \"2025-03-01\"</strong></td>\n</tr>\n<tr>\n<td>onlyAccessories</td>\n<td><strong>optional</strong>  <br />(boolean)</td>\n<td>Specifies if all insured devices are accessories  <br />  <br /><strong>true</strong>: all insured devices are accessories  <br /><strong>false</strong>: at least one insured device is a hearing aid  <br />  <br /><strong>Possible values:  <br />true  <br />false</strong></td>\n</tr>\n<tr>\n<td>numberOfDevices</td>\n<td><strong>mandatory</strong>  <br />(select)</td>\n<td>Indicator for the number of the insured hearing aid devices  <br />  <br /><strong>\"1\"</strong>:  <br />- one hearing aid plus up to three optional accessories or  <br />- if \"onlyAccessories\" is true: one accessory  <br /><strong>\"2\"</strong>:  <br />- two hearing aids plus up to three optional accessories or  <br />- if \"onlyAccessories\" is true: two accessories  <br /><strong>\"3\"</strong>: no hearing aids but up to three accessories (only available if \"onlyAccessories\" is true)  <br />  <br /><strong>Possible values:  <br />\"1\"  <br />\"2\"</strong>  <br /><strong>\"3\"</strong></td>\n</tr>\n<tr>\n<td>brand1</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Name of the manufacturer of the first hearing aid.  <br />  <br /><strong>e.g. \"Earth\"</strong></td>\n</tr>\n<tr>\n<td>brand2</td>\n<td><strong>optional</strong>  <br />(string)</td>\n<td>Name of the manufacturer of the second hearing aid  <br />  <br />Mandatory, if \"numberOfDevices\" is \"2\".  <br />  <br /><strong>e.g. \"Planet\"</strong></td>\n</tr>\n<tr>\n<td>model1</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Model of the first hearing aid.  <br />  <br /><strong>e.g. \"Orbit\"</strong></td>\n</tr>\n<tr>\n<td>model2</td>\n<td><strong>optional</strong>  <br />(string)</td>\n<td>Model of the second hearing aid.  <br />  <br />Mandatory, if \"numberOfDevices\" is \"2\".  <br />  <br /><strong>e.g. \"Gravity\"</strong></td>\n</tr>\n<tr>\n<td>serialNum1</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Serial number of the first hearing aid.  <br />  <br /><strong>e.g. \"12345678\"</strong></td>\n</tr>\n<tr>\n<td>serialNum2</td>\n<td><strong>optional</strong>  <br />(string)</td>\n<td>Serial number of the second hearing aid.  <br />  <br />Mandatory, if \"numberOfDevices\" is \"2\".  <br />  <br /><strong>e.g. \"87654321\"</strong></td>\n</tr>\n<tr>\n<td>accessoryModel1</td>\n<td><strong>optional</strong>  <br />(string)</td>\n<td>Model of the first accessory  <br />  <br /><strong>e.g. \"Peach\"</strong></td>\n</tr>\n<tr>\n<td>accessoryModel2</td>\n<td><strong>optional</strong>  <br />(string)</td>\n<td>Model of the second accessory  <br />  <br /><strong>e.g. \"Banana\"</strong></td>\n</tr>\n<tr>\n<td>accessoryModel3</td>\n<td><strong>optional</strong>  <br />(string)</td>\n<td>Model of the third accessory  <br />  <br /><strong>e.g. \"Grape\"</strong></td>\n</tr>\n<tr>\n<td>accessoryBrand1</td>\n<td><strong>optional</strong>  <br />(string)</td>\n<td>Brand of the first accessory  <br />  <br /><strong>e.g. \"Pebble\"</strong></td>\n</tr>\n<tr>\n<td>accessoryBrand2</td>\n<td><strong>optional</strong>  <br />(string)</td>\n<td>Brand of the second accessory  <br />  <br /><strong>e.g. \"Stone\"</strong></td>\n</tr>\n<tr>\n<td>accessoryBrand3</td>\n<td><strong>optional</strong>  <br />(string)</td>\n<td>Brand of the third accessory  <br />  <br /><strong>e.g. \"Mountain\"</strong></td>\n</tr>\n<tr>\n<td>partnerCode</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Partner ID to capture a third party involved in the policy creation process (e.g. a store or branch where the contract is created).  <br />  <br /><strong>e.g. \"1234\"</strong> (use this code for testing)</td>\n</tr>\n<tr>\n<td>paymentSchedule</td>\n<td><strong>mandatory</strong>  <br />(select)</td>\n<td>Defines the customer's preferred payment schedule for the contract. The contract has a default duration of 5 years unless canceled earlier by the customer.  <br />- <strong>monthly</strong>: The customer pays once every month for 6 years.  <br />- <strong>annual</strong>: The customer pays once every year for 6 years.  <br />- <strong>3years</strong>: The customer makes an upfront payment for the first 3 years, followed by two annual payments for the remaining 3 years.  <br />- <strong>oneTime</strong>: The customer makes a single upfront payment for the entire 6-year period  <br />  <br /><strong>Possible values:  <br />\"monthly\"  <br />\"annual\"  <br />\"3years\"  <br />\"oneTime\"</strong></td>\n</tr>\n<tr>\n<td>healthInsuranceType</td>\n<td><strong>mandatory</strong>  <br />(select)</td>\n<td>Specifies if the insured person is insured at a private or public health insurer  <br />  <br /><strong>Possible values:  <br />\"private\"  <br />\"public\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p><em><strong>Package</strong></em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory/  <br />Optional</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>package</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Package that controlls the insured risks.  <br />  <br /><strong>Possible values:</strong>  <br />\"komfortschutz\",  <br />\"verlustschutz\",  <br />\"premiumschutz\"</td>\n</tr>\n</tbody>\n</table>\n</div><p>The policy creation response will also return the <code>requestData</code> object which contains all the data that was given by the user during the policy creation and the <code>quote</code> object which contains all the quotation calculations.</p>\n","urlObject":{"path":["v2","policies"],"host":["https://api.sandbox.alteos.com"],"query":[{"disabled":true,"description":{"content":"<p>Coverage period of the insurance.</p>\n","type":"text/plain"},"key":"duration","value":""},{"disabled":true,"description":{"content":"<p>Date of purchase of the eBike. Must not be older than 6 months before the insurance starting date.</p>\n","type":"text/plain"},"key":"purchasedAt","value":""}],"variable":[]}},"response":[{"id":"c1e46e7a-0213-47e1-a2f4-0116136b452f","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"hoerschutz-erp\",\n\"customer\": {\n            \"email\": \"noah.schmidt@email.de\",\n            \"firstName\": \"Noah\",\n            \"lastName\": \"Schmidt\",\n            \"phone\": \"+4915738929598\",\n            \"values\": {\n                \"salutation\": \"Herr\",\n                \"addressStreet\": \"Sendlinger Strasse.\",\n                \"addressHouseNumber\": \"21\",\n                \"addressPlz\": \"21212\",\n                \"addressCity\": \"Munich\"\n            }\n        },\n\t\"values\": {\n        // customer insurance info\n\t\t\"healthInsuranceType\": \"public\",\n        \n        // partner data\n        \"partnerCode\":\"1234\",\n        \"employeeId\": \"Mark\",\n        \"distributionChannel\": \"ERP\",\n\n        // payment schedule\n        \"paymentSchedule\": \"oneTime\",                   // \"monthly\", \"annual\", \"3years\", \"oneTime\"\n\n        // insured object\n        \"price\": 1900,                                  // 15000 max\n        \"itemValue\": \"1500.01-2000.00\",                 \n        \"purchasedAt\": \"2025-08-05\",\n\n        // hearing aid (up to 2 possible)\n        \"numberOfDevices\": \"1\",                         // \"1\", \"2\"\n        \"serialNum1\": \"skeufrhwekur235u3wfbwfj\",\n        \"brand1\": \"Bernafon\",\n        \"model1\": \"Encanta 300 ENGAGE\",\n\n        // accessories (optional, up to 3 possible)\n        \"accessoryModel1\": \"TV Connector\",\n        \"accessoryBrand1\": \"Phonak\",\n        \"accessoryModel2\": \"ReSound Multi Mic\",\n        \"accessoryBrand2\": \"ReSound\",\n        \"accessoryModel3\": \"Oticon ConnectClip\",\n        \"accessoryBrand3\": \"Oticon\"\n\n\t},\n    \"package\": \"premiumschutz\",                         // \"verlustschutz\", \"komfortschutz\", \"premiumschutz\"\n    \"addons\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"2721cd21-d0d7-4527-8dff-1693870c1e38\",\n    \"prettyId\": \"XGNFEW\",\n    \"requestData\": {\n        \"productName\": \"hoerschutz-erp\",\n        \"customer\": {\n            \"email\": \"noah.schmidt@email.de\",\n            \"firstName\": \"Noah\",\n            \"lastName\": \"Schmidt\",\n            \"phone\": \"+4915738929598\",\n            \"values\": {\n                \"salutation\": \"Herr\",\n                \"addressStreet\": \"Sendlinger Strasse.\",\n                \"addressHouseNumber\": \"21\",\n                \"addressPlz\": \"21212\",\n                \"addressCity\": \"Munich\"\n            }\n        },\n        \"values\": {\n            \"paymentSchedule\": \"oneTime\",\n            \"healthInsuranceType\": \"public\",\n            \"numberOfDevices\": \"1\",\n            \"price\": 1900,\n            \"itemValue\": \"1500.01-2000.00\",\n            \"purchasedAt\": \"2025-08-05\",\n            \"employeeId\": \"Mark\",\n            \"partnerCode\":\"1234\",\n            \"distributionChannel\": \"ERP\",\n            \"serialNum1\": \"skeufrhwekur235u3wfbwfj\",\n            \"brand1\": \"Bernafon\",\n            \"model1\": \"Encanta 300 ENGAGE\",\n            \"accessoryModel1\": \"TV Connector\",\n            \"accessoryBrand1\": \"Phonak\",\n            \"accessoryModel2\": \"ReSound Multi Mic\",\n            \"accessoryBrand2\": \"ReSound\",\n            \"accessoryModel3\": \"Oticon ConnectClip\",\n            \"accessoryBrand3\": \"Oticon\"\n        },\n        \"package\": \"premiumschutz\",\n        \"addons\": []\n    },\n    \"quote\": {\n        \"gross\": 615.95,\n        \"premium\": 517.61,\n        \"taxes\": 98.34,\n        \"premiumExclDiscounts\": 517.61,\n        \"taxesExclDiscounts\": 98.34,\n        \"grossExclDiscounts\": 615.95,\n        \"addons\": [],\n        \"package\": {\n            \"name\": \"premiumschutz\",\n            \"payments\": []\n        }\n    },\n    \"draftInvoice\": {\n        \"invoiceId\": \"in_1e38_v9VtgTn330tRj\",\n        \"paymentOrderId\": \"ipo_0tRj_lT29jW8BmHB9\"\n    }\n}"}],"_postman_id":"c5ec1c9b-450a-4f46-bef8-87b634ad4509"},{"name":"Bonsel Kundenkarte Plus","id":"cad7c2cd-d3e7-4320-a5de-f955e228897a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-app-key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n   \"productName\":\"bonsel-kundenkarte\",\n   \"customer\":{\n      \"email\":\"test@alteos.com\",\n      \"firstName\":\"Bonsel Kundenkarte \",\n      \"lastName\":\"Test\",\n      \"phone\":\"017612345678\",\n      \"values\":{\n         \"companyName\": \"Example GmbH\",\n         \"addressStreet\":\"Teststr.\",\n         \"addressHouseNumber\":\"5\",\n         \"addressPlz\":\"12345\",\n         \"addressCity\":\"Berlin\"\n      }\n   },\n   \"values\":{\n      \"policyStartDate\":\"2024-12-16\",\n      \"purchasedAt\":\"2024-12-16\",\n      \"purchaseDateHearingDevice\":\"2020-12-15\",\n      \"brand\":\"examplebrand\",\n      \"model\": \"examplemodel\",\n      \"serialNumber\": \"exampleserialnumber\",\n      \"tarifDescription\": \"Kundenkarte Plus 5-Sterne-Kategorie\",\n      \"customerNumber\": \"1234\",\n      \"insuredPersonName\": \"Max\",\n      \"insuredPersonFamilyName\": \"Tester\",\n      \"insuredPersonEmail\": \"\" , \n      \"insuredPersonPostalCode\": \"10789\",\n      \"insuredPersonCity\": \"Berlin\",\n      \"insuredPersonStreet\": \"Tauentzienstr.\",\n      \"insuredPersonHouseNumber\": \"7b/c\"\n         },\n   \"package\":\"Bonsel Kundenkarte Plus\",\n   \"addons\":[]\n}"},"url":"https://api.sandbox.alteos.com/v2/policies","description":"<p>Use this API to create a policy for the Bonsel Kundenkarte Plus Product.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>productName</th>\n<th>\"bonsel-kundenkarte\"</th>\n</tr>\n</thead>\n<tbody>\n</tbody>\n</table>\n</div><p><em><strong>Customer</strong></em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory / Optional</th>\n<th>Description and values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>email</td>\n<td><strong>Mandatory</strong>  <br />(email)</td>\n<td>Email address of the customer  <br />  <br /><strong>e.g. \"</strong><a href=\"https://mailto:kundenkarte@bonsel.com\"><b>kundenkarte@bonsel.com</b></a><strong>\"</strong></td>\n</tr>\n<tr>\n<td>firstName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>First name of the customer  <br />  <br /><strong>e.g. \"Hoergeraete\"</strong></td>\n</tr>\n<tr>\n<td>lastName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Last name of the customer  <br />  <br /><strong>e.g. \"Bonsel GmbH\"</strong></td>\n</tr>\n<tr>\n<td>phone</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Phone number of the customer  <br />  <br />Format:  <br />starting with 0 or +49, no spaces  <br />Min 7 characters  <br />  <br /><strong>e.g. \"017612345678\" or \"+4917612345678\"</strong></td>\n</tr>\n<tr>\n<td>companyName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Name of the customer company  <br />  <br /><strong>e.g. \"Hoergeraete Bonsel GmbH\"</strong></td>\n</tr>\n<tr>\n<td>adressStreet</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Name of the street of the customer's address  <br />  <br /><strong>e.g. \"Bahnhofstr.\"</strong></td>\n</tr>\n<tr>\n<td>addressHouseNumber</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>House number of the customer's adress  <br /><strong>e.g. \"19\"</strong></td>\n</tr>\n<tr>\n<td>addressPlz</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>postal code of the customer's home adress  <br /><strong>e.g. \"64401\"</strong></td>\n</tr>\n<tr>\n<td>addressCity</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>name of the city in which the customer lives  <br /><strong>e.g. \"Groß-Bieberau\"</strong></td>\n</tr>\n<tr>\n<td>salutation</td>\n<td><strong>Optional</strong>  <br />(select)</td>\n<td>salutation used to adress the customer based on gender  <br />  <br /><strong>Possible values:  <br />\"Herr\"  <br />\"Frau\"  <br />\"Divers\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Values:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Mandatory / Optional</th>\n<th>Description and values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>brand</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>name of the manufacturer of the insured hearing aid  <br />  <br /><strong>e.g. \"examplebrand\"</strong></td>\n</tr>\n<tr>\n<td>model</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>model of the insured hearing aid.  <br />  <br /><strong>e.g. \"examplemodel\"</strong></td>\n</tr>\n<tr>\n<td>serialNumber</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>serial number of the insured hearing aid.  <br />  <br />The serial number for each individual contract must be unique  <br />  <br /><strong>e.g. \"exampleserialnumber\"</strong></td>\n</tr>\n<tr>\n<td>policyStartDate</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>Start date of the insurance coverage  <br />  <br />Format YYYY-MM-DD  <br />  <br /><strong>e.g. \"2024-12-16\"</strong></td>\n</tr>\n<tr>\n<td>purchasedAt</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>Date at which the Bonsel Kundenkarte was purchased  <br />  <br />Format YYYY-MM-DD  <br />  <br /><strong>e.g. \"2024-12-16\"</strong></td>\n</tr>\n<tr>\n<td>purchaseDateHearingDevice</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>Date at which the insured hearing aid was purchased  <br />  <br />Format YYYY-MM-DD  <br />  <br /><strong>e.g. \"2020-12-15\"</strong></td>\n</tr>\n<tr>\n<td>tarifDescription</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Specifies the category of the Bonsel Kundenkarte  <br />  <br />Impacts the sum insured and premium  <br />  <br /><strong>Possible values:  <br />\"Kundenkarte Plus 2-Sterne-Kategorie\"  <br />\"Kundenkarte Plus 3-Sterne-Kategorie\"  <br />\"Kundenkarte Plus 4-Sterne-Kategorie\"  <br />\"Kundenkarte Plus 5-Sterne-Kategorie\"  <br />\"Kundenkarte Plus 6-Sterne-Kategorie\"</strong></td>\n</tr>\n<tr>\n<td>customerNumber</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Identifies each customer by an individual number  <br />  <br /><strong>e.g. \"1234567\"</strong></td>\n</tr>\n<tr>\n<td>entityCode</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>partner ID to capture a third party involved in policy creation process (e.g. a store or branch where the contract is created)  <br />  <br /><strong>e.g. \"1234\"</strong></td>\n</tr>\n<tr>\n<td>insuredPersonName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Name of the insured person  <br />  <br /><strong>e.g. \"Max\"</strong></td>\n</tr>\n<tr>\n<td>insuredPersonFamilyName</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Family name of the insured perosn  <br />  <br /><strong>e.g. \"Tester\"</strong></td>\n</tr>\n<tr>\n<td>insuredPersonEmail</td>\n<td><strong>Optional</strong>  <br />(email)</td>\n<td>Email address of the insured person  <br />  <br /><strong>e.g. \"</strong><a href=\"https://mailto:test@alteos.com\"><b>test@alteos.com</b></a><strong>\"</strong></td>\n</tr>\n<tr>\n<td>insuredPersonStreet</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Street name of the insured person's address  <br />  <br /><strong>e.g. \"Tauentzienstr.\"</strong></td>\n</tr>\n<tr>\n<td>insuredPersonHouseNumber</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>House number of the insured person's address  <br />  <br /><strong>e.g. \"7b/c\"</strong></td>\n</tr>\n<tr>\n<td>insuredPersonPostalCode</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Postal code of the insured person's address  <br />  <br /><strong>e.g. \"10789\"</strong></td>\n</tr>\n<tr>\n<td>insuredPersonCity</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>City of the insured person's address  <br />  <br /><strong>e.g. \"Berlin\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Other</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Mandatory / Optional</th>\n<th>Description and values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>package</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Type of coverage  <br />  <br /><strong>Possible values:  <br />\"Bonsel Kundenkarte plus\"</strong></td>\n</tr>\n<tr>\n<td>addons</td>\n<td><strong>Mandatory</strong></td>\n<td>No addons are available for this product  <br />Must be an empty array</td>\n</tr>\n</tbody>\n</table>\n</div><p>The policy creation response will also return the <code>requestData</code> object which contains all the data that was given by the user during the policy creation and the <code>quote</code> object which contains all the quotation calculations.</p>\n","urlObject":{"path":["v2","policies"],"host":["https://api.sandbox.alteos.com"],"query":[{"disabled":true,"description":{"content":"<p>Coverage period of the insurance.</p>\n","type":"text/plain"},"key":"duration","value":""},{"disabled":true,"description":{"content":"<p>Date of purchase of the eBike. Must not be older than 6 months before the insurance starting date.</p>\n","type":"text/plain"},"key":"purchasedAt","value":""}],"variable":[]}},"response":[{"id":"0d884327-4993-4028-910d-4055bc5ba358","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n   \"productName\":\"bonsel-kundenkarte\",\n   \"customer\":{\n      \"email\":\"test@alteos.com\",\n      \"firstName\":\"Bonsel\",\n      \"lastName\":\"Test\",\n      \"phone\":\"017612345678\",\n      \"values\":{\n         \"companyName\": \"Example GmbH\",\n         \"addressStreet\":\"Teststr.\",\n         \"addressHouseNumber\":\"5\",\n         \"addressPlz\":\"12345\",\n         \"addressCity\":\"Berlin\"\n      }\n   },\n   \"values\":{\n      \"policyStartDate\":\"2024-12-16\",\n      \"purchasedAt\":\"2024-12-16\",\n      \"purchaseDateHearingDevice\":\"2020-12-15\",\n      \"brand\":\"examplebrand\",\n      \"model\": \"examplemodel\",\n      \"serialNumber\": \"exampleserialnumber\",\n      \"tarifDescription\": \"Kundenkarte Plus 5-Sterne-Kategorie\",\n      \"customerNumber\": \"1234\",\n      \"insuredPersonName\": \"Max\",\n      \"insuredPersonFamilyName\": \"Tester\",\n      \"insuredPersonEmail\": \"\" , \n      \"insuredPersonPostalCode\": \"10789\",\n      \"insuredPersonCity\": \"Berlin\",\n      \"insuredPersonStreet\": \"Tauentzienstr.\",\n      \"insuredPersonHouseNumber\": \"7b/c\"\n         },\n   \"package\":\"Bonsel Kundenkarte Plus\",\n   \"addons\":[]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"58fea8bd-721b-49d1-91ae-ff50c358307d\",\n    \"prettyId\": \"WUYYW7\",\n    \"requestData\": {\n        \"productName\": \"bonsel-kundenkarte\",\n        \"customer\": {\n            \"email\": \"test@alteos.com\",\n            \"firstName\": \"Bonsel\",\n            \"lastName\": \"Test\",\n            \"phone\": \"017612345678\",\n            \"values\": {\n                \"companyName\": \"Example GmbH\",\n                \"addressStreet\": \"Teststr.\",\n                \"addressHouseNumber\": \"5\",\n                \"addressPlz\": \"12345\",\n                \"addressCity\": \"Berlin\"\n            }\n        },\n        \"values\": {\n            \"policyStartDate\": \"2024-12-16\",\n            \"purchasedAt\": \"2024-12-16\",\n            \"purchaseDateHearingDevice\": \"2020-12-15\",\n            \"brand\": \"examplebrand\",\n            \"model\": \"examplemodel\",\n            \"serialNumber\": \"exampleserialnumber\",\n            \"tarifDescription\": \"Kundenkarte Plus 5-Sterne-Kategorie\",\n            \"customerNumber\": \"1234\",\n            \"insuredPersonName\": \"Max\",\n            \"insuredPersonFamilyName\": \"Tester\",\n            \"insuredPersonEmail\": \"\",\n            \"insuredPersonPostalCode\": \"10789\",\n            \"insuredPersonCity\": \"Berlin\",\n            \"insuredPersonStreet\": \"Tauentzienstr.\",\n            \"insuredPersonHouseNumber\": \"7b/c\"\n        },\n        \"package\": \"Bonsel Kundenkarte Plus\",\n        \"addons\": []\n    },\n    \"quote\": {\n        \"gross\": 40.62,\n        \"premium\": 34.13,\n        \"taxes\": 6.49,\n        \"premiumExclDiscounts\": 34.13,\n        \"taxesExclDiscounts\": 6.49,\n        \"grossExclDiscounts\": 40.62,\n        \"addons\": [],\n        \"package\": {\n            \"name\": \"Bonsel Kundenkarte Plus\",\n            \"payments\": []\n        }\n    },\n    \"draftInvoice\": {}\n}"}],"_postman_id":"cad7c2cd-d3e7-4320-a5de-f955e228897a"},{"name":"Hearing Aids Project Alpha 2025","id":"b86279d5-0560-45ce-a7f9-c88c3dc799b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"description":"<p>Use this API to create a policy for the Hearing Aids projectAlpha_productName.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>productName</th>\n<th>projectAlpha_productName</th>\n</tr>\n</thead>\n<tbody>\n</tbody>\n</table>\n</div><p><strong>Customer</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory / Optional  <br />(data type)</th>\n<th>Description and values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>firstName</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>First name of the insured person.  <br />  <br />Example: \"Company\"</td>\n</tr>\n<tr>\n<td>lastName</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Last name of the insured person.  <br />  <br />Example: \"Partner\"</td>\n</tr>\n<tr>\n<td>email</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Email of the insured person (in email format).  <br />  <br />Example: <a href=\"https://mailto:company@partner.de\">company@partner.de</a></td>\n</tr>\n<tr>\n<td>phone</td>\n<td>optional  <br />(string)</td>\n<td>Phone number of the insured person.  <br />  <br />Format: starting with 0 or +49, no spaces. Min 7 characters.  <br />  <br />Example: \"01234567\" or \"+49151234567\"</td>\n</tr>\n<tr>\n<td>addressStreet</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Street name of the insured person's address.  <br />  <br />Example: \"Partner Str.\"</td>\n</tr>\n<tr>\n<td>addressHouseNumber</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>House number of the insured person's address.  <br />  <br />Example: \"1\"</td>\n</tr>\n<tr>\n<td>addressPlz</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Postal code (PLZ) of the insured person's address.  <br />  <br />Example: \"12345\"</td>\n</tr>\n<tr>\n<td>addressCity</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>City of the insured person's address.  <br />  <br />Example: \"Aachen\"</td>\n</tr>\n<tr>\n<td>companyName</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>The company name of our partner.  <br />  <br />Example: \"Firma GmbH\"</td>\n</tr>\n</tbody>\n</table>\n</div><p><em><strong>Values</strong></em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Mandatory / Optional</th>\n<th>Description and values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>purchasePrice</td>\n<td><strong>mandatory</strong>  <br />(number)</td>\n<td>Corresponds to the total value of one or both hearing aids and also accessories.  <br />  <br />  <br />Example: 7452.12</td>\n</tr>\n<tr>\n<td>purchasedAt</td>\n<td><strong>mandatory</strong>  <br />(date)</td>\n<td>The date of purchase stated on the invoice.  <br />  <br />Minimum: 6 months in the past  <br />Maximum: 1 day into the future.  <br />  <br />Format YYYY-MM-DD  <br />  <br />Example: \"2025-03-01\"</td>\n</tr>\n<tr>\n<td>deliveryFormat</td>\n<td>optional  <br />(select)</td>\n<td>Specifies the delivery format of the documents.  <br />  <br />  <br />one of:  <br />\"digital\"  <br />\"physical\"  <br />  <br />Note: If the customer does not provide an email, a document named \"issuePolicyDocumentsPrint\" will be sent to the specified adress.</td>\n</tr>\n<tr>\n<td>deliveryAddress</td>\n<td>optional  <br />(String)</td>\n<td>The delivery adress specified by the customer in case of a physical delivery.</td>\n</tr>\n<tr>\n<td>insuredPersonName</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>First name of the insured person.  <br />  <br />Example: \"Alma\"</td>\n</tr>\n<tr>\n<td>insuredPersonFamilyName</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Family name of the insured person.  <br />  <br />Example: \"Meier\"</td>\n</tr>\n<tr>\n<td>insuredPersonAddressStreet</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Street name of the insured person.  <br />  <br />Example: \"Karl-Marx-Allee\"</td>\n</tr>\n<tr>\n<td>insuredPersonAddressHouseNumber</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>House number of the insured person.  <br />  <br />Example: \"13\"</td>\n</tr>\n<tr>\n<td>insuredPersonAddressPostalCode</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Postal code (PLZ) of the insured person.  <br />  <br />Example: \"13021\"</td>\n</tr>\n<tr>\n<td>insuredPersonAddressCity</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Address city of the insured person.  <br />  <br />Example: \"Berlin\"</td>\n</tr>\n<tr>\n<td>numberOfDevices</td>\n<td><strong>mandatory</strong>  <br />(number)</td>\n<td>Number of the insured hearing aid devices.  <br />  <br />one of:  <br />1,  <br />2</td>\n</tr>\n<tr>\n<td>brand1</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Name of the manufacturer of the first hearing aid.  <br />  <br />Example: \"Earth\"</td>\n</tr>\n<tr>\n<td>brand2</td>\n<td>optional  <br />(string)</td>\n<td>Name of the manufacturer of the second hearing aid.  <br />  <br />Example: \"Planet\"</td>\n</tr>\n<tr>\n<td>model1</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Model of the first hearing aid.  <br />  <br />Example: \"Orbit\"</td>\n</tr>\n<tr>\n<td>model2</td>\n<td>optional  <br />(string)</td>\n<td>Model of the second hearing aid.  <br />  <br />Example: \"Gravity\"</td>\n</tr>\n<tr>\n<td>serialNum1</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Serial number of the first hearing aid.  <br />  <br />Example: \"12345678\"</td>\n</tr>\n<tr>\n<td>serialNum2</td>\n<td>optional  <br />(string)</td>\n<td>Serial number of the second hearing aid.  <br />  <br />Example: \"87654321\"</td>\n</tr>\n</tbody>\n</table>\n</div><p><em><strong>Package</strong></em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory/  <br />Optional</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>package</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>\"projectAlpha_packageName\"</td>\n</tr>\n</tbody>\n</table>\n</div><p>The policy creation response will also return the <code>requestData</code> object which contains all the data that was given by the user during the policy creation and the <code>quote</code> object which contains all the quotation calculations.</p>\n","urlObject":{"query":[],"variable":[]},"url":""},"response":[{"id":"7a4b4113-2143-4835-8505-9a7874a2f841","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"projectAlpha_productName\",\n\t\"customer\": {\n\t\t\"email\": \"company@partner.de\",\n\t\t\"firstName\": \"Company\",\n\t  \t\"lastName\": \"Partner\",\n\t  \t\"phone\": \"+491512345678\",\n\t\t\"values\": {\n\t    \t\"companyName\": \"Partner Company\",\n\t    \t\"addressStreet\": \"Partner Str.\",\n\t\t\t\"addressHouseNumber\": \"1\",\n\t\t\t\"addressPlz\": \"12345\",\n\t\t\t\"addressCity\": \"Aachen\"\n\t\t}\n\t},\n\t\"values\": {\n        \"purchasedAt\": \"2025-03-29\",\n        \"insuredPersonName\": \"Max\",\n        \"insuredPersonFamilyName\": \"Müller\",\n        \"insuredPersonAddressHouseNumber\": \"1a\",\n        \"insuredPersonAddressStreet\": \"sewanstr\",\n        \"insuredPersonAddressCity\": \"Hamburg\",\n        \"insuredPersonAddressPostalCode\": \"10111\",\n        \"insuredPersonEmail\": \"max@email.com\",\n        \"numberOfDevices\": 1,\n        \"purchasePrice\": 1234,\n        \"policyStartDate\": \"2025-04-29\",\n\n\n        \"serialNum1\": \"ASEEE1233445\",\n        \"brand1\": \"Earth\",\n        \"model1\": \"Orbit\",\n\n        \"serialNum2\": \"E5FG73456789\",\n        \"brand2\": \"Planet\",\n        \"model2\": \"Gravity\",\n        \"accessory1Price\": 199.99,\n        \"accessory1Model\": \"Apple AirPods Pro\",\n        \"accessory1SerialNumber\": \"SN-APL-9328473\",\n\n        \"accessory2Price\": 89.95,\n        \"accessory2Model\": \"Samsung Galaxy Buds 2\",\n        \"accessory2SerialNumber\": \"SN-SMSNG-2387JDK\",\n\n        \"accessory3Price\": 299.00,\n        \"accessory3Model\": \"Bose QuietComfort 45\",\n        \"accessory3SerialNumber\": \"SN-BOSE-3421QWE\",\n\n        \"accessory4Price\": 49.99,\n        \"accessory4Model\": \"Anker PowerCore 10000\",\n        \"accessory4SerialNumber\": \"SN-ANKR-ABCD1234\"\n\n\n\n\t},\n    \"package\": \"projectAlpha_packageName\",\n    \"addons\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"6690c0d1-c399-4ed7-b6c4-155e03527754\",\n    \"prettyId\": \"AEFP6Y\",\n    \"requestData\": {\n        \"productName\": \"projectAlpha_productName\",\n        \"customer\": {\n            \"email\": \"company@partner.de\",\n            \"firstName\": \"Company\",\n            \"lastName\": \"Partner\",\n            \"phone\": \"+491512345678\",\n            \"values\": {\n                \"companyName\": \"Partner Company\",\n                \"addressStreet\": \"Partner Str.\",\n                \"addressHouseNumber\": \"1\",\n                \"addressPlz\": \"12345\",\n                \"addressCity\": \"Aachen\"\n            }\n        },\n        \"values\": {\n            \"purchasedAt\": \"2025-03-29\",\n            \"insuredPersonName\": \"Max\",\n            \"insuredPersonFamilyName\": \"Müller\",\n            \"insuredPersonAddressHouseNumber\": \"1a\",\n            \"insuredPersonAddressStreet\": \"sewanstr\",\n            \"insuredPersonAddressCity\": \"Hamburg\",\n            \"insuredPersonAddressPostalCode\": \"10111\",\n            \"insuredPersonEmail\": \"max@email.com\",\n            \"numberOfDevices\": 1,\n            \"purchasePrice\": 1234,\n            \"policyStartDate\": \"2025-04-29\",\n            \"serialNum1\": \"ASEEE1233445\",\n            \"brand1\": \"Earth\",\n            \"model1\": \"Orbit\",\n            \"serialNum2\": \"E5FG73456789\",\n            \"brand2\": \"Planet\",\n            \"model2\": \"Gravity\",\n            \"accessory1Price\": 199.99,\n            \"accessory1Model\": \"Apple AirPods Pro\",\n            \"accessory1SerialNumber\": \"SN-APL-9328473\",\n            \"accessory2Price\": 89.95,\n            \"accessory2Model\": \"Samsung Galaxy Buds 2\",\n            \"accessory2SerialNumber\": \"SN-SMSNG-2387JDK\",\n            \"accessory3Price\": 299,\n            \"accessory3Model\": \"Bose QuietComfort 45\",\n            \"accessory3SerialNumber\": \"SN-BOSE-3421QWE\",\n            \"accessory4Price\": 49.99,\n            \"accessory4Model\": \"Anker PowerCore 10000\",\n            \"accessory4SerialNumber\": \"SN-ANKR-ABCD1234\"\n        },\n        \"package\": \"projectAlpha_packageName\",\n        \"addons\": []\n    },\n    \"quote\": {\n        \"gross\": 300,\n        \"premium\": 252.1,\n        \"taxes\": 47.9,\n        \"premiumExclDiscounts\": 252.1,\n        \"taxesExclDiscounts\": 47.9,\n        \"grossExclDiscounts\": 300,\n        \"addons\": [],\n        \"package\": {\n            \"name\": \"projectAlpha_packageName\",\n            \"payments\": []\n        }\n    },\n    \"draftInvoice\": {\n        \"invoiceId\": \"in_7754_7fYcP9AFF1qJE\",\n        \"paymentOrderId\": \"ipo_1qJE_vTIP3I9q486h\"\n    }\n}"}],"_postman_id":"b86279d5-0560-45ce-a7f9-c88c3dc799b3"},{"name":"Hearing Aids Project Alpha Beta 2025","id":"5ad7c2d4-4773-41ed-bc31-3cf92794f778","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-app-key","value":"{{appKey}}","type":"text"}],"url":"https://api.sandbox.alteos.com/v2/policies","description":"<p>Use this API to create a policy for the Hearing Aids projectAlphaBeta_productName.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>productName</th>\n<th>projectAlphaBeta_productName</th>\n</tr>\n</thead>\n<tbody>\n</tbody>\n</table>\n</div><p><strong>Customer</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory / Optional  <br />(data type)</th>\n<th>Description and values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>firstName</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>First name of the policy holder.  <br />  <br />Example: \"Company\"</td>\n</tr>\n<tr>\n<td>lastName</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Last name of the policy holder.  <br />  <br />Example: \"Partner\"</td>\n</tr>\n<tr>\n<td>email</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Email of the policy holder (in email format).  <br />  <br />Example: <a href=\"https://mailto:company@partner.de\">company@partner.de</a></td>\n</tr>\n<tr>\n<td>phone</td>\n<td>optional  <br />(string)</td>\n<td>Phone number of the policy holder.  <br />  <br />Format: starting with 0 or +49, no spaces. Min 7 characters.  <br />  <br />Example: \"01234567\" or \"+49151234567\"</td>\n</tr>\n<tr>\n<td>addressStreet</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Street name of the policy holder's address.  <br />  <br />Example: \"Partner Str.\"</td>\n</tr>\n<tr>\n<td>addressHouseNumber</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>House number of the policy holder's address.  <br />  <br />Example: \"1\"</td>\n</tr>\n<tr>\n<td>addressPlz</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Postal code (PLZ) of the policy holder's address.  <br />  <br />Example: \"12345\"</td>\n</tr>\n<tr>\n<td>addressCity</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>City of the policy holder's address.  <br />  <br />Example: \"Aachen\"</td>\n</tr>\n<tr>\n<td>companyName</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>The company name of our partner.  <br />  <br />Example: \"Firma GmbH\"</td>\n</tr>\n</tbody>\n</table>\n</div><p><em><strong>Values</strong></em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Mandatory / Optional</th>\n<th>Description and values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>purchasePrice</td>\n<td><strong>mandatory</strong>  <br />(number)</td>\n<td>Corresponds to the total value of one or both hearing aids and also accessories.  <br />  <br />  <br />Example: 7452.12</td>\n</tr>\n<tr>\n<td>purchasedAt</td>\n<td><strong>mandatory</strong>  <br />(date)</td>\n<td>The date of purchase stated on the invoice.  <br />  <br />Minimum: 6 months in the past  <br />Maximum: 1 day into the future.  <br />  <br />Format YYYY-MM-DD  <br />  <br />Example: \"2025-03-01\"</td>\n</tr>\n<tr>\n<td>deliveryFormat</td>\n<td>optional  <br />(select)</td>\n<td>Specifies the delivery format of the documents.  <br />  <br />  <br />one of:  <br />\"digital\"  <br />\"physical\"  <br />  <br />Note: If the customer does not provide an email, a document named \"issuePolicyDocumentsPrint\" will be sent to the specified adress.</td>\n</tr>\n<tr>\n<td>deliveryAddress</td>\n<td>optional  <br />(String)</td>\n<td>The delivery adress specified by the customer in case of a physical delivery.</td>\n</tr>\n<tr>\n<td>insuredPersonName</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>First name of the insured person.  <br />  <br />Example: \"Alma\"</td>\n</tr>\n<tr>\n<td>insuredPersonFamilyName</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Family name of the insured person.  <br />  <br />Example: \"Meier\"</td>\n</tr>\n<tr>\n<td>insuredPersonAddressStreet</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Street name of the insured person.  <br />  <br />Example: \"Karl-Marx-Allee\"</td>\n</tr>\n<tr>\n<td>insuredPersonAddressHouseNumber</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>House number of the insured person.  <br />  <br />Example: \"13\"</td>\n</tr>\n<tr>\n<td>insuredPersonAddressPostalCode</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Postal code (PLZ) of the insured person.  <br />  <br />Example: \"13021\"</td>\n</tr>\n<tr>\n<td>insuredPersonAddressCity</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Address city of the insured person.  <br />  <br />Example: \"Berlin\"</td>\n</tr>\n<tr>\n<td>numberOfDevices</td>\n<td><strong>mandatory</strong>  <br />(number)</td>\n<td>Number of the insured hearing aid devices.  <br />  <br />one of:  <br />1,  <br />2</td>\n</tr>\n<tr>\n<td>brand1</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Name of the manufacturer of the first hearing aid.  <br />  <br />Example: \"Earth\"</td>\n</tr>\n<tr>\n<td>brand2</td>\n<td>optional  <br />(string)</td>\n<td>Name of the manufacturer of the second hearing aid.  <br />  <br />Example: \"Planet\"</td>\n</tr>\n<tr>\n<td>model1</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Model of the first hearing aid.  <br />  <br />Example: \"Orbit\"</td>\n</tr>\n<tr>\n<td>model2</td>\n<td>optional  <br />(string)</td>\n<td>Model of the second hearing aid.  <br />  <br />Example: \"Gravity\"</td>\n</tr>\n<tr>\n<td>serialNum1</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Serial number of the first hearing aid.  <br />  <br />Example: \"12345678\"</td>\n</tr>\n<tr>\n<td>serialNum2</td>\n<td>optional  <br />(string)</td>\n<td>Serial number of the second hearing aid.  <br />  <br />Example: \"87654321\"</td>\n</tr>\n</tbody>\n</table>\n</div><p><em><strong>Package</strong></em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory/  <br />Optional</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>package</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>\"projectAlpha_packageName\"</td>\n</tr>\n</tbody>\n</table>\n</div><p>The policy creation response will also return the <code>requestData</code> object which contains all the data that was given by the user during the policy creation and the <code>quote</code> object which contains all the quotation calculations.</p>\n","urlObject":{"path":["v2","policies"],"host":["https://api.sandbox.alteos.com"],"query":[{"disabled":true,"description":{"content":"<p>Coverage period of the insurance.</p>\n","type":"text/plain"},"key":"duration","value":""},{"disabled":true,"description":{"content":"<p>Date of purchase of the eBike. Must not be older than 6 months before the insurance starting date.</p>\n","type":"text/plain"},"key":"purchasedAt","value":""}],"variable":[]}},"response":[{"id":"f1044c96-bd76-4990-af62-debbefa547b1","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"projectAlphaBeta_productName\",\n\t\"customer\": {\n\t\t\"email\": \"company@partner.de\",\n\t\t\"firstName\": \"Company\",\n\t  \t\"lastName\": \"Partner\",\n\t  \t\"phone\": \"+491512345678\",\n\t\t\"values\": {\n\t    \t\"companyName\": \"Partner Company\",\n\t    \t\"addressStreet\": \"Partner Str.\",\n\t\t\t\"addressHouseNumber\": \"1\",\n\t\t\t\"addressPlz\": \"12345\",\n\t\t\t\"addressCity\": \"Aachen\"\n\t\t}\n\t},\n\t\"values\": {\n        \"purchasedAt\": \"2025-03-29\",\n        \"insuredPersonName\": \"Max\",\n        \"insuredPersonFamilyName\": \"Müller\",\n        \"insuredPersonAddressHouseNumber\": \"1a\",\n        \"insuredPersonAddressStreet\": \"sewanstr\",\n        \"insuredPersonAddressCity\": \"Hamburg\",\n        \"insuredPersonAddressPostalCode\": \"10111\",\n        \"insuredPersonEmail\": \"max@email.com\",\n        \"numberOfDevices\": 1,\n        \"purchasePrice\": 1234,\n        \"policyStartDate\": \"2025-04-29\",\n\n\n        \"serialNum1\": \"ASEEE1233445\",\n        \"brand1\": \"Earth\",\n        \"model1\": \"Orbit\",\n\n        \"serialNum2\": \"E5FG73456789\",\n        \"brand2\": \"Planet\",\n        \"model2\": \"Gravity\",\n        \"accessory1Price\": 199.99,\n        \"accessory1Model\": \"Apple AirPods Pro\",\n        \"accessory1SerialNumber\": \"SN-APL-9328473\",\n\n        \"accessory2Price\": 89.95,\n        \"accessory2Model\": \"Samsung Galaxy Buds 2\",\n        \"accessory2SerialNumber\": \"SN-SMSNG-2387JDK\",\n\n        \"accessory3Price\": 299.00,\n        \"accessory3Model\": \"Bose QuietComfort 45\",\n        \"accessory3SerialNumber\": \"SN-BOSE-3421QWE\",\n\n        \"accessory4Price\": 49.99,\n        \"accessory4Model\": \"Anker PowerCore 10000\",\n        \"accessory4SerialNumber\": \"SN-ANKR-ABCD1234\"\n\n\n\n\t},\n    \"package\": \"projectAlphaBeta_packageName\",\n    \"addons\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"6690c0d1-c399-4ed7-b6c4-155e03527754\",\n    \"prettyId\": \"AEFP6Y\",\n    \"requestData\": {\n        \"productName\": \"projectAlphaBeta_productName\",\n        \"customer\": {\n            \"email\": \"company@partner.de\",\n            \"firstName\": \"Company\",\n            \"lastName\": \"Partner\",\n            \"phone\": \"+491512345678\",\n            \"values\": {\n                \"companyName\": \"Partner Company\",\n                \"addressStreet\": \"Partner Str.\",\n                \"addressHouseNumber\": \"1\",\n                \"addressPlz\": \"12345\",\n                \"addressCity\": \"Aachen\"\n            }\n        },\n        \"values\": {\n            \"purchasedAt\": \"2025-03-29\",\n            \"insuredPersonName\": \"Max\",\n            \"insuredPersonFamilyName\": \"Müller\",\n            \"insuredPersonAddressHouseNumber\": \"1a\",\n            \"insuredPersonAddressStreet\": \"sewanstr\",\n            \"insuredPersonAddressCity\": \"Hamburg\",\n            \"insuredPersonAddressPostalCode\": \"10111\",\n            \"insuredPersonEmail\": \"max@email.com\",\n            \"numberOfDevices\": 1,\n            \"purchasePrice\": 1234,\n            \"policyStartDate\": \"2025-04-29\",\n            \"serialNum1\": \"ASEEE1233445\",\n            \"brand1\": \"Earth\",\n            \"model1\": \"Orbit\",\n            \"serialNum2\": \"E5FG73456789\",\n            \"brand2\": \"Planet\",\n            \"model2\": \"Gravity\",\n            \"accessory1Price\": 199.99,\n            \"accessory1Model\": \"Apple AirPods Pro\",\n            \"accessory1SerialNumber\": \"SN-APL-9328473\",\n            \"accessory2Price\": 89.95,\n            \"accessory2Model\": \"Samsung Galaxy Buds 2\",\n            \"accessory2SerialNumber\": \"SN-SMSNG-2387JDK\",\n            \"accessory3Price\": 299,\n            \"accessory3Model\": \"Bose QuietComfort 45\",\n            \"accessory3SerialNumber\": \"SN-BOSE-3421QWE\",\n            \"accessory4Price\": 49.99,\n            \"accessory4Model\": \"Anker PowerCore 10000\",\n            \"accessory4SerialNumber\": \"SN-ANKR-ABCD1234\"\n        },\n        \"package\": \"projectAlphaBeta_packageName\",\n        \"addons\": []\n    },\n    \"quote\": {\n        \"gross\": 300,\n        \"premium\": 252.1,\n        \"taxes\": 47.9,\n        \"premiumExclDiscounts\": 252.1,\n        \"taxesExclDiscounts\": 47.9,\n        \"grossExclDiscounts\": 300,\n        \"addons\": [],\n        \"package\": {\n            \"name\": \"projectAlphaBeta_packageName\",\n            \"payments\": []\n        }\n    },\n    \"draftInvoice\": {\n        \"invoiceId\": \"in_7754_7fYcP9AFF1qJE\",\n        \"paymentOrderId\": \"ipo_1qJE_vTIP3I9q486h\"\n    }\n}"}],"_postman_id":"5ad7c2d4-4773-41ed-bc31-3cf92794f778"}],"id":"d5dbfc7e-2c45-4a01-ac98-fa720209b570","description":"<p>The Policy Creation API is used to create an insurance policy with the quote provided by the Policy Quotation API and additional data from the customer.</p>\n","event":[{"listen":"prerequest","script":{"id":"5902a12b-a0f6-404e-b15b-299adb9e911c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"fabebd98-fdcd-454c-819d-e72234eee890","type":"text/javascript","exec":[""]}}],"_postman_id":"d5dbfc7e-2c45-4a01-ac98-fa720209b570"},{"name":"Policy Creation Broker Products","item":[{"name":"Hausrat Product","id":"82d448b4-a4e8-4951-9601-b0f85106543c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"x-app-key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"\n{\n\t\"productName\": \"hausrat\",\n\t\"customer\": {\n\t\t\"email\": \"test@alteos.com\",\n        \"phone\":\"0160123456\",\n\t\t\"firstName\": \"TestName\",\n\t  \t\"lastName\": \"TestSurname\",\n\t\t\"values\": {\n            \"salutation\":\"Herr\",\n\t    \t\"dateOfBirth\": \"1995-10-10\",\n            \"addressStreet\": \"Talstr.\",\n\t\t\t\"addressHouseNumber\": \"24\",\n\t\t\t\"addressPlz\": \"40217\",\n\t\t\t\"addressCity\": \"Düsseldorf\"\n\t\t}\n\t},\n\t\"values\": {\n        \"insuredObjectPlz\":\"10179\",\n        \"insuredObjectSqMeters\":\"100\",\n        \"selbstbehalt\":\"\",\n        \"insuredObjectStreet\":\"streetStr\",\n        \"insuredObjectHouseNumber\":\"15\",\n        \"insuredObjectCity\":\"Berlin\",\n        \"withCellar\":true,\n        \"cellarSqMeters\":10,\n        \"cellarLivingSqMeters\":0,\n        \"insuredObjectType\":\"Einfamilienhaus\",\n        \"underinsuranceWaiver\":false,\n        \"deckungssumme\":\"10\",\n        \"ueberspannung\":10,\n        \"amountOfValuables\":15,\n        \"customerDateOfBirth\":\"1995-01-01\",\n        \"paymentSchedule\":\"quarterly\",\n        \"bauartklasse\":\"BAK III\",\n        \"previousClaims\":true,\n        \"previousClaimsQuantity\":\"1\",\n        \"zuersZone\":2,\n        \"policyStartDate\":\"2021-08-20\",\n        \"differentAddressThanObject\":true,\n        \"paymentType\":\"Lastschrift\",\n        \"iban\":\"1234567890123456789012\",\n        \"bicycleValue\":\"3250\",\n        \"burglarAlarm\":false,\n        \"propertyOccupied\":true,\n        \"noNearbyFireRisk\":true,\n        \"minimumSecurity\":true,\n        \"previousInsuranceDataAvailable\":false,\n        \"previousInsurer\":\"\",\n        \"previousInsuranceNumber\":\"\",\n        \"previousInsuranceCancelledBy\":\"\",\n        \"previousInsuranceDate\":\"\",\n        \"vermittlernummer\":\"46755\"\n\n\t},\n    \"package\": \"Silber\",\n    \"addons\": [\n        \"fahrradDiebstahl\",\n        \"glasversicherung\",\n        \"elementarschaeden\",\n        \"ueberschwemmungDurchStarkregen\"\n    ],\n    \"metadata\": {\n        \"transactionId\": \"24343434\",\n        \"applicationNumber\": \"53637\"\n    }\n}"},"url":"https://api.sandbox.alteos.com/v2/policies","description":"<p>Use this API to create a policy for the Hausrat Product.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ProductName</th>\n<th>hausrat</th>\n</tr>\n</thead>\n<tbody>\n</tbody>\n</table>\n</div><p>Customer</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory/Optional  <br />(Data type)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>email</td>\n<td><strong>Mandatory</strong>  <br />(email)</td>\n<td>email of the insured person  <br />  <br /><strong>e.g. \"</strong><a href=\"https://mailto:test@alteos.com\"><b>test@alteos.com</b></a><strong>\"</strong></td>\n</tr>\n<tr>\n<td>phone</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>phone number of the insured person  <br />Format: starting with 0 or +49, no spaces. Min 7 characters.  <br />  <br /><strong>e.g. \"01234567\" or \"+4909393030\"</strong></td>\n</tr>\n<tr>\n<td>firstName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>first name of the insured person  <br />  <br /><strong>e.g. \"TestName\"</strong></td>\n</tr>\n<tr>\n<td>lastName</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>family name of the insured person  <br />  <br /><strong>e.g. \"TestSurname\"</strong></td>\n</tr>\n<tr>\n<td>dateOfBirth</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>Birthday of insured person  <br />  <br />YYYY-MM-DD format  <br />  <br /><strong>e.g. \"1995-10-10\"</strong></td>\n</tr>\n<tr>\n<td>addressStreet</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>street name of the insured person's address  <br />  <br /><strong>e.g. \"Talstr.\"</strong></td>\n</tr>\n<tr>\n<td>addressHousNumber</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>House number of the insured person's address  <br />  <br /><strong>e.g. \"24\"</strong></td>\n</tr>\n<tr>\n<td>addressPlz</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Postal code of the insured person's address  <br />  <br /><strong>e.g. \"40217\"</strong></td>\n</tr>\n<tr>\n<td>addressCity</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Name of the city of the insured person's address  <br />  <br /><strong>e.g. \"Düsseldorf\"</strong></td>\n</tr>\n<tr>\n<td>salutation</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>Salutation used to address the insured person  <br />  <br /><strong>Possible values:  <br />\"Herr\"  <br />\"Frau\"  <br />\"Divers\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p>Values</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory/Optional  <br />(Data type)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>insuredObjectPlz</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>postal code of the insured property,  <br />needs to be 5 chars  <br />  <br /><strong>e.g. \"10179\"</strong></td>\n</tr>\n<tr>\n<td>insuredObjectSqMeters</td>\n<td><strong>Mandatory</strong>  <br />(number)</td>\n<td>square footage (area) of the property (in m^2)  <br />  <br /><strong>e.g. \"100\"</strong></td>\n</tr>\n<tr>\n<td>insuredObjectStreet</td>\n<td><strong>Optional/Mandatory</strong> with Elementarschaeden addon  <br />(string)</td>\n<td>street name of the insured property,  <br />min 2 and max 60 chars  <br />  <br /><strong>e.g. \"streetStr.\"</strong></td>\n</tr>\n<tr>\n<td>insuredObjectHouseNumber</td>\n<td><strong>Optional/Mandatory</strong> with Elementarschaeden addon  <br />(string)</td>\n<td>house number of insured property, max 17 chars  <br />  <br /><strong>e.g. \"15\"</strong></td>\n</tr>\n<tr>\n<td>insuredObjectCity</td>\n<td><strong>Optional/Mandatory</strong> with Elementarschaeden addon  <br />(string)</td>\n<td>city of insured property, max 60 chars  <br />  <br /><strong>e.g. \"Berlin\"</strong></td>\n</tr>\n<tr>\n<td>withCellar</td>\n<td><strong>Optional</strong>  <br />(boolean)</td>\n<td>Specifies if the property has a basement  <br />  <br /><strong>Possible values:  <br />true  <br />false</strong></td>\n</tr>\n<tr>\n<td>cellarSqMeters</td>\n<td><strong>Optional</strong>  <br />(number)</td>\n<td>Size of basement (in m^2)  <br />  <br /><strong>e.g. \"10\"</strong></td>\n</tr>\n<tr>\n<td>cellarLivingSqMeters</td>\n<td><strong>Optional</strong>  <br />(number)</td>\n<td>Basement living space  <br />  <br /><strong>e.g. \"0\"</strong></td>\n</tr>\n<tr>\n<td>insuredObjectType</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Specifies the type of house (how many individual appartements are in the building)  <br />  <br /><strong>Possible values:  <br />\"Einfamilienhaus\"  <br />\"Zweifamilienhaus\"  <br />\"Mehrfamilienhaus\"</strong></td>\n</tr>\n<tr>\n<td>customerDateOfBirth</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>date of birth of the customer  <br />  <br />YYYY-MM-DD format  <br />  <br /><strong>e.g. \"1995-01-01\"</strong></td>\n</tr>\n<tr>\n<td>paymentSchedule</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Specifies the intervall at which the insurance fees are due  <br />  <br /><strong>Possible values:  <br />\"annual\"  <br />\"biannual\"  <br />\"quarterly\"  <br />\"monthly\"</strong></td>\n</tr>\n<tr>\n<td>paymentType</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>Specifies how insurance fee is paid  <br />  <br />must currently be “<strong>Lastschrift</strong>”</td>\n</tr>\n<tr>\n<td>iban</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>IBAN of the insured person,  <br />max 22 chars  <br />  <br /><strong>e.g. \"1234567890123456789012\"</strong></td>\n</tr>\n<tr>\n<td>selbstbehalt</td>\n<td><strong>Optional</strong>  <br />(number)</td>\n<td>deductible (amount paid by the customer in case of a claim)  <br />  <br /><strong>e.g. \"0\"</strong></td>\n</tr>\n<tr>\n<td>underinsuranceWaiver</td>\n<td><strong>Optional</strong>  <br />(boolean)</td>\n<td>Specifies if an underinsurance waiver has been signed  <br />  <br /><strong>Possible values:  <br />true  <br />false</strong></td>\n</tr>\n<tr>\n<td>deckungssumme</td>\n<td><strong>Optional</strong>  <br />(number)</td>\n<td>maximum sum of insurance coverage  <br />  <br /><strong>e.g. \"10\"</strong></td>\n</tr>\n<tr>\n<td>ueberspannung (number)</td>\n<td>Optional</td>\n<td>optional free %</td>\n</tr>\n<tr>\n<td>bicycleValue</td>\n<td><strong>Optional/Mandatory</strong> with fahrradDiebstahl addon  <br />(number)</td>\n<td>value of the bicycle insured in the fahrradDiebstahl addon (in euro)  <br />max: 10000  <br />  <br /><strong>e.g. \"3250\"</strong></td>\n</tr>\n<tr>\n<td>amountOfValuables (number)</td>\n<td>Optional</td>\n<td>free %</td>\n</tr>\n<tr>\n<td>policyStartDate</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>start date of coverage  <br />YYYY-MM-DD format  <br />  <br /><strong>e.g. \"2021-08-20\"</strong></td>\n</tr>\n<tr>\n<td>differentAddressThanObject (boolean)</td>\n<td><strong>Optional</strong>  <br />(date)</td>\n<td>Specifies if the customer's address is identcal with the insured object's  <br />  <br /><strong>Possible values:  <br />true  <br />false</strong></td>\n</tr>\n<tr>\n<td>vermittlernummer (string made by only letters, numbers and commas)</td>\n<td>Mandatory</td>\n<td>Broker ID (corresponds to the Broker pool ID); if single broker IDs also need to be included, separate single IDs with comma(s) inside one string eg. \"5ZK3627,63GD727\" - \"46755\" is a current working example</td>\n</tr>\n</tbody>\n</table>\n</div><p>Values (underwriting questions)</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>bauartklasse (string)</td>\n<td>Mandatory</td>\n<td>Pass: BAK I, BAK II, BAK III, FHG I, FHG II (Roman or Arabic numerals accepted)</td>\n</tr>\n<tr>\n<td>zuersZone (number)</td>\n<td>Optional</td>\n<td>rejects policy if &gt; 2</td>\n</tr>\n<tr>\n<td>propertyOccupied (boolean)</td>\n<td>Mandatory</td>\n<td>true/false</td>\n</tr>\n<tr>\n<td>burglarAlarm (boolean)</td>\n<td>Optional (can be mandatory by request)</td>\n<td>true/false</td>\n</tr>\n<tr>\n<td>noNearbyFireRisk (boolean)</td>\n<td>Optional (can be mandatory by request)</td>\n<td>true/false</td>\n</tr>\n<tr>\n<td>minimumSecurity (boolean)</td>\n<td>Optional (can be mandatory by request)</td>\n<td>true/false</td>\n</tr>\n<tr>\n<td>previousInsuranceDateAvailable (boolean)</td>\n<td>Optional</td>\n<td>true/false</td>\n</tr>\n<tr>\n<td>previousInsurer (string)</td>\n<td>Optional/Mandatory if previousInsuranceDateAvailable=true</td>\n<td>name of previous insurance company, max 60 chars</td>\n</tr>\n<tr>\n<td>previousInsuranceNumber (string)</td>\n<td>Optional/Mandatory if previousInsuranceDateAvailable=true</td>\n<td>previous insurance identifier</td>\n</tr>\n<tr>\n<td>previousInsuranceCancelledBy (string)</td>\n<td>Optional/Mandatory if previousInsuranceDateAvailable=true</td>\n<td>max 60 chars</td>\n</tr>\n<tr>\n<td>previousInsuranceDate (date)</td>\n<td>Optional/Mandatory if previousInsuranceDateAvailable=true</td>\n<td>YYYY-MM-DD format</td>\n</tr>\n<tr>\n<td>previousClaims (boolean)</td>\n<td>Mandatory</td>\n<td>true/false</td>\n</tr>\n<tr>\n<td>previousClaimsQuantity (number)</td>\n<td>Optional/Mandatory if previousClaims =true</td>\n<td>quantity of previous claims, rejects policy if &gt; 2</td>\n</tr>\n</tbody>\n</table>\n</div><p>Other</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>package</td>\n<td>accepts any of: \"Basis\", \"Basis-Plus\", \"Bronze\", \"Silber\", \"Gold\", \"Platin\", \"Diamant\"</td>\n</tr>\n<tr>\n<td>addons (array)</td>\n<td>contains any from:</td>\n</tr>\n<tr>\n<td></td>\n<td>\"fahrradDiebstahl\",</td>\n</tr>\n<tr>\n<td></td>\n<td>\"glasversicherung\",</td>\n</tr>\n<tr>\n<td></td>\n<td>\"elementarschaeden\",</td>\n</tr>\n<tr>\n<td></td>\n<td>\"ueberschwemmungDurchStarkregen\"</td>\n</tr>\n</tbody>\n</table>\n</div><p>Metadata (in separate \"Metadata\" section - not in values section)</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>applicationNumber (string)</td>\n<td>Optional</td>\n<td>broker application number (Antragsnummer)</td>\n</tr>\n<tr>\n<td>transactionId (string)</td>\n<td>Optional</td>\n<td>business process ID (Vorgangsnummer), max 35 chars</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"9bdb3fa7-67ff-43bf-8023-a436dbc8f449","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"hausrat\",\n\t\"customer\": {\n\t\t\"email\": \"test@alteos.com\",\n        \"phone\":\"0160123456\",\n\t\t\"firstName\": \"TestName\",\n\t  \t\"lastName\": \"TestSurname\",\n\t\t\"values\": {\n            \"salutation\":\"Herr\",\n\t    \t\"dateOfBirth\": \"1995-10-10\",\n            \"addressStreet\": \"Talstr.\",\n\t\t\t\"addressHouseNumber\": \"24\",\n\t\t\t\"addressPlz\": \"40217\",\n\t\t\t\"addressCity\": \"Düsseldorf\"\n\t\t}\n\t},\n\t\"values\": {\n        \"insuredObjectPlz\":\"10179\",\n        \"insuredObjectSqMeters\":\"100\",\n        \"selbstbehalt\":\"\",\n        \"insuredObjectStreet\":\"streetStr\",\n        \"insuredObjectHouseNumber\":\"15\",\n        \"insuredObjectCity\":\"Berlin\",\n        \"withCellar\":true,\n        \"cellarSqMeters\":10,\n        \"cellarLivingSqMeters\":0,\n        \"insuredObjectType\":\"Einfamilienhaus\",\n        \"underinsuranceWaiver\":false,\n        \"deckungssumme\":\"10\",\n        \"ueberspannung\":10,\n        \"amountOfValuables\":15,\n        \"customerDateOfBirth\":\"1995-01-01\",\n        \"paymentSchedule\":\"quarterly\",\n        \"bauartklasse\":\"BAK III\",\n        \"previousClaims\":true,\n        \"previousClaimsQuantity\":\"1\",\n        \"zuersZone\":2,\n        \"policyStartDate\":\"2021-08-20\",\n        \"differentAddressThanObject\":true,\n        \"paymentType\":\"Lastschrift\",\n        \"iban\":\"1234567890123456789012\",\n        \"bicycleValue\":\"3250\",\n        \"burglarAlarm\":false,\n        \"propertyOccupied\":true,\n        \"noNearbyFireRisk\":true,\n        \"minimumSecurity\":true,\n        \"previousInsuranceDataAvailable\":false,\n        \"previousInsurer\":\"\",\n        \"previousInsuranceNumber\":\"\",\n        \"previousInsuranceCancelledBy\":\"\",\n        \"previousInsuranceDate\":\"\",\n        \"vermittlernummer\":\"46755\"\n\n\t},\n    \"package\": \"Silber\",\n    \"addons\": [\n        \"fahrradDiebstahl\",\n        \"glasversicherung\",\n        \"elementarschaeden\",\n        \"ueberschwemmungDurchStarkregen\"\n    ],\n    \"metadata\": {\n        \"transactionId\": \"24343434\",\n        \"applicationNumber\": \"53637\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"5048342b-3419-42b1-aeef-a3f774553d5d\",\n    \"requestData\": {\n        \"productName\": \"hausrat\",\n        \"customer\": {\n            \"email\": \"test@alteos.com\",\n            \"firstName\": \"TestName\",\n            \"lastName\": \"TestSurname\",\n            \"values\": {\n                \"dateOfBirth\": \"1995-10-10\",\n                \"addressStreet\": \"Talstr.\",\n                \"addressHouseNumber\": \"24\",\n                \"addressPlz\": \"40217\",\n                \"addressCity\": \"Düsseldorf\"\n            }\n        },\n        \"values\": {\n            \"insuredObjectPlz\": \"10123\",\n            \"insuredObjectSqMeters\": \"15\",\n            \"selbstbehalt\": \"\",\n            \"insuredObjectStreet\": \"streetStr\",\n            \"insuredObjectHouseNumber\": \"15\",\n            \"insuredObjectCity\": \"Berlin\",\n            \"withCellar\": true,\n            \"cellarSqMeters\": 10,\n            \"cellarLivingSqMeters\": 0,\n            \"insuredObjectType\": \"Mehrfamilienhaus\",\n            \"underinsuranceWaiver\": false,\n            \"deckungssumme\": \"\",\n            \"ueberspannung\": 10,\n            \"amountOfValuables\": 15,\n            \"customerDateOfBirth\": \"1995-01-01\",\n            \"paymentSchedule\": \"quarterly\",\n            \"bauartklasse\": \"BAK I\",\n            \"previousClaims\": true,\n            \"previousClaimsQuantity\": \"2\",\n            \"zuersZone\": \"2\",\n            \"policyStartDate\": \"2021-08-20\",\n            \"differentAddressThanObject\": true,\n            \"paymentType\": \"Lastschrift\",\n            \"iban\": \"1234567890123456789012\",\n            \"bicycleValue\": \"400\",\n            \"burglarAlarm\": false,\n            \"nearbyFireRisk\": false,\n            \"previousInsuranceDataAvailable\": false,\n            \"previousInsurer\": \"\",\n            \"previousInsuranceNumber\": \"\",\n            \"previousInsuranceCancelledBy\": \"\",\n            \"previousInsuranceDate\": \"\",\n            \"propertyOccupied\": true,\n            \"vermittlernummer\": \"46755\"\n        },\n        \"package\": \"Silber\",\n        \"addons\": [\n            \"fahrradDiebstahl\",\n            \"glasversicherung\",\n            \"elementarschaeden\",\n            \"ueberschwemmungDurchStarkregen\"\n        ],\n        \"metadata\": {\n            \"sumInsured\": \"12345.00\",\n            \"applicationNumber\": \"53637\"\n        }\n    },\n    \"quote\": {\n        \"gross\": 85.5,\n        \"premium\": 85.5,\n        \"taxes\": 0,\n        \"premiumExclDiscounts\": 85.5,\n        \"taxesExclDiscounts\": 0,\n        \"grossExclDiscounts\": 85.5,\n        \"addons\": [\n            {\n                \"name\": \"fahrradDiebstahl\",\n                \"payments\": []\n            },\n            {\n                \"name\": \"glasversicherung\",\n                \"payments\": []\n            },\n            {\n                \"name\": \"elementarschaeden\",\n                \"payments\": []\n            },\n            {\n                \"name\": \"ueberschwemmungDurchStarkregen\",\n                \"payments\": []\n            }\n        ],\n        \"package\": {\n            \"name\": \"Silber\",\n            \"payments\": []\n        },\n        \"metadata\": {\n            \"transactionId\": \"24343434\",\n            \"applicationNumber\": \"53637\"\n        }\n    }\n}"}],"_postman_id":"82d448b4-a4e8-4951-9601-b0f85106543c"},{"name":"Haftplicht Product","id":"0b0cfb5d-6548-4bf4-b770-1a10c67b9782","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"x-app-key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"haftpflicht\",\n\t\"customer\": {\n\t\t\"email\": \"example@alteos.com\",\n        \"phone\" : \"+4930123456\",\n\t\t\"firstName\": \"TestName\",\n\t  \t\"lastName\": \"TestSurname\",\n\t\t\"values\": {\n            \"saluation\" : \"Divers\",\n            \"dateOfBirth\": \"1995-10-10\",\n            \"addressStreet\": \"Talstr.\",\n\t\t\t\"addressHouseNumber\": \"24\",\n\t\t\t\"addressCity\": \"Berlin\",\n            \"addressPlz\":\"01234\"\n\t\t}\n\t},\n\t\"values\": {\n    \"coverageScope\": \"single\",\n    \"deductible\":0,\n    \"publicService\":false,\n    \"policyHolderPlz\":\"01243\",\n    \"policyHolderDateOfBirth\":\"1992-01-01\",\n    \"paymentType\": \"Lastschrift\",\n    \"paymentSchedule\": \"quarterly\",\n    \"vermittlernummer\": \"46755\",\n    \"policyStartDate\" : \"2022-10-06\",\n    \"notes\":\"example free text\",\n    \"applicationNumber\": \"53637\",\n    \"transactionId\": \"24343434\",\n    \"previousInsurer\": \"\",\n    \"previousInsuranceNumber\": \"\",\n    \"previousInsuranceCancelledBy\": \"\",\n    \"previousInsuranceDate\": \"\",\n    \"previousClaimsPeriodLength\":\"2\",\n    \"previousClaimsQuantity\": \"1\",\n    \"previousClaim1\":\"2020-08-08, €400, freeTextTypeValue\",\n    \"previousClaim2\":\"2021-10-01, €900, freeTextTypeValue\",\n    \"underwritingQuestion\": true,\n    \"noPreviousRejectedApplications\":true,\n    \"creditWorthiness\":true,\n    \"underWritingConfirmation\":true\n  },\n    \"package\": \"Basis-Plus\",\n    \"addons\": [\n    ],\n    \"metadata\": {\n    }\n}"},"url":"https://api.sandbox.alteos.com/v2/policies","description":"<p>Use this API to create a policy for the Haftplicht Product.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ProductName</th>\n<th>haftplicht</th>\n</tr>\n</thead>\n<tbody>\n</tbody>\n</table>\n</div><p>Customer</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>email</td>\n<td>Mandatory</td>\n<td>(string) email of the policy holder (in email format)</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>Optional</td>\n<td>(string) phone number of the policy holder. Format: starting with 0 or +49**,** no spaces. Min 7 characters. E.g. 01234567 or +4909393030</td>\n</tr>\n<tr>\n<td>dateOfBirth</td>\n<td>Optional (for this product)</td>\n<td>(string) Birthday of policy holder; Format: YYYY-MM-DD</td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>Mandatory</td>\n<td>(string) first name of the policy holder</td>\n</tr>\n<tr>\n<td>lastName</td>\n<td>Mandatory</td>\n<td>(string) family name of the policy holder</td>\n</tr>\n<tr>\n<td>salutation</td>\n<td>Optional</td>\n<td>(selection) \"Herr\", \"Frau\" or \"Divers\"</td>\n</tr>\n<tr>\n<td>customer address</td>\n<td>Mandatory</td>\n<td>(4 strings) street, house number, plz and city of the policy holder</td>\n</tr>\n</tbody>\n</table>\n</div><p>Values</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>coverageScope</td>\n<td>Mandatory</td>\n<td>(selection) Options as follows:  <br />\"single\",  <br />\"withPartner\",  <br />\"withChildren\",  <br />\"withFamily\"</td>\n</tr>\n<tr>\n<td>deductible</td>\n<td>Mandatory</td>\n<td>(number) numeric value for EUR deductible from claim</td>\n</tr>\n<tr>\n<td>publicService</td>\n<td>Mandatory</td>\n<td>(true/false) true in case policy holder is part of the public service; otherwise false</td>\n</tr>\n<tr>\n<td>policyHolderPlz</td>\n<td>Mandatory</td>\n<td>(string) postcode of the insured person, max 5 chars</td>\n</tr>\n<tr>\n<td>policyHolderDateOfBirth</td>\n<td>Mandatory</td>\n<td>(string) Birthday of policy holder; Format: YYYY-MM-DD</td>\n</tr>\n<tr>\n<td>paymentType</td>\n<td>Mandatory</td>\n<td>(selection) currently must be “Lastschrift”</td>\n</tr>\n<tr>\n<td>paymentSchedule</td>\n<td>Mandatory</td>\n<td>(selection) must be one of \"annual\", \"biannual\", \"quarterly\", \"monthly\"</td>\n</tr>\n<tr>\n<td>vermittlernummer</td>\n<td>Mandatory</td>\n<td>(string made by only letters, numbers and commas) Broker ID given by Alteos.  <br />If individual broker IDs also need to be included, separate IDs with comma(s) inside one string eg. \"5ZK3627,63GD727\".  <br />(\"46755\" for testing)</td>\n</tr>\n<tr>\n<td>policyStartDate</td>\n<td>Mandatory</td>\n<td>(string) start date of the policy and start date of cover; Format: YYYY-MM-DD</td>\n</tr>\n<tr>\n<td>notes</td>\n<td>Optional</td>\n<td>(string; maximum of 1.000 digits) free text space for additional information</td>\n</tr>\n<tr>\n<td>applicationNumber</td>\n<td>Optional</td>\n<td>(string) broker application number (Antragsnummer)  <br />(BiPRO: VorgangsnummerVM)</td>\n</tr>\n<tr>\n<td>transactionId</td>\n<td>Optional</td>\n<td>(string) business process ID (Vorgangsnummer), max 35 chars  <br />(BiPRO: Vorgangsnummer)</td>\n</tr>\n</tbody>\n</table>\n</div><p>Values (underwriting questions)</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>previousInsurer</td>\n<td>Optional</td>\n<td>(string) name of previous insurance company, max 60 chars</td>\n</tr>\n<tr>\n<td>previousInsuranceNumber</td>\n<td>Optional/Mandatory if previousInsurer not empty</td>\n<td>(string) previous insurance identifier</td>\n</tr>\n<tr>\n<td>previousInsuranceCancelledBy</td>\n<td>Optional/Mandatory if previousInsurer not empty</td>\n<td>(string) max 60 chars</td>\n</tr>\n<tr>\n<td>previousInsuranceDate</td>\n<td>Optional/Mandatory if previousInsurer is not empty</td>\n<td>(string) End date of previous insurance policy; Format: YYYY-MM-DD</td>\n</tr>\n<tr>\n<td>previousClaims (boolean)</td>\n<td>Mandatory</td>\n<td>true/false</td>\n</tr>\n<tr>\n<td>previousClaimsPeriodLength</td>\n<td>Mandatory</td>\n<td>(number) number of years considered for quantity of previous claims</td>\n</tr>\n<tr>\n<td>previousClaimsQuantity (number)</td>\n<td>Optional/Mandatory if previousClaims =true</td>\n<td>(number) quantity of previous claims, rejects policy if &gt; 2</td>\n</tr>\n<tr>\n<td>previousClaim1</td>\n<td>Optional</td>\n<td>(string) comma separated string:  <br />\"date, value, type\"</td>\n</tr>\n<tr>\n<td>previousClaim2</td>\n<td>Optional</td>\n<td>(string) comma separated string:  <br />\"date, value, type\"</td>\n</tr>\n<tr>\n<td>underwritingQuestion</td>\n<td>Optional, (can be mandatory by request)</td>\n<td>(true/false) can be used for individual underwriting questions</td>\n</tr>\n<tr>\n<td>noPreviousRejectedApplications</td>\n<td>Optional, (can be mandatory by request)</td>\n<td>(true/false) true in case an application has already been rejected</td>\n</tr>\n<tr>\n<td>creditWorthiness</td>\n<td>Optional, (can be mandatory by request)</td>\n<td>(true/false) The creditworthiness regulation has been read by the applicant and confirmed as fulfilled.</td>\n</tr>\n<tr>\n<td>underwritingConfirmation</td>\n<td>Optional, (can be mandatory by request)</td>\n<td>(true/false) underwriting guidelines were read and accepted by the policy holder.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Other</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>package</td>\n<td>(selection) accepts any of: \"Basis\", \"Basis-Plus\", \"Bronze\", \"Silber\", \"Gold\", \"Platin\", \"Diamant\"</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"df79d44a-904f-42af-b9d7-e429cdbf5d1f","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"haftpflicht\",\n\t\"customer\": {\n\t\t\"email\": \"test@alteos.com\",\n\t\t\"firstName\": \"Julio\",\n\t  \t\"lastName\": \"Walter\",\n        \"phone\":\"01234567\",\n\t\t\"values\": {\n            \"salutation\": \"Herr\",\n            \"addressStreet\": \"Königsseest.\",\n\t\t\t\"addressHouseNumber\": \"18\",\n\t\t\t\"addressCity\": \"Berlin\",\n            \"addressPlz\":\"12527\"\n\t\t}\n\t},\n\t\"values\": {\n    \"coverageScope\": \"single\",\n    \"paymentType\": \"Lastschrift\",\n    \"publicService\": true,\n    \"policyHolderPlz\": \"12527\",\n    \"policyHolderDateOfBirth\": \"1995-04-02\",\n    \"previousInsurer\": \"Alteos\",\n    \"previousInsuranceNumber\": \"434\",\n    \"previousInsuranceCancelledBy\": \"41241\",\n    \"previousInsuranceDate\": \"2022-12-12\",\n    \"previousClaim1\":\"2020-08-08,€400,freeTextTypeValue\",\n    \"previousClaims\": true,\n    \"previousClaimsPeriodLength\":\"2\",\n    \"previousClaimsQuantity\": \"1\",\n    \"vermittlernummer\": \"46755\",\n    \"paymentSchedule\": \"quarterly\",\n    \"policyStartDate\": \"2022-12-12\",\n    \"underwritingQuestion\": true,\n    \"noPreviousRejectedApplications\":true,\n    \"creditWorthiness\":true,\n    \"deductible\":0,\n    \"underWritingConfirmation\":true,\n    \"transactionId\": \"24343434\",\n    \"applicationNumber\": \"53637\"\n\n  },\n    \"package\": \"Gold\",\n    \"addons\": [\n    ],\n    \"metadata\": {\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"afe7c8e6-c9c4-4fd0-8858-a6b24028c13f\",\n    \"prettyId\": \"CVBUET\",\n    \"requestData\": {\n        \"productName\": \"haftpflicht\",\n        \"customer\": {\n            \"email\": \"test@alteos.com\",\n            \"firstName\": \"Julio\",\n            \"lastName\": \"Walter\",\n            \"phone\": \"01234567\",\n            \"values\": {\n                \"salutation\": \"Herr\",\n                \"addressStreet\": \"Königsseest.\",\n                \"addressHouseNumber\": \"18\",\n                \"addressCity\": \"Berlin\",\n                \"addressPlz\": \"12527\"\n            }\n        },\n        \"values\": {\n            \"coverageScope\": \"single\",\n            \"paymentType\": \"Lastschrift\",\n            \"publicService\": true,\n            \"policyHolderPlz\": \"12527\",\n            \"policyHolderDateOfBirth\": \"1995-04-02\",\n            \"previousInsurer\": \"Alteos\",\n            \"previousInsuranceNumber\": \"434\",\n            \"previousInsuranceCancelledBy\": \"41241\",\n            \"previousInsuranceDate\": \"2022-12-12\",\n            \"previousClaim1\": \"2020-08-08,€400,freeTextTypeValue\",\n            \"previousClaims\": true,\n            \"previousClaimsPeriodLength\": \"2\",\n            \"previousClaimsQuantity\": \"1\",\n            \"vermittlernummer\": \"46755\",\n            \"paymentSchedule\": \"quarterly\",\n            \"policyStartDate\": \"2022-12-12\",\n            \"underwritingQuestion\": true,\n            \"noPreviousRejectedApplications\": true,\n            \"creditWorthiness\": true,\n            \"deductible\": 0,\n            \"underWritingConfirmation\": true,\n            \"transactionId\": \"24343434\",\n            \"applicationNumber\": \"53637\"\n        },\n        \"package\": \"Gold\",\n        \"addons\": [],\n        \"metadata\": {}\n    },\n    \"quote\": {\n        \"gross\": 11.5,\n        \"premium\": 9.66,\n        \"taxes\": 1.84,\n        \"premiumExclDiscounts\": 9.66,\n        \"taxesExclDiscounts\": 1.84,\n        \"grossExclDiscounts\": 11.5,\n        \"addons\": [],\n        \"package\": {\n            \"name\": \"Gold\",\n            \"payments\": []\n        }\n    }\n}"}],"_postman_id":"0b0cfb5d-6548-4bf4-b770-1a10c67b9782"},{"name":"Unfall Product","id":"becbc2fe-bf13-41ed-90e2-f0cf5fb8e0ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"x-app-key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"unfall\",\n    \"customer\": {\n        \"email\": \"sim@alteos.com\",\n        \"firstName\": \"John\",\n        \"lastName\": \"Walter\",\n        \"phone\":\"+49156758239\",\n        \"values\": {\n            \"salutation\" : \"Divers\",\n            \"dateOfBirth\": \"1995-10-10\",\n            \"addressStreet\": \"Talstr.\",\n            \"addressHouseNumber\": \"24\",\n            \"addressCity\": \"Berlin\",\n            \"addressPlz\":\"01234\"\n        }\n    },\n    \"values\": {\n    \"policyStartDate\": \"2023-03-23\",\n    \"paymentSchedule\": \"monthly\", \n    \"paymentType\":\"Lastschrift\", \n    \"vermittlernummer\":\"46755\", \n    \"underwritingConfirmation\":true, \n    \"notes\":\"example free text\", \n    \"applicationNumber\": \"53637\",\n    \"transactionId\": \"24343434\", \n    \"previousClaimsPeriodLength\":2, \n\n\n\n    \"insuredPerson1_name\": \"John\",\n    \"insuredPerson1_familyName\": \"Walter\",\n    \"insuredPerson1_dateOfBirth\":\"1996-06-06\",\n    \"insuredPerson1_occupationCategory\":\"A\",\n    \"insuredPerson1_occupation\":\"Betriebswirt/in (Weiterbildung) Kommunikation und Büromanagemanagement\",\n    \"insuredPerson1_basicAmount\":27000,\n    \"insuredPerson1_progression\":\"350%\",\n    \"insuredPerson1_package\":\"Bronze\",\n    \"insuredPerson1_dailyAllowanceAddon\":100,\n    \"insuredPerson1_accidentPensionAddon\":100,\n    \"insuredPerson1_deathBenefitAddon\":100,\n    \"insuredPerson1_deathBenefitName\":\"Mark\",\n    \"insuredPerson1_deathBenefitDateofBirth\":\"2021-04-05\",\n    \"insuredPerson1_healthQuestion\": true,\n    \"insuredPerson1_accidentSickPayAddon\":100,\n    \"insuredPerson1_accidentSickPayAddonDays\": \"43\",\n    \"insuredPerson1_transitionalBenefitAddon\":100,\n    \"insuredPerson1_previousClaimsQuantity\": 2,\n    \"insuredPerson1_previousInsurer\": \"Alteos\",\n    \"insuredPerson1_previousInsuranceNumber\":\"422\",\n    \"insuredPerson1_previousInsuranceCancelledBy\": \"Alteos\",\n    \"insuredPerson1_previousInsuranceDate\": \"2022-05-05\",\n    \"insuredPerson1_previousClaim1\":\"2020-08-08,€400,freeTextTypeValue\",\n    \"insuredPerson1_previousClaim2\":\"2022-04-02,€300,freeTextTypeValue\",\n\n\n    \"insuredPerson2_name\":\"Clark\",\n    \"insuredPerson2_familyName\":\"Müller\",\n    \"insuredPerson2_dateOfBirth\":\"1992-06-06\",\n    \"insuredPerson2_occupationCategory\":\"A\",\n    \"insuredPerson2_occupation\":\"Doctor\",\n    \"insuredPerson2_basicAmount\":27000,\n    \"insuredPerson2_progression\":\"350%\",\n    \"insuredPerson2_package\":\"Bronze\",\n    \"insuredPerson2_dailyAllowanceAddon\":100,\n    \"insuredPerson2_accidentPensionAddon\":100,\n    \"insuredPerson2_deathBenefitAddon\":100,\n    \"insuredPerson2_deathBenefitName\":\"John\",\n    \"insuredPerson2_deathBenefitDateofBirth\":\"2021-04-05\",\n    \"insuredPerson2_healthQuestion\": true,\n    \"insuredPerson2_accidentSickPayAddon\":100,\n    \"insuredPerson2_accidentSickPayAddonDays\": \"43\",\n    \"insuredPerson2_transitionalBenefitAddon\":100,\n    \"insuredPerson2_previousClaimsQuantity\": 2,\n    \"insuredPerson2_previousInsurer\": \"Alteos\",\n    \"insuredPerson2_previousInsuranceNumber\":\"422\",\n    \"insuredPerson2_previousInsuranceCancelledBy\": \"Alteos\",\n    \"insuredPerson2_previousInsuranceDate\": \"2022-05-05\",\n    \"insuredPerson2_previousClaim1\":\"2020-08-08,€400,freeTextTypeValue\",\n    \"insuredPerson2_previousClaim2\":\"2022-04-02,€300,freeTextTypeValue\"\n    \n\n  },\n    \"package\": \"unfall\",\n\n    \"addons\": [\n        \"insuredPerson1\",\n        \"insuredPerson2\"\n    ]\n}"},"url":"https://api.sandbox.alteos.com/v2/policies","description":"<p>Use this API to create a policy for the Unfall Product.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ProductName</th>\n<th>unfall</th>\n</tr>\n</thead>\n<tbody>\n</tbody>\n</table>\n</div><p><strong>Customer</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>email</td>\n<td>Mandatory</td>\n<td>(string) email of the policy holder (in email format)</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>Optional</td>\n<td>(string) phone number of the policy holder. Format: starting with 0 or +49**,** no spaces. Min 7 characters. E.g. 01234567 or +4909393030</td>\n</tr>\n<tr>\n<td>dateOfBirth</td>\n<td>Mandatory</td>\n<td>(string) Birthday of policy holder; Format: YYYY-MM-DD</td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>Mandatory</td>\n<td>(string) first name of the policy holder</td>\n</tr>\n<tr>\n<td>lastName</td>\n<td>Mandatory</td>\n<td>(string) family name of the policy holder</td>\n</tr>\n<tr>\n<td>salutation</td>\n<td>Optional</td>\n<td>(selection) \"Herr\", \"Frau\" or \"Divers\"</td>\n</tr>\n<tr>\n<td>customer address</td>\n<td>Mandatory</td>\n<td>(4 strings) street, house number, plz and city of the policy holder</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Values</strong></p>\n<p>Each of these fields below relates to data captured regarding one insured person. For each instance, use the prefix \"insuredPersonX_\" where X is the relevant number.</p>\n<p>e.g: For the first insured person, the name field would be \"insuredPerson1_name\": \"Dave\"</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>policyStartDate</td>\n<td>Mandatory</td>\n<td>(string) start date of the policy and start date of cover; Format: YYYY-MM-DD</td>\n</tr>\n<tr>\n<td>paymentSchedule</td>\n<td>Mandatory</td>\n<td>(selection) must be one of \"annual\", \"biannual\", \"quarterly\", \"monthly\"</td>\n</tr>\n<tr>\n<td>paymentType</td>\n<td>Mandatory</td>\n<td>(selection) currently must be “Lastschrift”</td>\n</tr>\n<tr>\n<td>vermittlernummer</td>\n<td>Mandatory</td>\n<td>(string made by only letters, numbers and commas) Broker ID given by Alteos.  <br />If individual broker IDs also need to be included, separate IDs with comma(s) inside one string eg. \"5ZK3627,63GD727\".  <br />(\"46755\" for testing)</td>\n</tr>\n<tr>\n<td>underwritingConfirmation</td>\n<td>Optional, (can be mandatory by request)</td>\n<td>(true/false) can be used for individual underwriting guidelines German: Zustimmung zu den Annahmerichtlinien</td>\n</tr>\n<tr>\n<td>notes</td>\n<td>Optional</td>\n<td>(string; maximum of 1.000 digits) free text space for additional information  <br /></td>\n</tr>\n<tr>\n<td>applicationNumber</td>\n<td>Optional</td>\n<td>(string) broker application number (Antragsnummer)  <br />(BiPRO: VorgangsnummerVM)</td>\n</tr>\n<tr>\n<td>transactionId</td>\n<td>Optional</td>\n<td>(string) business process ID (Vorgangsnummer), max 35 chars  <br />(BiPRO: Vorgangsnummer)</td>\n</tr>\n<tr>\n<td>previousClaimsPeriodLength</td>\n<td>Mandatory</td>\n<td>(number) number of years considered for quantity of previous claims</td>\n</tr>\n<tr>\n<td>insuredPerson1_name</td>\n<td>Mandatory</td>\n<td>insured person first name</td>\n</tr>\n<tr>\n<td>insuredPerson1_familyName</td>\n<td>Mandatory</td>\n<td>insured person last name</td>\n</tr>\n<tr>\n<td>insuredPerson1_dateOfBirth</td>\n<td>Mandatory</td>\n<td>Format: YYYY-MM-DD</td>\n</tr>\n<tr>\n<td>insuredPerson1_occupationCategory</td>\n<td>Mandatory</td>\n<td>(selection) A or B for the occupation class category.</td>\n</tr>\n<tr>\n<td>insuredPerson1_occupation</td>\n<td>Optional</td>\n<td>(string) insured person's occupation;  <br /></td>\n</tr>\n<tr>\n<td>insuredPerson1_basicAmount</td>\n<td>Mandatory</td>\n<td>(number) Default base amount which the policy holder is insured for.  <br />* for progression 225% up to 440,000€  <br />* for progression 350% up to 280,000€  <br />* for progression 500% up to 200,000€  <br />Basic amount: 10,000€ up to max. 500,000€</td>\n</tr>\n<tr>\n<td>insuredPerson1_progression</td>\n<td>Mandatory</td>\n<td>(selection)  <br />Options as follows:  <br />100%  <br />225%  <br />350%  <br />500%  <br />600%</td>\n</tr>\n<tr>\n<td>insuredPerson1_package</td>\n<td>Mandatory</td>\n<td>(selection) accepts any of:  <br />\"Bronze\",  <br />\"Silber\",  <br />\"Gold\",  <br />\"Platin\",  <br />\"Diamant\"</td>\n</tr>\n<tr>\n<td>insuredPerson1_dailyAllowanceAddon</td>\n<td>Optional</td>\n<td>(number) sum insured for the daily allowance addon  <br />Allowed values: 0 to 100. <em>German: KH-Tagegeld rate per €</em></td>\n</tr>\n<tr>\n<td>insuredPerson1_accidentPensionAddon</td>\n<td>Optional</td>\n<td>(number) sum insured for the accident Pension addon  <br />Allowed values: 0 to 2000. <em>German:</em> Unfallrente rate per €</td>\n</tr>\n<tr>\n<td>insuredPerson1_deathBenefitAddon</td>\n<td>Optional</td>\n<td>(number) sum insured for the death benefit addon.  <br />*Todesfallsumme for adults: max. 100,000€  <br />*Todesfallsumme für Kinder: max. 20,000€ <em>German:</em> Todesfallsumme rate per €.</td>\n</tr>\n<tr>\n<td>insuredPerson1_deathBenefitName</td>\n<td>optional</td>\n<td>(string) Beneficiary for insured person X's death benefit; max. 60 characters  <br /></td>\n</tr>\n<tr>\n<td>insuredPerson1_deathBenefitDateofBirth</td>\n<td>optional</td>\n<td>(string) Beneficiary's date of Birth; Format: YYYY-MM-DD  <br /></td>\n</tr>\n<tr>\n<td>insuredPerson1_healthQuestion</td>\n<td>Optional, (can be mandatory by request)</td>\n<td>(true/false) Underwriting confirmation regarding the health of the insured person German: Gesundheitsfrage</td>\n</tr>\n<tr>\n<td>insuredPerson1_accidentSickPayAddon</td>\n<td>Optional</td>\n<td>(number) sum insured for the accident sick pay addon  <br />Allowed values: 0 to 100. <em>German:</em> Unfall-Krankentagegeld</td>\n</tr>\n<tr>\n<td>insuredPerson1_accidentSickPayAddonDays</td>\n<td>Optional</td>\n<td>(number) Beginning from which day of the sickness the add-on is to be paid out. Not supported values: 8th, 16th or 29th sick day. We only accept from the <strong>43rd</strong> day. <em>German:</em> Unfall-Krankentage</td>\n</tr>\n<tr>\n<td>insuredPerson1_transitionalBenefitAddon</td>\n<td>Optional</td>\n<td>(number) sum insured for the transitional benefit addon  <br />Allowed values: 0 to 10.000. <em>German: Übergangsleistung</em></td>\n</tr>\n<tr>\n<td>insuredPerson1_previousInsurer</td>\n<td>Optional</td>\n<td>(string) name of previous insurance company, max 60 chars</td>\n</tr>\n<tr>\n<td>insuredPerson1_previousInsuranceNumber</td>\n<td>Optional/Mandatory if previousInsurer not empty</td>\n<td>(string) previous insurance identifier</td>\n</tr>\n<tr>\n<td>insuredPerson1_previousInsuranceCancelledBy</td>\n<td>Optional/Mandatory if previousInsurer not empty</td>\n<td>(string) max 60 chars</td>\n</tr>\n<tr>\n<td>insuredPerson1_previousInsuranceDate</td>\n<td>Optional/Mandatory if previousInsurer is not empty</td>\n<td>(string) End date of previous insurance policy; Format: YYYY-MM-DD</td>\n</tr>\n<tr>\n<td>insuredPerson1_previousClaimsQuantity</td>\n<td>Optional</td>\n<td>(number) quantity of previous claims, rejects policy if &gt; 2</td>\n</tr>\n<tr>\n<td>insuredPerson1_previousClaim1</td>\n<td>Optional</td>\n<td>(string) comma separated string:  <br />\"accidentdate, claimvalue, claimdescription\"</td>\n</tr>\n<tr>\n<td>insuredPerson1_previousClaim2</td>\n<td>Optional</td>\n<td>(string) comma separated string:  <br />\"accidentdate, claimvalue, claimdescription\"</td>\n</tr>\n</tbody>\n</table>\n</div><p><em>note: In case of more than one insured person, all the parameters above should be added again in the Payload.</em></p>\n<p>eg: insuredPerson2_name, insuredPerson2_dateOfBirth, insuredPerson2_occupationCategory and etc.</p>\n<p><strong>Other</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>package</td>\n<td>unfall</td>\n</tr>\n</tbody>\n</table>\n</div><p>In order to create policies for more than one insured person, each included insured person must be considered as an \"addon\".</p>\n<p>For example: insuredPerson1 is the first insured person and insuredPerson2 is the second insured person. <em><strong>note: Max of 8 insured persons per policy.</strong></em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Addons</td>\n<td>insuredPerson1 insuredPerson2 insuredPerson3 insuredPerson4 ...</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"a0da29b7-f344-4531-8f3a-2352cdd500b4","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"unfall\",\n    \"customer\": {\n        \"email\": \"sim@alteos.com\",\n        \"firstName\": \"John\",\n        \"lastName\": \"Walter\",\n        \"phone\":\"+49156758239\",\n        \"values\": {\n            \"salutation\" : \"Divers\",\n            \"dateOfBirth\": \"1995-10-10\",\n            \"addressStreet\": \"Talstr.\",\n            \"addressHouseNumber\": \"24\",\n            \"addressCity\": \"Berlin\",\n            \"addressPlz\":\"01234\"\n        }\n    },\n    \"values\": {\n    \"policyStartDate\": \"2023-03-23\",\n    \"paymentSchedule\": \"monthly\", \n    \"paymentType\":\"Lastschrift\", \n    \"vermittlernummer\":\"46755\", \n    \"underwritingConfirmation\":true, \n    \"notes\":\"example free text\", \n    \"applicationNumber\": \"53637\",\n    \"transactionId\": \"24343434\", \n    \"previousClaimsPeriodLength\":2, \n\n\n\n    \"insuredPerson1_name\": \"John\",\n    \"insuredPerson1_familyName\": \"Walter\",\n    \"insuredPerson1_dateOfBirth\":\"1996-06-06\",\n    \"insuredPerson1_occupationCategory\":\"A\",\n    \"insuredPerson1_occupation\":\"Betriebswirt/in (Weiterbildung) Kommunikation und Büromanagemanagement\",\n    \"insuredPerson1_basicAmount\":27000,\n    \"insuredPerson1_progression\":\"350%\",\n    \"insuredPerson1_package\":\"Bronze\",\n    \"insuredPerson1_dailyAllowanceAddon\":100,\n    \"insuredPerson1_accidentPensionAddon\":100,\n    \"insuredPerson1_deathBenefitAddon\":100,\n    \"insuredPerson1_deathBenefitName\":\"Mark\",\n    \"insuredPerson1_deathBenefitDateofBirth\":\"2021-04-05\",\n    \"insuredPerson1_healthQuestion\": true,\n    \"insuredPerson1_accidentSickPayAddon\":100,\n    \"insuredPerson1_accidentSickPayAddonDays\": \"43\",\n    \"insuredPerson1_transitionalBenefitAddon\":100,\n    \"insuredPerson1_previousClaimsQuantity\": 2,\n    \"insuredPerson1_previousInsurer\": \"Alteos\",\n    \"insuredPerson1_previousInsuranceNumber\":\"422\",\n    \"insuredPerson1_previousInsuranceCancelledBy\": \"Alteos\",\n    \"insuredPerson1_previousInsuranceDate\": \"2022-05-05\",\n    \"insuredPerson1_previousClaim1\":\"2020-08-08,€400,freeTextTypeValue\",\n    \"insuredPerson1_previousClaim2\":\"2022-04-02,€300,freeTextTypeValue\",\n\n\n    \"insuredPerson2_name\":\"Clark\",\n    \"insuredPerson2_familyName\":\"Müller\",\n    \"insuredPerson2_dateOfBirth\":\"1992-06-06\",\n    \"insuredPerson2_occupationCategory\":\"A\",\n    \"insuredPerson2_occupation\":\"Betriebswirt/in (Weiterbildung) Kommunikation und Büromanagemanagement\",\n    \"insuredPerson2_basicAmount\":27000,\n    \"insuredPerson2_progression\":\"350%\",\n    \"insuredPerson2_package\":\"Bronze\",\n    \"insuredPerson2_dailyAllowanceAddon\":100,\n    \"insuredPerson2_accidentPensionAddon\":100,\n    \"insuredPerson2_deathBenefitAddon\":100,\n    \"insuredPerson2_deathBenefitName\":\"John\",\n    \"insuredPerson2_deathBenefitDateofBirth\":\"2021-04-05\",\n    \"insuredPerson2_healthQuestion\": true,\n    \"insuredPerson2_accidentSickPayAddon\":100,\n    \"insuredPerson2_accidentSickPayAddonDays\": \"43\",\n    \"insuredPerson2_transitionalBenefitAddon\":100,\n    \"insuredPerson2_previousClaimsQuantity\": 2,\n    \"insuredPerson2_previousInsurer\": \"Alteos\",\n    \"insuredPerson2_previousInsuranceNumber\":\"422\",\n    \"insuredPerson2_previousInsuranceCancelledBy\": \"Alteos\",\n    \"insuredPerson2_previousInsuranceDate\": \"2022-05-05\",\n    \"insuredPerson2_previousClaim1\":\"2020-08-08,€400,freeTextTypeValue\",\n    \"insuredPerson2_previousClaim2\":\"2022-04-02,€300,freeTextTypeValue\"\n    \n\n  },\n    \"package\": \"unfall\",\n\n    \"addons\": [\n        \"insuredPerson1\",\n        \"insuredPerson2\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"fdbb81db-7fea-4780-b1e2-1525a9ea70c0\",\n    \"prettyId\": \"3L4BRF\",\n    \"requestData\": {\n        \"productName\": \"unfall\",\n        \"customer\": {\n            \"email\": \"sim@alteos.com\",\n            \"firstName\": \"John\",\n            \"lastName\": \"Walter\",\n            \"phone\": \"+49156758239\",\n            \"values\": {\n                \"salutation\": \"Divers\",\n                \"dateOfBirth\": \"1995-10-10\",\n                \"addressStreet\": \"Talstr.\",\n                \"addressHouseNumber\": \"24\",\n                \"addressCity\": \"Berlin\",\n                \"addressPlz\": \"01234\"\n            }\n        },\n        \"values\": {\n            \"policyStartDate\": \"2023-03-23\",\n            \"paymentSchedule\": \"monthly\",\n            \"paymentType\": \"Lastschrift\",\n            \"vermittlernummer\": \"46755\",\n            \"underwritingConfirmation\": true,\n            \"notes\": \"example free text\",\n            \"applicationNumber\": \"53637\",\n            \"transactionId\": \"24343434\",\n            \"previousClaimsPeriodLength\": 2,\n            \"insuredPerson1_name\": \"John\",\n            \"insuredPerson1_familyName\": \"Walter\",\n            \"insuredPerson1_dateOfBirth\": \"1996-06-06\",\n            \"insuredPerson1_occupationCategory\": \"A\",\n            \"insuredPerson1_occupation\":\"Betriebswirt/in (Weiterbildung) Kommunikation und Büromanagemanagement\",\n            \"insuredPerson1_basicAmount\": 27000,\n            \"insuredPerson1_progression\": \"350%\",\n            \"insuredPerson1_package\": \"Bronze\",\n            \"insuredPerson1_dailyAllowanceAddon\": 100,\n            \"insuredPerson1_accidentPensionAddon\": 100,\n            \"insuredPerson1_deathBenefitAddon\": 100,\n            \"insuredPerson1_deathBenefitName\":\"Mark\",\n            \"insuredPerson1_deathBenefitDateofBirth\":\"2021-04-05\",\n            \"insuredPerson1_healthQuestion\": true,\n            \"insuredPerson1_accidentSickPayAddon\": 100,\n            \"insuredPerson1_accidentSickPayAddonDays\": \"43\",\n            \"insuredPerson1_transitionalBenefitAddon\": 100,\n            \"insuredPerson1_previousClaimsQuantity\": 2,\n            \"insuredPerson1_previousInsurer\": \"Alteos\",\n            \"insuredPerson1_previousInsuranceNumber\": \"422\",\n            \"insuredPerson1_previousInsuranceCancelledBy\": \"Alteos\",\n            \"insuredPerson1_previousInsuranceDate\": \"2022-05-05\",\n            \"insuredPerson1_previousClaim1\": \"2020-08-08,€400,freeTextTypeValue\",\n            \"insuredPerson1_previousClaim2\": \"2022-04-02,€300,freeTextTypeValue\",\n            \"insuredPerson2_name\": \"Clark\",\n            \"insuredPerson2_familyName\": \"Müller\",\n            \"insuredPerson2_dateOfBirth\": \"1992-06-06\",\n            \"insuredPerson2_occupationCategory\": \"A\",\n            \"insuredPerson2_occupationCode\":\"123\",\n            \"insuredPerson2_basicAmount\": 27000,\n            \"insuredPerson2_progression\": \"350%\",\n            \"insuredPerson2_package\": \"Bronze\",\n            \"insuredPerson2_dailyAllowanceAddon\": 100,\n            \"insuredPerson2_accidentPensionAddon\": 100,\n            \"insuredPerson2_deathBenefitAddon\": 100,\n            \"insuredPerson2_deathBenefitName\":\"John\",\n            \"insuredPerson2_deathBenefitDateofBirth\":\"2021-04-05\",\n            \"insuredPerson2_healthQuestion\": true,\n            \"insuredPerson2_accidentSickPayAddon\": 100,\n            \"insuredPerson2_accidentSickPayAddonDays\": \"43\",\n            \"insuredPerson2_transitionalBenefitAddon\": 100,\n            \"insuredPerson2_previousClaimsQuantity\": 2,\n            \"insuredPerson2_previousInsurer\": \"Alteos\",\n            \"insuredPerson2_previousInsuranceNumber\": \"422\",\n            \"insuredPerson2_previousInsuranceCancelledBy\": \"Alteos\",\n            \"insuredPerson2_previousInsuranceDate\": \"2022-05-05\",\n            \"insuredPerson2_previousClaim1\": \"2020-08-08,€400,freeTextTypeValue\",\n            \"insuredPerson2_previousClaim2\": \"2022-04-02,€300,freeTextTypeValue\"\n        },\n        \"package\": \"unfall\",\n        \"addons\": [\n            \"insuredPerson1\",\n            \"insuredPerson2\"\n        ]\n    },\n    \"quote\": {\n        \"gross\": 73.43,\n        \"premium\": 61.71,\n        \"taxes\": 11.72,\n        \"premiumExclDiscounts\": 61.71,\n        \"taxesExclDiscounts\": 11.72,\n        \"grossExclDiscounts\": 73.43,\n        \"addons\": [\n            {\n                \"tax\": 73.72,\n                \"name\": \"insuredPerson1\",\n                \"gross\": 461.72,\n                \"premium\": 388,\n                \"payments\": []\n            },\n            {\n                \"tax\": 73.75,\n                \"name\": \"insuredPerson2\",\n                \"gross\": 461.93,\n                \"premium\": 388.18,\n                \"payments\": []\n            }\n        ],\n        \"package\": {\n            \"name\": \"unfall\",\n            \"payments\": []\n        }\n    }\n}"}],"_postman_id":"becbc2fe-bf13-41ed-90e2-f0cf5fb8e0ba"}],"id":"0ef43555-f5bb-4aec-98e4-8d62676d0e11","description":"<p>The Policy Creation API is used to create an insurance policy with the quote provided by the Policy Quotation API and additional data from the customer.</p>\n","event":[{"listen":"prerequest","script":{"id":"5902a12b-a0f6-404e-b15b-299adb9e911c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"fabebd98-fdcd-454c-819d-e72234eee890","type":"text/javascript","exec":[""]}}],"_postman_id":"0ef43555-f5bb-4aec-98e4-8d62676d0e11"},{"name":"Warranty Extension Product","id":"8604af86-a093-49e0-917a-3d06b5d3fc23","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"warrantyExtension\",\n    \"customer\": {\n        \"email\": \"username@username.com\",\n        \"firstName\": \"John\",\n        \"lastName\": \"Doe\",\n        \"phone\": \"49123456789\",\n        \"values\": {\n            \"salutation\": \"Herr\",\n            \"addressStreet\": \"Hardenbergerstr.\",\n            \"addressHouseNumber\": \"42\",\n            \"addressPlz\": \"12345\",\n            \"addressCity\": \"Berlin\"\n        }\n    },\n    \"values\": {\n        \"duration\": \"12\"\n    },\n    \"objects\": [\n        {\n            \"name\": \"whiteAppliances\",\n            \"values\": {\n                \"brand\": \"Bosch\",\n                \"itemCategory\": \"Backofen\",\n                \"ean\": \"3523DFGdf2343\",\n                \"itemValue\": \"0-150\",\n                \"purchasedAt\": \"2018-11-30\"\n            },\n            \"risks\": [\n                {\n                    \"name\": \"deviceBreakdown\",\n                    \"values\": {}\n                }\n            ]\n        }\n    ]\n}"},"url":"https://api.sandbox.alteos.com/v1/policies","description":"<p>Use this API to create a policy for the Warranty Extension product.</p>\n","urlObject":{"path":["v1","policies"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"7dc5c53a-d780-4205-b2e2-6eeae9cb71b1","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"warrantyExtension\",\n    \"customer\": {\n        \"email\": \"username@username.com\",\n        \"firstName\": \"John\",\n    \t\"lastName\": \"Doe\",\n    \t\"phone\": \"49123456789\",\n        \"values\": {\n            \"salutation\": \"Herr\",\n            \"addressStreet\": \"Hardenbergerstr.\",\n            \"addressHouseNumber\": \"42\",\n            \"addressPlz\": \"12345\",\n            \"addressCity\": \"Berlin\"\n        }\n    },\n    \"values\": {\n        \"duration\": \"12\"\n    },\n    \"objects\": [\n        {\n            \"name\": \"whiteAppliances\",\n            \"values\": {\n                \"brand\": \"Bosch\",\n                \"itemCategory\": \"Backofen\",\n                \"ean\": \"3523DFGdf2343\",\n                \"itemValue\": \"0-150\",\n                \"purchasedAt\": \"2018-11-30\"\n            },\n            \"risks\": [\n                {\n                    \"name\": \"deviceBreakdown\",\n                    \"values\": {}\n                }\n            ]\n        }\n    ]\n}"},"url":"https://api.sandbox.alteos.com/v1/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"119f91d4-4a40-41c2-ac84-346ed531a998\",\n    \"prettyId\": \"L87RHY\"\n}"}],"_postman_id":"8604af86-a093-49e0-917a-3d06b5d3fc23"},{"name":"Ability to use Saved Quote","id":"87f129cc-88a7-4e44-b5cb-a6ac19b22c09","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"x-app-key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"quoteId\": \"UCVNGPX5QBGF\",\n    \"productName\": \"ebike\",\n    \"customer\": {\n        \"email\": \"username@username.com\",\n        \"firstName\": \"John\",\n        \"lastName\": \"Doe\",\n        \"values\": {\n            \"salutation\": \"Herr\",\n            \"dateOfBirth\": \"1999-01-02\",\n            \"addressStreet\": \"Hardenbergerstr.\",\n            \"addressHouseNumber\": \"32\",\n            \"addressPlz\": \"10623\",\n            \"addressCity\": \"Berlin\"\n        }\n    }\n}"},"url":"https://api.sandbox.alteos.com/v2/policies","description":"<p>Policy creation API allows to use previously calculated quotes. In this way customers can be sure that, even if prices will change, they can still use their offers.</p>\n<p>To use a previously calculated quote should be added to the request payload a parameter <code>quoteId</code>.</p>\n<p>Important considerations:</p>\n<ul>\n<li>a pre-calculated quote can be used only once;</li>\n<li>a pre-calculated quote get expired in about 30 days (exact period depends on a product);</li>\n<li>if payload has a <code>quoteId</code> then can be omitted fields, which were used for quote calculation. Also these fields can be send. But if fields are send and they differ from values, which were sent during quote calculation, then error will be returned</li>\n</ul>\n<p>The policy creation response will also return the <code>requestData</code> object which contains all the data that was given by the user during the policy creation and the <code>quote</code> object which contains all the quotation calculations.</p>\n","urlObject":{"path":["v2","policies"],"host":["https://api.sandbox.alteos.com"],"query":[{"disabled":true,"description":{"content":"<p>Coverage period of the insurance.</p>\n","type":"text/plain"},"key":"duration","value":""},{"disabled":true,"description":{"content":"<p>Date of purchase of the eBike. Must not be older than 6 months before the insurance starting date.</p>\n","type":"text/plain"},"key":"purchasedAt","value":""}],"variable":[]}},"response":[{"id":"39fd5c70-5430-47fe-9031-02aa650daab4","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"quoteId\": \"UCVNGPX5QBGF\",\n    \"productName\": \"ebike\",\n    \"customer\": {\n        \"email\": \"username@username.com\",\n        \"firstName\": \"John\",\n        \"lastName\": \"Doe\",\n        \"values\": {\n            \"salutation\": \"Herr\",\n            \"dateOfBirth\": \"1999-01-02\",\n            \"addressStreet\": \"Hardenbergerstr.\",\n            \"addressHouseNumber\": \"32\",\n            \"addressPlz\": \"10623\",\n            \"addressCity\": \"Berlin\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"0cw48f82-77dc-47f7-9470-19ap186219cf\",\n    \"requestData\": {\n        \"quoteId\": \"UCVNGPX5QBGF\",\n        \"productName\": \"ebike\",\n        \"customer\": {\n            \"email\": \"username@username.com\",\n            \"firstName\": \"John\",\n            \"lastName\": \"Doe\",\n            \"values\": {\n                \"salutation\": \"Herr\",\n                \"dateOfBirth\": \"1999-01-02\",\n                \"addressStreet\": \"Hardenbergerstr.\",\n                \"addressHouseNumber\": \"32\",\n                \"addressPlz\": \"10623\",\n                \"addressCity\": \"Berlin\"\n            }\n        }\n    },\n    \"quote\": {\n        \"gross\": 744.95,\n        \"premium\": 626.01,\n        \"taxes\": 118.94,\n        \"premiumExclDiscounts\": 626.01,\n        \"taxesExclDiscounts\": 118.94,\n        \"grossExclDiscounts\": 744.95,\n        \"addons\": [\n            {\n                \"name\": \"akkuVerschleiss\",\n                \"payments\": [\n                    {\n                        \"tax\": 9.58,\n                        \"premium\": 50.42\n                    }\n                ]\n            },\n            {\n                \"name\": \"mobilitaetsgarantie\",\n                \"payments\": [\n                    {\n                        \"tax\": 4.79,\n                        \"premium\": 25.21\n                    }\n                ]\n            },\n            {\n                \"name\": \"einzelteileVerschleiss\",\n                \"payments\": [\n                    {\n                        \"tax\": 76.64,\n                        \"premium\": 403.36\n                    }\n                ]\n            }\n        ],\n        \"package\": {\n            \"name\": \"schadenschutz\",\n            \"payments\": [\n                {\n                    \"tax\": 27.93,\n                    \"premium\": 147.02\n                }\n            ]\n        }\n    }\n}"},{"id":"028b4f34-1058-4294-aee8-f56680c5074c","name":"Error - quote data conflict","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"x-app-key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"quoteId\": \"UCVNGPX5QBGF\",\n    \"productName\": \"ebike\",\n    \"customer\": {\n        \"email\": \"username@username.com\",\n        \"firstName\": \"John\",\n        \"lastName\": \"Doe\",\n        \"values\": {\n            \"salutation\": \"Herr\",\n            \"dateOfBirth\": \"1999-01-02\",\n            \"addressStreet\": \"Hardenbergerstr.\",\n            \"addressHouseNumber\": \"32\",\n            \"addressPlz\": \"10623\",\n            \"addressCity\": \"Berlin\"\n        }\n    },\n    \"package\": \"diebstahlschutz\",\n    \"addons\": [\n        \"akkuVerschleiss\",\n        \"mobilitaetsgarantie\",\n        \"einzelteileVerschleiss\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.sandbox.alteos.com/v2/policies","host":["https://api.sandbox.alteos.com"],"path":["v2","policies"],"query":[{"description":"Coverage period of the insurance.","key":"duration","value":"","disabled":true},{"description":"Date of purchase of the eBike. Must not be older than 6 months before the insurance starting date.","key":"purchasedAt","value":"","disabled":true}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Validation : data in the quote and policy creation request are different\",\n    \"errorCode\": \"quoteDataConflict\"\n}"},{"id":"236414fa-55f6-4814-9fb9-a9d3781d8c0a","name":"Error - package name not valid","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"x-app-key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"quoteId\": \"UCVNGPX5QBGF\",\n    \"productName\": \"ebike\",\n    \"customer\": {\n        \"email\": \"username@username.com\",\n        \"firstName\": \"John\",\n        \"lastName\": \"Doe\",\n        \"values\": {\n            \"salutation\": \"Herr\",\n            \"dateOfBirth\": \"1999-01-02\",\n            \"addressStreet\": \"Hardenbergerstr.\",\n            \"addressHouseNumber\": \"32\",\n            \"addressPlz\": \"10623\",\n            \"addressCity\": \"Berlin\"\n        }\n    },\n    \"package\": \"wrongPackageName\",\n    \"addons\": [\n        \"akkuVerschleiss\",\n        \"mobilitaetsgarantie\",\n        \"einzelteileVerschleiss\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.sandbox.alteos.com/v2/policies","host":["https://api.sandbox.alteos.com"],"path":["v2","policies"],"query":[{"description":"Coverage period of the insurance.","key":"duration","value":"","disabled":true},{"description":"Date of purchase of the eBike. Must not be older than 6 months before the insurance starting date.","key":"purchasedAt","value":"","disabled":true}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Resolve package : package name is not valid\",\n    \"errorCode\": \"packageNameNotValid\"\n}"}],"_postman_id":"87f129cc-88a7-4e44-b5cb-a6ac19b22c09"},{"name":"https://api.sandbox.alteos.com/v2/policies","id":"d5e38dfa-2835-4d7a-9410-ff8d2d992101","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-App-Key","value":"520478ab-bda4-4ee7-a753-5400edf8fb6f"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"sushi-bikes\",\n    \"customer\": {\n        \"email\": \"Versicherung@sushi-bikes.com\",\n        \"firstName\": \"Sushi\",\n        \"lastName\": \"Mobility GmbH\",\n        \"values\": {\n            \"addressStreet\": \"Geretsrieder.\",\n            \"addressHouseNumber\": \"10\",\n            \"addressPlz\": \"81379\",\n            \"addressCity\": \"München\"\n        }\n    },\n    \"values\": {\n        \"insuredPersonName\": \"Endkunde\",\n        \"insuredPersonFamilyName\": \"Nachname\",\n        \"insuredPersonEmail\":\"ank@alteos.com\",\n        \"policyStartDate\": \"2024-06-17\",\n        \"paymentSchedule\": \"annual\",\n        \"price\": \"2000.01-2500.00\",\n        \"purchasedAt\": \"2024-06-17\",\n        \"vehicleType\": \"E-Bike\",\n        \"brand\": \"Sushi\",\n        \"frameNumber\": \"1245311\",\n        \"hasEligibleLock\": true\n    },\n    \"package\": \"premiumschutz\",\n    \"addons\": [\n        \"mobilitaetsschutz\"\n    ]\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies","urlObject":{"path":["v2","policies"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"d5e38dfa-2835-4d7a-9410-ff8d2d992101"},{"name":"Rent Deposit Product","id":"e76e5443-6fb2-445c-8e63-b8b929907d89","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"x-app-key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"mietkautionsbuergschaft\",\n\t\"customer\": {\n\t\t\"email\": \"john@mail.com\",\n        \"phone\": \"0160124356\",\n\t\t\"firstName\": \"Jxohn\",\n\t  \t\"lastName\": \"Doe\",\n\t\t\"values\": {\n\t    \t\"dateOfBirth\": \"1995-10-10\",\n            \"addressStreet\": \"Talstr.\",\n\t\t\t\"addressHouseNumber\": \"24\",\n\t\t\t\"addressPlz\": \"40217\",\n\t\t\t\"addressCity\": \"Düsseldorf\"\n\t\t}\n\t},\n\t\"values\": {\n                \"depositAmount\":3000,\n                \"rentPrice\":1000,\n                \"scoreValue\":\"520\",\n                \"scoreType\":\"Arvato\",\n                \"transactionID\":\"1234567890\",\n                \"identCheckCode\":\"PPB1\",\n                \"rentStartDate\":\"2021-05-01\",\n                \"objectCo\":\"\",\n                \"objectStreet\":\"bondStr\",\n                \"objectHouseNumber\":\"1\",\n                \"objectPlz\":\"12345\",\n                \"objectCity\":\"Berlendorf\",\n                \"landlordCo\":\"\",\n                \"landlordName\":\"Berlin\",\n                \"landlordFamilyName\":\"Doe\",\n                \"landlordStreet\":\"BigStr\",\n                \"landlordHouseNumber\":\"12\",\n                \"landlordPlz\":\"55555\",\n                \"landlordCity\":\"Heidelburg\",\n                \"landlordEmail\":\"landlord@wealthy.com\",\n                \"deliveryAddress\":\"landlordAddress\",\n                \"deliveryFormat\":\"physical\"\n\t},\n\t\"package\": \"Mietkautionsbuergschaft\",\n    \"addons\": [\n    ]\n}"},"url":"https://api.sandbox.alteos.com/v2/policies","description":"<p>Use this API to create a policy for the Rental Deposit Product</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ProductName</th>\n<th>mietkautionsbuergschaft</th>\n</tr>\n</thead>\n<tbody>\n</tbody>\n</table>\n</div><p>Customer</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>email</td>\n<td>email of the prospective tenant</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>phone number of the prospective tenant</td>\n</tr>\n<tr>\n<td>name</td>\n<td>first and family names of the prospective tenant</td>\n</tr>\n<tr>\n<td>date of birth</td>\n<td>YYYY-MM-DD</td>\n</tr>\n<tr>\n<td>customer address</td>\n<td>Customer co, street, house number, plz, and city, all relate to the previous address of the tenant</td>\n</tr>\n</tbody>\n</table>\n</div><p>Values </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>deposit amount (number)</td>\n<td>deposit amount cannot exceed three times the rent price</td>\n</tr>\n<tr>\n<td>rent price (number)</td>\n<td>monthly rental price.</td>\n</tr>\n<tr>\n<td>scoreValue (string)</td>\n<td>score capturing reliability of tenant</td>\n</tr>\n<tr>\n<td>scoreType</td>\n<td>type or provider of score, eg Arvato</td>\n</tr>\n<tr>\n<td>transaction ID (string)</td>\n<td>unique ID of the transaction</td>\n</tr>\n<tr>\n<td>identCheckCode</td>\n<td>unique ID for the identity check</td>\n</tr>\n<tr>\n<td>rental start date</td>\n<td>date from which the tenant begins renting the property, listed as YYYY-MM-DD</td>\n</tr>\n<tr>\n<td>object address</td>\n<td>Object co, street, house number, plz, and city, all relate to the property covered by the deposit</td>\n</tr>\n<tr>\n<td>landlord name, family name</td>\n<td>first and family names of the landlord.</td>\n</tr>\n<tr>\n<td>landlord address</td>\n<td>NON MANDATORY - Landlord co, street, house number, plz, and city, all relate to the address of the landlord</td>\n</tr>\n<tr>\n<td>delivery address</td>\n<td>selection of delivery address for all related documentations sent by post. Can be selected from \"customerAddress\", \"landlordAddress\", and \"insuredObjectAddress\"</td>\n</tr>\n<tr>\n<td>delivery format</td>\n<td>selection of delivery format. \"physical\" (certificate will be posted to customer) or \"digital\"</td>\n</tr>\n</tbody>\n</table>\n</div><p>Other</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>package</td>\n<td>\"Mietkautionsbuergschaft\"</td>\n</tr>\n<tr>\n<td>addons</td>\n<td>[ ]</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"a0275ddb-05c7-48fc-b51b-c5b6a624c35f","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"mietkautionsbuergschaft\",\n\t\"customer\": {\n\t\t\"email\": \"john@mail.com\",\n        \"phone\": \"0160124356\",\n\t\t\"firstName\": \"Jxohn\",\n\t  \t\"lastName\": \"Doe\",\n\t\t\"values\": {\n\t    \t\"dateOfBirth\": \"1995-10-10\",\n            \"addressStreet\": \"Talstr.\",\n\t\t\t\"addressHouseNumber\": \"24\",\n\t\t\t\"addressPlz\": \"40217\",\n\t\t\t\"addressCity\": \"Düsseldorf\"\n\t\t}\n\t},\n\t\"values\": {\n                \"depositAmount\":3000,\n                \"rentPrice\":1000,\n                \"scoreValue\":\"520\",\n                \"scoreType\":\"Arvato\",\n                \"transactionID\":\"1234567890\",\n                \"identCheckCode\":\"PPB1\",\n                \"rentStartDate\":\"2021-05-01\",\n                \"objectCo\":\"\",\n                \"objectStreet\":\"bondStr\",\n                \"objectHouseNumber\":\"1\",\n                \"objectPlz\":\"12345\",\n                \"objectCity\":\"Berlendorf\",\n                \"landlordCo\":\"\",\n                \"landlordName\":\"Berlin\",\n                \"landlordFamilyName\":\"Doe\",\n                \"landlordStreet\":\"BigStr\",\n                \"landlordHouseNumber\":\"12\",\n                \"landlordPlz\":\"55555\",\n                \"landlordCity\":\"Heidelburg\",\n                \"landlordEmail\":\"landlord@wealthy.com\",\n                \"deliveryAddress\":\"landlordAddress\",\n                \"deliveryFormat\":\"physical\"\n\t},\n\t\"package\": \"Mietkautionsbuergschaft\",\n    \"addons\": [\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"df3907b6-8ea3-46ed-90fd-e0416deab2af\",\n    \"prettyId\": \"L87RRY\"\n}"}],"_postman_id":"e76e5443-6fb2-445c-8e63-b8b929907d89"},{"name":"Rent Deposit Product 2024","id":"d912f5a5-2104-432c-b395-8704cfcecbcf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-app-key","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"mietkautionsbuergschaft-2024\",\n\t\"customer\": {\n\t\t\"email\": \"john@mail.com\",\n        \"phone\": \"0160124356\",\n\t\t\"firstName\": \"Jxohn\",\n\t  \t\"lastName\": \"Doe\",\n\t\t\"values\": {\n\t    \t\"dateOfBirth\": \"1995-10-10\",\n            \"addressStreet\": \"Talstr.\",\n\t\t\t\"addressHouseNumber\": \"24\",\n\t\t\t\"addressPlz\": \"40217\",\n\t\t\t\"addressCity\": \"Düsseldorf\"\n\t\t}\n\t},\n\t\"values\": {\n                \"depositAmount\":3000,\n                \"rentPrice\":1000,\n                \"scoreValue\":\"520\",\n                \"scoreType\":\"Arvato\",\n                \"transactionID\":\"1234567890\",\n                \"identCheckCode\":\"PPB1\",\n                \"rentStartDate\":\"2024-09-01\",\n                \"policyStartDate\": \"2024-08-15\",\n                \"objectCo\":\"\",\n                \"objectStreet\":\"bondStr\",\n                \"objectHouseNumber\":\"1\",\n                \"objectPlz\":\"12345\",\n                \"objectCity\":\"Berlendorf\",\n                \"landlordCo\":\"\",\n                \"landlordName\":\"Berlin\",\n                \"landlordFamilyName\":\"Doe\",\n                \"landlordStreet\":\"BigStr\",\n                \"landlordHouseNumber\":\"12\",\n                \"landlordPlz\":\"55555\",\n                \"landlordCity\":\"Heidelburg\",\n                \"landlordEmail\":\"landlord@wealthy.com\",\n                \"deliveryAddress\":\"landlordAddress\",\n                \"deliveryFormat\":\"physical\",\n                \"leadSource\":\"heysafe\"\n\t},\n\t\"package\": \"Mietkautionsbuergschaft\",\n    \"addons\": [\n    ]\n}"},"url":"https://api.sandbox.alteos.com/v2/policies","description":"<p>Use this API to create a policy for the Rental Deposit Product</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ProductName</th>\n<th>mietkautionsbuergschaft-2024</th>\n</tr>\n</thead>\n<tbody>\n</tbody>\n</table>\n</div><p>Customer</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>email</td>\n<td>email of the prospective tenant</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>phone number of the prospective tenant</td>\n</tr>\n<tr>\n<td>name</td>\n<td>first and family names of the prospective tenant</td>\n</tr>\n<tr>\n<td>date of birth</td>\n<td>YYYY-MM-DD</td>\n</tr>\n<tr>\n<td>customer address</td>\n<td>Customer co, street, house number, plz, and city, all relate to the previous address of the tenant</td>\n</tr>\n</tbody>\n</table>\n</div><p>Values</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>deposit amount (number)</td>\n<td>deposit amount cannot exceed three times the rent price</td>\n</tr>\n<tr>\n<td>rent price (number)</td>\n<td>monthly rental price.</td>\n</tr>\n<tr>\n<td>scoreValue (string)</td>\n<td>score capturing reliability of tenant</td>\n</tr>\n<tr>\n<td>scoreType</td>\n<td>type or provider of score, eg Arvato</td>\n</tr>\n<tr>\n<td>transaction ID (string)</td>\n<td>unique ID of the transaction</td>\n</tr>\n<tr>\n<td>identCheckCode</td>\n<td>unique ID for the identity check</td>\n</tr>\n<tr>\n<td>rentStartDate</td>\n<td>date from which the tenant begins renting the property, listed as YYYY-MM-DD</td>\n</tr>\n<tr>\n<td>policyStartDate</td>\n<td>date on which the policy will start, minimum +1 day, maximum +3 month  <br />listed as YYYY-MM-DD</td>\n</tr>\n<tr>\n<td>object address</td>\n<td>Object co, street, house number, plz, and city, all relate to the property covered by the deposit</td>\n</tr>\n<tr>\n<td>landlord name, family name</td>\n<td>first and family names of the landlord.</td>\n</tr>\n<tr>\n<td>landlord address</td>\n<td>NON MANDATORY - Landlord co, street, house number, plz, and city, all relate to the address of the landlord</td>\n</tr>\n<tr>\n<td>delivery address</td>\n<td>selection of delivery address for all related documentations sent by post. Can be selected from \"customerAddress\", \"landlordAddress\", and \"insuredObjectAddress\"</td>\n</tr>\n<tr>\n<td>delivery format</td>\n<td>selection of delivery format. \"physical\" (certificate will be posted to customer) or \"digital\"</td>\n</tr>\n<tr>\n<td>lead Source</td>\n<td>Defines on which website the customer started the process.  <br />Can be either \"heysafe\" or \"check24\"</td>\n</tr>\n</tbody>\n</table>\n</div><p>Other</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>package</td>\n<td>\"Mietkautionsbuergschaft\"</td>\n</tr>\n<tr>\n<td>addons</td>\n<td>[ ]</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"6dc882d7-0e07-444c-b165-f67dbbe3c7e3","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-App-Key","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"mietkautionsbuergschaft-2024\",\n\t\"customer\": {\n\t\t\"email\": \"john@mail.com\",\n        \"phone\": \"0160124356\",\n\t\t\"firstName\": \"Jxohn\",\n\t  \t\"lastName\": \"Doe\",\n\t\t\"values\": {\n\t    \t\"dateOfBirth\": \"1995-10-10\",\n            \"addressStreet\": \"Talstr.\",\n\t\t\t\"addressHouseNumber\": \"24\",\n\t\t\t\"addressPlz\": \"40217\",\n\t\t\t\"addressCity\": \"Düsseldorf\"\n\t\t}\n\t},\n\t\"values\": {\n                \"depositAmount\":3000,\n                \"rentPrice\":1000,\n                \"scoreValue\":\"520\",\n                \"scoreType\":\"Arvato\",\n                \"transactionID\":\"1234567890\",\n                \"identCheckCode\":\"PPB1\",\n                \"rentStartDate\":\"2024-09-01\",\n                \"policyStartDate\": \"2024-08-15\",\n                \"objectCo\":\"\",\n                \"objectStreet\":\"bondStr\",\n                \"objectHouseNumber\":\"1\",\n                \"objectPlz\":\"12345\",\n                \"objectCity\":\"Berlendorf\",\n                \"landlordCo\":\"\",\n                \"landlordName\":\"Berlin\",\n                \"landlordFamilyName\":\"Doe\",\n                \"landlordStreet\":\"BigStr\",\n                \"landlordHouseNumber\":\"12\",\n                \"landlordPlz\":\"55555\",\n                \"landlordCity\":\"Heidelburg\",\n                \"landlordEmail\":\"landlord@wealthy.com\",\n                \"deliveryAddress\":\"landlordAddress\",\n                \"deliveryFormat\":\"physical\",\n                \"leadSource\":\"heysafe\"\n\t},\n\t\"package\": \"Mietkautionsbuergschaft\",\n    \"addons\": [\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"df3907b6-8ea3-46ed-90fd-e0416deab2af\",\n    \"prettyId\": \"L87RRY\"\n}"}],"_postman_id":"d912f5a5-2104-432c-b395-8704cfcecbcf"}],"id":"95050dbe-f343-4cf4-a286-1832563d1205","description":"<p>The Policy Creation API is used to create an insurance policy with the quote provided by the Policy Quotation API and additional data from the customer.</p>\n","event":[{"listen":"prerequest","script":{"id":"5902a12b-a0f6-404e-b15b-299adb9e911c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"fabebd98-fdcd-454c-819d-e72234eee890","type":"text/javascript","exec":[""]}}],"_postman_id":"95050dbe-f343-4cf4-a286-1832563d1205"},{"name":"Policy Finalization","item":[{"name":"eBike Product B2B","id":"5a9682ec-1423-4702-ba2f-b56e304203ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n\t\"objects\": [\n\t\t{\n\t\t\t\"name\": \"eBike\",\n\t\t\t\"values\": {\n\t\t\t\t\"serialNumber\": \"42424242\"\n\t\t\t}\t\n\t\t}\n\t],\n\t\"values\": {\n\t\t\"activationDate\": \"2020-12-15\",\n\t\t\"policyEndDate\": \"2021-12-14\"\n\t}\n}"},"url":"https://api.sandbox.alteos.com/v1/policies/:policyId/finalize","description":"<p>Use this API to finalize a policy for the eBike Product.</p>\n<p>The finalization will fail for example in case of: name not provided, serial number containing letters (it's a purely numeric field), activation date not in proper format yyyy-mm-dd, one of serial number/activation date/end date not provided.</p>\n","urlObject":{"path":["v1","policies",":policyId","finalize"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[{"type":"any","value":"{{policyId}}","key":"policyId"}]}},"response":[{"id":"17939a45-7e84-4efa-b02e-d8cbec49f4ff","name":"Successful Finalization","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n\t\"objects\": [\n\t\t{\n\t\t\t\"name\": \"eBike\",\n\t\t\t\"values\": {\n\t\t\t\t\"serialNumber\": \"42424242\"\n\t\t\t}\t\n\t\t}\n\t],\n\t\"values\": {\n\t\t\"activationDate\": \"2020-12-15\"\n\t}\n}"},"url":{"raw":"https://api.sandbox.alteos.com/v1/policies/:policyId/finalize","host":["https://api.sandbox.alteos.com"],"path":["v1","policies",":policyId","finalize"],"variable":[{"key":"policyId","value":"b5063ef5-3940-40f3-b63f-6d497389092e"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"df3907b6-8ea3-46ed-90fd-e0416deab2af\"\n}"},{"id":"81750e13-d70a-47ae-ab4a-815e35188e33","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n\t\"objects\": [\n\t\t{\n\t\t\t\"name\": \"eBike\",\n\t\t\t\"values\": {\n\t\t\t\t\"serialNumber\": \"42424242\"\n\t\t\t}\t\n\t\t}\n\t],\n\t\"values\": {\n\t\t\"activationDate\": \"\"\n\t}\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.sandbox.alteos.com/v1/policies/:policyId/finalize","host":["https://api.sandbox.alteos.com"],"path":["v1","policies",":policyId","finalize"],"variable":[{"key":"policyId","value":"b5063ef5-3940-40f3-b63f-6d497389092e"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"5a9682ec-1423-4702-ba2f-b56e304203ed"}],"id":"5c047aff-b9fc-4187-ad76-e5958cdbe3c1","_postman_id":"5c047aff-b9fc-4187-ad76-e5958cdbe3c1","description":""},{"name":"Policy Payment","item":[{"name":"SEPA Payment","id":"aaec417d-6d9c-4d90-b0b8-252d7fbe7bcf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"payment\": {\n\t\t\"processingType\": \"sepa\",\n\t\t\"firstName\": \"John\",\n\t\t\"lastName\": \"Doe\",\n\t\t\"iban\": \"DE89370400440532013000\"\n\t}\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v1/policies/:policyId/pay","description":"<p>Use this API to perform SEPA payment of a policy. All parameters are mandatory (processing type, first/last name, IBAN).</p>\n<p><em>For German IBANs the format should be DE followed by 20 digits (22 characters in total) e.g. DE11500105171759589988</em></p>\n<p><em><strong>Note: Please use this Test IBAN for sandbox: DE89370400440532013000</strong></em></p>\n<p><em>For Austrian IBANs the format should be AT followed by 18 digits (20 characters in total) e.g. AT596616353631147897</em></p>\n","urlObject":{"path":["v1","policies",":policyId","pay"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[{"type":"string","value":"{{policyId}}","key":"policyId"}]}},"response":[{"id":"f35e052b-067e-45ca-9193-685270f88673","name":"SEPA Payment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"payment\": {\n\t\t\"processingType\": \"sepa\",\n\t\t\"firstName\": \"John\",\n\t\t\"lastName\": \"Doe\",\n\t\t\"iban\": \"DE89370400440532013000\"\n\t}\n}"},"url":{"raw":"https://api.sandbox.alteos.com/v1/policies/:policyId/pay","host":["https://api.sandbox.alteos.com"],"path":["v1","policies",":policyId","pay"],"variable":[{"key":"policyId","value":"{{policyId}}"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"df3907b6-8ea3-46ed-90fd-e0416deab2af\"\n}"}],"_postman_id":"aaec417d-6d9c-4d90-b0b8-252d7fbe7bcf"}],"id":"0831afbc-756f-40ca-8539-edc10d6e0a4c","description":"<p>The Policy Payment API is used to perform the SEPA payment of the insurance policy previously created.</p>\n","event":[{"listen":"prerequest","script":{"id":"4c9b281c-66c9-497c-90fe-30a07b9de426","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4eb7be06-2dcb-402c-ab3b-936c9331ddd1","type":"text/javascript","exec":[""]}}],"_postman_id":"0831afbc-756f-40ca-8539-edc10d6e0a4c"},{"name":"Policy Retrieval","item":[{"name":"Warranty Extension Policy","id":"b2882360-f089-48c6-a29f-81392c776517","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"Content-Type","value":"application/json"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"url":"https://api.sandbox.alteos.com/v1/policies/:policy-id","description":"<p>Use this API retrieve customer and policy data for the specified policy ID associated with the Warranty Extension product.</p>\n","urlObject":{"path":["v1","policies",":policy-id"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[{"type":"string","value":"{{policyId}}","key":"policy-id"}]}},"response":[{"id":"674b204d-9488-421e-b20e-23aa59a3dc7a","name":"Get policy","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"Content-Type","value":"application/json"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"url":{"raw":"https://api.sandbox.alteos.com/v1/policies/:policy-id","host":["https://api.sandbox.alteos.com"],"path":["v1","policies",":policy-id"],"variable":[{"key":"policy-id","value":"c89a74db-7eb6-4f99-92ed-dd9d3722569b"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"c89a74db-7eb6-4f99-92ed-dd9d3722569b\",\n    \"prettyId\": \"9Z5QYK\",\n    \"status\": \"draft\",\n    \"cancellationReason\": null,\n    \"premium\": 8.36,\n    \"tax\": 1.59,\n    \"gross\": 9.95,\n    \"taxes\": {\n        \"salesTax\": {\n            \"tax\": 1.59\n        }\n    },\n    \"values\": {\n        \"duration\": \"12\"\n    },\n    \"objects\": [\n        {\n            \"name\": \"whiteAppliances\",\n            \"risks\": [\n                {\n                    \"name\": \"deviceBreakdown\",\n                    \"values\": {},\n                    \"premium\": 8.36\n                }\n            ],\n            \"values\": {\n                \"ean\": \"3523DFGdf2343\",\n                \"brand\": \"Bosch\",\n                \"itemValue\": \"0-150\",\n                \"purchasedAt\": \"2018-11-30\",\n                \"itemCategory\": \"Backofen\"\n            },\n            \"premium\": 8.36,\n            \"coverageEndsAt\": \"2021-11-29T23:59:59.999Z\",\n            \"coverageStartsAt\": \"2020-11-30T00:00:00.000Z\"\n        }\n    ],\n    \"customer\": {\n        \"type\": \"private\",\n        \"email\": \"test@test.com\",\n        \"values\": {\n            \"lastName\": \"Simpson\",\n            \"firstName\": \"Homer\",\n            \"addressPlz\": \"12345\",\n            \"salutation\": \"Herr\",\n            \"addressCity\": \"Berlin\",\n            \"addressStreet\": \"Hardenbergerstr.\",\n            \"addressHouseNumber\": \"42\"\n        }\n    },\n    \"issuedAt\": null,\n    \"startsAt\": \"2019-02-19T00:00:00.000Z\",\n    \"endsAt\": \"2021-11-29T23:59:59.999Z\",\n    \"cancelledAt\": null\n}"}],"_postman_id":"b2882360-f089-48c6-a29f-81392c776517"},{"name":"Get policy by ID","id":"21e80e34-1ab1-4c49-a6a2-2ac731e10dbd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"Content-Type","value":"application/json"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"url":"https://api.sandbox.alteos.com/v1/policies/:policy-id","description":"<p>Use this API retrieve customer and policy data for the specified policy ID.</p>\n","urlObject":{"path":["v1","policies",":policy-id"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[{"id":"d8297f0d-a921-453c-a68d-6ff53bbd03f1","type":"string","value":"{{policyId}}","key":"policy-id"}]}},"response":[{"id":"a72a911c-47b1-4033-8065-e476018f668c","name":"Get policy","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"Content-Type","value":"application/json"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"url":{"raw":"https://api.sandbox.alteos.com/v1/policies/:policy-id","host":["https://api.sandbox.alteos.com"],"path":["v1","policies",":policy-id"],"variable":[{"key":"policy-id","value":"c89a74db-7eb6-4f99-92ed-dd9d3722569b"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"c89a74db-7eb6-4f99-92ed-dd9d3722569b\",\n    \"prettyId\": \"9Z5QYK\",\n    \"status\": \"draft\",\n    \"cancellationReason\": null,\n    \"premium\": 8.36,\n    \"tax\": 1.59,\n    \"gross\": 9.95,\n    \"taxes\": {\n        \"salesTax\": {\n            \"tax\": 1.59\n        }\n    },\n    \"values\": {\n        \"duration\": \"12\"\n    },\n    \"objects\": [\n        {\n            \"name\": \"whiteAppliances\",\n            \"risks\": [\n                {\n                    \"name\": \"deviceBreakdown\",\n                    \"values\": {},\n                    \"premium\": 8.36\n                }\n            ],\n            \"values\": {\n                \"ean\": \"3523DFGdf2343\",\n                \"brand\": \"Bosch\",\n                \"itemValue\": \"0-150\",\n                \"purchasedAt\": \"2018-11-30\",\n                \"itemCategory\": \"Backofen\"\n            },\n            \"premium\": 8.36,\n            \"coverageEndsAt\": \"2021-11-29T23:59:59.999Z\",\n            \"coverageStartsAt\": \"2020-11-30T00:00:00.000Z\"\n        }\n    ],\n    \"customer\": {\n        \"type\": \"private\",\n        \"email\": \"test@test.com\",\n        \"values\": {\n            \"lastName\": \"Simpson\",\n            \"firstName\": \"Homer\",\n            \"addressPlz\": \"12345\",\n            \"salutation\": \"Herr\",\n            \"addressCity\": \"Berlin\",\n            \"addressStreet\": \"Hardenbergerstr.\",\n            \"addressHouseNumber\": \"42\"\n        }\n    },\n    \"issuedAt\": null,\n    \"startsAt\": \"2019-02-19T00:00:00.000Z\",\n    \"endsAt\": \"2021-11-29T23:59:59.999Z\",\n    \"cancelledAt\": null\n}"}],"_postman_id":"21e80e34-1ab1-4c49-a6a2-2ac731e10dbd"},{"name":"Get policy by multiple pretty IDs","id":"b2c9508b-69ed-452f-a658-7a781002de78","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"Content-Type","value":"application/json"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"url":"https://api.sandbox.alteos.com/v2/policies/by-ids?ids=5WLLLE&ids=48ZU66&limit=10&offset=0","description":"<p>Use this API retrieve customer and policy data for the specified policy ID.</p>\n","urlObject":{"path":["v2","policies","by-ids"],"host":["https://api.sandbox.alteos.com"],"query":[{"key":"ids","value":"5WLLLE"},{"key":"ids","value":"48ZU66"},{"key":"limit","value":"10"},{"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"020955cf-a69a-49af-868a-db9320141a8d","name":"Get policy","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"Content-Type","value":"application/json"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"url":{"raw":"https://api.sandbox.alteos.com/v2/policies/by-ids?ids=48ZU66&ids=5WLLLE&limit=10&offset=0","host":["https://api.sandbox.alteos.com"],"path":["v2","policies","by-ids"],"query":[{"key":"ids","value":"48ZU66"},{"key":"ids","value":"5WLLLE"},{"key":"limit","value":"10"},{"key":"offset","value":"0"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"0728da36-9dae-47d5-bbde-26982e13629f\",\n        \"prettyId\": \"48ZU66\",\n        \"productId\": \"fb008b78-38d5-4e12-b357-17c920ff7a04\",\n        \"status\": \"cancelled\",\n        \"values\": {\n            \"iban\": \"****\",\n            \"commission\": 0.25,\n            \"packageName\": \"L\",\n            \"paymentType\": \"Lastschrift\",\n            \"deckungssumme\": 0,\n            \"insuredEntity\": \"Homer Simpson\",\n            \"paymentSchedule\": \"monthly\",\n            \"policyStartDate\": \"2025-06-06\",\n            \"customerDateOfBirth\": \"1983-01-01\"\n        },\n        \"objects\": [\n            {\n            \"name\": \"haus\",\n            \"risks\": [\n                {\n                \"name\": \"wasserschaeden\",\n                \"values\": {},\n                \"sumInsuredPerContract\": 0\n                },\n                {\n                \"name\": \"feuerschaeden\",\n                \"values\": {},\n                \"sumInsuredPerContract\": 0\n                },\n                {\n                \"name\": \"blitzschaeden\",\n                \"values\": {},\n                \"sumInsuredPerContract\": 0\n                },\n                {\n                \"name\": \"stromausfall\",\n                \"values\": {},\n                \"sumInsuredPerContract\": 0\n                },\n                {\n                \"name\": \"hagelschaeden\",\n                \"values\": {},\n                \"sumInsuredPerContract\": 0\n                },\n                {\n                \"name\": \"sturmschaeden\",\n                \"values\": {},\n                \"sumInsuredPerContract\": 0\n                },\n                {\n                \"name\": \"technischerfehler\",\n                \"values\": {},\n                \"sumInsuredPerContract\": 0\n                },\n                {\n                \"name\": \"ueberspannung\",\n                \"values\": {},\n                \"sumInsuredPerContract\": 0\n                }\n            ],\n            \"values\": {\n                \"zuersZone\": 1,\n                \"sumInsured\": 65000,\n                \"bicycleValue\": 1100,\n                \"bikeBaseline\": 650,\n                \"bikeSumInsured\": 0,\n                \"previousClaims\": false,\n                \"previousInsurer\": \"\",\n                \"insuredObjectPlz\": \"10789\",\n                \"insuredObjectCity\": \"Berlin\",\n                \"insuredObjectType\": \"Einfamilienhaus\",\n                \"insuredObjectStreet\": \"Hohenzollerndamm\",\n                \"insuredObjectSqMeters\": 100,\n                \"previousClaimsQuantity\": 0,\n                \"previousInsuranceNumber\": \"\",\n                \"insuredObjectHouseNumber\": \"3\",\n                \"insuredObjectBauartklasseAccepted\": true\n            },\n            \"coverageEndsAt\": \"2124-06-05T23:59:59.999Z\",\n            \"coverageStartsAt\": \"2025-06-06T00:00:00.000Z\"\n            }\n        ]\n        \"grossPremium\": 10.8,\n        \"premiumPlan\": \"P1M\",\n        \"productName\": \"Hausrat Cologne\"\n    },\n    {\n        \"id\": \"e1075080-329c-47ea-ba70-ea64f11fd859\",\n        \"prettyId\": \"5WLLLE\",\n        \"productId\": \"a7f7c2e7-2e84-4988-b388-a98cbb21f1ab\",\n        \"status\": \"cancelled\",\n        \"values\": {\n            \"salesFlow\": \"default\",\n            \"commission\": 0.2,\n            \"employeeId\": \"\",\n            \"partnerKey\": \"megapolis\",\n            \"packageName\": \"Premiumschutz\",\n            \"partnerCode\": \"\",\n            \"partnerEmail\": \"\",\n            \"partnerPhone\": \"\",\n            \"salesCategory\": \"\",\n            \"numberOfDevices\": \"2\",\n            \"paymentSchedule\": \"annual\",\n            \"policyStartDate\": \"2024-03-01\",\n            \"contractValueTax\": 40.2,\n            \"partnerCodeToName\": \"\",\n            \"contractValueGross\": 251.7,\n            \"healthInsuranceType\": \"public\",\n            \"contractValuePremium\": 211.5\n        },\n        \"objects\": [\n            {\n            \"name\": \"hearingDevice\",\n            \"risks\": [\n                {\n                \"name\": \"diebstahl\",\n                \"values\": {},\n                \"sumInsuredPerYear\": 1000\n                },\n                {\n                \"name\": \"verlust\",\n                \"values\": {},\n                \"sumInsuredPerYear\": 1000\n                },\n                {\n                \"name\": \"elektronikschaeden\",\n                \"values\": {},\n                \"sumInsuredPerYear\": 1000\n                },\n                {\n                \"name\": \"feuchtigkeitsschaeden\",\n                \"values\": {},\n                \"sumInsuredPerYear\": 1000\n                },\n                {\n                \"name\": \"zubehoerschaeden\",\n                \"values\": {},\n                \"sumInsuredPerYear\": 1000\n                },\n                {\n                \"name\": \"bedienungsfehler\",\n                \"values\": {},\n                \"sumInsuredPerYear\": 1000\n                },\n                {\n                \"name\": \"produktionsfehler\",\n                \"values\": {},\n                \"sumInsuredPerYear\": 1000\n                },\n                {\n                \"name\": \"materialfehler\",\n                \"values\": {},\n                \"sumInsuredPerYear\": 1000\n                },\n                {\n                \"name\": \"vorsaetzlBeschaedigungenDurchDritte\",\n                \"values\": {},\n                \"sumInsuredPerYear\": 1000\n                },\n                {\n                \"name\": \"grobeFahrlaessigkeit\",\n                \"values\": {},\n                \"sumInsuredPerYear\": 1000\n                },\n                {\n                \"name\": \"unfall\",\n                \"values\": {},\n                \"sumInsuredPerYear\": 1000\n                }\n            ],\n            \"values\": {\n                \"brand1\": \"asdfsdfd\",\n                \"brand2\": \"asdfsdfd\",\n                \"model1\": \"fsdfdsf\",\n                \"model2\": \"fsdfdsf\",\n                \"itemValue\": \"500.01-1000.00\",\n                \"serialNum1\": \"sdfdsf\",\n                \"serialNum2\": \"sdfsdf\",\n                \"sumInsured\": \"1000.00\",\n                \"purchasedAt\": \"2023-12-08\",\n                \"accessoryBrand1\": \"\",\n                \"accessoryBrand2\": \"\",\n                \"accessoryBrand3\": \"\",\n                \"accessoryModel1\": \"\",\n                \"accessoryModel2\": \"\",\n                \"accessoryModel3\": \"\"\n            },\n            \"coverageEndsAt\": \"2030-02-28T23:59:59.999Z\",\n            \"coverageStartsAt\": \"2024-03-01T00:00:00.000Z\"\n            }\n        ],\n        \"grossPremium\": 41.95,\n        \"premiumPlan\": \"P1Y\",\n        \"productName\": \"HörgeräteSchutz 2023\"\n    }\n]"}],"_postman_id":"b2c9508b-69ed-452f-a658-7a781002de78"},{"name":"Get policy by pretty ID","id":"c41e9c7e-34d8-4806-8ade-7352b56becb5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"Content-Type","value":"application/json"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"url":"https://api.sandbox.alteos.com/v1/policies/:policy-pretty-id","description":"<p>Use this API retrieve policy data for a specified contract ID (pretty ID)</p>\n","urlObject":{"path":["v1","policies",":policy-pretty-id"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[{"type":"any","value":"","key":"policy-pretty-id"}]}},"response":[{"id":"2795e766-bc14-402c-bd99-68c608b78c6a","name":"Get policy","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"Content-Type","value":"application/json"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"url":{"raw":"https://api.sandbox.alteos.com/v1/policies/:policy-id","host":["https://api.sandbox.alteos.com"],"path":["v1","policies",":policy-id"],"variable":[{"key":"policy-id","value":"c89a74db-7eb6-4f99-92ed-dd9d3722569b"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"startsAt\": \"2021-06-03T00:00:00.000Z\",\n    \"endsAt\": \"2026-06-02T23:59:59.999Z\"\n}"}],"_postman_id":"c41e9c7e-34d8-4806-8ade-7352b56becb5"},{"name":"Hausrat Policy","id":"bf373ebd-e22b-4696-aa5e-e0135de85039","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"Content-Type","value":"application/json"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"url":"https://api.sandbox.alteos.com/v1/policies/:policy-id","description":"<p>Use this API retrieve customer and policy data for the specified policy ID associated with the Hausrat Product.</p>\n","urlObject":{"path":["v1","policies",":policy-id"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[{"type":"string","value":"{{policyId}}","key":"policy-id"}]}},"response":[{"id":"4d3d63d4-7e10-4bb1-a315-2304753f8838","name":"Get policy","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"Content-Type","value":"application/json"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"url":{"raw":"https://api.sandbox.alteos.com/v1/policies/:policy-id","host":["https://api.sandbox.alteos.com"],"path":["v1","policies",":policy-id"],"variable":[{"key":"policy-id","value":"cb8b7731-5986-4e9d-8aeb-b60dfd8ca461"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"0a705963-a5a2-4a2f-bf40-366ec5e378b4\",\n    \"prettyId\": \"NU2WW9\",\n    \"productId\": \"0483cf55-f73c-4d2f-b791-fbdb226e0db1\",\n    \"productVersion\": \"v35\",\n    \"partnerId\": \"615acb9e-5632-4554-ae2b-3a21a0ab77eb\",\n    \"customerId\": \"c5493957-df39-45b4-aa81-70b1819ee51b\",\n    \"status\": \"issued\",\n    \"cancellationReason\": null,\n    \"withdrawalReason\": null,\n    \"paymentData\": {\n        \"calculationType\": \"perPeriod\",\n        \"premium\": 56.62,\n        \"taxes\": 9.55,\n        \"gross\": 66.17,\n        \"taxRate\": 0.19,\n        \"premiumExclDiscounts\": 56.62,\n        \"taxesExclDiscounts\": 9.55,\n        \"grossExclDiscounts\": 66.17,\n        \"contractValue\": {\n            \"gross\": 2646.8,\n            \"taxes\": 382,\n            \"premium\": 2264.8\n        }\n    },\n    \"obligationData\": {\n        \"type\": \"periodic\",\n        \"stages\": [\n        ]\n    },\n    \"collectionData\": {\n        \"type\": \"periodic\",\n        \"stages\": [\n        ]\n    },\n    \"invoicingData\": {\n        \"type\": \"periodic\",\n        \"sendToAccountingSoftware\": \"automatically\",\n        \"stages\": [\n        ]\n    },\n    \"cancellationData\": {\n        \"type\": \"free\",\n        \"stages\": []\n    },\n    \"taxes\": [\n        {\n            \"name\": \"insuranceTax\",\n            \"amount\": 9.55\n        }\n    ],\n    \"values\": {\n        \"iban\": \"1234567890123456789012\",\n        \"commission\": 0.21,\n        \"packageName\": \"Platin\",\n        \"paymentType\": \"Lastschrift\",\n        \"glassPremium\": 0,\n        \"selbstbehalt\": \"\",\n        \"deckungssumme\": 10,\n        \"paymentSchedule\": \"quarterly\",\n        \"policyStartDate\": \"2021-08-20\",\n        \"postBikePremium\": 1,\n        \"schedulePayments\": 1,\n        \"vermittlernummer\": \"46757,31452\",\n        \"scheduleSurcharge\": 1,\n        \"starkRegenPremium\": 0,\n        \"customerDateOfBirth\": \"1995-01-01\",\n        \"underinsuranceWaiver\": false,\n        \"elementarSchaedenPremium\": 0\n    },\n    \"objects\": [\n        {\n            \"name\": \"haus\",\n            \"risks\": [\n                {\n                    \"name\": \"wasserschaeden\",\n                    \"values\": {},\n                    \"sumInsuredPerContract\": 0\n                },\n                {\n                    \"name\": \"feuerschaeden\",\n                    \"values\": {},\n                    \"sumInsuredPerContract\": 0\n                },\n                {\n                    \"name\": \"blitzschaeden\",\n                    \"values\": {},\n                    \"sumInsuredPerContract\": 0\n                },\n                {\n                    \"name\": \"stromausfall\",\n                    \"values\": {},\n                    \"sumInsuredPerContract\": 0\n                },\n                {\n                    \"name\": \"hagelschaeden\",\n                    \"values\": {},\n                    \"sumInsuredPerContract\": 0\n                },\n                {\n                    \"name\": \"sturmschaeden\",\n                    \"values\": {},\n                    \"sumInsuredPerContract\": 0\n                },\n                {\n                    \"name\": \"technischerfehler\",\n                    \"values\": {},\n                    \"sumInsuredPerContract\": 0\n                },\n                {\n                    \"name\": \"ueberspannung\",\n                    \"values\": {},\n                    \"sumInsuredPerContract\": 0\n                }\n            ],\n            \"values\": {\n                \"zuersZone\": 2,\n                \"sumInsured\": 65000,\n                \"withCellar\": true,\n                \"bauartklasse\": \"BAK III\",\n                \"bicycleValue\": 3250,\n                \"burglarAlarm\": false,\n                \"ueberspannung\": 10,\n                \"cellarSqMeters\": 10,\n                \"nearbyFireRisk\": false,\n                \"previousClaims\": true,\n                \"previousInsurer\": \"\",\n                \"insuredObjectPlz\": \"10179\",\n                \"propertyOccupied\": true,\n                \"amountOfValuables\": 15,\n                \"insuredObjectCity\": \"Berlin\",\n                \"insuredObjectType\": \"Einfamilienhaus\",\n                \"insuredObjectStreet\": \"streetStr\",\n                \"cellarLivingSqMeters\": 0,\n                \"insuredObjectSqMeters\": 100,\n                \"previousInsuranceDate\": \"\",\n                \"previousClaimsQuantity\": 1,\n                \"previousInsuranceNumber\": \"\",\n                \"insuredObjectHouseNumber\": \"15\",\n                \"differentAddressThanObject\": true,\n                \"previousInsuranceCancelledBy\": \"\",\n                \"previousInsuranceDataAvailable\": false\n            },\n            \"coverageEndsAt\": \"2120-08-19T23:59:59.999Z\",\n            \"coverageStartsAt\": \"2021-08-20T00:00:00.000Z\"\n        }\n    ],\n    \"customer\": {\n        \"type\": \"private\",\n        \"email\": \"test@alteos.com\",\n        \"values\": {\n            \"addressPlz\": \"10179\",\n            \"addressCity\": \"Berlin\",\n            \"dateOfBirth\": \"1995-10-10\",\n            \"addressStreet\": \"Talstr.\",\n            \"addressHouseNumber\": \"24\"\n        },\n        \"lastName\": \"TestSurname\",\n        \"firstName\": \"TestName\"\n    },\n    \"metadata\": {\n        \"transactionId\": \"24343434\"\n    },\n    \"createdBy\": \"3a92550c-c200-4bd3-9c11-adb7143494b2\",\n    \"issuedAt\": \"2021-11-15T14:44:40.879Z\",\n    \"boundAt\": null,\n    \"startsAt\": \"2021-08-20T00:00:00.000Z\",\n    \"endsAt\": \"2120-08-19T23:59:59.999Z\",\n    \"cancelledAt\": null,\n    \"expiredAt\": null,\n    \"cancellationRequestedAt\": null,\n    \"effectiveAt\": null,\n    \"effectiveRequestedAt\": null,\n    \"withdrawnAt\": null,\n    \"withdrawalRequestedAt\": null,\n    \"testingFlags\": [],\n    \"addons\": [\n        {\n            \"tax\": 3.31,\n            \"name\": \"fahrradDiebstahl\",\n            \"gross\": 23.79,\n            \"premium\": 20.48,\n            \"payments\": []\n        },\n        {\n            \"tax\": 1.46,\n            \"name\": \"glasversicherung\",\n            \"gross\": 9.16,\n            \"premium\": 7.7,\n            \"payments\": []\n        },\n        {\n            \"tax\": 1.25,\n            \"name\": \"elementarschaeden\",\n            \"gross\": 7.81,\n            \"premium\": 6.56,\n            \"payments\": []\n        },\n        {\n            \"tax\": 0,\n            \"name\": \"ueberschwemmungDurchStarkregen\",\n            \"gross\": 0,\n            \"premium\": 0,\n            \"payments\": []\n        }\n    ],\n    \"package\": {\n        \"tax\": 3.53,\n        \"name\": \"Platin\",\n        \"gross\": 25.41,\n        \"premium\": 21.88,\n        \"payments\": []\n    }\n}"}],"_postman_id":"bf373ebd-e22b-4696-aa5e-e0135de85039"},{"name":"Get policy status","id":"3affe51e-18ba-43c9-97de-9cb7a3509c7b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{authorizationHeader}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"url":"https://api.sandbox.alteos.com/v2/policies/:policy-id/status","description":"<p>Use this API to retrieve the policy status and the related transactions for the specified policy ID. This only works for policies that are not in \"draft\" status.</p>\n","urlObject":{"path":["v2","policies",":policy-id","status"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[{"type":"any","value":"FQL4V7","key":"policy-id"}]}},"response":[{"id":"be1391a9-ebd8-4d7d-9a77-53a592f7f073","name":"Get policy status","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{authorizationHeader}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"url":{"raw":"https://api.sandbox.alteos.com/v2/policies/:policy-id/status","host":["https://api.sandbox.alteos.com"],"path":["v2","policies",":policy-id","status"],"variable":[{"key":"policy-id","value":"FQL4V7"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"status\": \"issued\",\n    \"policyTransactions\": [\n        {\n            \"transactionId\": \"c_ipo_NlA0_pZGego8a8Tv9\",\n            \"effectiveFrom\": \"2025-05-23T00:00:00.000Z\",\n            \"description\": \"Alteos - audibene RundumSorglos - Vertrag Nr. DP8DZW - Victor Walter - Invoice\",\n            \"status\": \"completed\",\n            \"type\": \"payment\",\n            \"premium\": 25210,\n            \"tax\": 4790,\n            \"gross\": 30000\n        }\n    ]\n}"}],"_postman_id":"3affe51e-18ba-43c9-97de-9cb7a3509c7b"}],"id":"cf0c1ace-5408-4f9b-9ee7-847b549de244","description":"<p>The Policy Retrieval API is used to retrieve customer and policy data for the specificed policy ID.</p>\n","event":[{"listen":"prerequest","script":{"id":"14ed6705-31f4-408e-bd22-67975c3e4c3a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"dd72846b-cdb2-4767-97ec-05bdd614c94e","type":"text/javascript","exec":[""]}}],"_postman_id":"cf0c1ace-5408-4f9b-9ee7-847b549de244"},{"name":"Policy Management","item":[{"name":"E-Bike B2B","item":[{"name":"Policy Update","id":"22077046-0c6a-4111-a40a-96add2f17c1b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{authorizationHeader}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"customer\": {\n    \"email\": \"example12@example.com\",\n    \"firstName\": \"John\",\n    \"lastName\": \"Doe\",\n    \"values\": {\n      \"addressPlz\": \"3050\",\n      \"addressCity\": \"Wien\",\n      \"companyName\": \"LeaseMyBike\",\n      \"addressStreet\": \"Hardenbergerstr.\",\n      \"addressHouseNumber\": \"32\"\n    }\n  },\n  \"effectiveAt\": \"2025-01-27\",\n  \"effectiveRequestedAt\": \"2025-01-27\",\n  \"metadata\": {},\n  \"objects\": [\n    {\n      \"name\": \"ebike\",\n      \"values\": {\n        \"brand\": \"NNN\",\n        \"model\": \"CXZ\",\n        \"price\": 4948.56,\n        \"sumInsured\": 5385.78,\n        \"frameNumber\": \"AV1111111\",\n        \"purchasedAt\": \"11.08.2024\",\n        \"vehicleType\": \"Fahrrad\"\n      },\n      \"risks\": [\n       \n      ]\n    }\n  ],\n  \"updateReason\": \"damagedLicensePlate\",\n  \"values\": {\n    \"plan\": \"Leasingbike insurance\",\n    \"duration\": 4,\n    \"commission\": 0.25,\n    \"durationId\": 1,\n    \"leaseNumber\": \"L11C11111\",\n    \"bikeUserEmail\": \"test@email.com\",\n    \"policyEndDate\": \"2027-08-27\",\n    \"paymentSchedule\": \"monatlich / monthly\",\n    \"policyStartDate\": \"2025-01-20\",\n    \"insuredPersonName\": \"Beispiel AG\",\n    \"insuredPersonEmail\": \"abc@gmail.com\",\n    \"bikeUserFamilyName\": \"Tester\",\n    \"insuredPersonAddressCity\": \"Wien\",\n    \"insuredPersonAddressCountry\": \"Austria\",\n    \"insuredPersonAddressPostalCode\": \"1234\",\n    \"insuredPersonAddressHouseNumber\": \"Wien 1\",\n    \"premium\": \"23\"\n  }\n}"},"url":"https://api.sandbox.alteos.com/v1/policies/:policyId/update","description":"<p>Use the Policy Update API to update data within an existing policy. The policy can be updated using pretty id or uuid</p>\n","urlObject":{"path":["v1","policies",":policyId","update"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[{"description":{"content":"<p>Policy pretty Id for example S5Z4B7 or UUID</p>\n","type":"text/plain"},"type":"string","value":"{{policyId}}","key":"policyId"}]}},"response":[{"id":"b73a6e6f-e2f7-4ae0-aa58-c77ee15516cc","name":"Update: Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{authorizationHeader}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"leasemybike\",\n    \"customer\": {\n        \"email\": \"test@gmail.com\",\n        \"firstName\": \"John\",\n        \"lastName\": \"Doe\",\n        \"values\": {\n            \"addressStreet\": \"Hardenbergerstr.\",\n            \"addressHouseNumber\": \"32\",\n            \"addressPlz\": \"3050\",\n            \"addressCity\": \"Wien\",\n            \"companyName\": \"LeaseMyBike\"\n        }\n    },\n    \"values\": {\n        \"premium\": \"24.9\",\n        \"policyStartDate\": \"2025-01-17T00:00:00.000Z\",\n        \"policyEndDate\": \"2027-01-17T00:00:00.000Z\",\n        \"purchasedAt\": \"11.08.2024\",\n        \"brand\": \"MMM\",\n        \"vehicleType\": \"Fahrrad\",\n        \"frameNumber\": \"AV1111111\",\n        \"model\": \"xyz\",\n        \"leaseNumber\": \"L11C11111\",\n        \"insuredPersonAddressHouseNumber\": \"Wien 1\",\n        \"insuredPersonName\": \"Wien 1\",\n        \"insuredPersonEmail\": \"test1@gmail.com\",\n        \"insuredPersonAddressCity\": \"Wien\",\n        \"insuredPersonAddressPostalCode\": \"1234\",\n        \"insuredPersonAddressCountry\": \"Austria\",\n        \"price\": 4948.56,\n        \"sumInsured\": 5385.78,\n        \"duration\": 4,\n        \"durationId\": 1,\n        \"plan\": \"Leasingbike insurance\",\n        \"bikeUserEmail\": \"test2@email.com\",\n        \"bikeUserFirstName\": \"Tina\",\n        \"bikeUserFamilyName\": \"Tester\"\n    },\n    \"package\": \"Premium24\",\n    \"addons\": []\n}"},"url":{"raw":"https://api.sandbox.alteos.com/v1/policies/:policyId/update","host":["https://api.sandbox.alteos.com"],"path":["v1","policies",":policyId","update"],"variable":[{"key":"policyId","value":"S5Z4B7","type":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"b5063ef5-3940-40f3-b63f-6d497389092e\"\n}"},{"id":"27884a4e-bbf0-4fd0-af66-b28d72a0eb4d","name":"Product Update: Error","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{authorizationHeader}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"leasemybike\",\n    \"customer\": {\n        \"email\": \"test@gmail.com\",\n        \"firstName\": \"John\",\n        \"lastName\": \"Doe\",\n        \"values\": {\n            \"addressStreet\": \"Hardenbergerstr.\",\n            \"addressHouseNumber\": \"32\",\n            \"addressPlz\": \"3050\",\n            \"addressCity\": \"Wien\",\n            \"companyName\": \"LeaseMyBike\"\n        }\n    },\n    \"values\": {\n        \"premium\": \"24.9\",\n        \"policyStartDate\": \"2025-01-17T00:00:00.000Z\",\n        \"policyEndDate\": \"2027-01-17T00:00:00.000Z\",\n        \"purchasedAt\": \"11.08.2024\",\n        \"brand\": \"MMM\",\n        \"vehicleType\": \"Fahrrad\",\n        \"frameNumber\": \"AV1111111\",\n        \"model\": \"xyz\",\n        \"leaseNumber\": \"L11C11111\",\n        \"insuredPersonAddressHouseNumber\": \"Wien 1\",\n        \"insuredPersonName\": \"Wien 1\",\n        \"insuredPersonEmail\": \"test1@gmail.com\",\n        \"insuredPersonAddressCity\": \"Wien\",\n        \"insuredPersonAddressPostalCode\": \"1234\",\n        \"insuredPersonAddressCountry\": \"Austria\",\n        \"price\": 4948.56,\n        \"sumInsured\": 5385.78,\n        \"duration\": 4,\n        \"durationId\": 1,\n        \"plan\": \"Leasingbike insurance\",\n        \"bikeUserEmail\": \"test2@email.com\",\n        \"bikeUserFirstName\": \"Tina\",\n        \"bikeUserFamilyName\": \"Tester\"\n    },\n    \"package\": \"Premium24\",\n    \"addons\": []\n}"},"url":{"raw":"https://api.sandbox.alteos.com/v1/policies/:policyId/update","host":["https://api.sandbox.alteos.com"],"path":["v1","policies",":policyId","update"],"variable":[{"key":"policyId","value":"S5Z4B7","type":"string"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Next fields cannot be updated: policyStartDate\"\n}"}],"_postman_id":"22077046-0c6a-4111-a40a-96add2f17c1b"},{"name":"Policy Cancellation","id":"085c6ae1-7976-47f2-add5-f66cd15c34ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"ruleCode\": \"exp02\",\n    \"initiator\": \"insurer\",\n    \"requestedAt\": \"2025-03-04\",\n    \"effectiveAtFinal\": \"2025-03-04\",\n    \"extraInput\": {}\n}"},"url":"https://api.sandbox.alteos.com/v2/policies/:policy-Id/termination","description":"<p>Use the Policy Termination API to cancel a specified existing policy.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ruleCode</td>\n<td>required string with value: <code>exp02</code></td>\n</tr>\n<tr>\n<td>initiator</td>\n<td>required string with value: <code>insurer</code></td>\n</tr>\n<tr>\n<td>requestedAt</td>\n<td>required date with format: <code>YYYY-MM-DD</code></td>\n</tr>\n<tr>\n<td>effectiveAtFinal</td>\n<td>required date with format: <code>YYYY-MM-DD</code>  <br />For <strong>refund</strong> calculation  <br />For <strong>cancellation</strong> of the policies in the <strong>future</strong> date, the <strong>scheduled actions</strong> will be created and will be triggered on the <strong>exact</strong> date of cancellation (i-e <em><strong>effectiveAtFinal</strong></em>).</td>\n</tr>\n<tr>\n<td>extraInput</td>\n<td>required object with empty value: <code>{}</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies",":policy-Id","termination"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[{"description":{"content":"<p>Policy Pretty Id for example SBD6FU</p>\n","type":"text/plain"},"type":"string","value":"{{policyId}}","key":"policy-Id"}]}},"response":[{"id":"b220d4cb-65e0-4dc1-b77f-330f53f72848","name":"Policy Cancellation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{AlteosAccessTokenType}} {{AlteosAccessToken}}"},{"key":"X-App-Key","value":"{{AlteosAppKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"ruleCode\": \"exp02\",\n    \"initiator\": \"insurer\",\n    \"requestedAt\": \"2025-03-04\",\n    \"effectiveAtFinal\": \"2025-03-04\",\n    \"extraInput\": {}\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.sandbox.alteos.com/v2/policies/:policy-Id/termination","protocol":"https","host":["api","sandbox","alteos","com"],"path":["v2","policies",":policy-Id","termination"],"variable":[{"key":"policy-Id","value":"SBD6FU"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""}],"_postman_id":"085c6ae1-7976-47f2-add5-f66cd15c34ec"},{"name":"Policy Withdrawal","id":"dff693ae-c823-4ef4-bb9a-27a04cfc7fed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"ruleCode\": \"wth04\",\n\t\"initiator\": \"policyholder\",\n\t\"requestedAt\": \"2025-03-04\",\n    \"effectiveAtFinal\": \"2025-03-05\",\n    \"extraInput\": {}\n}\n"},"url":"https://api.sandbox.alteos.com/v2/policies/:policy-Id/termination","description":"<p>Use the Policy Termination API to withdraw a specified existing policy.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ruleCode</td>\n<td>required string with value: <code>wth04</code></td>\n</tr>\n<tr>\n<td>initiator</td>\n<td>required string with value: <code>policyholder</code></td>\n</tr>\n<tr>\n<td>requestedAt</td>\n<td>required date with format: <code>YYYY-MM-DD</code></td>\n</tr>\n<tr>\n<td>effectiveAtFinal</td>\n<td>required date with format: <code>YYYY-MM-DD</code>  <br /><strong>Full refund</strong>: policy start date  <br /><strong>Pro-rata</strong>: withdrawal date  <br />For withdrawal of the policies in the <strong>future</strong> date, the <strong>scheduled actions</strong> will be created and will be triggered on the exact date of withdrawal (i-e <em><strong>effectiveAtFinal</strong></em>).</td>\n</tr>\n<tr>\n<td>extraInput</td>\n<td>required object with empty value: <code>{}</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies",":policy-Id","termination"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[{"description":{"content":"<p>policy pretty id for example SBD6FU Or UUID</p>\n","type":"text/plain"},"type":"string","value":"{{policyId}}","key":"policy-Id"}]}},"response":[{"id":"f16bf4f9-5593-4099-8d85-b8ba51d2694f","name":"Policy Withdrawal LeaseMyBike","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{AlteosAccessTokenType}} {{AlteosAccessToken}}"},{"key":"X-App-Key","value":"{{AlteosAppKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"ruleCode\": \"wth04\",\n\t\"initiator\": \"policyholder\",\n\t\"requestedAt\": \"2025-03-04\",\n    \"effectiveAtFinal\": \"2025-03-05\",\n    \"extraInput\": {}\n}\n","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.sandbox.alteos.com/v2/policies/:policy-Id/termination","host":["https://api.sandbox.alteos.com"],"path":["v2","policies",":policy-Id","termination"],"variable":[{"key":"policy-Id","value":"SBD6FU"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""}],"_postman_id":"dff693ae-c823-4ef4-bb9a-27a04cfc7fed"}],"id":"9414c234-2249-453b-91e7-653db0368b99","description":"<p>These endpoints covers the policy update, cancellation and withdrawals related to the (E-)Bike products</p>\n","_postman_id":"9414c234-2249-453b-91e7-653db0368b99"},{"name":"Search for policies","id":"f5f8ed70-880f-4ca0-aad4-2962d768891f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"{{authorizationHeader}}"},{"key":"Content-Type","type":"text","value":"application/json"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"url":"https://api.sandbox.alteos.com/v1/policies/search?filter={\"query\": \"john\"}","description":"<p>Use the Policy Search API to retrieve policies based on the following filter criteria.  </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Filter Criteria</th>\n<th>Queried Fields</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>query</td>\n<td>first name, last name, email, plz, phone, license plate number, vin</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>phone</td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>first name</td>\n</tr>\n<tr>\n<td>lastName</td>\n<td>last name</td>\n</tr>\n<tr>\n<td>email</td>\n<td>email</td>\n</tr>\n<tr>\n<td>addressPlz</td>\n<td>plz</td>\n</tr>\n<tr>\n<td>metadata.fieldName</td>\n<td>serialNumber, userId</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","policies","search"],"host":["https://api.sandbox.alteos.com"],"query":[{"key":"filter","value":"{\"query\": \"john\"}"},{"disabled":true,"key":"offset","value":"0"},{"disabled":true,"key":"limit","value":"0"}],"variable":[]}},"response":[{"id":"0d3fd6eb-8858-43c4-bdef-530260b9e7df","name":"Search to retrieve full policy payload: No match","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"{{authorizationHeader}}"},{"key":"Content-Type","type":"text","value":"application/json"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"url":{"raw":"https://api.sandbox.alteos.com/v1/policies/search?filter={\"query\": \"john\"}","host":["https://api.sandbox.alteos.com"],"path":["v1","policies","search"],"query":[{"key":"filter","value":"{\"query\": \"john\"}"},{"key":"offset","value":"0","disabled":true},{"key":"limit","value":"0","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"matches\": [],\n    \"pagination\": {\n        \"total\": 0,\n        \"offset\": 0,\n        \"limit\": 20\n    },\n    \"query\": {\n        \"filter\": {},\n        \"sortField\": \"createdAt\",\n        \"order\": \"DESC\"\n    }\n}"},{"id":"5d593e9c-0d05-4246-9ebf-23e01cdfd9e0","name":"Search to retrieve full policy payload: Match","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{authorizationHeader}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"url":{"raw":"https://api.sandbox.alteos.com/v1/policies/search?filter={\"phone\": \"49123456789\"}","host":["https://api.sandbox.alteos.com"],"path":["v1","policies","search"],"query":[{"key":"filter","value":"{\"phone\": \"49123456789\"}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"matches\": [\n        {\n            \"id\": \"834ca946-0fdd-4840-8b57-632e7233498e\",\n            \"prettyId\": \"9X3Z25\",\n            \"status\": \"issued\",\n            \"cancellationReason\": null,\n            \"premium\": 89.96,\n            \"tax\": 17.09,\n            \"customer\": {\n                \"email\": \"username@username.com\",\n                \"values\": {\n                    \"phone\": \"49123456789\",\n                    \"lastName\": \"Doe\",\n                    \"firstName\": \"John\",\n                    \"addressPlz\": \"12345\",\n                    \"salutation\": \"Herr\",\n                    \"addressCity\": \"Berlin\",\n                    \"addressStreet\": \"Hardenbergerstr.\",\n                    \"addressHouseNumber\": \"42\"\n                }\n            },\n            \"issuedAt\": \"2019-02-21T10:25:09.439Z\",\n            \"startsAt\": \"2019-02-21T00:00:00.000Z\",\n            \"endsAt\": \"2022-02-20T23:59:59.999Z\",\n            \"metadata\": {}\n        }\n    ],\n    \"pagination\": {\n        \"total\": 1,\n        \"offset\": 0,\n        \"limit\": 20\n    },\n    \"query\": {\n        \"filter\": {},\n        \"sortField\": \"createdAt\",\n        \"order\": \"DESC\"\n    }\n}"}],"_postman_id":"f5f8ed70-880f-4ca0-aad4-2962d768891f"},{"name":"Get Policy Documents","id":"98bc584f-d6fd-4577-a37a-8b49ffa9a8d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"{{authorizationHeader}}"},{"key":"Content-Type","type":"text","value":"application/json"},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"url":"https://api.sandbox.alteos.com/v1/policies/:policyId/documents","description":"<p>Use the Document API to retrieve all documents for a specified policy ID.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>download name of the generated document</td>\n</tr>\n<tr>\n<td>type</td>\n<td>describes the type of document based on its content and legal purpose (e.g. Versicherungsschein, AVB)</td>\n</tr>\n<tr>\n<td>format</td>\n<td>format of the document; can be \"pdf\" or \"txt\"</td>\n</tr>\n<tr>\n<td>mimeType</td>\n<td>label used to identify the type of data; can be \"application/pdf\" or \"text/plain\"</td>\n</tr>\n<tr>\n<td>purpose</td>\n<td>the value is always \"insurance\" as the document is part of the insurance contract</td>\n</tr>\n<tr>\n<td>category</td>\n<td>currently the value is \"null\" - field is not relevant</td>\n</tr>\n<tr>\n<td>url</td>\n<td>url under which the document is hosted</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","policies",":policyId","documents"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[{"type":"string","value":"{{policyId}","key":"policyId"}]}},"response":[{"id":"c3c3cb20-a773-4b8f-987a-e47a80fdca6d","name":"Get Policy Documents","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"{{authorizationHeader}}"},{"key":"Content-Type","type":"text","value":"application/json"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"url":{"raw":"https://api.sandbox.alteos.com/v1/policies/:policyId/documents","host":["https://api.sandbox.alteos.com"],"path":["v1","policies",":policyId","documents"],"variable":[{"key":"policyId","value":"b5063ef5-3940-40f3-b63f-6d497389092e"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"Doc_name.pdf\",\n        \"type\": \"example_type\",\n        \"format\": \"pdf\",\n        \"mimeType\": \"application/pdf\",\n        \"purpose\": \"insurance\",\n        \"category\": null,\n        \"url\": \"Url_to_the_document\"\n    }\n]"}],"_postman_id":"98bc584f-d6fd-4577-a37a-8b49ffa9a8d4"},{"name":"Update policy","id":"b00ac139-e3ff-4138-858d-f2768c2f7d69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"{{authorizationHeader}}"},{"key":"Content-Type","type":"text","value":"application/json"},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"updateReason\": \"customerRequest\",\n    \"customer\": {\n        \"email\": \"username@username.com\",\n        \"phone\": \"49123456729\",\n        \"firstName\": \"John\",\n        \"lastName\": \"Doe\",\n        \"values\": {\n            \"addressStreet\": \"Hardenbergerstr.\",\n            \"addressHouseNumber\": \"32\",\n            \"addressPlz\": \"10623\",\n            \"addressCity\": \"Berlin\",\n            \"companyName\": \"Test GmbH\"\n        }\n    },\n    \"values\": {\n        \"policyStartDate\": \"2019-09-23\"\n    },\n    \"objects\": [\n        {\n            \"name\": \"thirdParty\",\n            \"values\": {\n                \"vin\": \"TESTZ1234572\",\n                \"licenseNumber\": \"501PNN\",\n                \"model\": \"TEST\"\n            },\n            \"risks\": [\n                {\n                    \"name\": \"thirdPartyLiability\",\n                    \"values\": {}\n                }\n            ]\n        }\n    ],\n    \"effectiveAt\": \"2019-11-06\"\n}"},"url":"https://api.sandbox.alteos.com/v1/policies/:policyId/update","description":"<p>Use the Policy Update API to update data within an existing policy. Insurance documents that contain the updated data will be regenerated for data consistency.</p>\n","urlObject":{"path":["v1","policies",":policyId","update"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[{"type":"string","value":"{{policyId}}","key":"policyId"}]}},"response":[{"id":"b6355101-31d1-4010-a21a-178171020d58","name":"eScooter Private Liability Product Update: Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"{{authorizationHeader}}"},{"key":"Content-Type","type":"text","value":"application/json"},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"updateReason\": \"customerRequest\",\n    \"customer\": {\n        \"email\": \"username@username.com\",\n        \"phone\": \"49123456729\",\n        \"firstName\": \"John\",\n        \"lastName\": \"Doe\",\n        \"values\": {\n            \"addressStreet\": \"Hardenbergerstr.\",\n            \"addressHouseNumber\": \"32\",\n            \"addressPlz\": \"10623\",\n            \"addressCity\": \"Berlin\",\n            \"companyName\": \"Test GmbH\"\n        }\n    },\n    \"values\": {\n        \"policyStartDate\": \"2019-09-23\"\n    },\n    \"objects\": [\n        {\n            \"name\": \"thirdParty\",\n            \"values\": {\n                \"vin\": \"TESTZ1234572\",\n                \"licenseNumber\": \"501PNN\",\n                \"model\": \"TEST\"\n            },\n            \"risks\": [\n                {\n                    \"name\": \"thirdPartyLiability\",\n                    \"values\": {}\n                }\n            ]\n        }\n    ],\n    \"effectiveAt\": \"2019-11-06\"\n}"},"url":{"raw":"https://api.sandbox.alteos.com/v1/policies/:policyId/update","host":["https://api.sandbox.alteos.com"],"path":["v1","policies",":policyId","update"],"variable":[{"key":"policyId","type":"string","value":"b5063ef5-3940-40f3-b63f-6d497389092e"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"b5063ef5-3940-40f3-b63f-6d497389092e\"\n}"},{"id":"d7311732-2ddc-4c66-b300-9f40cb7fd1b9","name":"eScooter Private Liability Product Update: Error ","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"{{authorizationHeader}}"},{"key":"Content-Type","type":"text","value":"application/json"},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"updateReason\": \"customerRequest\",\n    \"customer\": {\n        \"email\": \"username@username.com\",\n        \"phone\": \"49123456729\",\n        \"firstName\": \"John\",\n        \"lastName\": \"Doe\",\n        \"values\": {\n            \"addressStreet\": \"Hardenbergerstr.\",\n            \"addressHouseNumber\": \"32\",\n            \"addressPlz\": \"10623\",\n            \"addressCity\": \"Berlin\",\n            \"companyName\": \"Test GmbH\"\n        }\n    },\n    \"values\": {\n        \"policyStartDate\": \"2019-11-23\"\n    },\n    \"objects\": [\n        {\n            \"name\": \"thirdParty\",\n            \"values\": {\n                \"vin\": \"TESTZ1234572\",\n                \"licenseNumber\": \"501PNN\",\n                \"model\": \"TEST\"\n            },\n            \"risks\": [\n                {\n                    \"name\": \"thirdPartyLiability\",\n                    \"values\": {}\n                }\n            ]\n        }\n    ],\n    \"effectiveAt\": \"2019-11-06\"\n}"},"url":{"raw":"https://api.sandbox.alteos.com/v1/policies/:policyId/update","host":["https://api.sandbox.alteos.com"],"path":["v1","policies",":policyId","update"],"variable":[{"key":"policyId","value":"b5063ef5-3940-40f3-b63f-6d497389092e","type":"string"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Next fields cannot be updated: policyStartDate\"\n}"}],"_postman_id":"b00ac139-e3ff-4138-858d-f2768c2f7d69"},{"name":"Update policy Leasing Product B2B2C 2024 NO SEPA","id":"28abef5e-6602-42a8-b86d-00d7f07ba685","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{authorizationHeader}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"updateReason\": \"initialDataDiscrepancy\",\n    \"customer\": {\n        \"email\": \"username@username.com\",\n        \"phone\": \"49123456725\",\n        \"firstName\": \"John\",\n        \"lastName\": \"Doe\",\n        \"values\": {\n            \"addressStreet\": \"Hardenbergerstr.\",\n            \"addressHouseNumber\": \"32\",\n            \"addressPlz\": \"10623\",\n            \"addressCity\": \"Berlin\",\n            \"companyName\": \"Test GmbH\"\n        }\n    },\n    \"values\": {\n        \"policyStartDate\": \"2024-12-18\",\n        \"insuredPersonName\": \"ttest\",\n        \"insuredPersonFamilyName\": \"test\",\n        \"insuredPersonEmail\": \"test@alteos.com\",\n        \"bikeUserFirstName\": \"ttest\",\n        \"bikeUserFamilyName\": \"test\",\n        \"bikeUserEmail\": \"test@alteos.com\",\n        \"noSEPA\": true\n    },\n    \"objects\": [\n        {\n            \"name\": \"ebike\",\n            \"values\": {\n                \"lockModel\": \"123\",\n                \"lockPrice\": 12,\n                \"hasEligibleLock\": true,\n                \"price\": 1000,\n                \"frameNumber\": \"23\",\n                \"type\": \"E-Bike\",\n                \"brand\": \"3GBikes\",\n                \"model\": \"testModel\"\n            },\n            \"risks\": [\n                {\n                    \"name\": \"schlossDiebstahl\",\n                    \"values\": {}\n                }\n            ]\n        }\n    ],\n    \"effectiveAt\": \"2024-12-18\"\n}"},"url":"https://api.sandbox.alteos.com/v1/policies/:policyId/update","description":"<p>Use the Policy Update API to update data within an existing policy. Insurance documents that contain the updated data will be regenerated for data consistency.</p>\n","urlObject":{"path":["v1","policies",":policyId","update"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[{"type":"string","value":"{{policyId}}","key":"policyId"}]}},"response":[{"id":"56a59f85-8e85-4d55-a060-f82820b5185d","name":"Leasing Product B2B2C 2024 NO SEPA Update: Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{authorizationHeader}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"updateReason\": \"initialDataDiscrepancy\",\n    \"customer\": {\n        \"email\": \"username@username.com\",\n        \"phone\": \"49123456725\",\n        \"firstName\": \"John\",\n        \"lastName\": \"Doe\",\n        \"values\": {\n            \"addressStreet\": \"Hardenbergerstr.\",\n            \"addressHouseNumber\": \"32\",\n            \"addressPlz\": \"10623\",\n            \"addressCity\": \"Berlin\",\n            \"companyName\": \"Test GmbH\"\n        }\n    },\n    \"values\": {\n        \"policyStartDate\": \"2024-12-18\",\n        \"insuredPersonName\": \"ttest\",\n        \"insuredPersonFamilyName\": \"test\",\n        \"insuredPersonEmail\": \"test@alteos.com\",\n        \"bikeUserFirstName\": \"ttest\",\n        \"bikeUserFamilyName\": \"test\",\n        \"bikeUserEmail\": \"test@alteos.com\",\n        \"noSEPA\": true\n\n    },\n    \"objects\": [\n        {\n            \"name\": \"ebike\",\n            \"values\": {\n                \"lockModel\": \"123\",\n                \"lockPrice\": 12,\n                \"hasEligibleLock\": true,\n                \"price\": 1000,\n                \"frameNumber\": \"23\",\n                \"type\": \"E-Bike\",\n                \"brand\": \"3GBikes\",\n                \"model\": \"testModel\"\n            },\n            \"risks\": [\n                {\n                    \"name\": \"schlossDiebstahl\",\n                    \"values\": {}\n                }\n            ]\n        }\n    ],\n    \"effectiveAt\": \"2024-12-18\"\n}"},"url":{"raw":"https://api.sandbox.alteos.com/v1/policies/:policyId/update","host":["https://api.sandbox.alteos.com"],"path":["v1","policies",":policyId","update"],"variable":[{"key":"policyId","value":"b5063ef5-3940-40f3-b63f-6d497389092e","type":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"b5063ef5-3940-40f3-b63f-6d497389092e\"\n}"}],"_postman_id":"28abef5e-6602-42a8-b86d-00d7f07ba685"},{"name":"Update policy eBike Product B2C","id":"cf621d17-3b6d-4dd3-bd37-620c0b991894","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"{{authorizationHeader}}"},{"key":"Content-Type","type":"text","value":"application/json"},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"updateReason\": \"customerRequest\",\n    \"customer\": {\n        \"email\": \"username@username.com\",\n        \"phone\": \"49123456729\",\n        \"firstName\": \"John\",\n        \"lastName\": \"Doe\",\n        \"values\": {\n            \"dateOfBirth\": \"1999-01-02\",\n            \"addressStreet\": \"Hardenbergerstr.\",\n            \"addressHouseNumber\": \"32\",\n            \"addressPlz\": \"10623\",\n            \"addressCity\": \"Berlin\",\n            \"companyName\": \"Test GmbH\"\n        }\n    },\n    \"values\": {\n        \"policyStartDate\": \"2019-09-23\",\n        \"plan\": \"schadenschutz\",\n        \"paymentSchedule\": \"yearly\"\n    },\n    \"objects\": [\n\t\t{\n\t\t\t\"name\": \"ebike\",\n\t\t\t\"values\": {\n\t\t\t\t\"price\": \"1000.01-1500.00\",\n                \"purchasedAt\":\"2020-08-20\",\n                \"brand\": \"Batavus\",\n\t\t\t\t\"frameNumber\": \"1245311\",\n\t\t\t\t\"batteryNumber\": \"124245311\",\n\t\t\t\t\"type\": \"Mountainbike\",\n\t\t\t\t\"lockModel\": \"Abus ab 45 € Verkaufspreis\",\n                \"gpsTracking\": false,\n                \"batteryWear\": false,\n                \"mobilityGuarantee\": false,\n                \"individualPartsWear\": false\n            },\n\t\t\t\"risks\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"allRisks\",\n\t\t\t\t\t\"values\": {}\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t],\n    \"metadata\": {},\n    \"effectiveAt\": \"2020-09-22\",\n    \"effectiveRequestedAt\": \"2020-09-22\"\n}"},"url":"https://api.sandbox.alteos.com/v1/policies/:policyId/update","description":"<p>Use the Policy Update API to update data within an existing policy. Insurance documents that contain the updated data will be regenerated for data consistency.</p>\n","urlObject":{"path":["v1","policies",":policyId","update"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[{"type":"string","value":"{{policyId}}","key":"policyId"}]}},"response":[{"id":"d186b2f5-bc40-4cf7-9647-17b5264afa24","name":"eScooter Private Liability Product Update: Error ","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"{{authorizationHeader}}"},{"key":"Content-Type","type":"text","value":"application/json"},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"updateReason\": \"customerRequest\",\n    \"customer\": {\n        \"email\": \"username@username.com\",\n        \"phone\": \"49123456729\",\n        \"firstName\": \"John\",\n        \"lastName\": \"Doe\",\n        \"values\": {\n            \"addressStreet\": \"Hardenbergerstr.\",\n            \"addressHouseNumber\": \"32\",\n            \"addressPlz\": \"10623\",\n            \"addressCity\": \"Berlin\",\n            \"companyName\": \"Test GmbH\"\n        }\n    },\n    \"values\": {\n        \"policyStartDate\": \"2019-11-23\"\n    },\n    \"objects\": [\n        {\n            \"name\": \"thirdParty\",\n            \"values\": {\n                \"vin\": \"TESTZ1234572\",\n                \"licenseNumber\": \"501PNN\",\n                \"model\": \"TEST\"\n            },\n            \"risks\": [\n                {\n                    \"name\": \"thirdPartyLiability\",\n                    \"values\": {}\n                }\n            ]\n        }\n    ],\n    \"effectiveAt\": \"2019-11-06\"\n}"},"url":{"raw":"https://api.sandbox.alteos.com/v1/policies/:policyId/update","host":["https://api.sandbox.alteos.com"],"path":["v1","policies",":policyId","update"],"variable":[{"key":"policyId","value":"b5063ef5-3940-40f3-b63f-6d497389092e","type":"string"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Next fields cannot be updated: policyStartDate\"\n}"},{"id":"ecc14568-9d7e-41cd-ab27-6dbe8d3fed14","name":"eScooter Private Liability Product Update: Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"{{authorizationHeader}}"},{"key":"Content-Type","type":"text","value":"application/json"},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"updateReason\": \"customerRequest\",\n    \"customer\": {\n        \"email\": \"username@username.com\",\n        \"phone\": \"49123456729\",\n        \"firstName\": \"John\",\n        \"lastName\": \"Doe\",\n        \"values\": {\n            \"addressStreet\": \"Hardenbergerstr.\",\n            \"addressHouseNumber\": \"32\",\n            \"addressPlz\": \"10623\",\n            \"addressCity\": \"Berlin\",\n            \"companyName\": \"Test GmbH\"\n        }\n    },\n    \"values\": {\n        \"policyStartDate\": \"2019-09-23\"\n    },\n    \"objects\": [\n        {\n            \"name\": \"thirdParty\",\n            \"values\": {\n                \"vin\": \"TESTZ1234572\",\n                \"licenseNumber\": \"501PNN\",\n                \"model\": \"TEST\"\n            },\n            \"risks\": [\n                {\n                    \"name\": \"thirdPartyLiability\",\n                    \"values\": {}\n                }\n            ]\n        }\n    ],\n    \"effectiveAt\": \"2019-11-06\"\n}"},"url":{"raw":"https://api.sandbox.alteos.com/v1/policies/:policyId/update","host":["https://api.sandbox.alteos.com"],"path":["v1","policies",":policyId","update"],"variable":[{"key":"policyId","type":"string","value":"b5063ef5-3940-40f3-b63f-6d497389092e"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"b5063ef5-3940-40f3-b63f-6d497389092e\"\n}"}],"_postman_id":"cf621d17-3b6d-4dd3-bd37-620c0b991894"},{"name":"Display-Versicherung Update policy","id":"b40834b6-9a0c-4c7b-9c7b-2fb4a7105340","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"{{authorizationHeader}}"},{"key":"Content-Type","type":"text","value":"application/json"},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"updateReason\": \"customerRequest\",\n    \"customer\": {\n        \"email\": \"username@username.com\",\n        \"phone\": \"49123456729\",\n        \"firstName\": \"John\",\n        \"lastName\": \"Doe\",\n        \"values\": {\n            \"addressStreet\": \"Hardenbergerstr.\",\n            \"addressHouseNumber\": \"32\",\n            \"addressPlz\": \"10623\",\n            \"addressCity\": \"Berlin\",\n            \"companyName\": \"Test GmbH\"\n        }\n    },\n    \"values\": {\n        \"duration\": \"2years\",\n        \"partnerContractId\": \"1\",\n        \"policyStartDate\": \"2020-06-20\",\n        \"assignedPremium\": 49.95,\n        \"insuredPersonSalutation\": \"Herr\",\n        \"insuredPersonName\":\"John\",\n        \"insuredPersonFamilyName\":\"Doe\",\n        \"insuredPersonEmail\":\"test@alteos.com\",\n        \"insuredPersonStreetAddress\":\"Potsdamer Str\",\n        \"insuredPersonHouseNumber\":\"1\",\n        \"insuredPersonAddressPostalCode\":\"10785\",\n        \"insuredPersonCityAddress\":\"Berlin\",\n        \"paymentSchedule\": \"oneTime\"\n    },\n    \"objects\": [\n        {\n            \"name\": \"Geraet\",\n            \"values\": {\n                        \"priceCategory\": \"A\",\n                        \"purchaseDate\": \"2020-05-11\",\n                        \"deviceId\": \"123\",\n                        \"deviceBrand\": \"iPhone\",\n                        \"deviceModel\": \"12\",\n                        \"deviceImei\": \"8V6A9K49157\",\n                        \"protectionInstalled\": \"yes\"\n            },\n\t\t\t\"risks\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"Bildschirmglasbruch\",\n\t\t\t\t\t\"values\": {}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"Rueckseitenglasbruch\",\n\t\t\t\t\t\"values\": {}\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t],\n    \"effectiveAt\": \"2020-11-06\"\n}"},"url":"https://api.sandbox.alteos.com/v1/policies/:policyId/update","description":"<p>Use the Policy Update API to update data within an existing policy. Insurance documents that contain the updated data will be regenerated for data consistency.</p>\n","urlObject":{"path":["v1","policies",":policyId","update"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[{"type":"string","value":"","key":"policyId"}]}},"response":[],"_postman_id":"b40834b6-9a0c-4c7b-9c7b-2fb4a7105340"},{"name":"Smart Policy Update","id":"d53ff2b6-480c-48ba-9446-99aa7b388076","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{authorizationHeader}}","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"policyId\": \"f181e45c-6079-4159-a2d5-694ec6ffc3f7\",\r\n    \"changes\": {\r\n        \"customer\": {\r\n            \"email\": \"username@domain.com\"\r\n        },\r\n        \"values\": {\r\n            \"policyStartDate\": \"2025-08-26\"\r\n        },\r\n        \"objects\": [\r\n            {\r\n                \"name\": \"thirdParty\",\r\n                \"values\": {\r\n                    \"vin\": \"TESTZ1234572\",\r\n                    \"licenseNumber\": \"501PNN\",\r\n                    \"model\": \"TEST\"\r\n                },\r\n                \"risks\": [\r\n                    {\r\n                        \"name\": \"thirdPartyLiability\",\r\n                        \"values\": {}\r\n                    }\r\n                ]\r\n            }\r\n        ]\r\n    },\r\n    \"effectiveFrom\": \"2025-08-27\",\r\n    \"productVersion\": \"v25\",\r\n    \"effectiveRequestedAt\": \"2025-10-01\",\r\n    \"updateReason\": \"CustomerRequest\",\r\n    \"createdBy\": \"user@example.com\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies/update","description":"<h3 id=\"smart-policy-update-endpoint\">Smart Policy Update Endpoint</h3>\n<p>This endpoint allows partners to update an existing insurance policy by providing the necessary details and changes. It is designed to modify any attributes of a policy based on the provided <code>policyId</code>.</p>\n<p>The endpoint is designed to enable <strong>partial updates</strong>, so it's not required to send the full policy object.</p>\n<h4 id=\"use-cases\">Use cases</h4>\n<ul>\n<li><p><strong>Endorsement:</strong> When the changes affect pricing</p>\n</li>\n<li><p><strong>Simple update:</strong> When changes don't affect pricing</p>\n</li>\n</ul>\n<h4 id=\"request-body\"><strong>Request Body</strong></h4>\n<p>The request payload should be in JSON format and includes the following parameters:</p>\n<ul>\n<li><p><strong>policyId</strong> (string, required): The unique identifier of the policy to be updated.</p>\n</li>\n<li><p><strong>changes</strong> (object, required): An object that contains the changes to be applied to the policy.</p>\n<ul>\n<li><p><strong>customer</strong> (object, optional): Contains customer-related changes.</p>\n</li>\n<li><p><strong>values</strong> (object, optional): Contains policy-related values.</p>\n</li>\n<li><p><strong>package</strong> (object, optional): Package changes</p>\n<ul>\n<li><strong>name</strong> (string, required): Package name</li>\n</ul>\n</li>\n<li><p><strong>addons</strong> (array, optional): List of addon changes</p>\n<ul>\n<li><strong>name</strong> (string, required): Addon name</li>\n</ul>\n</li>\n<li><p><strong>objects</strong> (array): A list of objects related to the policy.</p>\n<ul>\n<li><strong>values</strong> (object): Contains specific values related to the object.</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p><strong>effectiveFrom</strong> (string, required): Date from which changes take effect. Accepts:</p>\n<ul>\n<li><p>YYYY-MM-DD format (e.g., 2025-10-01)</p>\n</li>\n<li><p>ISO 8601 datetime format (e.g., 2025-10-01T00:00:00.000Z)</p>\n</li>\n</ul>\n</li>\n<li><p><strong>effectiveRequestedAt</strong> (string, required): Date when the update was requested. Accepts:</p>\n<ul>\n<li><p>YYYY-MM-DD format (e.g., 2025-10-01)</p>\n</li>\n<li><p>ISO 8601 datetime format (e.g., 2025-10-01T00:00:00.000Z)</p>\n</li>\n</ul>\n</li>\n<li><p><strong>productVersion</strong> (string, optional): The version of the product associated with the policy.</p>\n</li>\n<li><p><strong>updateReason</strong> (string, optional): Reason for the update (e.g., \"CustomerRequest\")</p>\n</li>\n<li><p><strong>endorsementReason</strong> (string, optional): Endorsement reason for the update (free text)</p>\n</li>\n<li><p><strong>createdBy</strong> (string, optional): Identifier of who initiated the update</p>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response will contain the updated policy id, confirming the successful update of the specified attributes.</p>\n<ul>\n<li><p><strong>policyId</strong> (string): The unique identifier of the policy to be updated.</p>\n</li>\n<li><p><strong>message</strong> (string): Optionally a message in case the request failed</p>\n</li>\n</ul>\n<p>The exact structure of the response may vary, but it typically includes the policy id information and a optionally a status message indicating the success or failure of the operation.</p>\n<p>Make sure to provide valid input data as per the above structure to ensure the successful execution of the request.</p>\n","urlObject":{"path":["v2","policies","update"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"4c9c84c9-2a2b-4eec-9164-eb6d936f9eb8","name":"Non-premium update","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{authorizationHeader}}","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"policyId\": \"f181e45c-6079-4159-a2d5-694ec6ffc3f7\",\r\n    \"changes\": {\r\n        \"customer\": {\r\n            \"email\": \"username@domain.com\"\r\n        }\r\n    },\r\n    \"effectiveFrom\": \"2025-08-27\",\r\n    \"effectiveRequestedAt\": \"2025-08-27\",\r\n    \"productVersion\": \"v25\",\r\n    \"updateReason\": \"correctionOfPersonalData\",\r\n    \"createdBy\": \"81ad50aa-9dff-4e4e-8869-fe4f1a6c5aef\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies/update"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"policyId\": \"f181e45c-6079-4159-a2d5-694ec6ffc3f7\"\r\n}"},{"id":"3d9facd2-42c3-431c-a907-618a15b69316","name":"Premium update","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{authorizationHeader}}","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"policyId\": \"f181e45c-6079-4159-a2d5-694ec6ffc3f7\",\r\n    \"changes\": {\r\n        \"objects\": [\r\n            {\r\n                \"values\": {\r\n                    \"sumInsured\": 9000\r\n                }\r\n            }\r\n        ]\r\n    },\r\n    \"effectiveFrom\": \"2025-08-27\",\r\n    \"effectiveRequestedAt\": \"2025-08-27\",\r\n    \"productVersion\": \"v25\",\r\n    \"endorsementReason\": \"Update of sum insured\",\r\n    \"createdBy\": \"81ad50aa-9dff-4e4e-8869-fe4f1a6c5aef\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies/update"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"policyId\": \"f181e45c-6079-4159-a2d5-694ec6ffc3f7\"\r\n}"},{"id":"17727a06-c2ee-44a7-846b-d2c161a8292b","name":"Failed","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{authorizationHeader}}","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"policyId\": \"f181e45c-6079-4159-a2d5-694ec6ffc3f7\",\r\n    \"changes\": {\r\n        \"customer\": {\r\n            \"email\": \"username@domain.com\"\r\n        },\r\n        \"values\": {\r\n            \"policyStartDate\": \"2025-08-26\"\r\n        },\r\n        \"objects\": [\r\n            {\r\n                \"name\": \"thirdParty\",\r\n                \"values\": {\r\n                    \"vin\": \"TESTZ1234572\",\r\n                    \"licenseNumber\": \"501PNN\",\r\n                    \"model\": \"TEST\"\r\n                },\r\n                \"risks\": [\r\n                    {\r\n                        \"name\": \"thirdPartyLiability\",\r\n                        \"values\": {}\r\n                    }\r\n                ]\r\n            }\r\n        ]\r\n    },\r\n    \"effectiveFrom\": \"2025-08-27\",\r\n    \"productVersion\": \"v25\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies/update"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"f181e45c-6079-4159-a2d5-694ec6ffc3f7\",\n    \"message\": \"Not allowed to update policy start date\"\n}"},{"id":"ba82bc77-ae0f-4b93-8971-88ee6fccfb89","name":"Duplicate request","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{authorizationHeader}}","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"policyId\": \"f181e45c-6079-4159-a2d5-694ec6ffc3f7\",\r\n    \"changes\": {\r\n        \"customer\": {\r\n            \"email\": \"username@domain.com\"\r\n        },\r\n        \"values\": {\r\n            \"policyStartDate\": \"2025-08-26\"\r\n        },\r\n        \"objects\": [\r\n            {\r\n                \"name\": \"thirdParty\",\r\n                \"values\": {\r\n                    \"vin\": \"TESTZ1234572\",\r\n                    \"licenseNumber\": \"501PNN\",\r\n                    \"model\": \"TEST\"\r\n                },\r\n                \"risks\": [\r\n                    {\r\n                        \"name\": \"thirdPartyLiability\",\r\n                        \"values\": {}\r\n                    }\r\n                ]\r\n            }\r\n        ]\r\n    },\r\n    \"effectiveFrom\": \"2025-08-27\",\r\n    \"productVersion\": \"v25\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies/update"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"policyId\": \"f181e45c-6079-4159-a2d5-694ec6ffc3f7\",\r\n    \"message\": \"No changes on the policy were detected\"\r\n}"},{"id":"da9e7cc4-79e1-4835-a77c-e7477b3fd0ea","name":"Not implemented","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{authorizationHeader}}","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"policyId\": \"f181e45c-6079-4159-a2d5-694ec6ffc3f7\",\r\n    \"changes\": {\r\n        \"customer\": {\r\n            \"email\": \"username@domain.com\"\r\n        },\r\n        \"values\": {\r\n            \"policyStartDate\": \"2025-08-26\"\r\n        },\r\n        \"objects\": [\r\n            {\r\n                \"name\": \"thirdParty\",\r\n                \"values\": {\r\n                    \"vin\": \"TESTZ1234572\",\r\n                    \"licenseNumber\": \"501PNN\",\r\n                    \"model\": \"TEST\"\r\n                },\r\n                \"risks\": [\r\n                    {\r\n                        \"name\": \"thirdPartyLiability\",\r\n                        \"values\": {}\r\n                    }\r\n                ]\r\n            }\r\n        ]\r\n    },\r\n    \"effectiveFrom\": \"2025-08-27\",\r\n    \"productVersion\": \"v25\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies/update"},"status":"Not Implemented","code":501,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"f181e45c-6079-4159-a2d5-694ec6ffc3f7\",\n    \"message\": \"Policy endorsement detected. Not implemented\"\n}"}],"_postman_id":"d53ff2b6-480c-48ba-9446-99aa7b388076"},{"name":"Batch Policy Update","id":"f6dd7d2f-75fe-4c26-bb3a-c59b80da27d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{authorizationHeader}}","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"policyIds\": [\r\n        \"cbe1054e-3cbc-49dc-ac55-dc09fc777cfe\",\r\n        \"d5023d87-9137-48fd-b29d-c80531498a74\",\r\n        \"6aab43fc-b4f7-4ce0-b438-49b1c01e9f5c\"\r\n    ],\r\n    \"updates\": {\r\n        \"customer\": {\r\n            \"email\": \"batch-update@alteos.com\"\r\n        },\r\n        \"effectiveRequestedAt\": \"2025-09-09\",\r\n        \"effectiveFrom\": \"2025-09-09\",\r\n        \"updateReason\": \"addendumOfPersonalData\"\r\n    }\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies/batch-update\n","description":"<h3 id=\"batch-policy-update-endpoint\">Batch Policy Update Endpoint</h3>\n<p>This endpoint allows partners to update multiple existing insurance policies by providing the necessary details and updates. It is designed to modify any attributes of multiple policies (that don't affect pricing) based on the provided <code>policyIds</code> in a single action.</p>\n<p>The endpoint is designed to enable <strong>partial updates</strong>, so it's not required to send the full policy object.</p>\n<h4 id=\"use-cases\">Use cases</h4>\n<ul>\n<li><strong>Simple update:</strong> When changes don't affect pricing.</li>\n</ul>\n<h4 id=\"request-body\"><strong>Request Body</strong></h4>\n<p>The request payload should be in JSON format and includes the following parameters:</p>\n<ul>\n<li><p><strong>policyIds</strong> (string array): An array of the unique identifiers of the policies to be updated.</p>\n</li>\n<li><p><strong>updates</strong> (object): An object that contains the changes to be applied to all the policies in the batch.</p>\n<ul>\n<li><p><strong>customer</strong> (object): Contains customer-related changes.</p>\n</li>\n<li><p><strong>values</strong> (object): Contains policy-related values.</p>\n</li>\n<li><p><strong>objects</strong> (array): A list of objects related to the policy.</p>\n<ul>\n<li><p><strong>name</strong> (string): The name of the object (e.g., \"thirdParty\").</p>\n</li>\n<li><p><strong>values</strong> (object): Contains specific values related to the object.</p>\n</li>\n<li><p><strong>risks</strong> (array): A list of risks associated with the object.</p>\n<ul>\n<li><p><strong>name</strong> (string): The name of the risk (e.g., \"thirdPartyLiability\").</p>\n</li>\n<li><p><strong>values</strong> (object): Additional values related to the risk (can be empty).</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p><strong>effectiveFrom</strong> (string): The date from which the changes will take effect in YYYY-MM-DD format.</p>\n</li>\n<li><p><strong>productVersion</strong> (string): The version of the product associated with the policy.</p>\n</li>\n<li><p><strong>updateReason</strong> (enum): The reason for the update. Possible values are: <code>damagedLicensePlate, initialDataDiscrepancy, licensePlateTheft, customerRequest, changeOfRenter, guaranteeWarranty, relocation, deviceActivation, changeOfPolicyHolder, changeOfPersonalData, changeOfObjectData, changeOfOtherData, correctionOfPersonalData, correctionOfObjectData, correctionOfOtherData, addendumOfPersonalData, addendumOfObjectData, addendumOfOtherData, shiftingOfStartDate</code></p>\n</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response will contain the update batch job information, confirming the creation status of the job.</p>\n<ul>\n<li><p><strong>batchJobId</strong> (string): The unique identifier of the update batch job.</p>\n</li>\n<li><p><strong>message</strong> (string): A message describing the result of the batch job creation.</p>\n</li>\n<li><p><strong>totalPolicies</strong> (number): The total number of policies in the batch.</p>\n</li>\n<li><p><strong>status</strong> (enum): The initial status of the job upon creation. Possible values are <code>PENDING, IN_PROGRESS, COMPLETED, FAILED, PARTIALLY_COMPLETED</code></p>\n</li>\n</ul>\n<p>Make sure to provide valid input data as per the above structure to ensure the successful execution of the request.</p>\n","urlObject":{"path":["v2","policies","batch-update\n"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"865c2341-02c4-47d2-b2c0-c0b12248bd46","name":"Batch Policy Update","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{accessToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"policyIds\": [\r\n        \"cbe1054e-3cbc-49dc-ac55-dc09fc777cfe\",\r\n        \"d5023d87-9137-48fd-b29d-c80531498a74\",\r\n        \"6aab43fc-b4f7-4ce0-b438-49b1c01e9f5c\"\r\n    ],\r\n    \"updates\": {\r\n        \"customer\": {\r\n            \"email\": \"batch-update@alteos.com\"\r\n        },\r\n        \"effectiveRequestedAt\": \"2025-09-09\",\r\n        \"effectiveFrom\": \"2025-09-09\",\r\n        \"updateReason\": \"addendumOfPersonalData\"\r\n    }\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies/batch-update\n"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n    \"batchJobId\": \"619f0299-761e-4218-8f79-616ef790b7f5\",\r\n    \"message\": \"Batch update job initiated\",\r\n    \"totalPolicies\": 3,\r\n    \"status\": \"PENDING\"\r\n}"}],"_postman_id":"f6dd7d2f-75fe-4c26-bb3a-c59b80da27d8"},{"name":"Batch Policy Update Status","id":"cc1e6d50-122e-4a86-b521-3134c0709884","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{authorizationHeader}}","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"url":"https://api.sandbox.alteos.com/v2/policies/batch-update/:batch-job-id/status?includePolicyStatuses=false\n","description":"<h3 id=\"batch-policy-update-status-endpoint\">Batch Policy Update Status Endpoint</h3>\n<p>This endpoint allows partners to get the status of a batch update based on the batch-job-id.</p>\n<p>The endpoint is designed to enable <strong>follow up on the batch update status.</strong></p>\n<h4 id=\"use-cases\">Use cases</h4>\n<ul>\n<li><strong>Batch Policy Update:</strong> When partner needs to confirm the completion of a batch or to catch an update error on a batch.</li>\n</ul>\n<h4 id=\"url-parameters\"><strong>URL Parameters</strong></h4>\n<ul>\n<li><strong>batch-job-id</strong> (string): The unique identifier of the batch job id provided when creating a batch job.</li>\n</ul>\n<h4 id=\"query-parameters\"><strong>Query Parameters</strong></h4>\n<ul>\n<li><strong>includePolicyStatuses</strong> (boolean): Whether to provide detailed individual statuses of each policy update.</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response will contain the batch job status information.</p>\n<ul>\n<li><p><strong>batchJobId</strong> (string): The unique identifier of the update batch job.</p>\n</li>\n<li><p><strong>status</strong> (enum): The overall status of the batch job. Possible values are <code>PENDING, IN_PROGRESS, COMPLETED, FAILED, PARTIALLY_COMPLETED</code></p>\n</li>\n<li><p><strong>totalPolicies</strong> (number): The total number of policies in the batch.</p>\n</li>\n<li><p><strong>processedPolicies</strong> (number): The total number of processed policies in the batch.</p>\n</li>\n<li><p><strong>successfulUpdates</strong> (number): The total number of successful updates in the batch.</p>\n</li>\n<li><p><strong>failedUpdates</strong> (number): The total number of failed updates in the batch.</p>\n</li>\n<li><p><strong>pendingPolicies</strong> (number): The total number of policies that are currently processing or pending to process.</p>\n</li>\n<li><p><strong>failedUpdates</strong> (number): The total number of policies in the batch.</p>\n</li>\n<li><p><strong>startedAt</strong> (timestamp): The timestamp of when the job started the process.</p>\n</li>\n<li><p><strong>completedAt</strong> (timestamp): The timestamp of when the job completed the process.</p>\n</li>\n<li><p><strong>progress</strong> (number): The percentage of completion of the job.</p>\n</li>\n<li><p><strong>policyStatuses</strong> (array object): An array of individual policy update statuses.</p>\n<ul>\n<li><p><strong>policyId</strong> (string): The unique identifier of the policy in the batch.</p>\n</li>\n<li><p><strong>status</strong> (enum): The status of the update process. Possible values are <code>PENDING, PROCESSING, SUCCESS, FAILED</code></p>\n</li>\n<li><p><strong>errorMessage</strong> (string): Detail about the update failure.</p>\n</li>\n<li><p><strong>processedAt</strong> (timestamp): When the policy update was processed.</p>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["v2","policies","batch-update",":batch-job-id","status"],"host":["https://api.sandbox.alteos.com"],"query":[{"key":"includePolicyStatuses","value":"false\n"}],"variable":[{"type":"any","value":"","key":"batch-job-id"}]}},"response":[{"id":"b0cb3ebd-d14e-4aba-870d-5c700dbaadb1","name":"Without policy statuses","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.sandbox.alteos.com/v2/policies/batch-update/:batch-job-id/status?includePolicyStatuses=false","host":["https://api.sandbox.alteos.com"],"path":["v2","policies","batch-update",":batch-job-id","status"],"query":[{"key":"includePolicyStatuses","value":"false"}],"variable":[{"key":"batch-job-id","value":"619f0299-761e-4218-8f79-616ef790b7f5"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n    \"batchJobId\": \"619f0299-761e-4218-8f79-616ef790b7f5\",\r\n    \"status\": \"PARTIALLY_COMPLETED\",\r\n    \"totalPolicies\": 3,\r\n    \"processedPolicies\": 3,\r\n    \"successfulUpdates\": 2,\r\n    \"failedUpdates\": 1,\r\n    \"pendingPolicies\": 0,\r\n    \"startedAt\": \"2025-09-16T17:38:44.416Z\",\r\n    \"completedAt\": \"2025-09-16T17:38:44.705Z\",\r\n    \"progress\": 100\r\n}\r\n"},{"id":"d23e955c-1e29-40e3-b3e6-ce9866eefe50","name":"With policy statuses","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{authorizationHeader}}","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"url":{"raw":"https://api.sandbox.alteos.com/v2/policies/batch-update/:batch-job-id/status?includePolicyStatuses=true\n","host":["https://api.sandbox.alteos.com"],"path":["v2","policies","batch-update",":batch-job-id","status"],"query":[{"key":"includePolicyStatuses","value":"true\n"}],"variable":[{"key":"batch-job-id","value":"619f0299-761e-4218-8f79-616ef790b7f5"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"batchJobId\": \"619f0299-761e-4218-8f79-616ef790b7f5\",\r\n    \"status\": \"PARTIALLY_COMPLETED\",\r\n    \"totalPolicies\": 4,\r\n    \"processedPolicies\": 3,\r\n    \"successfulUpdates\": 1,\r\n    \"failedUpdates\": 1,\r\n    \"pendingPolicies\": 2,\r\n    \"startedAt\": \"2025-09-16T17:38:44.416Z\",\r\n    \"completedAt\": \"2025-09-16T17:38:44.705Z\",\r\n    \"progress\": 50,\r\n    \"policyStatuses\": [\r\n        {\r\n            \"policyId\": \"cbe1054e-3cbc-49dc-ac55-dc09fc777cfe\",\r\n            \"status\": \"SUCCESS\",\r\n            \"processedAt\": \"2025-09-16T17:38:44.500Z\"\r\n        },\r\n        {\r\n            \"policyId\": \"d5023d87-9137-48fd-b29d-c80531498a74\",\r\n            \"status\": \"FAILED\",\r\n            \"errorMessage\": \"Service call issue : Unexpected error\",\r\n            \"processedAt\": \"2025-09-16T17:38:44.585Z\"\r\n        },\r\n        {\r\n            \"policyId\": \"6aab43fc-b4f7-4ce0-b438-49b1c01e9f5c\",\r\n            \"status\": \"PROCESSING\",\r\n            \"processedAt\": \"2025-09-16T17:38:44.690Z\"\r\n        },\r\n        {\r\n            \"policyId\": \"98f6ce20-6420-42c5-b014-a09dcc6c8d7b\",\r\n            \"status\": \"PENDING\",\r\n            \"processedAt\": \"2025-09-16T17:38:44.690Z\"\r\n        }\r\n    ]\r\n}\r\n"}],"_postman_id":"cc1e6d50-122e-4a86-b521-3134c0709884"}],"id":"031ff5e0-0607-450c-882e-a20a1e122f3c","description":"<p>This section covers all endpoints to manage existing policies, from data retrieval, updates to cancellation.</p>\n","_postman_id":"031ff5e0-0607-450c-882e-a20a1e122f3c"},{"name":"Policy Events","item":[{"name":"Create webhook","id":"ab7200ba-3b51-4291-87ce-cd9d13cc4f34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"event\": \"event-you-want-to-subscribe-for\",\n    \"filter\": [{\"action\": \"action-to-filter-events-by\"}],\n    \"URL\":\"address-of-your-endpoint\"\n}"},"url":"https://api.sandbox.alteos.com/v1/webhooks","description":"<p>Use this API to register (create) a webhook, so when event will occur, Alteos will notify your endpoint about it.</p>\n<h3 id=\"important-considerations\">Important considerations</h3>\n<ul>\n<li>in case if your endpoint will return anything, but 200 status code, then Alteos will try to re-send a notification couple of times with exponential backoff policy</li>\n</ul>\n","urlObject":{"path":["v1","webhooks"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"bf5a88df-596a-4b09-8d11-28cb64a77c89","name":"Successful creation of a webhook","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"event\": \"documentsGenerated\",\n    \"filter\": [{\"action\": \"policyCreation\"}],\n    \"URL\":\"http://testurl.com/webhook/events\"\n}"},"url":"https://api.sandbox.alteos.com/v1/webhooks"},"status":"Created","code":201,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n  \"webhookId\": \"42b3f3d0-c714-46a2-837a-26ff05fb9702\"\n}"},{"id":"1f48ada6-4c1f-471e-9a27-f47cc0d0e701","name":"Failed request due to not supported event type","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"event\": \"non-supported-event\",\n    \"filter\": [{\"action\": \"policyCreation\"}],\n    \"URL\":\"http://testurl.com/webhook/events\"\n}"},"url":"https://api.sandbox.alteos.com/v1/webhooks"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Validation : event is not supported\",\n  \"errorCode\": \"invalidData\"\n}"}],"_postman_id":"ab7200ba-3b51-4291-87ce-cd9d13cc4f34"},{"name":"Webhook notification","id":"e25c1ffa-c142-4a56-bb6a-b74f7dc1b254","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"event\": \"event-name\",\n  \"policyId\": \"id-of-policy\",\n  \"eventId\": \"event-id-for-de-duplication\",\n  \"webhookId\": \"id-of-webhook\"\n}\n","options":{"raw":{"language":"json"}}},"url":"{{address-of-your-endpoint}}","urlObject":{"host":["{{address-of-your-endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"95391542-73d6-4ebe-b89f-350f5b337f06","name":"Successful notification","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"event\": \"document_generated\",\n  \"policyId\": \"8112100e-c537-4dca-a2ec-131422b2e75c\",\n  \"eventId\": \"cc8e4bae-e4d3-47b6-a972-b72c21addc07\",\n  \"webhookId\": \"4620a39f-d0be-4593-82be-9c5d541c587a\"\n}\n","options":{"raw":{"language":"json"}}},"url":"http://testurl.com/webhook/events"},"code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"36a95434-6d28-4a47-843e-9f494c414381","name":"Failed notification - non 200 response code","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"event\": \"document_generated\",\n  \"policyId\": \"8112100e-c537-4dca-a2ec-131422b2e75c\",\n  \"eventId\": \"cc8e4bae-e4d3-47b6-a972-b72c21addc07\",\n  \"webhookId\": \"4620a39f-d0be-4593-82be-9c5d541c587a\"\n}\n","options":{"raw":{"language":"json"}}},"url":"http://testurl.com/webhook/events"},"code":500,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"e25c1ffa-c142-4a56-bb6a-b74f7dc1b254"}],"id":"6406ed4a-8c11-4b66-b796-5961a54ea441","description":"<h1 id=\"what-are-webhooks\">What are webhooks</h1>\n<p>A webhook enables Alteos to push real-time notifications to your app. Notifications are send via HTTPS in form of JSON payload to your app. You can then use these notifications to execute actions in your backend systems.</p>\n<h2 id=\"use-cases\">Use cases</h2>\n<p>You can use webhook event notifications to alert your app:</p>\n<ul>\n<li>That documents were generated, so your app can then download them.</li>\n</ul>\n<h1 id=\"steps-to-receive-event-notifications\">Steps to receive event notifications</h1>\n<p>You can start receiving event notifications in your app using the steps in this section:</p>\n<ol>\n<li>Identify the events you want to monitor and the event payloads to parse.</li>\n<li>Create a webhook endpoint as an HTTP endpoint (URL) on your local server.</li>\n<li>Handle requests from Alteos by parsing each event object and returning 200 response status codes.</li>\n<li>Deploy your webhook endpoint so it’s a publicly accessible HTTPS URL.</li>\n<li>Register your publicly accessible HTTPS URL in the Alteos API.</li>\n</ol>\n","_postman_id":"6406ed4a-8c11-4b66-b796-5961a54ea441"},{"name":"Policy Attachment Uploads","item":[{"name":"Uploading Policy Attachments (form-data)","id":"76c00c41-8fe5-4b4b-b69b-6910f43c1afb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{apiKeyAlteos}}","type":"text"},{"key":"Authorization","value":"Bearer {{accessToken}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"files","type":"file","src":"postman-cloud:///1ef33a29-2d97-4ca0-a060-b015dca361d1"},{"key":"urls","value":"https://example.com/file1.pdf,https://example.com/file2.pdf","type":"text"},{"key":"description","value":"Support insurance documents","type":"text"}]},"url":"https://api.sandbox.alteos.com/v1/policies/:policyId/uploads","description":"<p>The request allows to upload the policy documents.</p>\n","urlObject":{"protocol":"https","path":["v1","policies",":policyId","uploads"],"host":["api","sandbox","alteos","com"],"query":[],"variable":[{"type":"any","value":"","key":"policyId"}]}},"response":[{"id":"6d24ea71-c6aa-4597-b7b3-ce8eaf6623c4","name":"Using form-data","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{apiKeyAlteos}}","type":"text"},{"key":"Authorization","value":"Bearer {{accessToken}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"files","description":"file upload by system","type":"file","src":"8x5q8AiL2/Test_Image_JPG.jpg"},{"key":"urls","value":"http://example.com/file1.jpg, http://example.com/file2.jpg","description":"file uploads through multiple urls","type":"text"},{"key":"urls","value":"http://example.com/file1.jpg","description":"file upload through single url","type":"text"},{"key":"description","value":"Insurance documents for the policy contract","type":"text"}]},"url":{"raw":"https://api.sandbox.alteos.com/v1/policies/:policyId/uploads","protocol":"https","host":["api","sandbox","alteos","com"],"path":["v1","policies",":policyId","uploads"],"variable":[{"key":"policyId","value":""}]}},"status":"Created","code":201,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"Created"},{"id":"5b77348c-b1b2-4d50-8cbd-bb7f2b06efbe","name":"Uploading Policy Attachments (form-data)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{apiKeyAlteos}}","type":"text"},{"key":"Authorization","value":"Bearer {{accessToken}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"files","type":"file","src":"postman-cloud:///1ef33a29-2d97-4ca0-a060-b015dca361d1"},{"key":"urls","value":"https://example.com/file1.pdf,https://example.com/file2.pdf","type":"text"},{"key":"description","value":"Insurance documents for the policy contract","type":"text"}]},"url":{"raw":"https://api.sandbox.alteos.com/v1/policies/:policyId/uploads","protocol":"https","host":["api","sandbox","alteos","com"],"path":["v1","policies",":policyId","uploads"],"variable":[{"key":"policyId","value":""}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"76c00c41-8fe5-4b4b-b69b-6910f43c1afb"},{"name":"Uploading Policy Attachments (row JSON-body)","id":"4c628984-23e4-4549-be4f-f80bf3ca84e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{apiKeyAlteos}}","type":"text"},{"key":"Authorization","value":"Bearer {{accessToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"urls\": \"https://example.com/file1.pdf,https://example.com/file2.pdf\",\n    \"description\": \"Support insurance documents\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v1/policies/:policyId/uploads","urlObject":{"protocol":"https","path":["v1","policies",":policyId","uploads"],"host":["api","sandbox","alteos","com"],"query":[],"variable":[{"type":"any","value":"","key":"policyId"}]}},"response":[{"id":"500c9337-b5d6-423e-8f41-c54c463d739b","name":"Using Raw Json","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{apiKeyAlteos}}","type":"text"},{"key":"Authorization","value":"Bearer {{accessToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"urls\": \"http://example.com/file1.jpg, http://example.com/file2.jpg\",\n    \"description\": \"Insurance documents for the policy contract\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.sandbox.alteos.com/v1/policies/:policyId/uploads","protocol":"https","host":["api","sandbox","alteos","com"],"path":["v1","policies",":policyId","uploads"],"variable":[{"key":"policyId","value":""}]}},"status":"Created","code":201,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"Created"}],"_postman_id":"4c628984-23e4-4549-be4f-f80bf3ca84e0"}],"id":"497559c4-0832-4d77-9e78-6a3c99b8e2b4","description":"<p>The <strong>Policy Attachment Uploads</strong> endpoint allows for uploading attachments to a specific policy. Attachments can be uploaded as files and/or URLs using form-data.</p>\n<p>The <strong>Policy ID</strong>, which contains six characters (<strong>e.g., ABC1FE</strong>), is <strong>required</strong> to associate the uploaded attachments with the relevant policy, as a path parameter.</p>\n<p>To upload the attachments for the policy, the following <strong>request</strong> <strong>body parameters</strong> can be used. While both parameters are optional, <strong>at least one</strong> must be provided for <strong>successful</strong> operation:</p>\n<h4 id=\"file-upload\">File Upload</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>files</td>\n<td>The <strong>attachments</strong> to be uploaded through system uploads, should be included in the <strong>form-data</strong> part of the request.  <br />Allowed <strong>formats</strong>: <strong>jpg, jpeg, pdf, png.</strong> Maximum <strong>size</strong> for each file: <strong>50 MB</strong>.  <br />Maximum of <strong>5 files per request</strong>.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"urls-upload\">URLs Upload</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>urls</td>\n<td>The <strong>attachments</strong> to be uploaded through URLs, should be included in the <strong>form-data</strong> part of the request, by providing either a single URL as a value or multiple URLs with comma delimeter.  <br />Allowed <strong>formats</strong>: <strong>jpg, jpeg, pdf, png.</strong> Maximum <strong>size</strong> for each file: <strong>50 MB</strong>.  <br />Maximum of <strong>5 URLs per request</strong>.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"description\">Description</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Description (optional)</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>description</td>\n<td>The description is an optional field for providing details on the purpose, intent or description of the contents of the files being uploaded.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"examples\">Examples:</h2>\n<h3 id=\"using-form-data\">Using form-data:</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-powershell\">- Key: `files`, Type: `File`, Value: Select file from system.\n- Key: `urls`, Type: `Text`, Value: https://example.com/file1.jpg, https://example.com/file2.jpg\n- Key: `description`, Type: `Text`, Value: Insurance documents and contract for the policy\n\n</code></pre>\n<h3 id=\"in-case-of-uploading-files-only-through-urls-raw-body-json-can-also-be-used\">In case of uploading files only through URLs, raw body JSON can also be used.</h3>\n<h3 id=\"using-raw-json\">Using raw JSON:</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-bash\">{\n  \"urls\": \"http://example.com/file1.jpg, http://example.com/file2.jpg\",\n  \"description\": \"Insurance documents and contract for the policy\"\n}\n\n</code></pre>\n<h2 id=\"responses\">Responses:</h2>\n<h3 id=\"success-response-status-201-created\">Success Response (Status: 201 Created)</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">Created\n\n</code></pre>\n<h3 id=\"validation-errors-status-400-bad-request\">Validation Errors (Status: 400 Bad Request)</h3>\n<h4 id=\"invalid-urls-input\">Invalid URLs Input</h4>\n<h5 id=\"this-error-will-occur-in-case-of-passing-urls-as-an-array-or-object-without-a-comma-separator-for-multiple-urls\">This error will occur in case of passing URLs as an array or object, without a comma separator for multiple URLs.</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"message\": \"Validation : \\\"urls\\\" with value \\\"[\\\"https://example1.org\\\" \\\"https://example2.org\\\"]\\\" fails to match the Please use commas as delimiters between the URLs in the list, without converting them into an array or object pattern\",\n  \"errorCode\": \"invalidData\"\n}\n\n</code></pre>\n<h4 id=\"file-format\">File Format</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"message\": \"File validation error: \\\"fileFormat\\\" must be one of [application/pdf, image/jpg, image/jpeg, image/png], \\\"File Name\\\": example.\",\n  \"errorCode\": \"invalidData\"\n}\n\n</code></pre>\n<h4 id=\"file-size\">File Size</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"message\": \"File validation error: \\\"File Size greater than 50MB is not allowed\\\" must be less than or equal to 50, \\\"File Name\\\": 100MB-TESTFILE.ORG.pdf.\",\n  \"errorCode\": \"invalidData\"\n}\n\n</code></pre>\n<h4 id=\"total-number-of-files\">Total Number of Files</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"message\": \"File validation error: \\\"Total number of files should not exceed 5\\\" must be less than or equal to 5, \\\"File Name\\\": 6thFile.pdf.\",\n  \"errorCode\": \"invalidData\"\n}\n\n</code></pre>\n<h4 id=\"provided-url-for-uploads-not-found\">Provided URL for Uploads Not Found</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"message\": \"Process URL Files: Not Found.\",\n  \"errorCode\": \"invalidData\"\n}\n\n</code></pre>\n<h4 id=\"invalid-keys-for-urls-andor-files-upload-by-form-data\">Invalid keys for URLs and/or files upload by form-data</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"message\": \"When providing URLs, please use the key `urls` with values that contain one or more URLs separated by commas. For file uploads, use the key `files` in the form-data.\",\n  \"errorCode\": \"invalidData\"\n}\n\n</code></pre>\n","_postman_id":"497559c4-0832-4d77-9e78-6a3c99b8e2b4"}],"id":"f61f24bd-af25-4aea-8c80-40793b0db892","description":"<p>This section covers all endpoints for creation and management of policies.</p>\n","event":[{"listen":"prerequest","script":{"id":"0be1b172-7110-470c-8ea6-9236186bba22","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"49c1f7b6-f00b-4a1f-ba02-9250a841f965","type":"text/javascript","exec":[""]}}],"_postman_id":"f61f24bd-af25-4aea-8c80-40793b0db892"},{"name":"Claims","item":[{"name":"Claim Questions","item":[{"name":"Get Claim Questions","id":"3c938df3-fb08-4feb-a453-3790b18abceb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","description":"<p>The content type of the request.</p>\n"},{"key":"X-App-Key","value":"{{AlteosAppKey}}","description":"<p>The application key obtained during onboarding.</p>\n"},{"key":"Authorization","value":"{{AccessToken}}","description":"<p>Token obtained after the authentication process.</p>\n"}],"url":"https://api.sandbox.alteos.com/v1/policies/{{policyId}}/claims/questions","description":"<p>The request allows obtaining the questions that need to be answered during claim creation.</p>\n<p>To be able to make a call make sure you provided:</p>\n<ul>\n<li><p>a <strong>valid auth token</strong> obtained after authentication process (see <a href=\"https://docs.api.alteos.com/#76fd832f-9c9f-4a3f-a88b-6093d967679e\">Authentication &amp; Authorization</a>)</p>\n</li>\n<li><p>a <strong>Application Key</strong> obtained during Partner Onboarding process.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","policies","{{policyId}}","claims","questions"],"host":["api","sandbox","alteos","com"],"query":[],"variable":[]}},"response":[{"id":"a322ae2d-8202-41bd-9e83-9211ef0f4175","name":"Get Claim Questions","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","description":"The content type of the request."},{"key":"X-App-Key","value":"{{AlteosAppKey}}","description":"The application key obtained during onboarding."},{"key":"Authorization","value":"{{AccessToken}}","description":"Token obtained after the authentication process."}],"url":"https://api.sandbox.alteos.com/v1/policies/{{policyId}}/claims/questions"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"questionDate\",\n        \"type\": \"date\",\n        \"required\": true\n    },\n    {\n        \"name\": \"questionTime\",\n        \"type\": \"time\"\n    },\n    {\n        \"name\": \"questionBoolean\",\n        \"type\": \"boolean\"\n    },\n    {\n        \"name\": \"questionSelect\",\n        \"type\": \"select\",\n        \"required\": true,\n        \"values\": [\n            {\n                \"key\": \"option1Key\",\n                \"value\": \"Option 1 Value\"\n            },\n            {\n                \"key\": \"option2Key\",\n                \"value\": \"Option 2 Value\"\n            }\n        ]\n    },\n    {\n        \"name\": \"questionString\",\n        \"type\": \"string\"\n    },\n    {\n        \"name\": \"claimReporterFullName\",\n        \"type\": \"number\"\n    }\n]\n"}],"_postman_id":"3c938df3-fb08-4feb-a453-3790b18abceb"}],"id":"bb936e2d-2990-47dc-b064-d377aff736d3","description":"<p>The <strong>Claim Questions</strong> endpoint provides a list of questions for creating claims, including types of answers and other relevant information.</p>\n<p><strong>Questions are specific</strong> to each policy, so the <strong>Policy ID must be provided to obtain them</strong>. The Policy ID can be found in the contract and contains six characters, <strong>for example, ABC1FE</strong>.</p>\n<p>Here is a simplified example of the questions that the endpoint can return:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-bash\">[\n    {\n        \"name\": \"questionDate\",\n        \"type\": \"date\",\n        \"required\": true\n    },\n    {\n        \"name\": \"questionTime\",\n        \"type\": \"time\"\n    },\n    {\n        \"name\": \"questionBoolean\",\n        \"type\": \"boolean\"\n    },\n    {\n        \"name\": \"questionSelect\",\n        \"type\": \"select\",\n        \"required\": true,\n        \"values\": [\n            {\n                \"key\": \"option1Key\",\n                \"value\": \"Option 1 Value\"\n            },\n            {\n                \"key\": \"option2Key\",\n                \"value\": \"Option 2 Value\"\n            }\n        ]\n    },\n    {\n        \"name\": \"questionString\",\n        \"type\": \"string\"\n    },\n    {\n        \"name\": \"claimReporterFullName\",\n        \"type\": \"number\"\n    }\n]\n\n</code></pre>\n<h1 id=\"question-objects-explanation\">Question objects explanation</h1>\n<p><strong>A question object</strong> is part of the list of questions and contains various attributes.</p>\n<p>Some common attributes are <strong>always</strong> part of the question object.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attributes</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>name</strong>*</td>\n<td>the name of the question, which will serve as the key to the answer</td>\n</tr>\n<tr>\n<td><strong>type</strong>*</td>\n<td>the type of answer expected to the question</td>\n</tr>\n<tr>\n<td><strong>required</strong></td>\n<td>an indicator that shows whether the answer <strong>is mandatory</strong>. <strong>If</strong> the answer <strong>is not required</strong>, this <strong>attribute will be omitted</strong> from the object.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"types\">Types</h2>\n<h2 id=\"string\"><em><strong>string</strong></em></h2>\n<p>The object represents a question, and its <strong>answer</strong> should be a <strong>string</strong>.</p>\n<p>Here is the <strong>structure</strong> of the object:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"name\": \"questionString\",\n    \"type\": \"string\"\n    \"required\": true\n}\n\n</code></pre>\n<p><strong>An example</strong> of the answer of the <strong>string</strong> type:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"questionString\": \"Some string for the answer\"\n}\n\n</code></pre>\n<h2 id=\"number\">number</h2>\n<p>The object represents a question, and its <strong>answer</strong> should be a <strong>number</strong>.</p>\n<p>Here is the <strong>structure</strong> of the object:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"name\": \"questionNumber\",\n    \"type\": \"number\"\n}\n\n</code></pre>\n<p><strong>An example</strong> of the answer of the <strong>number</strong> type:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"questionNumber\": 15\n}\n\n</code></pre>\n<h2 id=\"boolean\">boolean</h2>\n<p>The object represents a question, and its <strong>answer</strong> should be a <strong>boolean (true/false)</strong>.</p>\n<p>Here is the <strong>structure</strong> of the object:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"name\": \"questionBoolean\",\n    \"type\": \"boolean\"\n}\n\n</code></pre>\n<p><strong>An example</strong> of the answer of the <strong>boolean</strong> type:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"questionBoolean\": true\n}\n\n</code></pre>\n<h2 id=\"date\">date</h2>\n<p>The object represents a question, and its <strong>answer</strong> should be a string representation of the date in the format <strong>YYYY-MM-DD.</strong></p>\n<p>Here is the <strong>structure</strong> of the object:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"name\": \"questionDate\",\n    \"type\": \"date\"\n}\n\n</code></pre>\n<p><strong>An example</strong> of the answer of the <strong>date</strong> type:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"questionDate\": \"2024-11-22\"\n}\n\n</code></pre>\n<h2 id=\"time\">time</h2>\n<p>The object represents a question, and its <strong>answer</strong> should be a string representation of the time in the format <strong>HH:MM.</strong></p>\n<p>Here is the <strong>structure</strong> of the object:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"name\": \"questionTime\",\n    \"type\": \"time\"\n}\n\n</code></pre>\n<p><strong>An example</strong> of the answer of the <strong>time</strong> type:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"questionTime\": \"14:55\"\n}\n\n</code></pre>\n<h2 id=\"select\">select</h2>\n<p>The object represents a question, and its <strong>answer</strong> should be a <strong>string key selected from the provided list of options</strong>. Additionally, the object includes an extra attribute:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attributes</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>values</strong>*</td>\n<td>A list of values is provided in the format of key-value pairs: <strong>{\"key\": \"optionKey\", \"value\": \"Option Value\"}</strong>. The <strong>'key'</strong> should be used as the <strong>answer</strong> to the question.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Here is the <strong>structure</strong> of the object:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"name\": \"questionSelect\",\n    \"type\": \"select\",\n    \"required\": true,\n    \"values\": [\n        {\n            \"key\": \"option1Key\",\n            \"value\": \"Option 1 Value\"\n        },\n        {\n            \"key\": \"option2Key\",\n            \"value\": \"Option 2 Value\"\n        }\n    ]\n}\n\n</code></pre>\n<p><strong>An example</strong> of the answer of the <strong>select</strong> type:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"questionSelect\": \"option1Key\"\n}\n\n</code></pre>\n<h4 id=\"with-this-list-of-questions-and-answers-to-them-one-can-compose-the-payload-for-the-claim-creation\"><strong>With this list of questions and answers to them, one can compose the payload for the Claim Creation.</strong></h4>\n","_postman_id":"bb936e2d-2990-47dc-b064-d377aff736d3"},{"name":"Claim Attachment Uploads","item":[{"name":"Uploading Claim Attachments (form-data)","id":"7c8b1d25-a29a-47e0-8ce5-89ecd272cdb8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{apiKeyAlteos}}","type":"text"},{"key":"Authorization","value":"Bearer {{accessToken}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"files","type":"file","value":null,"disabled":true},{"key":"urls","value":"","type":"text","disabled":true}]},"url":"https://api.sandbox.alteos.com/v1/claims/:claimId/attachments/uploads","description":"<p>The request allows to obtain the claim details.</p>\n","urlObject":{"protocol":"https","path":["v1","claims",":claimId","attachments","uploads"],"host":["api","sandbox","alteos","com"],"query":[],"variable":[{"type":"any","value":"","key":"claimId"}]}},"response":[{"id":"51bda627-c831-462b-a221-ad544f3ae893","name":"Using form-data","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{apiKeyAlteos}}","type":"text"},{"key":"Authorization","value":"Bearer {{accessToken}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"files","description":"file upload by system","type":"file","src":"8x5q8AiL2/Test_Image_JPG.jpg"},{"key":"urls","value":"http://example.com/file1.jpg, http://example.com/file2.jpg","description":"file uploads through multiple urls","type":"text"},{"key":"urls","value":"http://example.com/file1.jpg","description":"file upload through single url","type":"text"}]},"url":{"raw":"https://api.sandbox.alteos.com/v1/claims/:claimId/attachments/uploads","protocol":"https","host":["api","sandbox","alteos","com"],"path":["v1","claims",":claimId","attachments","uploads"],"variable":[{"key":"claimId","value":""}]}},"status":"Created","code":201,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"Created"}],"_postman_id":"7c8b1d25-a29a-47e0-8ce5-89ecd272cdb8"},{"name":"Uploading Claim Attachments (row JSON-body)","id":"745720ed-02c1-4124-9cdd-3d2c992ca6ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{apiKeyAlteos}}","type":"text"},{"key":"Authorization","value":"Bearer {{accessToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"url\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v1/claims/:claimId/attachments/uploads","urlObject":{"protocol":"https","path":["v1","claims",":claimId","attachments","uploads"],"host":["api","sandbox","alteos","com"],"query":[],"variable":[{"type":"any","value":"","key":"claimId"}]}},"response":[{"id":"b7998365-5191-4fc9-8f96-d403faa3cf7f","name":"Using Raw Json","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{apiKeyAlteos}}","type":"text"},{"key":"Authorization","value":"Bearer {{accessToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"urls\": \"http://example.com/file1.jpg, http://example.com/file2.jpg\"\n    \n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.sandbox.alteos.com/v1/claims/:claimId/attachments/uploads","protocol":"https","host":["api","sandbox","alteos","com"],"path":["v1","claims",":claimId","attachments","uploads"],"variable":[{"key":"claimId","value":""}]}},"status":"Created","code":201,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"Created"}],"_postman_id":"745720ed-02c1-4124-9cdd-3d2c992ca6ae"}],"id":"6d190c11-194d-4f38-987d-848ec87cc6fb","description":"<p>The <strong>Claim Attachment Uploads</strong> endpoint allows for uploading attachments to a specific claim. Attachments can be uploaded as files and/or URLs using form-data.</p>\n<p>The <strong>Claim ID</strong>, which contains six characters (<strong>e.g., ABC1FE</strong>), is <strong>required</strong> to associate the uploaded attachments with the relevant claim, as a path parameter.</p>\n<p>To upload the attachments for the claim, the following <strong>request</strong> <strong>body parameters</strong> can be used. While both parameters are optional, <strong>at least one</strong> must be provided for <strong>successful</strong> operation</p>\n<p>Files with updated data can be uploaded up to <strong>20</strong> times using a <strong>similar</strong> <strong>filename</strong>:</p>\n<h4 id=\"file-upload\">File Upload</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>files</td>\n<td>The <strong>attachments</strong> to be uploaded through system uploads, should be included in the <strong>form-data</strong> part of the request.  <br />Allowed <strong>formats</strong>: <strong>jpg, jpeg, pdf, png.</strong> Maximum <strong>size</strong> for each file: <strong>50 MB</strong>.  <br />Maximum of <strong>20</strong> <strong>files per request</strong>.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"urls-upload\">URLs Upload</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>urls</td>\n<td>The <strong>attachments</strong> to be uploaded through URLs, should be included in the <strong>form-data</strong> part of the request, by providing either a single URL as a value or multiple URLs with comma delimeter.  <br />Allowed <strong>formats</strong>: <strong>jpg, jpeg, pdf, png.</strong> Maximum <strong>size</strong> for each file: <strong>50 MB</strong>.  <br />Maximum of <strong>20</strong> <strong>URLs per request</strong>.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"examples\">Examples:</h2>\n<h3 id=\"using-form-data\">Using form-data:</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-powershell\">- Key: `files`, Type: `File`, Value: Select file from system.\n- Key: `urls`, Type: `Text`, Value: https://example.com/file1.jpg, https://example.com/file2.jpg\n\n</code></pre>\n<h3 id=\"in-case-of-uploading-files-only-through-urls-raw-body-json-can-also-be-used\">In case of uploading files only through URLs, raw body JSON can also be used.</h3>\n<h3 id=\"using-raw-json\">Using raw JSON:</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-bash\">{\n  \"urls\": \"http://example.com/file1.jpg, http://example.com/file2.jpg\"\n}\n\n</code></pre>\n<h2 id=\"responses\">Responses:</h2>\n<h3 id=\"success-response-status-201-created\">Success Response (Status: 201 Created)</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">Created\n\n</code></pre>\n<h3 id=\"validation-errors-status-400-bad-request\">Validation Errors (Status: 400 Bad Request)</h3>\n<h4 id=\"invalid-urls-input\">Invalid URLs Input</h4>\n<h5 id=\"this-error-will-occur-in-case-of-passing-urls-as-an-array-or-object-without-a-comma-separator-for-multiple-urls\">This error will occur in case of passing URLs as an array or object, without a comma separator for multiple URLs.</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"message\": \"Validation : \\\"urls\\\" with value \\\"[\\\"https://example1.org\\\" \\\"https://example2.org\\\"]\\\" fails to match the Please use commas as delimiters between the URLs in the list, without converting them into an array or object pattern\",\n  \"errorCode\": \"invalidData\"\n}\n\n</code></pre>\n<h4 id=\"file-format\">File Format</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"message\": \"File validation error: \\\"fileFormat\\\" must be one of [application/pdf, image/jpg, image/jpeg, image/png], \\\"File Name\\\": example.\",\n  \"errorCode\": \"invalidData\"\n}\n\n</code></pre>\n<h4 id=\"file-size\">File Size</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"message\": \"File validation error: \\\"File Size greater than 50MB is not allowed\\\" must be less than or equal to 50, \\\"File Name\\\": 100MB-TESTFILE.ORG.pdf.\",\n  \"errorCode\": \"invalidData\"\n}\n\n</code></pre>\n<h4 id=\"file-already-exists\">File Already Exists</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"message\": \"File(s) already exist: Please remove the following files from upload: example.pdf.\",\n  \"errorCode\": \"invalidData\"\n}\n\n</code></pre>\n<h4 id=\"total-number-of-files\">Total Number of Files</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"message\": \"File validation error: \\\"Total number of files should not exceed 20\\\" must be less than or equal to 20, \\\"File Name\\\": 21thFile.pdf.\",\n  \"errorCode\": \"invalidData\"\n}\n\n</code></pre>\n<h4 id=\"file-duplication-file-update-with-same-filename-upto-20-times\">File duplication (file update with same filename) upto 20 times</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"message\": \"Maximum version limit reached\"\n        \"File fileName has already been updated 20 times. Please use a different filename.\",\n  \"errorCode\": \"invalidData\"\n}\n\n</code></pre>\n<h4 id=\"provided-url-for-uploads-not-found\">Provided URL for Uploads Not Found</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"message\": \"Process URL Files: Not Found.\",\n  \"errorCode\": \"invalidData\"\n}\n\n</code></pre>\n<h4 id=\"invalid-keys-for-urls-andor-files-upload-by-form-data\">Invalid keys for URLs and/or files upload by form-data</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"message\": \"When providing URLs, please use the key `urls` with values that contain one or more URLs separated by commas. For file uploads, use the key `files` in the form-data.\",\n  \"errorCode\": \"invalidData\"\n}\n\n</code></pre>\n","_postman_id":"6d190c11-194d-4f38-987d-848ec87cc6fb"},{"name":"Create Claim","item":[{"name":"Create Claim With Attachments","id":"6fbda502-c04e-4e49-a955-a3d4ff4b5a4a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{accessToken}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"files","type":"file","value":null},{"key":"urls","value":"","type":"text"},{"key":"values","value":"","type":"text"},{"key":"claimedAt","value":"","type":"text","disabled":true}]},"url":"https://api.sandbox.alteos.com/v1/policies/{{policyId}}/claim","urlObject":{"protocol":"https","path":["v1","policies","{{policyId}}","claim"],"host":["api","sandbox","alteos","com"],"query":[],"variable":[]}},"response":[{"id":"bb21439b-5af3-4c44-9594-0111fe16c768","name":"create claim with attachment","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{accessToken}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"files","description":"file upload by system","type":"file","src":"p6YB-ARq4/test_data_2.pdf"},{"key":"urls","value":"http://example.com/file1.jpg, http://example.com/file2.jpg","description":"file uploads through multiple urls","type":"text"},{"key":"values","value":"{\"Question1\":\"Answer1\", \"Question2\":\"Answer2\"}","description":"claim questions","type":"text"}]},"url":{"raw":"https://api.sandbox.alteos.com/v1/policies/:policyId/claim","protocol":"https","host":["api","sandbox","alteos","com"],"path":["v1","policies",":policyId","claim"],"variable":[{"key":"policyId","value":""}]}},"status":"Created","code":201,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"6ceb94bc-926d-47e4-960e-c365cb55250c\",\n  \"prettyId\": \"XZZF5R\"\n}"},{"id":"80098d63-b6af-4fc9-b9c5-76f8559917d1","name":"create claim with attachment with warning message","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{accessToken}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"files","description":"file upload by system","type":"file","src":"p6YB-ARq4/test_data_2.pdf"},{"key":"urls","value":"http://example.com/file1.jpg, http://example.com/file2.jpg","description":"file uploads through multiple urls","type":"text"},{"key":"values","value":"{\"Question1\":\"Answer1\", \"Question2\":\"Answer2\"}","description":"claim questions","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":{"raw":"https://api.sandbox.alteos.com/v1/policies/:policyId/claim","protocol":"https","host":["api","sandbox","alteos","com"],"path":["v1","policies",":policyId","claim"],"variable":[{"key":"policyId","value":""}]}},"status":"Created","code":201,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"6ceb94bc-926d-47e4-960e-c365cb55250c\",\n  \"prettyId\": \"XZZF5R\"\n  \"Warning\": Some attachments failed to upload. Please use claim attachment upload API for uploading of the following files: file2.jpg.\n}"}],"_postman_id":"6fbda502-c04e-4e49-a955-a3d4ff4b5a4a"},{"name":"Create Claim Without Attachments","id":"6060e0cb-a107-4a14-89fc-8b0b1e11feb9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{accessToken}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"values","value":"","type":"text"},{"key":"claimedAt","value":"","type":"text","disabled":true}]},"url":"https://api.sandbox.alteos.com/v1/policies/{{policyId}}/claim","urlObject":{"protocol":"https","path":["v1","policies","{{policyId}}","claim"],"host":["api","sandbox","alteos","com"],"query":[],"variable":[]}},"response":[{"id":"e75bbd6c-1393-49b0-b0f8-7471d6f45cd9","name":"create claim without attachment","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{accessToken}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"values","value":"{\"Question1\":\"Answer1\", \"Question2\":\"Answer2\"}","description":"claim questions","type":"text"}]},"url":{"raw":"https://api.sandbox.alteos.com/v1/policies/:policyId/claim","protocol":"https","host":["api","sandbox","alteos","com"],"path":["v1","policies",":policyId","claim"],"variable":[{"key":"policyId","value":""}]}},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"6ceb94bc-926d-47e4-960e-c365cb55250c\",\n  \"prettyId\": \"XZZF5R\"\n}"}],"_postman_id":"6060e0cb-a107-4a14-89fc-8b0b1e11feb9"}],"id":"8d92a365-2b78-41a7-ad69-ba13d957090c","description":"<p>The <strong>Create Claim endpoint</strong> facilitates the creation of a claim associated with a specific policy.</p>\n<p><strong>Creation of the claim is specific</strong> to each policy, so the <strong>Policy ID must be provided to create a claim</strong>. The Policy ID can be found in the contract and contains six characters, <strong>for example, ABC1FE</strong>.</p>\n<p>The following fields should be included as <strong>form-data</strong> in the <strong>request body</strong>. Optional fields can be omitted if not needed.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>values (<strong>Mandatory</strong>)</td>\n<td>Values contains answers to the claim-related questions and are required in the format of key-value pairs: <strong>{\"keyQuestion\": \"AnswerValue\"}</strong>. These questions should be retrieved from the <a href=\"https://alteos.postman.co/workspace/Alteos~2d6c0a0e-2a45-4062-851b-5fa90e755934/folder/5329358-580ee6a2-f8cf-4ba8-b1d0-90891ff12d8d?action=share&amp;source=copy-link&amp;creator=23389815&amp;active-environment=6f154ebd-3f68-402c-9ce6-c0d398303e77\">Claim Questions API</a>.</td>\n</tr>\n<tr>\n<td>files (<strong>Optional</strong>)</td>\n<td>The attachments to be uploaded through the system. These should be included in the form-data part of the request. Allowed file formats are <strong>jpg</strong>, <strong>jpeg</strong>, <strong>pdf</strong>, and <strong>png</strong>, with a <strong>maximum</strong> size of <strong>50 MB</strong> per file. A <strong>maximum</strong> of <strong>5 files</strong> can be uploaded per request.</td>\n</tr>\n<tr>\n<td>urls (<strong>Optional</strong>)</td>\n<td>The URLs of attachments to be included in the claim. These should be provided in the form-data part of the request, either as a single URL or multiple urls with comma delimeters. Allowed file <strong>formats</strong> are <strong>jpg</strong>, <strong>jpeg</strong>, <strong>pdf</strong>, and <strong>png</strong>, with a <strong>maximum</strong> size of <strong>50 MB</strong> per file. A <strong>maximum</strong> of <strong>5 files</strong> can be uploaded per request.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"examplesusing-form-data\">Examples<strong>Using form-data:</strong></h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">- Key: `values`, Type: `Text`, Value: {\"Question1\": \"Answer1\", \"Question2\": \"Answer2\"}\n- Key: `files`, Type: `File`, Value: Select file from system.\n- Key: `urls`, Type: `Text`, Value: https://example.com/file1.jpg, https://example.com/file2.jpg\n- Key: `urls`, Type: `Text`, Value: http://example.com/file1.jpg\n\n</code></pre>\n<h2 id=\"responses\">Responses:</h2>\n<h3 id=\"response-ids-explanation\">Response ids explanation</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>id</strong></td>\n<td>ID - unique claim identifier</td>\n</tr>\n<tr>\n<td><strong>prettyId</strong></td>\n<td>Pretty ID - unique \"user-friendly\" claim identifier</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"success-response-status-201-created\">Success Response (Status: 201 Created)</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"id\": \"6ceb94bc-926d-47e4-960e-c365cb55250c\",\n  \"prettyId\": \"XZZF5R\"\n}\n\n</code></pre>\n<h3 id=\"success-response-with-warning-status-201-created\">Success Response With Warning (Status: 201 Created)</h3>\n<p>In this case, the <strong>claim</strong> has already been <strong>created</strong>, but due to some reason, the <strong>attachments</strong> may <strong>not</strong> have been fully or partially <strong>uploaded</strong>.</p>\n<p>Please <strong>don't retry</strong> the <strong>claim creation endpoint</strong> to avoid <strong>duplicate</strong> claims; instead, <strong>use</strong> the <a href=\"https://alteos.postman.co/workspace/Alteos~2d6c0a0e-2a45-4062-851b-5fa90e755934/folder/5329358-77ab883e-9e84-46be-98db-e92a7c5c4ffe\">Claim Attachment Upload API</a> with the generated claim ID to upload <strong>missing attachments</strong>.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"id\": \"6ceb94bc-926d-47e4-960e-c365cb55250c\",\n  \"prettyId\": \"XZZF5R\",\n  \"warning\": \"Some attachments failed to upload. Please use the claim attachment upload API for uploading the following files: [list of the not uploaded files].\"\n}\n\n</code></pre>\n<h3 id=\"validation-errors-status-400-bad-request\">Validation Errors (Status: 400 Bad Request)</h3>\n<h4 id=\"values-claim-questions-are-missing\">Values (claim questions) are missing</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"message\": \"Validation: \\\"values\\\" is required.\",\n  \"errorCode\": \"invalidData\"\n}\n\n</code></pre>\n<h4 id=\"invalid-urls-input\">Invalid URLs Input</h4>\n<h5 id=\"this-error-will-occur-in-case-of-passing-urls-as-an-array-or-object-without-a-comma-separator-for-multiple-urls\">This error will occur in case of passing URLs as an array or object, without a comma separator for multiple URLs.</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"message\": \"Validation : \\\"urls\\\" with value \\\"[\\\"https://example1.org\\\" \\\"https://example2.org\\\"]\\\" fails to match the Please use commas as delimiters between the URLs in the list, without converting them into an array or object pattern\",,\n  \"errorCode\": \"invalidData\"\n}\n\n</code></pre>\n<h4 id=\"file-format\">File Format</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"message\": \"File validation error: \\\"fileFormat\\\" must be one of [application/pdf, image/jpg, image/jpeg, image/png], \\\"File Name\\\": example.\",\n  \"errorCode\": \"invalidData\"\n}\n\n</code></pre>\n<h4 id=\"file-size\">File Size</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"message\": \"File validation error: \\\"File Size greater than 50MB is not allowed\\\" must be less than or equal to 50, \\\"File Name\\\": 100MB-TESTFILE.ORG.pdf.\",\n  \"errorCode\": \"invalidData\"\n}\n\n</code></pre>\n<h4 id=\"total-number-of-files\">Total Number of Files</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"message\": \"File validation error: \\\"Total number of files should not exceed 5\\\" must be less than or equal to 5, \\\"File Name\\\": 6thFile.pdf.\",\n  \"errorCode\": \"invalidData\"\n}\n\n</code></pre>\n<h4 id=\"duplicate-file-names\">Duplicate File Names</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"message\": \"Duplicate file names found: duplicate.pdf.\",\n  \"errorCode\": \"invalidData\"\n}\n\n</code></pre>\n<h4 id=\"provided-url-for-uploads-not-found\">Provided URL for Uploads Not Found</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"message\": \"Process URL Files: Not Found.\",\n  \"errorCode\": \"invalidData\"\n}\n\n</code></pre>\n","_postman_id":"8d92a365-2b78-41a7-ad69-ba13d957090c"},{"name":"Claim Details","item":[{"name":"Get Claim Details","id":"603d7258-8d68-4310-876d-9d8d73de9d83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-App-Key","value":"{{AlteosAppKey}}"},{"key":"Authorization","value":"Bearer {{AccessToken}}"}],"url":"https://api.sandbox.alteos.com/v1/claims/{{claimId}}/details","urlObject":{"protocol":"https","path":["v1","claims","{{claimId}}","details"],"host":["api","sandbox","alteos","com"],"query":[],"variable":[]}},"response":[{"id":"9d9d2d90-ed92-4272-a0b6-358be4af0669","name":"Get Claim Details","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-App-Key","value":"{{AlteosAppKey}}"},{"key":"Authorization","value":"Bearer {{AccessToken}}"}],"url":"https://api.sandbox.alteos.com/v1/claims/{{claimId}}/details"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"850feae9-4f20-4f9d-85fa-a3d826fc84c3\",\n    \"prettyId\": \"H7BBDA\",\n    \"status\": \"approved\",\n    \"subStatus\": \"paymentPending\",\n    \"notes\": [{\n        \"id\": \"6670967d-6e13-4374-bfdc-872e6f07b8b8\",\n        \"createdAt\": \"2024-08-07T10:03:31.254Z\",\n        \"text\": \"test note\",\n    }]\n}"}],"_postman_id":"603d7258-8d68-4310-876d-9d8d73de9d83"}],"id":"4cd9b565-a577-4a22-a5ec-c310852554a2","description":"<p>The <strong>Claim Details</strong> endpoint provides with the information related to a claim.</p>\n<p><strong>Claim ID must be provided to obtain details, for example, ABC1FE (Pretty ID) or 850feae9-4f20-4f9d-85fa-a3d826fc84c3 (UUID)</strong>.</p>\n<p>Here is an example of the details that the endpoint can return:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-bash\">{\n    \"id\": \"850feae9-4f20-4f9d-85fa-a3d826fc84c3\",\n    \"prettyId\": \"H7BBDA\",\n    \"status\": \"approved\",\n    \"subStatus\": \"paymentPending\",\n    \"notes\": [{\n        \"id\": \"6670967d-6e13-4374-bfdc-872e6f07b8b8\",\n        \"createdAt\": \"2024-08-07T10:03:31.254Z\",\n        \"text\": \"test note\",\n    }]\n}\n\n</code></pre>\n<h1 id=\"claim-details-response-explanation\">Claim Details response explanation</h1>\n<p><strong>Claim details response</strong> contains the <strong>following attributes</strong>:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attributes</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>id</strong></td>\n<td>Claim ID - unique claim identifier</td>\n</tr>\n<tr>\n<td><strong>prettyId</strong></td>\n<td>Pretty ID - unique \"user-friendly\" claim identifier</td>\n</tr>\n<tr>\n<td><strong>status</strong></td>\n<td>Current status of the claim.</td>\n</tr>\n<tr>\n<td><strong>subStatus</strong></td>\n<td>Detailed information about the current status of claim</td>\n</tr>\n<tr>\n<td><strong>notes</strong></td>\n<td>A list of notes attached to the claim.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"4cd9b565-a577-4a22-a5ec-c310852554a2"},{"name":"Claim Status History","item":[{"name":"Get Claim Status History","id":"517162c4-f5a7-4e9b-b470-bc5828978338","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-App-Key","value":"{{AlteosAppKey}}"},{"key":"Authorization","value":"Bearer {{AccessToken}}"}],"url":"https://api.sandbox.alteos.com/v1/claims/{{claimId}}/status-history","urlObject":{"protocol":"https","path":["v1","claims","{{claimId}}","status-history"],"host":["api","sandbox","alteos","com"],"query":[],"variable":[]}},"response":[{"id":"d476f4b5-3f96-4d2d-99c0-8c62d047d101","name":"Get Claim Status History","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-App-Key","value":"{{AlteosAppKey}}"},{"key":"Authorization","value":"Bearer {{AccessToken}}"}],"url":"https://api.sandbox.alteos.com/v1/claims/{{claimId}}/status-history"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"statusHistory\": [\n        {\n            \"status\": \"created\",\n            \"editedAt\": \"2024-08-07T12:01:02.228Z\"\n        },\n        {\n            \"status\": \"partiallyApproved\",\n            \"editedAt\": \"2024-08-07T12:10:57.341Z\"\n        }\n    ]\n}"}],"_postman_id":"517162c4-f5a7-4e9b-b470-bc5828978338"}],"id":"c5ca8371-a7f5-4b27-9edf-4686360ae80b","description":"<p>The <strong>Claim Status History</strong> endpoint provides with the information about the claim status change history.</p>\n<p><strong>Claim ID must be provided to obtain details, for example, ABC1FE (Pretty ID) or 850feae9-4f20-4f9d-85fa-a3d826fc84c3 (UUID)</strong>.</p>\n<p>Here is an example of the details that the endpoint can return:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"statusHistory\": [\n        {\n            \"status\": \"created\",\n            \"editedAt\": \"2024-08-07T12:01:02.228Z\"\n        },\n        {\n            \"status\": \"partiallyApproved\",\n            \"editedAt\": \"2024-08-07T12:10:57.341Z\"\n        }\n    ]\n}\n\n</code></pre>\n<h1 id=\"claim-status-history-response-explanation\">Claim Status History response explanation</h1>\n<p><strong>Claim Status History response</strong> contains the <strong>following attributes</strong>:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attributes</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>statusHistory</strong></td>\n<td>A list of unique status transitions</td>\n</tr>\n<tr>\n<td><strong>status</strong></td>\n<td>Current status of the claim.</td>\n</tr>\n<tr>\n<td><strong>editedAt</strong></td>\n<td>The date when the status was applied</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"c5ca8371-a7f5-4b27-9edf-4686360ae80b"},{"name":"All Claims for Policy","item":[{"name":"Get All Claims for Policy","id":"98dfeefc-4560-4dbe-a0a5-6e574e0b7267","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{AlteosAppKey}}","type":"text"},{"key":"Authorization","value":"Bearer {{AccessToken}}","type":"text"}],"url":"https://api.sandbox.alteos.com/v1/policies/:policyId/claims/all","urlObject":{"path":["v1","policies",":policyId","claims","all"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[{"type":"any","value":"","key":"policyId"}]}},"response":[{"id":"ebd90eda-73a5-405a-b346-8b7d2824a000","name":"Get All Claims for Policy","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.sandbox.alteos.com/v1/policies/:policyId/claims/all","host":["https://api.sandbox.alteos.com"],"path":["v1","policies",":policyId","claims","all"],"variable":[{"key":"policyId","value":""}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"claims\": [\n        {\n            \"id\": \"a23d4f67-1bcf-4c21-99d1-5f7e6c82f327\",\n            \"prettyId\": \"G8VZXR\",\n            \"status\": \"created\",\n            \"values\": {\n                \"claimType\": \"Type of damage\",\n                \"claimReportDate\": \"2023-06-17\",\n                \"estimatedClaimAmount\": 100\n            }\n        }\n    ]\n}"}],"_postman_id":"98dfeefc-4560-4dbe-a0a5-6e574e0b7267"}],"id":"2e6531b2-28be-4c6f-823e-ae22892c19bf","description":"<p>The <strong>All Claims For Policy</strong> endpoint provides <strong>all claims for the specified policy</strong>.</p>\n<p><strong>Policy ID</strong> must be provided in request parameters, <strong>for example, M7TXQZ (Pretty ID) or b3e27c2a-5ba6-4b5e-b61e-91b2cb749a5d (UUID)</strong>.</p>\n<p>Here is an example of claims the endpoint could return:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"claims\": [\n        {\n            \"id\": \"a23d4f67-1bcf-4c21-99d1-5f7e6c82f327\",\n            \"prettyId\": \"G8VZXR\",\n            \"status\": \"created\",\n            \"values\": {\n                \"claimType\": \"Type of damage\",\n                \"claimReportDate\": \"2023-06-17\",\n                \"estimatedClaimAmount\": 100\n            }\n        }\n    ]\n}\n\n</code></pre>\n<h3 id=\"response-explanation\">Response explanation</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>id</strong></td>\n<td>ID - unique claim identifier</td>\n</tr>\n<tr>\n<td><strong>prettyId</strong></td>\n<td>Pretty ID - unique \"user-friendly\" claim identifier</td>\n</tr>\n<tr>\n<td><strong>status</strong></td>\n<td>Current status of the claim</td>\n</tr>\n<tr>\n<td><strong>values</strong></td>\n<td>The following values are expected to be returned in case answers were provided for them on claim creation:  <br /><strong>claimType</strong> - type of damage  <br /><strong>claimReportDate</strong> - date when claim was reported to Alteos  <br /><strong>estimatedClaimAmount</strong> - amount to be expected to be paid out</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"2e6531b2-28be-4c6f-823e-ae22892c19bf"},{"name":"Ingest Claim","item":[{"name":"Ingest claim creation data","id":"c40457d2-3f5b-4400-8e11-60c25e2bf2eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{apiKeyAlteos}}","type":"text"},{"key":"Authorization","value":"Bearer {{accessToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"status\": \"open\",\n  \"values\": {\n    \"partnerClaimIdentifier\": \"partner claim unique identifier\", // Required Field\n    \"initialLossReserve\": 20, // Required Field must be greater than zero\n    \"partnerPolicyIdentifier\": \"partner policy contract number\",\n    \"createdAt\": \"2024-08-07T10:03:31.254Z\",\n    \"question1\": \"Answer1\",\n    \"question2\": \"Answer2\"\n  },\n  \"note\": \"Provide any additional notes or comments here.\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v1/policies/:policyId/claim/ingest","urlObject":{"path":["v1","policies",":policyId","claim","ingest"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[{"type":"any","value":"","key":"policyId"}]}},"response":[{"id":"42610ec2-7224-4c0f-aaea-acc38fda851d","name":"Example Happy Path","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{apiKeyAlteos}}","type":"text"},{"key":"Authorization","value":"Bearer {{accessToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"status\": \"open\",\n  \"values\": {\n    \"partnerClaimIdentifier\": \"CLA-23456\", // Required Field\n    \"initialLossReserve\": 20, // Required Field\n    \"partnerPolicyIdentifier\": \"LA-34567\",\n    \"createdAt\": \"2024-08-07T10:03:31.254Z\",\n    \"question1\": \"Answer1\",\n    \"question2\": \"Answer2\"\n  },\n  \"note\": \"Provide any additional notes or comments here.\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.sandbox.alteos.com/v1/policies/:policyId/claim/ingest","host":["https://api.sandbox.alteos.com"],"path":["v1","policies",":policyId","claim","ingest"],"variable":[{"key":"policyId","value":"ABC1FE"}]}},"status":"OK","code":200,"_postman_previewlanguage":"","header":[{}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n  \"id\": \"6ceb94bc-926d-47e4-960e-c365cb55250c\",\n  \"claimId\": \"XZZF5R\"\n}"},{"id":"1f19588b-43fc-442b-9829-af02be398bf8","name":"Example initialLossReserve value as 0","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{apiKeyAlteos}}","type":"text"},{"key":"Authorization","value":"Bearer {{accessToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"status\": \"open\",\n  \"values\": {\n    \"partnerClaimIdentifier\": \"CLA-23456\", // Required Field\n    \"initialLossReserve\": 0, // Required Field\n    \"partnerPolicyIdentifier\": \"LA-34567\",\n    \"createdAt\": \"2024-08-07T10:03:31.254Z\",\n    \"question1\": \"Answer1\",\n    \"question2\": \"Answer2\"\n  },\n  \"note\": \"Provide any additional notes or comments here.\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.sandbox.alteos.com/v1/policies/:policyId/claim/ingest","host":["https://api.sandbox.alteos.com"],"path":["v1","policies",":policyId","claim","ingest"],"variable":[{"key":"policyId","value":"ABC1FE"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"","header":[{}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"message\": \"Validation : \\\"amount.value\\\" must be a positive number. \\\"amount.value\\\" must be greater than 0\",\n    \"errorCode\": \"invalidData\"\n}"}],"_postman_id":"c40457d2-3f5b-4400-8e11-60c25e2bf2eb"}],"id":"caa30115-df55-40ae-839b-3f759c8838f4","description":"<p>The <strong>Ingest Claim Creation endpoint</strong> allows you to create a claim that is linked to a specific policy. Since claims are tied to individual policies, the <strong>Policy ID must be provided</strong> as <strong>URL parameters</strong> to create a claim.</p>\n<h3 id=\"request-parameters\"><strong>Request Parameters:</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required?</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>policyId</strong></td>\n<td><strong>String</strong></td>\n<td>Mandatory</td>\n<td>The identifier of the policy to which the claim is associated. Example: <strong>ABC1FE</strong>.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"request-body-fields\"><strong>Request Body Fields:</strong></h3>\n<p>The following fields should be included as <strong>JSON data</strong> in the <strong>request body</strong>. Optional fields can be omitted if not required.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required?</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>values</strong></td>\n<td><strong>JSONObject</strong></td>\n<td>Two fields are mandatory to provide  <br /><em><strong>initialLossReserve (Number and must be greater than zero) and</strong></em>  <br /><em><strong>partnerClaimIdentifier (string)</strong></em></td>\n<td>Provides metadata related to the claim, such as contract numbers, claim questions and other relevant details. Example: {\"partnerClaimIdentifier\": \"CLA-23455\", initialLossReserve: 23}.</td>\n</tr>\n<tr>\n<td><strong>status</strong></td>\n<td><strong>String</strong></td>\n<td>Mandatory</td>\n<td>This is a required field that indicates the status of the claim. Any status value can be provided, but it is highly recommended to use <strong>\"closed\"</strong> when finalizing or closing a claim, in order to stay aligned with Alteos.  <br />Example: \"closed\"</td>\n</tr>\n<tr>\n<td><strong>note</strong></td>\n<td><strong>String</strong></td>\n<td>Optional</td>\n<td>An optional field to add additional descriptions or notes about the claim. Example: <code>\"Initial investigation indicates moderate damage.\"</code>.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"example-request\"><strong>Example Request:</strong></h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": \"open\",\n  \"values\": {\n    \"partnerClaimIdentifier\": \"partner claim unique identifier\", // Required Field\n    \"initialLossReserve\": 20, // Required Field and must be greater than zero\n    \"partnerPolicyIdentifier\": \"partner policy contract number\",\n    \"createdAt\": \"2024-08-07T10:03:31.254Z\",\n    \"question1\": \"Answer1\",\n    \"question2\": \"Answer2\"\n  }\n  \"note\": \"Provide any additional notes or comments here.\"\n}\n\n</code></pre>\n<hr />\n<h3 id=\"response-fields\"><strong>Response Fields:</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>id</strong></td>\n<td>The unique identifier for the claim (UUID format). Example: <code>\"6ceb94bc-926d-47e4-960e-c365cb55250c\"</code>.</td>\n</tr>\n<tr>\n<td><strong>claimId</strong></td>\n<td>A user-friendly, human-readable identifier for the claim. Example: <code>\"XZZF5R\"</code>.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"success-response-status-201-created\"><strong>Success Response (Status: 201 Created):</strong></h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"id\": \"6ceb94bc-926d-47e4-960e-c365cb55250c\",\n  \"claimId\": \"XZZF5R\"\n}\n\n</code></pre>\n<hr />\n<h3 id=\"validation-error-responses-status-400-bad-request\"><strong>Validation Error Responses (Status: 400 Bad Request):</strong></h3>\n<h4 id=\"1-missing-policy-id-from-the-url\">1. Missing <strong>Policy ID</strong> (from the URL):</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"message\": \"Validation: 'policyId' are required as URL parameters.\",\n  \"errorCode\": \"missingIds\"\n}\n\n</code></pre>\n<h4 id=\"2-missing-partnerclaimidentifier-inside-the-data-field\">2. Missing partnerClaimIdentifier inside the <strong>data</strong> field:</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"message\": \"Validation: 'partnerClaimIdentifier' is required.\",\n  \"errorCode\": \"invalidData\"\n}\n\n</code></pre>\n<h4 id=\"3-missing-status-field\">3. Missing <strong>status</strong> field:</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"message\": \"Validation: 'status' is required.\",\n  \"errorCode\": \"invalidData\"\n}\n\n</code></pre>\n<h4 id=\"4-missing-initiallossreserve-field\">4. Missing <strong>initialLossReserve</strong> field:</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"message\": \"Validation: 'initialLossReserve' is required.\",\n  \"errorCode\": \"invalidData\"\n}\n\n</code></pre>\n","_postman_id":"caa30115-df55-40ae-839b-3f759c8838f4"},{"name":"Update Claim","item":[{"name":"Update claim","id":"d5ba72c8-c9d5-49aa-8456-e29c73c56bc6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{apiKeyAlteos}}","type":"text"},{"key":"Authorization","value":"Bearer {{accessToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\": \"anything\", // Optional\n    \"subStatus\": \"withoutPayment\", //Optional\n    \"values\": {\n        \"partnerClaimIdentifier\": \"CLA-23456\" // Optional\n    },\n    \"lossReserveDelta\": {\n        \"amount\": 20, // Required\n        \"type\": \"increase\" // Required, in case if delta amount is decreasing then the type should be pass as decrease\n    }, // Optional,\n    \"note\": \"Optional\", // Optional\n    \"skipNotification\": false // Optional, default value is false, prevent send webhook events to partners who intergrate webhook\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v1/policies/:policyId/claims/:claimId/update","description":"<p>Update an existing claim belonging to a specific policy. Use this endpoint to adjust claim status, reserve amounts, partner identifiers, and related metadata.</p>\n<p><strong>Auth</strong><br />Requires <code>Authorization: Bearer {{accessToken}}</code> and <code>X-App-Key: {{apiKeyAlteos}}</code> headers.</p>\n<p><strong>Path variables</strong><br /><code>policyId</code>, <code>claimId</code> (both required).</p>\n<p><strong>Key body fields</strong></p>\n<ul>\n<li><p><code>status</code> – High-level claim status (optional).</p>\n</li>\n<li><p><code>subStatus</code> – More granular status, e.g. <code>withoutPayment</code> (optional).</p>\n</li>\n<li><p><code>values.partnerClaimIdentifier</code> – Partner-side claim reference like <code>CLA-23456</code> (optional).</p>\n</li>\n<li><p><code>lossReserveDelta.amount</code> – Amount by which to change the loss reserve (required if <code>lossReserveDelta</code> is sent).</p>\n</li>\n<li><p><code>lossReserveDelta.type</code> – Direction of change, <code>increase</code> or <code>decrease</code> (required if <code>lossReserveDelta</code> is sent).</p>\n</li>\n<li><p><code>note</code> – Free-text internal note for the claim (optional).</p>\n</li>\n<li><p><code>skipNotification</code> – If <code>true</code>, suppresses webhook notifications to integrated partners (optional, defaults to <code>false</code>).</p>\n</li>\n</ul>\n","urlObject":{"path":["v1","policies",":policyId","claims",":claimId","update"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[{"type":"any","value":"","key":"policyId"},{"type":"any","value":"","key":"claimId"}]}},"response":[{"id":"e3f8984b-94bb-4c72-9a52-fa3814f65e36","name":"Example-Status","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{apiKeyAlteos}}","type":"text"},{"key":"Authorization","value":"Bearer {{accessToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\": \"closed\",\n    \"subStatus\": \"WithoutPayment\"\n}\n","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.sandbox.alteos.com /v1/policies/:policyId/claims/:claimId/update","host":["https://api.sandbox.alteos.com "],"path":["v1","policies",":policyId","claims",":claimId","update"],"variable":[{"key":"policyId","value":"LTUW56","enabled":true,"type":"text"},{"key":"claimId","value":"QTUW42","enabled":true,"type":"text"}]}},"status":"Updated","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"5384ec19-f24e-4303-aabf-a841e516001d","name":"example-complete-data-update","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{apiKeyAlteos}}","type":"text"},{"key":"Authorization","value":"Bearer {{accessToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\": \"anything\", // Optional\n    \"values\": {\n        \"partnerClaimIdentifier\": \"CLA-23456\" // Optional\n    },\n    \"lossReserveDelta\": {\n        \"amount\": 20,\n        \"type\": \"increase\"\n    },\n    \"note\": \"Optional\" // Optional\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.sandbox.alteos.com /v1/policies/:policyId/claims/:claimId/update","host":["https://api.sandbox.alteos.com "],"path":["v1","policies",":policyId","claims",":claimId","update"],"variable":[{"key":"policyId","value":"LTUW56","enabled":true,"type":"text"},{"key":"claimId","value":"QTUW42","enabled":true,"type":"text"}]}},"status":"Updated","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"9922264a-cbc0-4697-87ed-4554cddd6d84","name":"Example-lossReserveDelta-increase","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{apiKeyAlteos}}","type":"text"},{"key":"Authorization","value":"Bearer {{accessToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"lossReserveDelta\": {\n        \"amount\": 20,\n        \"type\": \"increase\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.sandbox.alteos.com/v1/policies/:policyId/claims/:claimId/update","host":["https://api.sandbox.alteos.com"],"path":["v1","policies",":policyId","claims",":claimId","update"],"variable":[{"key":"policyId","value":"LTUW56"},{"key":"claimId","value":"QTUW42"}]}},"status":"Updated","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"55c511a4-0a28-4954-b120-33482d7c612f","name":"Example-lossReserveDelta-decrease","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{apiKeyAlteos}}","type":"text"},{"key":"Authorization","value":"Bearer {{accessToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"lossReserveDelta\": {\n        \"amount\": 20,\n        \"type\": \"decrease\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.sandbox.alteos.com/v1/policies/:policyId/claims/:claimId/update","host":["https://api.sandbox.alteos.com"],"path":["v1","policies",":policyId","claims",":claimId","update"],"variable":[{"key":"policyId","value":"LTUW56"},{"key":"claimId","value":"QTUW42"}]}},"status":"Updated","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"d5ba72c8-c9d5-49aa-8456-e29c73c56bc6"}],"id":"1c22c56e-1002-45b6-bb76-140f734ccf6f","description":"<p>The <strong>Claim Update endpoint</strong> allows you to update a claim associated with a specific policy. The <strong>Claim ID</strong> and <strong>Policy ID</strong> must be provided as <strong>URL parameters</strong> to update a claim.</p>\n<h3 id=\"request-parameters-mandatory\"><strong>Request Parameters (<strong>Mandatory</strong>):</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>claimId</strong></td>\n<td><strong>String</strong></td>\n<td>The unique identifier of the claim, provided during the claim ingestion process. It contains six characters, such as <strong>ABC1FE</strong>.</td>\n</tr>\n<tr>\n<td><strong>policyId</strong></td>\n<td><strong>String</strong></td>\n<td>The unique identifier of the policy, provided during the policy creation process. It contains six characters, such as <strong>ABC1FE</strong>.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-body-fields-optional\"><strong>Request Body Fields (Optional):</strong></h3>\n<p>The following fields are <strong>optional</strong> and can be included as <strong>JSON data</strong> in the <strong>request body</strong>. While all fields are optional, <strong>at least one field</strong> must be provided to process the update.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>values</strong></td>\n<td><strong>JSONObject</strong>  <br /><em>partnerClaimIdentifier (string) can be updated too by passing inside this object</em></td>\n<td>Provides metadata related to the claim, such as contract numbers, claim questions and other relevant details. Example: {\"partnerClaimIdentifier\": \"CLA-23455\", claimType: \"notfall\"}.</td>\n</tr>\n<tr>\n<td><strong>status</strong></td>\n<td><strong>String</strong></td>\n<td>This is a required field that indicates the status of the claim. Any status value can be provided, but it is highly recommended to use <strong>\"closed\"</strong> when finalizing or closing a claim, in order to stay aligned with Alteos.  <br />Example: \"closed\"</td>\n</tr>\n<tr>\n<td><strong>subStatus</strong></td>\n<td><strong>String</strong></td>\n<td>This is an optional field that indicates the subStatus of the claim.</td>\n</tr>\n<tr>\n<td><strong>lossReserveDelta</strong></td>\n<td><strong>JSONObject</strong>  <br /><em>Keys</em>:  <br /><strong>amount</strong> (number in Euros) - Required  <br /><strong>type</strong>: ENUM (increase, decrease) - Required,  <br /><strong>description</strong>: string - optional</td>\n<td>If the initial loss reserve or estimated claim amounts are updated from their initial values, the revised amounts difference/delta can be passed through these variable amount and type as amount is increase or decrease. Please note that the amount is only the difference/delta from the exisitng amount.</td>\n</tr>\n<tr>\n<td><strong>note</strong></td>\n<td><strong>String</strong></td>\n<td>An optional field to add additional descriptions or notes about the claim. Example: <code>\"Initial investigation indicates moderate damage.\"</code>.</td>\n</tr>\n<tr>\n<td><strong>skipNotification</strong></td>\n<td><strong>Boolean</strong></td>\n<td>Indicates whether claim update notifications should be suppressed, preventing the Claim Updated event from being sent to partner systems when set to <code>true</code>.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"examples-using-raw-json-data\">Examples u<strong>sing raw json-data:</strong></h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": \"closed\",\n  \"subStatus\": \"rejectedWithoutPayment\",\n  \"values\": {\n    \"partnerClaimIdentifier\": \"CLA-23456\",\n    \"partnerPolicyIdentifier\": \"LA-34567\",\n    \"createdAt\": \"2024-08-07T10:03:31.254Z\",\n    \"question1\": \"Answer1\",\n    \"question2\": \"Answer2\"\n  },\n  \"lossReserveDelta\": {\n    \"amount\": 20\n    \"type\": \"increase\"\n   },\n  \"note\": \"Provide any additional notes or comments here.\",\n  \"skipNotification\": true\n}\n\n</code></pre>\n<h2 id=\"responses\">Responses:</h2>\n<h3 id=\"success-response-status-200-updated\">Success Response (Status: 200 Updated)</h3>\n<h3 id=\"validation-error-responses-status-400-bad-request\"><strong>Validation Error Responses (Status: 400 Bad Request):</strong></h3>\n<h4 id=\"1-missing-claim-id-or-policy-id-from-the-url\">1. Missing <strong>Claim ID</strong> or <strong>Policy ID</strong> (from the URL):</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"message\": \"Validation: 'claimId' and 'policyId' are required as URL parameters.\",\n  \"errorCode\": \"missingIds\"\n}\n\n</code></pre>\n<h4 id=\"2-no-fields-provided-for-update-in-the-request-body\">2. No fields provided for update (in the request body):</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"message\": \"Validation: At least one field must be provided for update.\",\n  \"errorCode\": \"noFieldsForUpdate\"\n}\n\n</code></pre>\n","_postman_id":"1c22c56e-1002-45b6-bb76-140f734ccf6f"},{"name":"Payout Claim","item":[{"name":"Payout claim","id":"d6b8c8f9-7d8e-4145-bb06-c420328b7f15","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{apiKeyAlteos}}","type":"text"},{"key":"Authorization","value":"Bearer {{accessToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"amount\": 124,\n    \"description\": \"Settlement payout for incident {claimId}\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v1/claims/:claimId/obligations","urlObject":{"path":["v1","claims",":claimId","obligations"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[{"description":{"content":"<p>The unique identifier for the claim you are adding an obligation to.</p>\n","type":"text/plain"},"type":"any","value":"","key":"claimId"}]}},"response":[{"id":"73a2157c-8c0b-42c0-9fd2-cdc2cfbb3e73","name":"Example","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{apiKeyAlteos}}","type":"text"},{"key":"Authorization","value":"Bearer {{accessToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"amount\": 234\n}\n","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.sandbox.alteos.com /v1/claims/:claimId/obligations","host":["https://api.sandbox.alteos.com "],"path":["v1","claims",":claimId","obligations"],"variable":[{"key":"claimId","value":"QTUW42"}]}},"status":"created","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"d6b8c8f9-7d8e-4145-bb06-c420328b7f15"}],"id":"47bd2de0-a6ce-4395-82f9-f231e18edb94","description":"<p>The <strong>Claim Payout endpoint</strong> allows for the creation of reverse obligations, or payouts, for a specific claim. The <strong>Claim ID</strong> must be provided as a <strong>URL parameter</strong> when using this endpoint.</p>\n<h3 id=\"duplicate-prevention-idempotency\">Duplicate Prevention (Idempotency)</h3>\n<p>To prevent accidental duplicate payouts, this endpoint uses a specific idempotency check based on the request payload.</p>\n<ul>\n<li><p><strong>Blocking Logic:</strong> The API will <strong>block</strong> the creation of a new obligation if another obligation <em>already exists</em> for the <strong>same</strong> <strong><code>claimId</code></strong> that also has the <strong>exact same</strong> <strong><code>amount</code></strong> <strong>AND</strong> <strong><code>description</code></strong>.</p>\n</li>\n<li><p><strong>Allowing Logic:</strong> You <strong>can</strong> create multiple obligations for the same <code>claimId</code> and same <code>amount</code>, as long as the <strong><code>description</code></strong> <strong>field is different</strong> for each one.</p>\n</li>\n</ul>\n<p><strong>Note:</strong> This duplication check is performed <em>independently</em> of the <code>claim status</code> or the <code>status</code> of any existing obligations.</p>\n<h3 id=\"request-parameters-mandatory\"><strong>Request Parameters (<strong>Mandatory</strong>):</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>claimId</strong></td>\n<td><strong>String</strong></td>\n<td>The unique identifier of the claim, provided during the claim ingestion process. It contains six characters, such as <strong>ABC1FE</strong>.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-body-fields-mandatory\"><strong>Request Body Fields (<strong>Mandatory</strong>):</strong></h3>\n<p>The following fields must be included as <strong>JSON data</strong> in the <strong>request body</strong>.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>amount</strong></td>\n<td><strong>Number</strong></td>\n<td>The amount to be paid out for the claim. Must be a positive number with a minimum value of zero.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"examples-using-raw-json-data\">Examples u<strong>sing raw json-data:</strong></h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"amount\": number\n}\n\n</code></pre>\n<h2 id=\"responses\">Responses:</h2>\n<h3 id=\"success-response-status-200-updated\">Success Response (Status: 200 Updated)</h3>\n<h3 id=\"validation-error-responses-status-400-bad-request\"><strong>Validation Error Responses (Status: 400 Bad Request):</strong></h3>\n<ul>\n<li><strong>Missing Claim ID:</strong></li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"message\": \"Validation: 'claimId' is required as a URL parameter.\",\n  \"errorCode\": \"missingClaimId\"\n}\n\n</code></pre>\n<ul>\n<li><strong>Invalid or Missing Amount:</strong></li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"message\": \"Validation: 'amount' must be a positive number.\",\n  \"errorCode\": \"invalidAmount\"\n}\n\n</code></pre>\n","_postman_id":"47bd2de0-a6ce-4395-82f9-f231e18edb94"}],"id":"797bf3ed-6201-433e-bbd0-919f6a8e9c42","description":"<p>This section covers all endpoints for filing for a claim.</p>\n","event":[{"listen":"prerequest","script":{"id":"09bd1c4d-2854-443e-8833-2471e3f5a95e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"179086d7-5ea4-466f-bc98-da2414cbe029","type":"text/javascript","exec":[""]}}],"_postman_id":"797bf3ed-6201-433e-bbd0-919f6a8e9c42"},{"name":"Support","item":[{"name":"Request Ticket Creation","id":"149a48e8-b001-407b-b95a-09be3f524993","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-Appi-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n\t\"request\": {\n\t\t\"requester\": {\n\t\t\t\"name\": \"John Doe\",\n\t\t\t\"email\": \"username@username.com\",\n\t\t\t\"phone\": \"49123456789\"\n\t\t},\n\t\t\"subject\": \"Subject of ticket goes here\",\n\t\t\"comment\": {\n\t\t\t\"body\": \"And the body will go here...\"\n\t\t}\n\t}\n}"},"url":"https://api.sandbox.alteos.com/v1/support","description":"<p>To create a support ticket you must provide the following headers and the body payload.</p>\n","urlObject":{"path":["v1","support"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"7937f20c-bdbc-4e7e-8370-02d36e6ce738","name":"Create Support Ticket Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-Appi-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"request\": {\n\t\t\"requester\": {\n\t\t\"name\": \"John Doe\",\n\t\t\t\"email\": \"username@username.com\",\n\t\t\t\"phone\": \"49123456789\"\n\t\t},\n\t\t\"subject\": \"Subject of ticket goes here\",\n\t\t\"comment\": {\n\t\t\t\"body\": \"And the body will go here...\"\n\t\t}\n\t}\n}"},"url":"https://api.sandbox.alteos.com/v1/support"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true\n}"}],"_postman_id":"149a48e8-b001-407b-b95a-09be3f524993"}],"id":"670704ff-985b-400d-8542-5e356cd4e45c","description":"<p>This section covers the endpoint for sending a request to support.</p>\n","event":[{"listen":"prerequest","script":{"id":"9fe0a468-7d50-4478-813a-47d7185ef70d","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"c2f37aa7-dabd-4f91-9c81-ada6f5e6e3a4","type":"text/javascript","exec":[""]}}],"_postman_id":"670704ff-985b-400d-8542-5e356cd4e45c"},{"name":"Webhooks","item":[{"name":"Claim Event Reference","item":[],"id":"6f02385c-fe74-4cf4-8a5e-869761d6f429","description":"<p>Each event type has a dedicated subsection describing its payload, fields, and examples.</p>\n<h2 id=\"event-claim-updated\"><strong>Event: Claim Updated</strong></h2>\n<ul>\n<li><p><strong>Event Type:</strong> <code>alteos.claim.claim-updated</code></p>\n</li>\n<li><p><strong>Description:</strong> Sent whenever a claim is updated.</p>\n</li>\n<li><p><strong>Notification behavior</strong>: This webhook event is not emitted when <code>skipNotification</code> is set to <code>true</code> in the <a href=\"https://docs.api.alteos.com/?version=latest#d5ba72c8-c9d5-49aa-8456-e29c73c56bc6\">Update Claim API</a>.</p>\n</li>\n</ul>\n<h4 id=\"payload-example\"><strong>Payload Example</strong></h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"eventType\": \"alteos.claim.claim-updated\",\n  \"version\": 1,\n  \"body\": {\n    \"claimInternalId\": \"L3WD4X\",\n    \"claimExternalId\": null,\n    \"reason\": null,\n    \"updatedAt\": \"2025-11-24T10:30:31.218Z\",\n    \"status\": \"closed\",\n    \"subStatus\": \"approvedAndPaid\",\n    \"previousState\": {\n      \"status\": \"created\",\n      \"subStatus\": \"notYetInProgress\"\n    }\n  }\n}\n\n</code></pre>\n<h4 id=\"payload-body-fields\"><strong>Payload Body Fields</strong></h4>\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>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>claimInternalId</code></td>\n<td>string</td>\n<td>Human-readable claim ID</td>\n</tr>\n<tr>\n<td><code>claimExternalId</code></td>\n<td>string or null</td>\n<td>Partner claim reference</td>\n</tr>\n<tr>\n<td><code>reason</code></td>\n<td>string or null</td>\n<td>Optional note associated with the claim</td>\n</tr>\n<tr>\n<td><code>udpatedAt</code></td>\n<td>datetime</td>\n<td>Timestamp of last update</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>string</td>\n<td>Current claim status</td>\n</tr>\n<tr>\n<td><code>subStatus</code></td>\n<td>string</td>\n<td>Current claim sub-status</td>\n</tr>\n<tr>\n<td><code>previousState.status</code></td>\n<td>string</td>\n<td>Previous claim status before update</td>\n</tr>\n<tr>\n<td><code>previousState.subStatus</code></td>\n<td>string</td>\n<td>Previous claim sub-status before update</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h2 id=\"event-claim-created\">Event: Claim Created</h2>\n<ul>\n<li><p><strong>Event Type:</strong> <code>alteos.claim.claim-created</code></p>\n</li>\n<li><p><strong>Description:</strong> Sent whenever a claim is created.</p>\n</li>\n</ul>\n<h4 id=\"payload-example-1\"><strong>Payload Example</strong></h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"eventType\": \"alteos.claim.claim-created\",\n  \"version\": 1,\n  \"body\": {\n    \"claimInternalId\": \"L3WD4X\",\n    \"claimExternalId\": null,\n    \"status\": \"created\",\n    \"subStatus\": \"notYetInProgress\"\n  }\n}\n\n</code></pre>\n<h4 id=\"payload-body-fields-1\"><strong>Payload Body Fields</strong></h4>\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>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>claimInternalId</code></td>\n<td>string</td>\n<td>Human-readable claim ID</td>\n</tr>\n<tr>\n<td><code>claimExternalId</code></td>\n<td>string or null</td>\n<td>Partner claim reference</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>string</td>\n<td>Current claim status</td>\n</tr>\n<tr>\n<td><code>subStatus</code></td>\n<td>string</td>\n<td>Current claim sub-status</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"6f02385c-fe74-4cf4-8a5e-869761d6f429"}],"id":"fd7fe36f-3745-4987-8bb5-da1201ba7e45","description":"<p>This document explains how partners receive webhook notifications from Alteos on the specified events.</p>\n<p><strong>Note:</strong> At Alteos, we use Hook0 as the provider to manage Webhooks for our Partners. Hook0 offers Enterprise Level Security capabilities, full Data &amp; Sovereignty in Europe, and advanced monitoring.</p>\n<hr />\n<h2 id=\"1-overview\"><strong>1. Overview</strong></h2>\n<p>Partners can subscribe to to receive notifications about Alteos' supported events.</p>\n<p>Event types follow a structured naming convention:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-markdown\">&lt;system&gt;.&lt;resource&gt;.&lt;action&gt;\n\n</code></pre>\n<p>Example: <code>alteos.claim.claim-updated</code></p>\n<p>Alteos manages subscription creation internally. Partners only need to provide a <strong>callback URL</strong>. New event types may be added over time; see Section 5 for the complete events reference.</p>\n<hr />\n<h2 id=\"2-partner-responsibilities\"><strong>2. Partner Responsibilities</strong></h2>\n<ul>\n<li><p>Provide the <strong>webhook endpoint URL</strong> where notifications should be sent.</p>\n</li>\n<li><p>Ensure the endpoint can receive <strong>POST requests</strong> and respond with a <strong>success code</strong>.</p>\n</li>\n<li><p>Implement <strong>idempotency checks</strong> if processing events multiple times is a concern (events may be retried if not returned with a success code).</p>\n</li>\n<li><p>Decide how to <strong>verify incoming requests</strong>, using one or both of the following methods:</p>\n<ul>\n<li><p>HMAC signature via subscription secret</p>\n</li>\n<li><p>Authorization header (Bearer token)</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"callback-url-requirements\">Callback URL Requirements</h3>\n<p>Partners must provide a <strong>static webhook listener endpoint</strong> where Alteos can deliver event notifications.</p>\n<p>A webhook subscription supports <strong>one fixed callback URL</strong>, and Alteos will always send events to this exact endpoint.</p>\n<h3 id=\"✅-acceptable-callback-url-examples\">✅ Acceptable Callback URL Examples</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://partner.example.com/webhooks/alteos/claims\nhttps://partner.example.com/webhook/claims\nhttps://api.partner.com/integrations/alteos/events/claim\n\n</code></pre><h3 id=\"❌-dynamic-urls-are-not-supported\">❌ Dynamic URLs Are Not Supported</h3>\n<p>Partners must not provide callback URLs containing path parameters or dynamic identifiers, such as:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://partner.example.com/claim/update/status/{prettyId}\nhttps://partner.example.com/claims/{claimId}/status-update\n\n</code></pre><p>Alteos cannot substitute values like <code>{prettyId}</code> or <code>{claimId}</code> into the callback URL.</p>\n<p>Webhook delivery always targets the same fixed endpoint.</p>\n<hr />\n<h3 id=\"how-partners-can-use-claim-identifiers-instead\">How Partners Can Use Claim Identifiers Instead</h3>\n<p>Claim identifiers (such as <code>prettyId</code>, <code>claimInternalId</code>, or <code>claimExternalId</code>) are included inside the webhook payload:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"eventType\": \"alteos.claim.claim-updated\",\n  \"body\": {\n    \"claimInternalId\": \"K395RB\",\n    \"status\": \"closed\",\n    \"subStatus\": \"approvedAndPaid\"\n  }\n}\n\n</code></pre><p>Partners can extract these values from the payload and apply their own routing or update logic after receiving the event.</p>\n<hr />\n<h2 id=\"3-headers--authentication-options\"><strong>3. Headers &amp; Authentication Options</strong></h2>\n<h3 id=\"standard-headers-sent-to-partners\"><strong>Standard Headers Sent to Partners</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Purpose</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Content-Type: application/json</code></td>\n<td>Indicates the payload is JSON</td>\n<td>Standard for all webhook events</td>\n</tr>\n<tr>\n<td><code>User-Agent: Alteos Webhook Service</code></td>\n<td>Identifies the sender</td>\n<td>Informative only</td>\n</tr>\n<tr>\n<td><code>X-Hook0-Signature</code></td>\n<td>HMAC signature of payload</td>\n<td>Optional for verification; recommended. Use subscription secret to verify</td>\n</tr>\n<tr>\n<td><code>Authorization</code></td>\n<td>Token for endpoint authentication</td>\n<td>Optional; The subscription supports tokens with or without the Bearer prefix.  <br />Please send us the token in the format you wish to use.</td>\n</tr>\n<tr>\n<td><code>X-Event-Type</code></td>\n<td>Type of the event</td>\n<td>E.g., <code>alteos.claim.claim-updated</code></td>\n</tr>\n<tr>\n<td><code>X-Event-Id</code></td>\n<td>Unique identifier for this event</td>\n<td>Can be used for idempotency checks</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"authentication-options\"><strong>Authentication Options</strong></h3>\n<p><strong>1. Subscription Secret (HMAC Signature) — Recommended</strong></p>\n<ul>\n<li><p>Alteos sends an HMAC signature in <code>X-Hook0-Signature</code>.</p>\n</li>\n<li><p>Verify the payload using the <strong>subscription secret</strong> provided by Alteos.</p>\n</li>\n<li><p><strong>Reference:</strong> <a href=\"https://documentation.hook0.com/docs/verifying-webhook-signatures\">Hook0 Signature Verification</a></p>\n</li>\n</ul>\n<p><strong>How the Subscription Secret Relates to X-Hook0-Signature</strong></p>\n<ul>\n<li><p>The subscription secret you receive (e.g., <code>93d45c28-9224-49f4-9d1a-cfafd8e9bbd0</code>) is <strong>never sent directly</strong>.</p>\n</li>\n<li><p>The <code>X-Hook0-Signature</code> header contains a <strong>computed HMAC signature</strong> based on this secret, the payload, and optionally some headers:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>x-hook0-signature: t=1763374718,v0=be2c920ee01f92e5368204b8e5eb74057202943e2ca6f6c64fb8254db0da3e92,h=authorization content-type x-event-id x-event-type,v1=b630948141b54b60ab3410714dc2f97fb02b1fcbc54019c5a306f5098cb8622d\n\n</code></pre><ul>\n<li><p><strong>Components:</strong></p>\n<ul>\n<li><p><code>t</code> → Timestamp of signature generation</p>\n</li>\n<li><p><code>v1</code> → HMAC hash of the payload using the subscription secret</p>\n</li>\n<li><p><code>h</code> → Headers included in the signature calculation</p>\n</li>\n</ul>\n</li>\n</ul>\n<p><strong>Partner Action:</strong> Use the subscription secret to verify the signature in <code>X-Hook0-Signature</code>.</p>\n<h4 id=\"v1-signature-verification-nodejs-example\"><strong>v1 Signature Verification Node.js Example</strong></h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">import crypto from \"crypto\";\n// Store the secret in a secure way (e.g. in an ENV variable or a secret manager)\nconst secret = \"872aecf0-d35f-45ef-967b-c84d4c7ec81f\";\n// Retrieve the following values from the \"x-hook0-signature\" header\n// Accessing the request headers is done through the `request` object depending on the framework you are using.\nconst timestamp = \"1764147849\"; // t\nconst headerList = \"content-type x-event-id x-event-type\"; // h\nconst signature =\n  \"59558793107c6e26b63bf6ce30c431b752fa22840bdb94f3ffced88f78815d90\"; // v1\n// Use `headerList` to dynamically create the headerValues: `content-type x-event-id x-event-type`\n// For simplicity, we use the following hardcoded values:\nconst headerValues = [\n  \"application/json\",\n  \"4441f405-4aea-4f37-b93a-9ddd817d8a9b\",\n  \"alteos.claim.claim-updated\",\n].join(\".\");\n// The raw body is the exact bytes received through the webhook\nconst rawBody = `{\"version\":1,\"eventType\":\"alteos.claim.claim-updated\",\"body\":{\"claimInternalId\":\"K395RB\",\"claimExternalId\":null,\"reason\":null,\"status\":\"closed\",\"subStatus\":\"approvedAndPaid\",\"previousState\":{\"status\":\"created\",\"subStatus\":\"notYetInProgress\"},\"updatedAt\":\"2025-11-26T08:59:32.449Z\"}}`;\nconst signedPayload = [timestamp, headerList, headerValues, rawBody].join(\".\");\nconst computedSignature = crypto\n  .createHmac(\"sha256\", secret)\n  .update(signedPayload)\n  .digest(\"hex\");\ntry {\n  if (computedSignature === signature) {\n    console.log(\"Signature verified successfully!\");\n  } else {\n    throw new Error(\"Invalid signature\");\n  }\n} catch (error) {\n  console.error(\"Signature verification failed:\", error);\n}\n\n</code></pre>\n<p><strong>Expected v1 Signature for this example:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>59558793107c6e26b63bf6ce30c431b752fa22840bdb94f3ffced88f78815d90\n\n</code></pre><p><strong>2. Authorization Header (Optional)</strong></p>\n<ul>\n<li><p>Alteos may send an <code>Authorization: Bearer</code> header.</p>\n</li>\n<li><p>Partners can optionally verify this token.</p>\n</li>\n</ul>\n<p>Partners <strong>do not</strong> need to send any headers themselves — just accept POST requests and respond with a success code.</p>\n<hr />\n<h2 id=\"4-example-header-configurations\"><strong>4. Example Header Configurations</strong></h2>\n<h3 id=\"example-1-signature-only\"><strong>Example 1: Signature Only</strong></h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-makefile\">POST /webhook HTTP/1.1\nHost: partner.example.com\nContent-Type: application/json\nUser-Agent: Alteos Webhook Service\nX-Hook0-Signature: t=1763374718,v0=be2c920ee01f92e5368204b8e5eb74057202943e2ca6f6c64fb8254db0da3e92,h=authorization content-type x-event-id x-event-type,v1=b630948141b54b60ab3410714dc2f97fb02b1fcbc54019c5a306f5098cb8622d\nX-Event-Type: alteos.claim.claim-updated\nX-Event-Id: f23b1afb-d0b3-4aac-830b-44396cca3ebf\n\n</code></pre>\n<p><strong>Partner Action:</strong> Verify payload using the subscription secret.</p>\n<hr />\n<h3 id=\"example-2-signature--authorization-header\"><strong>Example 2: Signature + Authorization Header</strong></h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-makefile\">POST /webhook HTTP/1.1\nHost: partner.example.com\nContent-Type: application/json\nUser-Agent: Alteos Webhook Service\nX-Hook0-Signature: t=1763374718,v0=be2c920ee01f92e5368204b8e5eb74057202943e2ca6f6c64fb8254db0da3e92,h=authorization content-type x-event-id x-event-type,v1=b630948141b54b60ab3410714dc2f97fb02b1fcbc54019c5a306f5098cb8622d\nAuthorization: Bearer 3f8b2d6a-9c1f-4a7e-81d5-123456789abc\nX-Event-Type: alteos.claim.claim-updated\nX-Event-Id: f23b1afb-d0b3-4aac-830b-44396cca3ebf\n\n</code></pre>\n<p><strong>Partner Action:</strong> Verify payload using the subscription secret and optionally verify the Bearer token.</p>\n<blockquote>\n<p>For claim event referrences, please visit <a href=\"https://docs.api.alteos.com/#6f02385c-fe74-4cf4-8a5e-869761d6f429\">Claim Event Referrence</a></p>\n</blockquote>\n","_postman_id":"fd7fe36f-3745-4987-8bb5-da1201ba7e45"},{"name":"Error codes","item":[],"id":"a1b5d619-cc77-4bf4-9bec-998b7b3f9bde","description":"<p>Error codes were added to the different errors to allow proper identification and translation. Examples of responses with the given error codes are shown in the examples section of the specific request.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Endpoint</th>\n<th>Code</th>\n<th>Description</th>\n<th>Response code</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>General</td>\n<td>templatingIssue</td>\n<td>Error occurred in Product/Partner/System configuration templates.</td>\n<td>500</td>\n</tr>\n<tr>\n<td></td>\n<td>insufficientPermissions</td>\n<td>Insufficient permissions.</td>\n<td>403</td>\n</tr>\n<tr>\n<td></td>\n<td>invalidData</td>\n<td>Provided data wasn’t correct.</td>\n<td>400</td>\n</tr>\n<tr>\n<td></td>\n<td>templatingValidationError</td>\n<td>Data validation issue (possible can be thrown during underwriting)</td>\n<td>400</td>\n</tr>\n<tr>\n<td></td>\n<td>unexpectedError</td>\n<td>Unexpected Error.</td>\n<td>500</td>\n</tr>\n<tr>\n<td></td>\n<td>internalServerError</td>\n<td>Internal Server Error.</td>\n<td>500</td>\n</tr>\n<tr>\n<td></td>\n<td>notFoundError</td>\n<td>Entity was not found</td>\n<td>404</td>\n</tr>\n<tr>\n<td>Authentication</td>\n<td>invalidAppKey</td>\n<td>AppKey has incorrect format or wasn’t found the system.</td>\n<td>403</td>\n</tr>\n<tr>\n<td></td>\n<td>invalidToken</td>\n<td>Token has incorrect format or wasn’t found the system.</td>\n<td>403</td>\n</tr>\n<tr>\n<td></td>\n<td>invalidCredentials</td>\n<td>Given credentials are not valid.</td>\n<td>401</td>\n</tr>\n<tr>\n<td></td>\n<td>appKeyMissing</td>\n<td>AppKey wasn’t provided.</td>\n<td>401</td>\n</tr>\n<tr>\n<td></td>\n<td>authTokenMissing</td>\n<td>Auth token wasn’t provided for an endpoint, which cannot be accessed anonymously.</td>\n<td>401</td>\n</tr>\n<tr>\n<td></td>\n<td>authTokenExpired</td>\n<td>Auth token has Expired.</td>\n<td>401</td>\n</tr>\n<tr>\n<td>Quotation</td>\n<td>productDoesNotExists</td>\n<td>Specified product name wasn’t found.</td>\n<td>404</td>\n</tr>\n<tr>\n<td></td>\n<td>partnerHasNoAccessToTheProduct</td>\n<td>Requested product is not connected to current partner.</td>\n<td>403</td>\n</tr>\n<tr>\n<td></td>\n<td>discountNotFound</td>\n<td>Specified discount code wasn’t found.</td>\n<td>404</td>\n</tr>\n<tr>\n<td></td>\n<td>packageNameNotValid</td>\n<td>Package name is not valid.</td>\n<td>400</td>\n</tr>\n<tr>\n<td></td>\n<td>policyAddonNotAvailableForPackage</td>\n<td>Given addon is not available for package specified package.</td>\n<td>400</td>\n</tr>\n<tr>\n<td></td>\n<td>policyAddonMustBeIncludedForPackage</td>\n<td>Specified package must include not provided addon.</td>\n<td>400</td>\n</tr>\n<tr>\n<td></td>\n<td>policyValuesNotResolvedForPackageConfig</td>\n<td>Policy values could not be resolved for package configuration.</td>\n<td>400</td>\n</tr>\n<tr>\n<td>Policy creation</td>\n<td>quoteIdNotFound</td>\n<td>Specified Quote Id wasn’t found or already in use.</td>\n<td>404</td>\n</tr>\n<tr>\n<td></td>\n<td>quoteDataConflict</td>\n<td>When Quote Id is provided and data in a stored quote differs from data in policy creation request.</td>\n<td>400</td>\n</tr>\n<tr>\n<td></td>\n<td>quoteExpired</td>\n<td>Quote expired.</td>\n<td>400</td>\n</tr>\n<tr>\n<td>Pay policy</td>\n<td>policyAlreadyIssued</td>\n<td>Policy has been issued already.</td>\n<td>409</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"a1b5d619-cc77-4bf4-9bec-998b7b3f9bde"},{"name":"Backward compatibility","item":[{"name":"eBike Product B2C | V1","id":"50deac5d-747c-473b-94e3-714394fb88af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"X-App-Key","type":"text","value":"{{appKeyAlteos}}"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"ebike\",\n\t\"values\": {\n\t\t\"policyStartDate\": \"2021-01-10\",\n        \"plan\": \"schadenschutz\",\n        \"paymentSchedule\": \"yearly\"   \n\t},\n\t\"objects\": [\n\t\t{\n\t\t\t\"name\": \"ebike\",\n\t\t\t\"values\": {\n                \"price\": \"3000.01-3500.00\",\n                \"gpsTracking\": true,\n                \"batteryWear\": true,\n                \"mobilityGuarantee\": false,\n                \"individualPartsWear\": false\n\t\t\t},\n\t\t\t\"risks\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"allRisks\",\n\t\t\t\t\t\"values\": {}\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t]\n}"},"url":"https://api.sandbox.alteos.com/v1/policies/quote","description":"<p>Use this API to retrieve the quote for the eBike Product</p>\n","urlObject":{"path":["v1","policies","quote"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"2db077fc-08e3-4643-ab06-cbde601b6e00","name":"Successful Quotation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"ebike\",\n\t\"values\": {\n\t\t\"policyStartDate\": \"2021-01-10\",\n        \"plan\": \"schadenschutz\",\n        \"contractTerm\": \"yearly\"   \n\t},\n\t\"objects\": [\n\t\t{\n\t\t\t\"name\": \"ebike\",\n\t\t\t\"values\": {\n                \"price\": \"3000.01-3500.00\",\n                \"gpsTracking\": true,\n                \"batteryWear\": true,\n                \"mobilityGuarantee\": false,\n                \"individualPartsWear\": false\n\t\t\t},\n\t\t\t\"risks\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"allRisks\",\n\t\t\t\t\t\"values\": {}\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v1/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"premium\": 9.22,\n    \"taxes\": 1.75,\n    \"gross\": 10.97\n}"},{"id":"b4fb4a4a-3b9f-456d-974d-796ee16793bc","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"ebike\",\n\t\"values\": {\n\t\t\"policyStartDate\": \"2021-01-10\",\n        \"plan\": \"schadenschutz\",\n        \"contractTerm\": \"yearly\"   \n\t},\n\t\"objects\": [\n\t\t{\n\t\t\t\"name\": \"ebike\",\n\t\t\t\"values\": {\n                \"price\": \"3000.01-3500.00\",\n                \"gpsTracking\": true,\n                \"batteryWear\": true,\n                \"mobilityGuarantee\": false,\n                \"individualPartsWear\": false\n\t\t\t},\n\t\t\t\"risks\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"allRisks\",\n\t\t\t\t\t\"values\": {}\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v1/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"50deac5d-747c-473b-94e3-714394fb88af"},{"name":"eBike Product B2C | V2","id":"1d486275-0fc6-480e-8c82-2083b5de2e85","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"X-App-Key","type":"text","value":"{{appKeyAlteos}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike\",\n    \"values\": {\n        \"policyStartDate\": \"2021-01-10\",\n        \"paymentSchedule\": \"yearly\",\n        \"price\": \"3000.01-3500.00\"\n    },\n    \"package\": \"schadenschutz\",\n    \"addons\": [\n        \"batteryWear\",\n        \"mobilityGuarantee\",\n        \"individualPartsWear\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies/quote","description":"<p>Use this API to retrieve the quote for the eBike Product</p>\n","urlObject":{"path":["v2","policies","quote"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"4d5e502e-8237-4bb5-9f0e-15a7977978c1","name":"Successful Quotation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike\",\n    \"values\": {\n        \"policyStartDate\": \"2021-01-10\",\n        \"paymentSchedule\": \"5years\",\n        \"price\": \"1000.01-1500.00\",\n        \"purchasedAt\": \"2020-08-20\",\n        \"brand\": \"Batavus\",\n        \"frameNumber\": \"1245311\",\n        \"batteryNumber\": \"124245311\",\n        \"type\": \"Mountainbike\",\n        \"lockModel\": \"Abus ab 45 € Verkaufspreis\"\n    },\n    \"package\": \"schadenschutz\",\n    \"addons\": [\n        \"akkuVerschleiss\",\n        \"mobilitaetsgarantie\",\n        \"einzelteileVerschleiss\"\n    ]\n}   ","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 744.95,\n    \"premium\": 626.01,\n    \"taxes\": 118.94,\n    \"premiumExclDiscounts\": 626.01,\n    \"taxesExclDiscounts\": 118.94,\n    \"grossExclDiscounts\": 744.95,\n    \"addons\": [\n        {\n            \"name\": \"akkuVerschleiss\",\n            \"payments\": [\n                {\n                    \"premium\": 50.42,\n                    \"tax\": 9.58\n                }\n            ],\n            \"gross\": 60\n        },\n        {\n            \"name\": \"mobilitaetsgarantie\",\n            \"payments\": [\n                {\n                    \"premium\": 25.21,\n                    \"tax\": 4.79\n                }\n            ],\n            \"gross\": 30\n        },\n        {\n            \"name\": \"einzelteileVerschleiss\",\n            \"payments\": [\n                {\n                    \"premium\": 403.36,\n                    \"tax\": 76.64\n                }\n            ],\n            \"gross\": 480\n        }\n    ],\n    \"package\": {\n        \"name\": \"schadenschutz\",\n        \"payments\": [\n            {\n                \"premium\": 147.02,\n                \"tax\": 27.93\n            }\n        ],\n        \"gross\": 174.95\n    },\n    \"metadata\": {},\n    \"requestData\": {\n        \"productName\": \"ebike\",\n        \"values\": {\n            \"policyStartDate\": \"2021-01-10\",\n            \"paymentSchedule\": \"5years\",\n            \"price\": \"1000.01-1500.00\",\n            \"purchasedAt\": \"2020-08-20\",\n            \"brand\": \"Batavus\",\n            \"frameNumber\": \"1245311\",\n            \"batteryNumber\": \"124245311\",\n            \"type\": \"Mountainbike\",\n            \"lockModel\": \"Abus ab 45 € Verkaufspreis\"\n        },\n        \"package\": \"schadenschutz\",\n        \"addons\": [\n            \"akkuVerschleiss\",\n            \"mobilitaetsgarantie\",\n            \"einzelteileVerschleiss\"\n        ]\n    }\n}"},{"id":"03ad8a9a-7fe6-4add-a1bf-ba56faf5defc","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike\",\n    \"values\": {\n        \"policyStartDate\": \"2021-01-10\",\n        \"paymentSchedule\": \"yearly\",\n        \"price\": \"3000.01-3500.00\"\n    },\n    \"package\": \"schadenschutz\",\n    \"addons\": [\n        \"batteryWear\",\n        \"mobilityGuarantee\",\n        \"individualPartsWear\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"1d486275-0fc6-480e-8c82-2083b5de2e85"}],"id":"85cb421f-e5c9-4a3f-a5d8-5d864d0026ee","description":"<p>Backward compatibility is a mechanism that allows introducing new changes without making old ones unusable. A good example could be Quotation API where two different versions of an endpoint were introduced v1 and v2.</p>\n<p>The same mechanism is applied to the different parts of Alteos API like policy creation and the future endpoints.</p>\n<p>Quotation endpoint backward compatibility examples can be found below.</p>\n","_postman_id":"85cb421f-e5c9-4a3f-a5d8-5d864d0026ee"},{"name":"Archive","item":[{"name":"Archive Policy Quotation","item":[{"name":"Leasing Product B2B2C (V1)","id":"7693ba4e-8ecb-44b2-ad89-479f1c9ae07d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"X-App-Key","type":"text","value":"{{appKeyAlteos}}"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"E-Bike-Leasing\",\n    \"customer\": {\n        \"email\": \"username@username.com\",\n        \"phone\": \"491234567890\",\n        \"firstName\": \"John\",\n        \"lastName\": \"Doe\",\n        \"values\": {\n            \"addressStreet\": \"Hardenbergerstr.\",\n            \"addressHouseNumber\": \"32\",\n            \"addressPlz\": \"10623\",\n            \"addressCity\": \"Berlin\",\n            \"companyName\": \"Company\"\n        }\n    },\n\t\"values\": {\n\t\t\"duration\": \"3years\",\n\t\t\"policyStartDate\": \"2022-02-28\",\n\t\t\"contractNumber\": \"123456789\",\n\t\t\"insuredPersonEmail\":\"test@alteos.com\",\n\t\t\"insuredPersonName\":\"testPerson\",\n\t\t\"bikeUserName\":\"testUser\",\n\t\t\"bikeUserEmail\":\"test@alteos.com\"\t\n\t\t\n\t},\n\t\"objects\": [\n\t\t{\n\t\t\t\"name\": \"eBike\",\n\t\t\t\"values\": {\n\t\t\t\t\"price\":\"1000\",\n\t\t\t\t\"gpsSelected\": \"no\",\n\t\t\t\t\"mobilitaetAddOn\": \"yes\",\n\t\t\t\t\"verschleißAddOn\": \"no\",\n\t\t\t\t\"inspektionAddOn\": \"no\",\n\t\t\t\t\"ruecknahmegarantieAddOn\": \"no\",\n\t\t\t\t\"brand\": \"Batavus\",\n\t\t\t\t\"frameNumber\": \"1245311\",\n\t\t\t\t\"batteryNumber\": \"124245311\",\n\t\t\t\t\"type\": \"Mountainbike\",\n\t\t\t\t\"eligibleLockModel\": \"yes\"\n\t\t\t},\n\t\t\t\"risks\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"Material- oder Produktionfehler\",\n\t\t\t\t\t\"values\": {}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"Falls- oder Sturzschaeden\",\n\t\t\t\t\t\"values\": {}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"Elektronikschaeden\",\n\t\t\t\t\t\"values\": {}\n\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\"name\": \"Feuchtigkeitsschaeden\",\n\t\t\t\t\t\"values\": {}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"Unfallschaeden\",\n\t\t\t\t\t\"values\": {}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"Naturgewalten\",\n\t\t\t\t\t\"values\": {}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"Vandalismus\",\n\t\t\t\t\t\"values\": {}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"Zubehoerdiebstahl\",\n\t\t\t\t\t\"values\": {}\n\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\"name\": \"Batteriediebstahl\",\n\t\t\t\t\t\"values\": {}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"Fahrradschloss\",\n\t\t\t\t\t\"values\": {}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"Einbruchdiebstahl\",\n\t\t\t\t\t\"values\": {}\n\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\"name\": \"Diebstahl\",\n\t\t\t\t\t\"values\": {}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"Raub\",\n\t\t\t\t\t\"values\": {}\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t]\n}"},"url":"https://api.sandbox.alteos.com/v1/policies/policies","description":"<p>Use this API to create a policy for the Leasing E-Bike/Fahrrad Product</p>\n","urlObject":{"path":["v1","policies","policies"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"c1afcf90-79ec-4c4c-b494-c6ae274746e9","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike\",\n    \"values\": {\n        \"policyStartDate\": \"2021-01-10\",\n        \"paymentSchedule\": \"yearly\",\n        \"price\": \"3000.01-3500.00\"\n    },\n    \"package\": \"schadenschutz\",\n    \"addons\": [\n        \"batteryWear\",\n        \"mobilityGuarantee\",\n        \"individualPartsWear\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"45777cc5-b992-46df-8614-79708636340a\",\n    \"prettyId\": \"746AGS\"\n}"},{"id":"b0965ce5-c53b-4f01-adc3-5f65e40823e4","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike\",\n    \"values\": {\n        \"policyStartDate\": \"2021-01-10\",\n        \"paymentSchedule\": \"yearly\",\n        \"price\": \"3000.01-3500.00\"\n    },\n    \"package\": \"schadenschutz\",\n    \"addons\": [\n        \"batteryWear\",\n        \"mobilityGuarantee\",\n        \"individualPartsWear\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"7693ba4e-8ecb-44b2-ad89-479f1c9ae07d"},{"name":"Leasing Product B2B2C (V1)","id":"88b6c6e5-502f-462f-bbac-a79bb57dddd4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"X-App-Key","type":"text","value":"{{appKeyAlteos}}"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"E-Bike-Leasing\",\n\t\"values\": {\n\t\t\"duration\": \"3years\",\n\t\t\"policyStartDate\": \"2022-01-30\",\n        \"insuredPersonEmail\":\"test@alteos.com\",\n\t\t\"insuredPersonName\":\"testPerson\",\n\t\t\"bikeUserName\":\"testUser\",\n\t\t\"bikeUserEmail\":\"test@alteos.com\"\n\t},\n\t\"objects\": [\n\t\t{\n\t\t\t\"name\": \"eBike\",\n\t\t\t\"values\": {\n\t\t\t\t\"price\":\"1000\",\n\t\t\t\t\"mobilitaetAddOn\": \"no\",\n\t\t\t\t\"verschleißAddOn\": \"no\",\n\t\t\t\t\"inspektionAddOn\": \"yes\",\n\t\t\t\t\"ruecknahmegarantieAddOn\": \"no\"\n\t\t\t},\n\t\t\t\"risks\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"Material- oder Produktionfehler\",\n\t\t\t\t\t\"values\": {}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"Falls- oder Sturzschaeden\",\n\t\t\t\t\t\"values\": {}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"Elektronikschaeden\",\n\t\t\t\t\t\"values\": {}\n\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\"name\": \"Feuchtigkeitsschaeden\",\n\t\t\t\t\t\"values\": {}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"Unfallschaeden\",\n\t\t\t\t\t\"values\": {}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"Naturgewalten\",\n\t\t\t\t\t\"values\": {}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"Vandalismus\",\n\t\t\t\t\t\"values\": {}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"Zubehoerdiebstahl\",\n\t\t\t\t\t\"values\": {}\n\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\"name\": \"Batteriediebstahl\",\n\t\t\t\t\t\"values\": {}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"Fahrradschloss\",\n\t\t\t\t\t\"values\": {}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"Einbruchdiebstahl\",\n\t\t\t\t\t\"values\": {}\n\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\"name\": \"Diebstahl\",\n\t\t\t\t\t\"values\": {}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"Raub\",\n\t\t\t\t\t\"values\": {}\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t]\n}"},"url":"https://api.sandbox.alteos.com/v1/policies/quote","description":"<p>Use this API to retrieve the quote for the Leasing E-Bike/Fahrrad Product</p>\n","urlObject":{"path":["v1","policies","quote"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"3ee8f4ee-d729-443b-bc4d-976e0277155c","name":"Successful Quotation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike\",\n    \"values\": {\n        \"policyStartDate\": \"2021-01-10\",\n        \"paymentSchedule\": \"yearly\",\n        \"price\": \"3000.01-3500.00\"\n    },\n    \"package\": \"schadenschutz\",\n    \"addons\": [\n        \"batteryWear\",\n        \"mobilityGuarantee\",\n        \"individualPartsWear\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 13.9,\n    \"premium\": 11.68,\n    \"taxes\": 2.22,\n    \"premiumExclDiscounts\": 11.68,\n    \"taxesExclDiscounts\": 2.22,\n    \"grossExclDiscounts\": 13.9,\n    \"metadata\": {},\n    \"requestData\": {\n        \"productName\": \"E-Bike-Leasing\",\n        \"values\": {\n            \"duration\": \"3years\",\n            \"policyStartDate\": \"2020-06-30\",\n            \"insuredPersonEmail\": \"test@alteos.com\",\n            \"insuredPersonName\": \"testPerson\",\n            \"bikeUserName\": \"testUser\",\n            \"bikeUserEmail\": \"test@alteos.com\"\n        },\n        \"objects\": [\n            {\n                \"name\": \"eBike\",\n                \"values\": {\n                    \"price\": \"1000\",\n                    \"mobilitaetAddOn\": \"no\",\n                    \"verschleißAddOn\": \"no\",\n                    \"inspektionAddOn\": \"yes\",\n                    \"ruecknahmegarantieAddOn\": \"no\"\n                },\n                \"risks\": [\n                    {\n                        \"name\": \"Material- oder Produktionfehler\",\n                        \"values\": {}\n                    },\n                    {\n                        \"name\": \"Falls- oder Sturzschaeden\",\n                        \"values\": {}\n                    },\n                    {\n                        \"name\": \"Elektronikschaeden\",\n                        \"values\": {}\n                    },\n                    {\n                        \"name\": \"Feuchtigkeitsschaeden\",\n                        \"values\": {}\n                    },\n                    {\n                        \"name\": \"Unfallschaeden\",\n                        \"values\": {}\n                    },\n                    {\n                        \"name\": \"Naturgewalten\",\n                        \"values\": {}\n                    },\n                    {\n                        \"name\": \"Vandalismus\",\n                        \"values\": {}\n                    },\n                    {\n                        \"name\": \"Zubehoerdiebstahl\",\n                        \"values\": {}\n                    },\n                    {\n                        \"name\": \"Batteriediebstahl\",\n                        \"values\": {}\n                    },\n                    {\n                        \"name\": \"Fahrradschloss\",\n                        \"values\": {}\n                    },\n                    {\n                        \"name\": \"Einbruchdiebstahl\",\n                        \"values\": {}\n                    },\n                    {\n                        \"name\": \"Diebstahl\",\n                        \"values\": {}\n                    },\n                    {\n                        \"name\": \"Raub\",\n                        \"values\": {}\n                    }\n                ]\n            }\n        ]\n    }\n}"},{"id":"907a1841-bb57-4699-a7ea-92cd378666cd","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike\",\n    \"values\": {\n        \"policyStartDate\": \"2021-01-10\",\n        \"paymentSchedule\": \"yearly\",\n        \"price\": \"3000.01-3500.00\"\n    },\n    \"package\": \"schadenschutz\",\n    \"addons\": [\n        \"batteryWear\",\n        \"mobilityGuarantee\",\n        \"individualPartsWear\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"88b6c6e5-502f-462f-bbac-a79bb57dddd4"},{"name":"Leasing Product B2B2C 2022","id":"a6c1ba4c-8f19-4adb-b9b4-b5572dd29c23","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"X-App-Key","type":"text","value":"{{appKeyAlteos}}"}],"body":{"mode":"raw","raw":"{\n  \"productName\": \"ebike-Leasing-2022\",\n  \"values\": {\n    \"policyStartDate\": \"2022-03-01\",\n    \"price\": 1000\n  },\n  \"package\": \"komplettschutz\",\n  \"addons\": [\n        \"gpsTracking\",\n        \"mobilitaetsschutz\",\n        \"gewerblicheNutzung\",\n        \"inspektion\",\n        \"wartungUndVerschleiss\",\n        \"ruecknahmegarantie\",\n        \"einzelteile-Verschleiss\"\n    ]\n}"},"url":"https://api.sandbox.alteos.com/v2/policies/quote","description":"<p>Use this API to retrieve the quote for the Leasing E-Bike/Fahrrad Product</p>\n","urlObject":{"path":["v2","policies","quote"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"0347780c-d6b2-494c-b24b-6ff7bc011141","name":"Successful Quotation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike\",\n    \"values\": {\n        \"policyStartDate\": \"2021-01-10\",\n        \"paymentSchedule\": \"yearly\",\n        \"price\": \"3000.01-3500.00\"\n    },\n    \"package\": \"schadenschutz\",\n    \"addons\": [\n        \"batteryWear\",\n        \"mobilityGuarantee\",\n        \"individualPartsWear\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 32.8,\n    \"premium\": 27.56,\n    \"taxes\": 5.24,\n    \"premiumExclDiscounts\": 27.56,\n    \"taxesExclDiscounts\": 5.24,\n    \"grossExclDiscounts\": 32.8,\n    \"addons\": [\n        {\n            \"name\": \"gpsTracking\",\n            \"payments\": [],\n            \"premium\": 0,\n            \"tax\": 0,\n            \"gross\": 0\n        },\n        {\n            \"name\": \"mobilitaetsschutz\",\n            \"payments\": [],\n            \"premium\": 0,\n            \"tax\": 0,\n            \"gross\": 0\n        },\n        {\n            \"name\": \"gewerblicheNutzung\",\n            \"payments\": [],\n            \"premium\": 2.48,\n            \"tax\": 0.47,\n            \"gross\": 2.95\n        },\n        {\n            \"name\": \"inspektion\",\n            \"payments\": [],\n            \"premium\": 6.68,\n            \"tax\": 1.27,\n            \"gross\": 7.95\n        },\n        {\n            \"name\": \"wartungUndVerschleiss\",\n            \"payments\": [],\n            \"premium\": 13.4,\n            \"tax\": 2.55,\n            \"gross\": 15.95\n        },\n        {\n            \"name\": \"ruecknahmegarantie\",\n            \"payments\": [],\n            \"premium\": 0,\n            \"tax\": 0,\n            \"gross\": 0\n        }\n    ],\n    \"package\": {\n        \"name\": \"komplettschutz\",\n        \"payments\": [],\n        \"premium\": 5,\n        \"tax\": 0.95,\n        \"gross\": 5.95\n    },\n    \"metadata\": {},\n    \"requestData\": {\n        \"productName\": \"ebike-Leasing-2022\",\n        \"values\": {\n            \"policyStartDate\": \"2022-03-01\",\n            \"price\": 1000\n        },\n        \"package\": \"komplettschutz\",\n        \"addons\": [\n            \"gpsTracking\",\n            \"mobilitaetsschutz\",\n            \"gewerblicheNutzung\",\n            \"inspektion\",\n            \"wartungUndVerschleiss\",\n            \"ruecknahmegarantie\"\n        ]\n    }\n}"},{"id":"09c29b02-81fd-415e-8900-89830d97b1b3","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike\",\n    \"values\": {\n        \"policyStartDate\": \"2021-01-10\",\n        \"paymentSchedule\": \"yearly\",\n        \"price\": \"3000.01-3500.00\"\n    },\n    \"package\": \"schadenschutz\",\n    \"addons\": [\n        \"batteryWear\",\n        \"mobilityGuarantee\",\n        \"individualPartsWear\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"a6c1ba4c-8f19-4adb-b9b4-b5572dd29c23"},{"name":"Leasing Product B2B2C 2023","id":"e7920a79-d47e-483f-b379-db8f80c30abb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"X-App-Key","type":"text","value":"{{appKeyAlteos}}"}],"body":{"mode":"raw","raw":"{\n  \"productName\": \"ebike-Leasing-2023\",\n  \"values\": {\n    \"policyStartDate\": \"2023-02-01\",\n    \"price\": 1000\n  },\n  \"package\": \"komplettschutz\",\n  \"addons\": [\n        \"gpsTracking\",\n        \"mobilitaetsschutz\",\n        \"gewerblicheNutzung\",\n        \"inspektion\",\n        \"wartungUndVerschleiss\",\n        \"ruecknahmegarantie\",\n        \"einzelteile-Verschleiss\"\n    ]\n}"},"url":"https://api.sandbox.alteos.com/v2/policies/quote","description":"<p>Use this API to retrieve the quote for the Leasing E-Bike/Fahrrad Product</p>\n","urlObject":{"path":["v2","policies","quote"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"c9ade454-0957-4132-b1de-dcc1324a84b7","name":"Successful Quotation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike-Leasing-2023\",\n    \"values\": {\n        \"policyStartDate\": \"2023-02-01\",\n        \"paymentSchedule\": \"yearly\",\n        \"price\": \"3000.01-3500.00\"\n    },\n    \"package\": \"schadenschutz\",\n    \"addons\": [\n        \"batteryWear\",\n        \"mobilityGuarantee\",\n        \"individualPartsWear\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 43.75,\n    \"premium\": 36.76,\n    \"taxes\": 6.99,\n    \"premiumExclDiscounts\": 36.76,\n    \"taxesExclDiscounts\": 6.99,\n    \"grossExclDiscounts\": 43.75,\n    \"addons\": [\n        {\n            \"name\": \"gpsTracking\",\n            \"payments\": [],\n            \"premium\": 0,\n            \"tax\": 0,\n            \"gross\": 0\n        },\n        {\n            \"name\": \"mobilitaetsschutz\",\n            \"payments\": [],\n            \"premium\": 0,\n            \"tax\": 0,\n            \"gross\": 0\n        },\n        {\n            \"name\": \"gewerblicheNutzung\",\n            \"payments\": [],\n            \"premium\": 2.48,\n            \"tax\": 0.47,\n            \"gross\": 2.95\n        },\n        {\n            \"name\": \"inspektion\",\n            \"payments\": [],\n            \"premium\": 6.68,\n            \"tax\": 1.27,\n            \"gross\": 7.95\n        },\n        {\n            \"name\": \"wartungUndVerschleiss\",\n            \"payments\": [],\n            \"premium\": 13.4,\n            \"tax\": 2.55,\n            \"gross\": 15.95\n        },\n        {\n            \"name\": \"einzelteile-Verschleiss\",\n            \"payments\": [],\n            \"premium\": 9.2,\n            \"tax\": 1.75,\n            \"gross\": 10.95\n        }\n    ],\n    \"package\": {\n        \"name\": \"komplettschutz\",\n        \"payments\": [],\n        \"premium\": 5,\n        \"tax\": 0.95,\n        \"gross\": 5.95\n    },\n    \"metadata\": {},\n    \"requestData\": {\n        \"productName\": \"ebike-Leasing-2023\",\n        \"values\": {\n            \"policyStartDate\": \"2023-02-01\",\n            \"price\": 1000\n        },\n        \"package\": \"komplettschutz\",\n        \"addons\": [\n            \"gpsTracking\",\n            \"mobilitaetsschutz\",\n            \"gewerblicheNutzung\",\n            \"inspektion\",\n            \"wartungUndVerschleiss\",\n            \"einzelteile-Verschleiss\"\n        ]\n    }\n}"},{"id":"97d12444-ed65-41f8-a040-6667f3124a14","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike\",\n    \"values\": {\n        \"policyStartDate\": \"2021-01-10\",\n        \"paymentSchedule\": \"yearly\",\n        \"price\": \"3000.01-3500.00\"\n    },\n    \"package\": \"schadenschutz\",\n    \"addons\": [\n        \"batteryWear\",\n        \"mobilityGuarantee\",\n        \"individualPartsWear\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"e7920a79-d47e-483f-b379-db8f80c30abb"},{"name":"Leasing Product Company Bike WIP","id":"63f9b9d2-febb-4d87-877b-528979d5dcce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKeyAlteos}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"productName\": \"companybike-leasing\",\n  \"values\": {\n    \"policyStartDate\": \"2024-08-01\",\n    \"vehicleType\": \"Fahrrad\",\n    \"price\": 1000\n  },\n  \"package\": \"Zusatzpaket Inspektion & Verschleiß\",\n  \"addons\": []\n}"},"url":"https://api.sandbox.alteos.com/v2/policies/quote","description":"<p>Use this API to retrieve the quote for the Leasing E-Bike/Fahrrad Product</p>\n","urlObject":{"path":["v2","policies","quote"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"b5a2c0cb-5086-4613-975f-b2649f80d4ae","name":"Successful Quotation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"productName\": \"companybike-leasing\",\n  \"values\": {\n    \"policyStartDate\": \"2024-08-01\",\n    \"vehicleType\": \"E-Bike\",\n    \"price\": 1000\n  },\n  \"package\": \"Zusatzpaket Inspektion & Verschleiß\",\n  \"addons\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 12.9,\n    \"premium\": 10.84,\n    \"taxes\": 2.06,\n    \"premiumExclDiscounts\": 10.84,\n    \"taxesExclDiscounts\": 2.06,\n    \"grossExclDiscounts\": 12.9,\n    \"addons\": [],\n    \"package\": {\n        \"name\": \"Zusatzpaket Inspektion & Verschleiß\",\n        \"payments\": [],\n        \"tax\": 2.06,\n        \"gross\": 12.9\n    },\n    \"metadata\": {},\n    \"requestData\": {\n        \"productName\": \"companybike-leasing\",\n        \"values\": {\n            \"policyStartDate\": \"2024-08-01\",\n            \"vehicleType\": \"E-Bike\",\n            \"price\": 3000\n        },\n        \"package\": \"Zusatzpaket Inspektion & Verschleiß\",\n        \"addons\": []\n    }\n}"},{"id":"4e1c5ae5-f306-4c0f-aae7-ff21e9349a34","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n  \"productName\": \"ebike-Leasing-2024\",\n  \"values\": {\n    \"policyStartDate\": \"2024-02-29\",\n    \"price\": 1000\n  },\n  \"package\": \"LeasingSchutz\",\n  \"addons\": [\n        \"gpsTracking\",\n        \"mobilitaetsschutz\",\n        \"gewerblicheNutzung\",\n        \"inspektion\",\n        \"wartungUndVerschleiss\",\n        \"einzelteileVerschleiss\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"63f9b9d2-febb-4d87-877b-528979d5dcce"},{"name":"Leasing Product B2B2C 2022 NO SEPA","id":"4df353c6-8076-4f10-8c4e-f15d28459dcc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"X-App-Key","type":"text","value":"{{appKeyAlteos}}"}],"body":{"mode":"raw","raw":"{\n  \"productName\": \"ebike-Leasing-2022-no-sepa\",\n  \"values\": {\n    \"policyStartDate\": \"2022-03-01\",\n    \"price\": 1000\n  },\n  \"package\": \"komplettschutz\",\n  \"addons\": [\n        \"gpsTracking\",\n        \"mobilitaetsschutz\",\n        \"gewerblicheNutzung\",\n        \"inspektion\",\n        \"wartungUndVerschleiss\",\n        \"ruecknahmegarantie\",\n        \"einzelteile-Verschleiss\"\n    ]\n}"},"url":"https://api.sandbox.alteos.com/v2/policies/quote","description":"<p>Use this API to retrieve the quote for the Leasing E-Bike/Fahrrad Product</p>\n","urlObject":{"path":["v2","policies","quote"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"592f14ae-e74a-40f6-81ea-0648e606a1f8","name":"Successful Quotation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"productName\": \"ebike-Leasing-2022-no-sepa\",\n  \"values\": {\n    \"policyStartDate\": \"2022-03-01\",\n    \"price\": 1000\n  },\n  \"package\": \"komplettschutz\",\n  \"addons\": [\n        \"gpsTracking\",\n        \"mobilitaetsschutz\",\n        \"gewerblicheNutzung\",\n        \"inspektion\",\n        \"wartungUndVerschleiss\",\n        \"ruecknahmegarantie\",\n        \"einzelteile-Verschleiss\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 32.8,\n    \"premium\": 27.56,\n    \"taxes\": 5.24,\n    \"premiumExclDiscounts\": 27.56,\n    \"taxesExclDiscounts\": 5.24,\n    \"grossExclDiscounts\": 32.8,\n    \"addons\": [\n        {\n            \"name\": \"gpsTracking\",\n            \"payments\": [],\n            \"premium\": 0,\n            \"tax\": 0,\n            \"gross\": 0\n        },\n        {\n            \"name\": \"mobilitaetsschutz\",\n            \"payments\": [],\n            \"premium\": 0,\n            \"tax\": 0,\n            \"gross\": 0\n        },\n        {\n            \"name\": \"gewerblicheNutzung\",\n            \"payments\": [],\n            \"premium\": 2.48,\n            \"tax\": 0.47,\n            \"gross\": 2.95\n        },\n        {\n            \"name\": \"inspektion\",\n            \"payments\": [],\n            \"premium\": 6.68,\n            \"tax\": 1.27,\n            \"gross\": 7.95\n        },\n        {\n            \"name\": \"wartungUndVerschleiss\",\n            \"payments\": [],\n            \"premium\": 13.4,\n            \"tax\": 2.55,\n            \"gross\": 15.95\n        },\n        {\n            \"name\": \"ruecknahmegarantie\",\n            \"payments\": [],\n            \"premium\": 0,\n            \"tax\": 0,\n            \"gross\": 0\n        }\n    ],\n    \"package\": {\n        \"name\": \"komplettschutz\",\n        \"payments\": [],\n        \"premium\": 5,\n        \"tax\": 0.95,\n        \"gross\": 5.95\n    },\n    \"metadata\": {},\n    \"requestData\": {\n        \"productName\": \"ebike-Leasing-2022\",\n        \"values\": {\n            \"policyStartDate\": \"2022-03-01\",\n            \"price\": 1000\n        },\n        \"package\": \"komplettschutz\",\n        \"addons\": [\n            \"gpsTracking\",\n            \"mobilitaetsschutz\",\n            \"gewerblicheNutzung\",\n            \"inspektion\",\n            \"wartungUndVerschleiss\",\n            \"ruecknahmegarantie\"\n        ]\n    }\n}"},{"id":"187cba6a-ad89-4dd2-bccf-4d066b54a6c4","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike\",\n    \"values\": {\n        \"policyStartDate\": \"2021-01-10\",\n        \"paymentSchedule\": \"yearly\",\n        \"price\": \"3000.01-3500.00\"\n    },\n    \"package\": \"schadenschutz\",\n    \"addons\": [\n        \"batteryWear\",\n        \"mobilityGuarantee\",\n        \"individualPartsWear\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"4df353c6-8076-4f10-8c4e-f15d28459dcc"},{"name":"Leasing Product B2B2C 2023 NO SEPA","id":"90dfb798-8e9a-4581-bcc0-c9535cafa6a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"X-App-Key","type":"text","value":"{{appKeyAlteos}}"}],"body":{"mode":"raw","raw":"{\n  \"productName\": \"ebike-Leasing-2023-no-sepa\",\n  \"values\": {\n    \"policyStartDate\": \"2023-02-01\",\n    \"price\": 1000\n  },\n  \"package\": \"komplettschutz\",\n  \"addons\": [\n        \"gpsTracking\",\n        \"mobilitaetsschutz\",\n        \"gewerblicheNutzung\",\n        \"inspektion\",\n        \"wartungUndVerschleiss\",\n        \"ruecknahmegarantie\",\n        \"einzelteile-Verschleiss\"\n    ]\n}"},"url":"https://api.sandbox.alteos.com/v2/policies/quote","description":"<p>Use this API to retrieve the quote for the Leasing E-Bike/Fahrrad Product</p>\n","urlObject":{"path":["v2","policies","quote"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"1e469a7f-7310-44f5-8100-b08f7116cdd4","name":"Successful Quotation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"productName\": \"ebike-Leasing-2023-no-sepa\",\n  \"values\": {\n    \"policyStartDate\": \"2023-02-01\",\n    \"price\": 1000\n  },\n  \"package\": \"komplettschutz\",\n  \"addons\": [\n        \"gpsTracking\",\n        \"mobilitaetsschutz\",\n        \"gewerblicheNutzung\",\n        \"inspektion\",\n        \"wartungUndVerschleiss\",\n        \"ruecknahmegarantie\",\n        \"einzelteile-Verschleiss\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 43.75,\n    \"premium\": 36.76,\n    \"taxes\": 6.99,\n    \"premiumExclDiscounts\": 36.76,\n    \"taxesExclDiscounts\": 6.99,\n    \"grossExclDiscounts\": 43.75,\n    \"addons\": [\n        {\n            \"name\": \"gpsTracking\",\n            \"payments\": [],\n            \"premium\": 0,\n            \"tax\": 0,\n            \"gross\": 0\n        },\n        {\n            \"name\": \"mobilitaetsschutz\",\n            \"payments\": [],\n            \"premium\": 0,\n            \"tax\": 0,\n            \"gross\": 0\n        },\n        {\n            \"name\": \"gewerblicheNutzung\",\n            \"payments\": [],\n            \"premium\": 2.48,\n            \"tax\": 0.47,\n            \"gross\": 2.95\n        },\n        {\n            \"name\": \"inspektion\",\n            \"payments\": [],\n            \"premium\": 6.68,\n            \"tax\": 1.27,\n            \"gross\": 7.95\n        },\n        {\n            \"name\": \"wartungUndVerschleiss\",\n            \"payments\": [],\n            \"premium\": 13.4,\n            \"tax\": 2.55,\n            \"gross\": 15.95\n        },\n        {\n            \"name\": \"einzelteile-Verschleiss\",\n            \"payments\": [],\n            \"premium\": 9.2,\n            \"tax\": 1.75,\n            \"gross\": 10.95\n        }\n    ],\n    \"package\": {\n        \"name\": \"komplettschutz\",\n        \"payments\": [],\n        \"premium\": 5,\n        \"tax\": 0.95,\n        \"gross\": 5.95\n    },\n    \"metadata\": {},\n    \"requestData\": {\n        \"productName\": \"ebike-Leasing-2023-no-sepa\",\n        \"values\": {\n            \"policyStartDate\": \"2023-02-01\",\n            \"price\": 1000\n        },\n        \"package\": \"komplettschutz\",\n        \"addons\": [\n            \"gpsTracking\",\n            \"mobilitaetsschutz\",\n            \"gewerblicheNutzung\",\n            \"inspektion\",\n            \"wartungUndVerschleiss\",\n            \"einzelteile-Verschleiss\"\n        ]\n    }\n}"},{"id":"80f4c4cc-43bd-4f5a-8ef0-570fa61729ca","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike\",\n    \"values\": {\n        \"policyStartDate\": \"2021-01-10\",\n        \"paymentSchedule\": \"yearly\",\n        \"price\": \"3000.01-3500.00\"\n    },\n    \"package\": \"schadenschutz\",\n    \"addons\": [\n        \"batteryWear\",\n        \"mobilityGuarantee\",\n        \"individualPartsWear\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"90dfb798-8e9a-4581-bcc0-c9535cafa6a5"},{"name":"eBike Product B2C | 2022","id":"6c81e6fc-6b48-4d0f-9000-54186dec30fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"X-App-Key","type":"text","value":"{{appKeyAlteos}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike\",\n    \"values\": {\n        \"policyStartDate\": \"2022-06-10\",\n        \"paymentSchedule\": \"yearly\",\n        \"price\": \"3000.01-3500.00\",\n        \"purchasedAt\": \"2020-08-20\",\n        \"vehicleType\": \"E-Bike\"\n    },\n    \"package\": \"schadenschutz\",\n    \"addons\": [\n        \"akkuVerschleiss\",\n        \"mobilitaetsschutz\"\n    ]\n}"},"url":"https://api.sandbox.alteos.com/v2/policies/quote","description":"<p>Use this API to retrieve the quote for the eBike Product.</p>\n<p>Parameters (all mandatory):</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>policyStartDate</td>\n<td>In format YYYY-MM-DD, can be up to 1 month in the future (from current date of the request).  <br />  <br />Minimum starting date: current date (today)</td>\n</tr>\n<tr>\n<td>paymentSchedule</td>\n<td>One of: \"yearly\", \"3years\", \"5years\"</td>\n</tr>\n<tr>\n<td>price</td>\n<td>Price of the insured E-Bike (max: 15.000 Eur).  <br />  <br />Can be one of:  <br />  <br />- \"0.00-500.00\"  <br />- \"500.01-1000.00\"  <br />- \"1000.01-1500.00\"  <br />  <br />... and so on, in 500 Eur increments until:  <br />- \"14500.01-15000.00\"  <br /></td>\n</tr>\n<tr>\n<td>purchasedAt</td>\n<td>Purchase date of the insured E-Bike, in format YYYY-MM-DD.  <br />  <br />- Max 2 years in the past  <br />- if the bike is older than 1Y, only Diebstahlschutz package is available  <br />  <br /></td>\n</tr>\n<tr>\n<td>vehicleType</td>\n<td>One of: \"Fahrrad\", \"E-Bike\".  <br />  <br />Note that GPS addon is not available if Fahrrad selected.</td>\n</tr>\n<tr>\n<td>package</td>\n<td>Type of coverage selected from a set of options: \"schadenschutz\", \"diebstahlschutz\", \"komplettschutz\".</td>\n</tr>\n<tr>\n<td>addons</td>\n<td>List of selected policy-addons (can be an empty array, if none selected).  <br />  <br />Possible addons:  <br />- \"gpsTracking\"  <br />- \"akkuVerschleiss\"  <br />- \"mobilitaetsschutz\"  <br />- \"bremsenUndReifenVerschleiss\"  <br />- \"gewerblicheNutzung\"</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies","quote"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"404f596d-8cfa-4482-99ca-360491f7541f","name":"Successful Quotation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike\",\n    \"values\": {\n        \"policyStartDate\": \"2021-01-10\",\n        \"paymentSchedule\": \"5years\",\n        \"price\": \"1000.01-1500.00\",\n        \"purchasedAt\": \"2020-08-20\",\n        \"brand\": \"Batavus\",\n        \"frameNumber\": \"1245311\",\n        \"batteryNumber\": \"124245311\",\n        \"type\": \"Mountainbike\",\n        \"lockModel\": \"Abus ab 45 € Verkaufspreis\"\n    },\n    \"package\": \"schadenschutz\",\n    \"addons\": [\n        \"akkuVerschleiss\",\n        \"mobilitaetsschutz\"\n    ]\n}   ","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 744.95,\n    \"premium\": 626.01,\n    \"taxes\": 118.94,\n    \"premiumExclDiscounts\": 626.01,\n    \"taxesExclDiscounts\": 118.94,\n    \"grossExclDiscounts\": 744.95,\n    \"addons\": [\n        {\n            \"name\": \"akkuVerschleiss\",\n            \"payments\": [\n                {\n                    \"premium\": 50.42,\n                    \"tax\": 9.58\n                }\n            ],\n            \"gross\": 60\n        },\n        {\n            \"name\": \"mobilitaetsschutz\",\n            \"payments\": [\n                {\n                    \"premium\": 25.21,\n                    \"tax\": 4.79\n                }\n            ],\n            \"gross\": 30\n        }\n    ],\n    \"package\": {\n        \"name\": \"schadenschutz\",\n        \"payments\": [\n            {\n                \"premium\": 147.02,\n                \"tax\": 27.93\n            }\n        ],\n        \"gross\": 174.95\n    },\n    \"metadata\": {},\n    \"requestData\": {\n        \"productName\": \"ebike\",\n        \"values\": {\n            \"policyStartDate\": \"2021-01-10\",\n            \"paymentSchedule\": \"5years\",\n            \"price\": \"1000.01-1500.00\",\n            \"purchasedAt\": \"2020-08-20\",\n            \"brand\": \"Batavus\",\n            \"frameNumber\": \"1245311\",\n            \"batteryNumber\": \"124245311\",\n            \"type\": \"Mountainbike\",\n            \"lockModel\": \"Abus ab 45 € Verkaufspreis\"\n        },\n        \"package\": \"schadenschutz\",\n        \"addons\": [\n            \"akkuVerschleiss\",\n            \"mobilitaetsgarantie\"\n        ]\n    }\n}"},{"id":"1225f009-c0c1-426f-8537-414524786acf","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike\",\n    \"values\": {\n        \"policyStartDate\": \"2021-01-10\",\n        \"paymentSchedule\": \"yearly\",\n        \"price\": \"3000.01-3500.00\"\n    },\n    \"package\": \"schadenschutz\",\n    \"addons\": [\n        \"batteryWear\",\n        \"mobilityGuarantee\",\n        \"individualPartsWear\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"6c81e6fc-6b48-4d0f-9000-54186dec30fb"},{"name":"eBike Product B2C | 2023","id":"28ab6149-0e74-40cc-a219-615e52e072c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"X-App-Key","type":"text","value":"{{appKeyAlteos}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike\",\n    \"values\": {\n        \"policyStartDate\": \"2023-02-20\",\n        \"paymentSchedule\": \"oneTime\",\n        \"price\": \"1000.01-1500.00\",\n        \"purchasedAt\": \"2023-01-20\",\n        \"vehicleType\": \"E-Bike\"\n\n    },\n    \"package\": \"diebstahlschutz\",\n    \"addons\": [\n        \"gpsTracking\"\n    ]\n}   "},"url":"https://api.sandbox.alteos.com/v2/policies/quote","description":"<p>Use this API to retrieve the quote for the eBike Product.</p>\n<p>Parameters (all mandatory):</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>policyStartDate</td>\n<td>In format YYYY-MM-DD, can be up to 1 month in the future (from current date of the request).  <br />  <br />Minimum starting date: current date (today)</td>\n</tr>\n<tr>\n<td>paymentSchedule</td>\n<td>One of: \"monthly\", \"annual\", \"oneTime\", \"3years\"</td>\n</tr>\n<tr>\n<td>price</td>\n<td>Price of the insured E-Bike (max: 15.000 Eur).  <br />  <br />Can be one of:  <br />  <br />- \"0.00-500.00\"  <br />- \"500.01-1000.00\"  <br />- \"1000.01-1500.00\"  <br />  <br />... and so on, in 500 Eur increments until:  <br />- \"14500.01-15000.00\"  <br /></td>\n</tr>\n<tr>\n<td>purchasedAt</td>\n<td>Purchase date of the insured E-Bike, in format YYYY-MM-DD.  <br />  <br />- Max 2 years in the past  <br />- if the bike is older than 1Y, only Diebstahlschutz package is available  <br />  <br /></td>\n</tr>\n<tr>\n<td>vehicleType</td>\n<td>One of: \"Fahrrad\" or \"E-Bike\"  <br />  <br />Note that GPS addon is not available if Fahrrad selected.</td>\n</tr>\n<tr>\n<td>package</td>\n<td>Type of coverage selected from a set of options: \"diebstahlschutz\", \"komfortschutz\", \"premiumschutz\".</td>\n</tr>\n<tr>\n<td>addons</td>\n<td>List of selected policy-addons (can be an empty array, if none selected).  <br />  <br />Possible addons:  <br />- \"gpsTracking\"</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies","quote"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"0c182f44-3798-43f7-9d93-197749b2b4d5","name":"Successful Quotation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike\",\n    \"values\": {\n        \"policyStartDate\": \"2023-02-20\",\n        \"paymentSchedule\": \"oneTime\",\n        \"price\": \"1000.01-1500.00\",\n        \"purchasedAt\": \"2023-01-20\",\n        \"vehicleType\": \"E-Bike\"\n    },\n    \"package\": \"diebstahlschutz\",\n    \"addons\": [\n        \"gpsTracking\"\n    ]\n}   ","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 71.95,\n    \"premium\": 60.46,\n    \"taxes\": 11.49,\n    \"premiumExclDiscounts\": 60.46,\n    \"taxesExclDiscounts\": 11.49,\n    \"grossExclDiscounts\": 71.95,\n    \"addons\": [\n        {\n            \"name\": \"gpsTracking\",\n            \"payments\": [\n                {\n                    \"premium\": 10.08,\n                    \"tax\": 1.92\n                }\n            ],\n            \"gross\": 12\n        }\n    ],\n    \"package\": {\n        \"name\": \"diebstahlschutz\",\n        \"payments\": [\n            {\n                \"premium\": 50.38,\n                \"tax\": 9.57\n            }\n        ],\n        \"gross\": 59.95\n    },\n    \"metadata\": {},\n    \"requestData\": {\n        \"productName\": \"ebike\",\n        \"values\": {\n            \"policyStartDate\": \"2023-02-20\",\n            \"paymentSchedule\": \"oneTime\",\n            \"price\": \"1000.01-1500.00\",\n            \"purchasedAt\": \"2023-01-20\",\n            \"vehicleType\": \"E-Bike\"\n        },\n        \"package\": \"diebstahlschutz\",\n        \"addons\": [\n            \"gpsTracking\"\n        ]\n    }\n}"},{"id":"6cac8d03-be85-47c2-aa17-bede007f2798","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike\",\n    \"values\": {\n        \"policyStartDate\": \"2023-02-20\",\n        \"paymentSchedule\": \"oneTime\",\n        \"price\": \"1000.01-1500.00\",\n        \"purchasedAt\": \"2022-01-20\",\n        \"vehicleType\": \"E-Bike\"\n    },\n    \"package\": \"diebstahlschutz\",\n    \"addons\": [\n        \"gpsTracking\"\n    ]\n}   ","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"28ab6149-0e74-40cc-a219-615e52e072c2"},{"name":"eBike Product Sushi Bikes","id":"918b7da7-e0f7-4e20-8ee2-bbeeb82c5fb8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-App-Key","value":"520478ab-bda4-4ee7-a753-5400edf8fb6f"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"sushi-bikes\",\n    \"values\": {\n        \"policyStartDate\": \"2024-06-17\",\n        \"paymentSchedule\": \"annual\",\n        \"price\": \"1000.01-1500.00\",\n        \"purchasedAt\": \"2024-06-17\",\n        \"vehicleType\": \"E-Bike\"\n\n    },\n    \"package\": \"komfortschutz\",\n    \"addons\": [\n        \"mobilitaetsschutz\"\n    ]\n}   "},"url":"https://api.sandbox.alteos.com/v2/policies/quote","description":"<p>Use this API to retrieve the quote for the eBike Product.</p>\n<p>Parameters (all mandatory):</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>policyStartDate</td>\n<td>In format YYYY-MM-DD, can be up to 1 month in the future (from current date of the request).  <br />  <br />Minimum starting date: current date (today)</td>\n</tr>\n<tr>\n<td>paymentSchedule</td>\n<td>One of: \"monthly\", \"annual\"</td>\n</tr>\n<tr>\n<td>price</td>\n<td>Price of the insured E-Bike (max: 5.000 Eur).  <br />  <br />Can be one of:  <br />- \"0.00-500.00\"  <br />- \"500.01-1000.00\"  <br />- \"1000.01-1500.00\"  <br />  <br />... and so on, in 500 Eur increments until:  <br />- \"4500.01-5000.00\"</td>\n</tr>\n<tr>\n<td>purchasedAt</td>\n<td>Purchase date of the insured E-Bike, in format YYYY-MM-DD.  <br />  <br />- Max 1 month in the past</td>\n</tr>\n<tr>\n<td>vehicleType</td>\n<td>Should be used the value: \"E-Bike\"</td>\n</tr>\n<tr>\n<td>type</td>\n<td>One of: \"Stadtrad\", \"Lasten- / Transportrad\", \"Mountainbike\", \"Gravelbike / Rennrad\", \"S-Pedelecs\", \"Sonstige\"  <br />(optional variable)</td>\n</tr>\n<tr>\n<td>package</td>\n<td>Type of coverage selected from a set of options: \"diebstahlschutz\", \"komfortschutz\", \"premiumschutz\".</td>\n</tr>\n<tr>\n<td>addons</td>\n<td>Always pass \"mobilitaetsschutz\" here.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies","quote"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"aaae4d8d-ebfe-4b52-a2cc-46e0d7719981","name":"Successful Quotation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"sushi-bikes\",\n    \"values\": {\n        \"policyStartDate\": \"2024-05-31\",\n        \"paymentSchedule\": \"annual\",\n        \"price\": \"1000.01-1500.00\",\n        \"purchasedAt\": \"2024-05-31\",\n        \"vehicleType\": \"E-Bike\"\n\n    },\n    \"package\": \"komfortschutz\",\n    \"addons\": [\n        \"mobilitaetsschutz\"\n    ]\n}  ","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 119,\n    \"premium\": 100,\n    \"taxes\": 19,\n    \"premiumExclDiscounts\": 100,\n    \"taxesExclDiscounts\": 19,\n    \"grossExclDiscounts\": 119,\n    \"addons\": [\n        {\n            \"name\": \"mobilitaetsschutz\",\n            \"payments\": []\n        }\n    ],\n    \"package\": {\n        \"name\": \"komfortschutz\",\n        \"payments\": [\n            {\n                \"premium\": 100,\n                \"tax\": 19\n            },\n            {\n                \"premium\": 100,\n                \"tax\": 19\n            },\n            {\n                \"premium\": 100,\n                \"tax\": 19\n            },\n            {\n                \"premium\": 100,\n                \"tax\": 19\n            },\n            {\n                \"premium\": 100,\n                \"tax\": 19\n            }\n        ],\n        \"gross\": 119\n    },\n    \"metadata\": {},\n    \"requestData\": {\n        \"productName\": \"sushi-bikes\",\n        \"values\": {\n            \"policyStartDate\": \"2024-05-31\",\n            \"paymentSchedule\": \"annual\",\n            \"price\": \"1000.01-1500.00\",\n            \"purchasedAt\": \"2024-05-31\",\n            \"vehicleType\": \"E-Bike\"\n        },\n        \"package\": \"komfortschutz\",\n        \"addons\": [\n            \"mobilitaetsschutz\"\n        ]\n    }\n}"},{"id":"79caf085-3e06-4d2d-a7d4-c023ac0e46c3","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike2024\",\n    \"values\": {\n        \"policyStartDate\": \"2024-02-12\",\n        \"paymentSchedule\": \"oneTime\",\n        \"price\": \"1000.01-1500.00\",\n        \"purchasedAt\": \"2024-02-12\",\n        \"vehicleType\": \"E-Bike\"\n\n    },\n    \"package\": \"diebstahlschutz\",\n    \"addons\": [\n        \"gpsTracking\"\n    ]\n}   ","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"918b7da7-e0f7-4e20-8ee2-bbeeb82c5fb8"},{"name":"Display-Versicherung Product","id":"4adebf3a-8c61-4395-9c3b-aa4feaebe0e9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"\n{\n\t\"productName\": \"displayVersicherung\",\n\n\t\"values\": {\n\t\t\"duration\": \"2years\",\n        \"partnerContractId\": \"1\",\n\t\t\"policyStartDate\": \"2020-06-20\",\n        \"assignedPremium\": 49.95,\n        \"insuredPersonSalutation\": \"Herr\",\n\t\t\"insuredPersonName\":\"John\",\n        \"insuredPersonFamilyName\":\"Doe\",\n        \"insuredPersonEmail\":\"john.doe@gmail.com\",\n\t\t\"insuredPersonStreetAddress\":\"Potsdamer Str\",\n        \"insuredPersonHouseNumber\":\"1\",\n        \"insuredPersonAddressPostalCode\":\"10785\",\n        \"insuredPersonCityAddress\":\"Berlin\",\n        \"paymentSchedule\": \"oneTime\"\n\t},\n\t\"objects\": [\n\t\t{\n\t\t\t\"name\": \"Geraet\",\n\t\t\t\"values\": {\n\t\t\t\t\t\t\"priceCategory\": \"A\",\n                        \"purchaseDate\": \"2020-05-11\",\n                        \"deviceId\": \"123\",\n                        \"deviceBrand\": \"iPhone\",\n                        \"deviceModel\": \"12\",\n                        \"deviceImei\": \"8V6A9K49157\",\n                        \"protectionInstalled\": \"yes\"\n\t\t\t},\n\t\t\t\"risks\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"Bildschirmglasbruch\",\n\t\t\t\t\t\"values\": {}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"Rueckseitenglasbruch\",\n\t\t\t\t\t\"values\": {}\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t]\n}"},"url":"https://api.sandbox.alteos.com/v1/policies/quote","description":"<p>Use this API to retrieve the quote for the Display-Versicherung product.</p>\n","urlObject":{"path":["v1","policies","quote"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"e026c5be-c36a-4085-82d6-c31015266ec6","name":"Display-Versicherung Product","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"\n{\n\t\"productName\": \"displayVersicherung\",\n\n\t\"values\": {\n\t\t\"duration\": \"2years\",\n        \"partnerContractId\": \"1\",\n\t\t\"policyStartDate\": \"2020-06-20\",\n        \"assignedPremium\": 49.95,\n        \"insuredPersonSalutation\": \"Herr\",\n\t\t\"insuredPersonName\":\"John\",\n        \"insuredPersonFamilyName\":\"Doe\",\n        \"insuredPersonEmail\":\"john.doe@gmail.com\",\n\t\t\"insuredPersonStreetAddress\":\"Potsdamer Str\",\n        \"insuredPersonHouseNumber\":\"1\",\n        \"insuredPersonAddressPostalCode\":\"10785\",\n        \"insuredPersonCityAddress\":\"Berlin\"\n\t},\n\t\"objects\": [\n\t\t{\n\t\t\t\"name\": \"Geraet\",\n\t\t\t\"values\": {\n\t\t\t\t\t\t\"priceCategory\": \"A\",\n                        \"purchaseDate\": \"2020-05-11\",\n                        \"deviceId\": \"123\",\n                        \"deviceBrand\": \"iPhone\",\n                        \"deviceModel\": \"12\",\n                        \"deviceImei\": \"8V6A9K49157\",\n                        \"protectionInstalled\": \"yes\",\n                        \"withMonthlySchedule\": false\n\t\t\t},\n\t\t\t\"risks\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"Bildschirmglasbruch\",\n\t\t\t\t\t\"values\": {}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"Rueckseitenglasbruch\",\n\t\t\t\t\t\"values\": {}\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t]\n}"},"url":"https://api.sandbox.alteos.com/v1/policies/quote"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"ff396f69-a603-4dd0-ae96-3f8d16f64387","name":"Successful Quotation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"warrantyExtension\",\n    \"customer\": {\n        \"email\": \"username@username.com\",\n        \"values\": {\n            \"firstName\": \"John\",\n            \"lastName\": \"Doe\",\n            \"salutation\": \"Herr\",\n            \"addressStreet\": \"Hardenbergerstr.\",\n            \"addressHouseNumber\": \"42\",\n            \"addressPlz\": \"12345\",\n            \"addressCity\": \"Berlin\",\n            \"phone\": \"49123456789\"\n        }\n    },\n    \"values\": {\n        \"duration\": \"12\"\n    },\n    \"objects\": [\n        {\n            \"name\": \"whiteAppliances\",\n            \"values\": {\n                \"brand\": \"Bosch\",\n                \"itemCategory\": \"Backofen\",\n                \"ean\": \"3523DFGdf2343\",\n                \"itemValue\": \"0-150\",\n                \"purchasedAt\": \"2018-11-30\"\n            },\n            \"risks\": [\n                {\n                    \"name\": \"deviceBreakdown\",\n                    \"values\": {}\n                }\n            ]\n        }\n    ]\n}"},"url":"https://api.sandbox.alteos.com/v1/policies/quote"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"premium\": 41.97,\n    \"taxes\": 7.98,\n    \"gross\": 49.95\n}"}],"_postman_id":"4adebf3a-8c61-4395-9c3b-aa4feaebe0e9"},{"name":"Electronic Scooters","id":"012e3a99-94ea-4df9-8a08-e8fff0830402","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"X-App-Key","type":"text","value":"{{appKeyAlteos}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"garantie-tisto\",\n    \"values\": {\n        \"duration\":\"24\",\n        \"itemValue\":\"2000.00-2500.00\",\n        \"purchasedAt\": \"2023-10-25\"\n    },\n    \"package\": \"garantieverlaengerung\",\n    \"addons\": []\n} "},"url":"https://api.sandbox.alteos.com/v2/policies/quote","description":"<p>Use this API to retrieve the quote for the Electronic Scooters.</p>\n<p>Parameters (all mandatory):</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>duration</td>\n<td>must be \"24\"</td>\n</tr>\n<tr>\n<td>itemValue</td>\n<td>corresponds to the total value of an Electronic Scooter.  <br />  <br />e.g:  <br />\"2000.00-2500.00\" \"2500.01-3000.00\"  <br />\"3000.01-3500.00\" \"3500.01-4000.00\" \"4000.01-4500.00\" \"4500.01-5000.00\" \"5000.01-5500.00\" \"5500.01-6000.00\"  <br />\"6000.01-6500.00\" \"6500.01-7000.00\"  <br />\"7000.01-7500.00\"</td>\n</tr>\n<tr>\n<td>purchasedAt</td>\n<td>Purchase date of the insured Scooters, in format YYYY-MM-DD. Must have a date no more than 14 days in the past to be eligible for scooter purchase.</td>\n</tr>\n<tr>\n<td>package</td>\n<td>garantieverlaengerung</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies","quote"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"8531a718-0253-43b5-97a0-0c2f4fc5ef3c","name":"Successful Quotation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"garantie-tisto\",\n    \"values\": {\n        \"duration\":\"24\",\n        \"itemValue\":\"2000.00-2500.00\",\n        \"purchasedAt\": \"2023-10-25\"\n    },\n    \"package\": \"garantieverlaengerung\",\n    \"addons\": []\n} ","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 102.45,\n    \"premium\": 86.09,\n    \"taxes\": 16.36,\n    \"premiumExclDiscounts\": 86.09,\n    \"taxesExclDiscounts\": 16.36,\n    \"grossExclDiscounts\": 102.45,\n    \"addons\": [],\n    \"package\": {\n        \"name\": \"garantieverlaengerung\",\n        \"payments\": []\n    },\n    \"metadata\": {},\n    \"requestData\": {\n        \"productName\": \"garantie-tisto\",\n        \"values\": {\n            \"duration\": \"24\",\n            \"itemValue\": \"2000.00-2500.00\",\n            \"purchasedAt\": \"2023-10-25\"\n        },\n        \"package\": \"garantieverlaengerung\",\n        \"addons\": []\n    }\n}"},{"id":"cb44a941-2deb-4ea0-bdb9-ba576680d2c5","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"hoerschutz-erp\",\n    \"values\": {\n        \"paymentSchedule\": \"annual\",\n        \"itemValue\": \"0-1000\",\n        \"partnerCode\":1\n    },\n    \"package\": \"komplettschutz\",\n    \"addons\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"012e3a99-94ea-4df9-8a08-e8fff0830402"},{"name":"Examples of error responses","id":"848cf03d-eca0-49d9-b698-158fb3c5d1a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.sandbox.alteos.com/v2/policies/quote","description":"<p>In order to know how to handle exceptional situations during quotation, we share below a list of possible error responses</p>\n","urlObject":{"path":["v2","policies","quote"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"cd8da0eb-dfbc-4daa-9902-569dc192812e","name":"Data Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike\",\n    \"values\": {\n        \"policyStartDate\": \"2021-01-10\",\n        \"paymentSchedule\": \"\",\n        \"price\": \"1000.01-1500.00\",\n        \"purchasedAt\": \"2020-08-20\",\n        \"brand\": \"Batavus\",\n        \"frameNumber\": \"1245311\",\n        \"batteryNumber\": \"124245311\",\n        \"type\": \"Mountainbike\",\n        \"lockModel\": \"Abus ab 45 € Verkaufspreis\"\n    },\n    \"package\": \"schadenschutz\",\n    \"addons\": [\n        \"akkuVerschleiss\",\n        \"mobilitaetsgarantie\",\n        \"einzelteileVerschleiss\"\n    ]\n}   ","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.sandbox.alteos.com/v2/policies/quote?saveQuote=true","host":["https://api.sandbox.alteos.com"],"path":["v2","policies","quote"],"query":[{"key":"saveQuote","value":"true"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Quote policy validation : \\\"values.paymentSchedule\\\" must be one of [yearly, 3years, 5years]. \\\"values.paymentSchedule\\\" is not allowed to be empty\",\n    \"errorCode\": \"invalidData\"\n}"},{"id":"43cf5c2b-6a48-4e77-a8cd-3546fd5936f4","name":"Package Name Not Valid Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike\",\n    \"values\": {\n        \"policyStartDate\": \"2021-01-10\",\n        \"paymentSchedule\": \"5years\",\n        \"price\": \"1000.01-1500.00\",\n        \"purchasedAt\": \"2020-08-20\",\n        \"brand\": \"Batavus\",\n        \"frameNumber\": \"1245311\",\n        \"batteryNumber\": \"124245311\",\n        \"type\": \"Mountainbike\",\n        \"lockModel\": \"Abus ab 45 € Verkaufspreis\"\n    },\n    \"package\": \"notValid\",\n    \"addons\": [\n        \"akkuVerschleiss\",\n        \"mobilitaetsgarantie\",\n        \"einzelteileVerschleiss\"\n    ]\n}   ","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.sandbox.alteos.com/v2/policies/quote?saveQuote=true","host":["https://api.sandbox.alteos.com"],"path":["v2","policies","quote"],"query":[{"key":"saveQuote","value":"true"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Resolve package : package name is not valid\",\n    \"errorCode\": \"packageNameNotValid\"\n}"},{"id":"ee7050a5-c7f9-4337-a4d4-6a092e4eac1a","name":"Internal Server Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike\",\n    \"values\": {\n        \"policyStartDate\": \"2021-01-10\",\n        \"paymentSchedule\": \"yearly\",\n        \"price\": \"3000.01-3500.00\"\n    },\n    \"package\": \"schadenschutz\",\n    \"addons\": [\n        \"batteryWear\",\n        \"mobilityGuarantee\",\n        \"individualPartsWear\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies/quote"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"some server error\",\n    \"errorCode\": \"internalServerError\"\n}"}],"_postman_id":"848cf03d-eca0-49d9-b698-158fb3c5d1a8"},{"name":"Leasing Product B2B2C 2024","id":"63e7f0bc-08e0-4341-8586-27489d3a9f9e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"X-App-Key","type":"text","value":"{{appKeyAlteos}}"}],"body":{"mode":"raw","raw":"{\n  \"productName\": \"ebike-Leasing-2024\",\n  \"values\": {\n    \"policyStartDate\": \"2024-02-29\",\n    \"price\": 1000\n  },\n  \"package\": \"LeasingSchutz\",\n  \"addons\": [\n        \"gpsTracking\",\n        \"mobilitaetsschutz\",\n        \"gewerblicheNutzung\",\n        \"inspektion\",\n        \"wartungUndVerschleiss\",\n        \"einzelteileVerschleiss\"\n    ]\n}"},"url":"https://api.sandbox.alteos.com/v2/policies/quote","description":"<p>Use this API to retrieve the quote for the Leasing E-Bike/Fahrrad Product</p>\n","urlObject":{"path":["v2","policies","quote"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"77d85666-7d2e-4e32-ad94-22433b04a9c6","name":"Successful Quotation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"productName\": \"ebike-Leasing-2024\",\n  \"values\": {\n    \"policyStartDate\": \"2024-02-29\",\n    \"price\": 1000\n  },\n  \"package\": \"LeasingSchutz\",\n  \"addons\": [\n        \"gpsTracking\",\n        \"mobilitaetsschutz\",\n        \"gewerblicheNutzung\",\n        \"inspektion\",\n        \"wartungUndVerschleiss\",\n        \"einzelteileVerschleiss\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 44.25,\n    \"premium\": 37.18,\n    \"taxes\": 7.07,\n    \"premiumExclDiscounts\": 37.18,\n    \"taxesExclDiscounts\": 7.07,\n    \"grossExclDiscounts\": 44.25,\n    \"addons\": [\n        {\n            \"name\": \"gpsTracking\",\n            \"payments\": [],\n            \"premium\": 0,\n            \"tax\": 0,\n            \"gross\": 0\n        },\n        {\n            \"name\": \"mobilitaetsschutz\",\n            \"payments\": [],\n            \"premium\": 0,\n            \"tax\": 0,\n            \"gross\": 0\n        },\n        {\n            \"name\": \"gewerblicheNutzung\",\n            \"payments\": [],\n            \"premium\": 2.48,\n            \"tax\": 0.47,\n            \"gross\": 2.95\n        },\n        {\n            \"name\": \"inspektion\",\n            \"payments\": [],\n            \"premium\": 6.68,\n            \"tax\": 1.27,\n            \"gross\": 7.95\n        },\n        {\n            \"name\": \"wartungUndVerschleiss\",\n            \"payments\": [],\n            \"premium\": 13.4,\n            \"tax\": 2.55,\n            \"gross\": 15.95\n        },\n        {\n            \"name\": \"einzelteileVerschleiss\",\n            \"payments\": [],\n            \"premium\": 9.2,\n            \"tax\": 1.75,\n            \"gross\": 10.95\n        }\n    ],\n    \"package\": {\n        \"name\": \"LeasingSchutz\",\n        \"payments\": [],\n        \"premium\": 5.42,\n        \"tax\": 1.03,\n        \"gross\": 6.45\n    },\n    \"metadata\": {},\n    \"requestData\": {\n        \"productName\": \"ebike-Leasing-2024\",\n        \"values\": {\n            \"policyStartDate\": \"2024-02-29\",\n            \"price\": 1000\n        },\n        \"package\": \"LeasingSchutz\",\n        \"addons\": [\n            \"gpsTracking\",\n            \"mobilitaetsschutz\",\n            \"gewerblicheNutzung\",\n            \"inspektion\",\n            \"wartungUndVerschleiss\",\n            \"einzelteile-Verschleiss\"\n        ]\n    }\n}"},{"id":"23eb1c86-823e-4184-80b6-b79ce2ea3586","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n  \"productName\": \"ebike-Leasing-2024\",\n  \"values\": {\n    \"policyStartDate\": \"2024-02-29\",\n    \"price\": 1000\n  },\n  \"package\": \"LeasingSchutz\",\n  \"addons\": [\n        \"gpsTracking\",\n        \"mobilitaetsschutz\",\n        \"gewerblicheNutzung\",\n        \"inspektion\",\n        \"wartungUndVerschleiss\",\n        \"einzelteileVerschleiss\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"63e7f0bc-08e0-4341-8586-27489d3a9f9e"},{"name":"Leasing Product B2B2C 2024 NO SEPA","id":"bee32cb2-b8ee-489e-967e-86e7e576af8c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"X-App-Key","type":"text","value":"{{appKeyAlteos}}"}],"body":{"mode":"raw","raw":"{\n  \"productName\": \"ebike-Leasing-2024-no-sepa\",\n  \"values\": {\n    \"policyStartDate\": \"2024-03-01\",\n    \"price\": 1000\n  },\n  \"package\": \"LeasingSchutz\",\n  \"addons\": [\n        \"gpsTracking\",\n        \"mobilitaetsschutz\",\n        \"gewerblicheNutzung\",\n        \"inspektion\",\n        \"wartungUndVerschleiss\",\n        \"einzelteileVerschleiss\"\n    ]\n}"},"url":"https://api.sandbox.alteos.com/v2/policies/quote","description":"<p>Use this API to retrieve the quote for the Leasing E-Bike/Fahrrad Product</p>\n","urlObject":{"path":["v2","policies","quote"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"a4852895-0dc9-4fb2-8127-21a413a5f7f5","name":"Successful Quotation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"productName\": \"ebike-Leasing-2024-no-sepa\",\n  \"values\": {\n    \"policyStartDate\": \"2024-03-01\",\n    \"price\": 1000\n  },\n  \"package\": \"LeasingSchutz\",\n  \"addons\": [\n        \"gpsTracking\",\n        \"mobilitaetsschutz\",\n        \"gewerblicheNutzung\",\n        \"inspektion\",\n        \"wartungUndVerschleiss\",\n        \"einzelteileVerschleiss\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 44.25,\n    \"premium\": 37.18,\n    \"taxes\": 7.07,\n    \"premiumExclDiscounts\": 37.18,\n    \"taxesExclDiscounts\": 7.07,\n    \"grossExclDiscounts\": 44.25,\n    \"addons\": [\n        {\n            \"name\": \"gpsTracking\",\n            \"payments\": [],\n            \"premium\": 0,\n            \"tax\": 0,\n            \"gross\": 0\n        },\n        {\n            \"name\": \"mobilitaetsschutz\",\n            \"payments\": [],\n            \"premium\": 0,\n            \"tax\": 0,\n            \"gross\": 0\n        },\n        {\n            \"name\": \"gewerblicheNutzung\",\n            \"payments\": [],\n            \"premium\": 2.48,\n            \"tax\": 0.47,\n            \"gross\": 2.95\n        },\n        {\n            \"name\": \"inspektion\",\n            \"payments\": [],\n            \"premium\": 6.68,\n            \"tax\": 1.27,\n            \"gross\": 7.95\n        },\n        {\n            \"name\": \"wartungUndVerschleiss\",\n            \"payments\": [],\n            \"premium\": 13.4,\n            \"tax\": 2.55,\n            \"gross\": 15.95\n        },\n        {\n            \"name\": \"einzelteileVerschleiss\",\n            \"payments\": []\n        }\n    ],\n    \"package\": {\n        \"name\": \"LeasingSchutz\",\n        \"payments\": [],\n        \"premium\": 5.42,\n        \"tax\": 1.03,\n        \"gross\": 6.45\n    },\n    \"metadata\": {},\n    \"requestData\": {\n        \"productName\": \"ebike-Leasing-2024-no-sepa\",\n        \"values\": {\n            \"policyStartDate\": \"2024-03-01\",\n            \"price\": 1000\n        },\n        \"package\": \"LeasingSchutz\",\n        \"addons\": [\n            \"gpsTracking\",\n            \"mobilitaetsschutz\",\n            \"gewerblicheNutzung\",\n            \"inspektion\",\n            \"wartungUndVerschleiss\",\n            \"einzelteileVerschleiss\"\n        ]\n    }\n}"},{"id":"2df500fa-35c1-4eac-9a52-7fe74ceec261","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n  \"productName\": \"ebike-Leasing-2024-no-sepa\",\n  \"values\": {\n    \"policyStartDate\": \"2024-03-01\",\n    \"price\": 1000\n  },\n  \"package\": \"LeasingSchutz\",\n  \"addons\": [\n        \"gpsTracking\",\n        \"mobilitaetsschutz\",\n        \"gewerblicheNutzung\",\n        \"inspektion\",\n        \"wartungUndVerschleiss\",\n        \"einzelteileVerschleiss\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"bee32cb2-b8ee-489e-967e-86e7e576af8c"},{"name":"Hearing Aids 2023 IPN","id":"2c340740-795b-4e0c-87f5-38d047fc3960","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"X-App-Key","type":"text","value":"{{appKeyAlteos}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"hoerschutz-erp-2023\",\n    \"values\": {\n        \"paymentSchedule\": \"annual\",\n        \"itemValue\": \"0-1000\",\n        \"partnerCode\":\"1234\",\n        \"onlyAccessories\": true\n    },\n    \"package\": \"komplettschutz\",\n    \"addons\": []\n} "},"url":"https://api.sandbox.alteos.com/v2/policies/quote","description":"<p>Use this API to retrieve the quote for the Hearing Aids Product.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>productName</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>\"hoerschutz-erp-2023\"</td>\n</tr>\n</tbody>\n</table>\n</div><p>Parameters (all mandatory):</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>itemValue</td>\n<td>corresponds to the total value of both hearing aids devices.  <br />  <br />selection from the following:  <br />\"0.00-500.00\"  <br />\"500.01-1000.00\"  <br />\"1000.01-1500.00\"  <br />\"1500.01-2000.00\"  <br />\"2000.01-2500.00\"  <br />\"2500.01-3000.00\"  <br />\"3000.01-3500.00\"  <br />\"3500.01-4000.00\"  <br />\"4000.01-4500.00\"  <br />\"4500.01-5000.00\"  <br />\"5000.01-5500.00\"  <br />\"5500.01-6000.00\"  <br />\"6500.01-7000.00\"  <br />\"7000.01-7500.00\"  <br />\"7500.01-8000.00\"  <br />\"8000.01-8500.00\"  <br />\"8500.01-9000.00\"  <br />\"9000.01-9500.00\"  <br />\"9500.01-10000.00\"  <br />\"10000.01-10500.00\"  <br />\"10500.01-11000.00\"  <br />\"11000.01-11500.00\"  <br />\"11500.01-12000.00\"  <br />\"12000.01-12500.00\"  <br />\"12500.01-13000.00\"  <br />\"13000.01-13500.00\"  <br />\"13500.01-14000.00\"  <br />\"14000.01-14500.00\"  <br />\"14500.01-15000.00\"</td>\n</tr>\n<tr>\n<td>paymentSchedule</td>\n<td>One of: \"threeYear\", \"annual\" or \"oneTime\".</td>\n</tr>\n<tr>\n<td>partnerCode</td>\n<td>partner ID to capture a third party involved in policy creation process (e.g. a store or branch where the contract is created)</td>\n</tr>\n<tr>\n<td>package</td>\n<td>Type of coverage selected from a set of options: \"verlustschutz\", \"komplettschutz\", \"komfortschutz\".</td>\n</tr>\n<tr>\n<td>onlyAccessories</td>\n<td>(boolean) true or false.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies","quote"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"3e37cfad-1d4d-46fc-b82e-444006dace46","name":"Successful Quotation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"hoerschutz-erp-2023\",\n    \"values\": {\n        \"paymentSchedule\": \"annual\",\n        \"itemValue\": \"0-1000\",\n        \"partnerCode\":\"1234\",\n        \"onlyAccessories\": true\n    },\n    \"package\": \"komplettschutz\",\n    \"addons\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 41.95,\n    \"premium\": 35.25,\n    \"taxes\": 6.7,\n    \"premiumExclDiscounts\": 35.25,\n    \"taxesExclDiscounts\": 6.7,\n    \"grossExclDiscounts\": 41.95,\n    \"addons\": [],\n    \"package\": {\n        \"name\": \"komplettschutz\",\n        \"payments\": []\n    },\n    \"metadata\": {},\n    \"requestData\": {\n        \"productName\": \"hoerschutz-erp-2023\",\n        \"values\": {\n            \"paymentSchedule\": \"annual\",\n            \"itemValue\": \"0-1000\",\n            \"partnerCode\":\"1234\",\n            \"onlyAccessories\": true\n        },\n        \"package\": \"komplettschutz\",\n        \"addons\": []\n    }\n}"},{"id":"b30c0511-aa40-470e-a2ac-81fe688abe92","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"hoerschutz-erp-2023\",\n    \"values\": {\n        \"paymentSchedule\": \"annual\",\n        \"itemValue\": \"0-1000\",\n        \"partnerCode\":1,\n        \"onlyAccessories\": true\n    },\n    \"package\": \"komplettschutz\",\n    \"addons\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"2c340740-795b-4e0c-87f5-38d047fc3960"},{"name":"Hearing Aids 2023","id":"4662667f-089f-44a0-83bc-936834bdb0d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKeyAlteos}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"hoerschutz-erp\",\n    \"values\": {\n        \"paymentSchedule\": \"annual\",\n        \"itemValue\": \"0-1000\",\n        \"partnerCode\":\"1234\",\n        \"onlyAccessories\": true\n    },\n    \"package\": \"komplettschutz\",\n    \"addons\": []\n} "},"url":"https://api.sandbox.alteos.com/v2/policies/quote","description":"<p>Use this API to retrieve the quote for the Hearing Aids Product.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>productName</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>\"hoerschutz-erp\"</td>\n</tr>\n</tbody>\n</table>\n</div><p>Parameters (all mandatory):</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>itemValue</td>\n<td>corresponds to the total value of both hearing aids devices.  <br />  <br />selection from the following:  <br />\"0.00-500.00\"  <br />\"500.01-1000.00\"  <br />\"1000.01-1500.00\"  <br />\"1500.01-2000.00\"  <br />\"2000.01-2500.00\"  <br />\"2500.01-3000.00\"  <br />\"3000.01-3500.00\"  <br />\"3500.01-4000.00\"  <br />\"4000.01-4500.00\"  <br />\"4500.01-5000.00\"  <br />\"5000.01-5500.00\"  <br />\"5500.01-6000.00\"  <br />\"6500.01-7000.00\"  <br />\"7000.01-7500.00\"  <br />\"7500.01-8000.00\"  <br />\"8000.01-8500.00\"  <br />\"8500.01-9000.00\"  <br />\"9000.01-9500.00\"  <br />\"9500.01-10000.00\"  <br />\"10000.01-10500.00\"  <br />\"10500.01-11000.00\"  <br />\"11000.01-11500.00\"  <br />\"11500.01-12000.00\"  <br />\"12000.01-12500.00\"  <br />\"12500.01-13000.00\"  <br />\"13000.01-13500.00\"  <br />\"13500.01-14000.00\"  <br />\"14000.01-14500.00\"  <br />\"14500.01-15000.00\"</td>\n</tr>\n<tr>\n<td>paymentSchedule</td>\n<td>One of: \"threeYear\", \"annual\" or \"oneTime\".</td>\n</tr>\n<tr>\n<td>partnerCode</td>\n<td>partner ID to capture a third party involved in policy creation process (e.g. a store or branch where the contract is created)</td>\n</tr>\n<tr>\n<td>package</td>\n<td>Type of coverage selected from a set of options: \"verlustschutz\", \"komplettschutz\", \"komfortschutz\".</td>\n</tr>\n<tr>\n<td>onlyAccessories</td>\n<td>(boolean) true or false.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies","quote"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"fe2b269e-78df-4ad8-872d-960306cb9dab","name":"Successful Quotation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"hoerschutz-erp\",\n    \"values\": {\n        \"paymentSchedule\": \"annual\",\n        \"itemValue\": \"0-1000\",\n        \"partnerCode\":\"1234\",\n        \"onlyAccessories\": true\n    },\n    \"package\": \"komplettschutz\",\n    \"addons\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 41.95,\n    \"premium\": 35.25,\n    \"taxes\": 6.7,\n    \"premiumExclDiscounts\": 35.25,\n    \"taxesExclDiscounts\": 6.7,\n    \"grossExclDiscounts\": 41.95,\n    \"addons\": [],\n    \"package\": {\n        \"name\": \"komplettschutz\",\n        \"payments\": []\n    },\n    \"metadata\": {},\n    \"requestData\": {\n        \"productName\": \"hoerschutz-erp\",\n        \"values\": {\n            \"paymentSchedule\": \"annual\",\n            \"itemValue\": \"0-1000\",\n            \"partnerCode\":\"1234\",\n            \"onlyAccessories\": true\n        },\n        \"package\": \"komplettschutz\",\n        \"addons\": []\n    }\n}"},{"id":"328cab84-e96f-4746-9138-b2f081bd2e10","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"hoerschutz-erp\",\n    \"values\": {\n        \"paymentSchedule\": \"annual\",\n        \"itemValue\": \"0-1000\",\n        \"partnerCode\":1,\n        \"onlyAccessories\": true\n    },\n    \"package\": \"komplettschutz\",\n    \"addons\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"4662667f-089f-44a0-83bc-936834bdb0d9"},{"name":"Hearing Aids Hörgeräteversicherung ERP","id":"098c0976-3cff-4f9b-81b4-45a49b36834b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKeyAlteos}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"hoerschutz-partner\",\n\t\"values\": {\n        \"purchasePrice\": 750,\n        \"partnerCode\":\"0002\",\n        \"distributionChannel\": \"ERP\",\n        \"paymentSchedule\": \"oneTime\",\n        \"durationSelector\": \"\"\n        \t},\n    \"package\": \"ISMA Verlustschutz\",\n    \"addons\": []\n}"},"url":"https://api.sandbox.alteos.com/v2/policies/quote","description":"<p>Use this API to retrieve the quote for the Hearing Aids Hörgeräteversicherung ERP.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>productName</th>\n<th>hoerschutz-partner</th>\n</tr>\n</thead>\n<tbody>\n</tbody>\n</table>\n</div><p>Parameters (all mandatory):</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Mandatory / Optional  <br />(data type)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>purchasePrice</td>\n<td><strong>mandatory</strong>  <br />(number)</td>\n<td>Corresponds to the total value of one or both hearing aids.  <br />  <br />Audimus, IAS:  <br />0 up to 15000 EUR  <br />  <br />ISMA:  <br />0 up to 10000 EUR  <br />  <br />Example: 7452.12</td>\n</tr>\n<tr>\n<td>partnerCode</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Partner ID to capture a third party involved in the policy creation process (e.g. a store or branch where the contract is created).  <br />  <br />Example: \"0001\"</td>\n</tr>\n<tr>\n<td>distributionChannel</td>\n<td>optional  <br />(string)</td>\n<td>Select distribution channels only if applicable:  <br />  <br />One of:  <br />“app”,  <br />“ERP”</td>\n</tr>\n<tr>\n<td>paymentSchedule</td>\n<td><strong>mandatory</strong>: IAS  <br />optional: others  <br />(string)</td>\n<td>Defines the customer's preferred payment schedule for the contract. The contract has a default duration of 5 years unless canceled earlier by the customer.  <br />- annual: The customer pays once every year for 6 years.  <br />- 3years: The customer makes an upfront payment for the first 3 years, followed by two annual payments for the remaining 3 years.  <br />- oneTime: The customer makes a single upfront payment for the entire 6-year period  <br />  <br />One of:  <br />\"annual\",  <br />\"3years\",  <br />\"oneTime\"</td>\n</tr>\n<tr>\n<td>durationSelector</td>\n<td><strong>mandatory</strong>: ISMA  <br />optional: others  <br />(string)</td>\n<td>Defines the customer's preferred duration of the contract. The contract has a default duration of 6 years. For ISMA the duration can be changed by the customer between 5 and 6 years.  <br />  <br />One of:  <br />\"5\",  <br />\"6\"</td>\n</tr>\n<tr>\n<td>package</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Package that controlls the insured risks.  <br />  <br />One of:  <br />\"IAS Komfort\",  <br />“IAS+ Verlust”,  <br />\"IAS Premium\",  <br />\"audimus\",  <br />\"ISMA Verlustschutz\",  <br />\"ISMA Premiumschutz\"</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies","quote"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"b035f1e4-e077-4242-b13d-4955b9c383b9","name":"Successful Quotation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"hoerschutz-partner\",\n\t\"values\": {\n        \"purchasePrice\": 7452.12,\n        \"partnerCode\":\"0001\",\n        \"distributionChannel\": \"ERP\",\n        \"paymentSchedule\": \"oneTime\",\n        \"durationSelector\": \"6\"\n        \t},\n    \"package\": \"audimus\",\n    \"addons\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"gross\": 615.95,\n    \"premium\": 517.61,\n    \"taxes\": 98.34,\n    \"premiumExclDiscounts\": 517.61,\n    \"taxesExclDiscounts\": 98.34,\n    \"grossExclDiscounts\": 615.95,\n    \"addons\": [],\n    \"package\": {\n        \"name\": \"audimus\",\n        \"payments\": []\n    },\n    \"metadata\": {},\n    \"requestData\": {\n        \"productName\": \"hoerschutz-partner\",\n        \"values\": {\n            \"purchasePrice\": 7452.12,\n            \"partnerCode\": \"0001\",\n            \"distributionChannel\": \"ERP\",\n            \"paymentSchedule\": \"oneTime\",\n            \"durationSelector\": \"6\"\n        },\n        \"package\": \"audimus\",\n        \"addons\": []\n    }\n}"},{"id":"b64696df-5b84-424b-a708-03bd2eefdbe7","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"hoerschutz-ikg\",\n\t\"values\": {\n        \"purchasePrice\": 750,\n        \"partnerCode\": \"0007\"\n\t},\n    \"package\": \"original\",\n    \"addons\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"098c0976-3cff-4f9b-81b4-45a49b36834b"}],"id":"506eff71-47d0-4671-8e44-f80b45efac93","_postman_id":"506eff71-47d0-4671-8e44-f80b45efac93","description":""},{"name":"Archive Policy Creation","item":[{"name":"Leasing Product B2B2C 2023","id":"3ee1057c-b8e7-4a18-8a83-c249a173f6fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"X-App-Key","type":"text","value":"{{appKeyAlteos}}"}],"body":{"mode":"raw","raw":"{\n  \"productName\": \"ebike-Leasing-2023\",\n  \"customer\": {\n    \"email\": \"username@username.com\",\n    \"firstName\": \"Paul\",\n    \"lastName\": \"Luke\",\n    \"values\": {\n      \"addressStreet\": \"Hardenbergerstr.\",\n      \"addressHouseNumber\": \"32\",\n       \"addressPlz\": \"10623\",\n       \"addressCity\": \"Berlin\",\n      \"companyName\": \"CompanyName\"\n    }\n  },\n  \"values\": {\n      \n    \"policyStartDate\": \"2023-02-01\",\n    \"insuredPersonName\": \"ttest\",\n    \"insuredPersonFamilyName\": \"test\",\n    \"insuredPersonEmail\":\"test@alteos.com\",\n    \"bikeUserFirstName\": \"ttest\",\n    \"bikeUserFamilyName\": \"test\",\n    \"bikeUserEmail\":\"test@alteos.com\",\n    \"lockModel\": \"123\",\n    \"lockPrice\": 12,\n    \"hasEligibleLock\": true,\n    \"price\": 1000,\n    \"frameNumber\": \"23\",\n    \"type\": \"E-Bike\",\n    \"brand\": \"3GBikes\",\n    \"model\": \"testModel\",\n    \"contractNumber\": \"1234\"\n  },\n  \"package\": \"komplettschutz\",\n  \"addons\": [\n      \n        \"gpsTracking\",\n        \"mobilitaetsschutz\",\n        \"gewerblicheNutzung\",\n        \"inspektion\",\n        \"wartungUndVerschleiss\",\n        \"ruecknahmegarantie\",\n        \"einzelteile-Verschleiss\"\n      ]\n}"},"url":"https://api.sandbox.alteos.com/v2/policies/policies","description":"<p>Use this API to create a policy for the Leasing E-Bike/Fahrrad Product</p>\n<p>Values</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>policyStartDate</td>\n<td>Mandatory</td>\n<td>YYYY-MM-DD format  <br />  <br />- Also corresponding to date of handover of the bike  <br />- Coverage starts on this day as well</td>\n</tr>\n<tr>\n<td>insuredPersonName</td>\n<td>Mandatory</td>\n<td>In case of a company: use this field to store the company name</td>\n</tr>\n<tr>\n<td>insuredPersonFamilyName</td>\n<td>Optional</td>\n<td></td>\n</tr>\n<tr>\n<td>insuredPersonEmail</td>\n<td>Mandatory</td>\n<td>In correct email format eg. <a href=\"mailto:username@username.com\">username@username.com</a></td>\n</tr>\n<tr>\n<td>bikeUserFirstName</td>\n<td>Mandatory</td>\n<td></td>\n</tr>\n<tr>\n<td>bikeUserFamilyName</td>\n<td>Mandatory</td>\n<td></td>\n</tr>\n<tr>\n<td>bikeUserEmail</td>\n<td>Mandatory</td>\n<td>In correct email format eg. <a href=\"mailto:username@username.com\">username@username.com</a></td>\n</tr>\n<tr>\n<td>lockModel</td>\n<td>Mandatory</td>\n<td>String</td>\n</tr>\n<tr>\n<td>lockPrice</td>\n<td>Mandatory</td>\n<td>Number</td>\n</tr>\n<tr>\n<td>hasEligibleLock</td>\n<td>Mandatory</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>price</td>\n<td>Mandatory</td>\n<td>Number -  <br />Price of the bike (or ebike) incl. taxes</td>\n</tr>\n<tr>\n<td>frameNumber</td>\n<td>Mandatory</td>\n<td>String</td>\n</tr>\n<tr>\n<td>type</td>\n<td>Mandatory</td>\n<td>String - Vehicle type (E-Bike, Fahrrad)</td>\n</tr>\n<tr>\n<td>brand</td>\n<td>Mandatory</td>\n<td>String (free-text)</td>\n</tr>\n<tr>\n<td>model</td>\n<td>Optional</td>\n<td>String - Model of (E)Bike</td>\n</tr>\n<tr>\n<td>contractNumber</td>\n<td>Optional</td>\n<td>Leasing contract number</td>\n</tr>\n</tbody>\n</table>\n</div><p>Packages &amp; Add-ons</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>package</td>\n<td>komplettschutz</td>\n</tr>\n<tr>\n<td>addons (array)</td>\n<td>one or multiple of the below available addons (with the logic described)</td>\n</tr>\n<tr>\n<td>\"gpsTracking\"</td>\n<td></td>\n</tr>\n<tr>\n<td>\"mobilitaetsschutz\"</td>\n<td>should be included by default; throws error if omitted</td>\n</tr>\n<tr>\n<td>\"gewerblicheNutzung\"</td>\n<td>if the bike/ebike is meant for commercial use.  <br />  <br />Note: if this addon is selected, the Rücknahmegarantie Module is not available</td>\n</tr>\n<tr>\n<td>\"inspektion\"</td>\n<td></td>\n</tr>\n<tr>\n<td>\"wartungUndVerschleiss\"</td>\n<td></td>\n</tr>\n<tr>\n<td>\"ruecknahmegarantie\"</td>\n<td></td>\n</tr>\n<tr>\n<td>\"einzelteile-Verschleiss\"</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies","policies"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"87174787-4f1e-43a2-abfe-e2e7f3f68a83","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike-Leasing-2023\",\n    \"values\": {\n        \"policyStartDate\": \"2023-02-01\",\n        \"paymentSchedule\": \"yearly\",\n        \"price\": \"3000.01-3500.00\"\n    },\n    \"package\": \"schadenschutz\",\n    \"addons\": [\n        \"batteryWear\",\n        \"mobilityGuarantee\",\n        \"individualPartsWear\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"04bb16e4-14cb-46f5-af27-8fd3c4ff3907\",\n    \"prettyId\": \"Z7HG38\",\n    \"requestData\": {\n        \"productName\": \"ebike-Leasing-2023\",\n        \"customer\": {\n            \"email\": \"test@alteos.com\",\n            \"phone\": \"0372637638\",\n            \"firstName\": \"Paul\",\n            \"lastName\": \"Luke\",\n            \"values\": {\n                \"addressStreet\": \"Rue du Bailli\",\n                \"addressHouseNumber\": \"7A\",\n                \"addressPlz\": \"10000\",\n                \"addressCity\": \"Bruxelles\",\n                \"companyName\": \"test\"\n            }\n        },\n        \"values\": {\n            \"policyStartDate\": \"2023-02-01\",\n            \"insuredPersonName\": \"whoeverf\",\n            \"insuredPersonFamilyName\": \"test\",\n            \"insuredPersonEmail\": \"vim@alteos.com\",\n            \"bikeUserFirstName\": \"drgd\",\n            \"bikeUserFamilyName\": \"test\",\n            \"bikeUserEmail\": \"test@alteos.com\",\n            \"lockModel\": \"123\",\n            \"lockPrice\": 12,\n            \"hasEligibleLock\": true,\n            \"price\": 1000,\n            \"frameNumber\": \"23\",\n            \"type\": \"E-Bike\",\n            \"brand\": \"3GBikes\",\n            \"model\": \"testModel\",\n            \"reimbursementType\": \"leasingBalance\"\n        },\n        \"package\": \"komplettschutz\",\n        \"addons\": [\n            \"gpsTracking\",\n            \"mobilitaetsschutz\",\n            \"gewerblicheNutzung\",\n            \"inspektion\",\n            \"wartungUndVerschleiss\",\n            \"einzelteile-Verschleiss\"\n        ]\n    },\n    \"quote\": {\n        \"gross\": 43.75,\n        \"premium\": 36.76,\n        \"taxes\": 6.99,\n        \"premiumExclDiscounts\": 36.76,\n        \"taxesExclDiscounts\": 6.99,\n        \"grossExclDiscounts\": 43.75,\n        \"addons\": [\n            {\n                \"tax\": 0,\n                \"name\": \"gpsTracking\",\n                \"gross\": 0,\n                \"premium\": 0,\n                \"payments\": []\n            },\n            {\n                \"tax\": 0,\n                \"name\": \"mobilitaetsschutz\",\n                \"gross\": 0,\n                \"premium\": 0,\n                \"payments\": []\n            },\n            {\n                \"tax\": 0.47,\n                \"name\": \"gewerblicheNutzung\",\n                \"gross\": 2.95,\n                \"premium\": 2.48,\n                \"payments\": []\n            },\n            {\n                \"tax\": 1.27,\n                \"name\": \"inspektion\",\n                \"gross\": 7.95,\n                \"premium\": 6.68,\n                \"payments\": []\n            },\n            {\n                \"tax\": 2.55,\n                \"name\": \"wartungUndVerschleiss\",\n                \"gross\": 15.95,\n                \"premium\": 13.4,\n                \"payments\": []\n            },\n            {\n                \"tax\": 1.75,\n                \"name\": \"einzelteile-Verschleiss\",\n                \"gross\": 10.95,\n                \"premium\": 9.2,\n                \"payments\": []\n            }\n        ],\n        \"package\": {\n            \"tax\": 0.95,\n            \"name\": \"komplettschutz\",\n            \"gross\": 5.95,\n            \"premium\": 5,\n            \"payments\": []\n        }\n    }\n}"},{"id":"6e5a12f4-2d5a-4bce-862b-99fff0235eb5","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike\",\n    \"values\": {\n        \"policyStartDate\": \"2021-01-10\",\n        \"paymentSchedule\": \"yearly\",\n        \"price\": \"3000.01-3500.00\"\n    },\n    \"package\": \"schadenschutz\",\n    \"addons\": [\n        \"batteryWear\",\n        \"mobilityGuarantee\",\n        \"individualPartsWear\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"3ee1057c-b8e7-4a18-8a83-c249a173f6fd"},{"name":"Leasing Product Company Bike WIP","id":"05856a1b-de39-471e-ad1c-1658fa4407a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKeyAlteos}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"companybike-leasing\",\n    \"customer\": {\n        \"email\": \"example@companyBikeSolutionsExample.com\",\n        \"type\": \"business\",\n        \"firstName\": \"Company Bike Solutions\",\n        \"lastName\": \"GmbH\",\n        \"values\": {\n            \"addressStreet\": \"Aidenbachstraße\",\n            \"addressHouseNumber\": \"54-56\",\n            \"addressPlz\": \"81379\",\n            \"addressCity\": \"München\",\n            \"companyName\": \"Company Bike Solutions GmbH\"\n        }\n    },\n  \"values\": {\n    \"BikeID\": \"BikeID123\",\n    \"policyStartDate\": \"2024-08-01\",\n    \"insuredPersonName\": \"Employer Company GmbH\",\n    \"insuredPersonFamilyName\": \"\",\n    \"insuredPersonEmail\":\"info@employer-company.com\",\n    \"bikeUserFirstName\": \"John\",\n    \"bikeUserFamilyName\": \"Bike-User\",\n    \"bikeUserEmail\":\"john.bike-user@example.com\",\n    \"price\": 3000,\n    \"frameNumber\": \"WTGgtsdfg2hsr4\",\n    \"type\": \"E-Bike\",\n    \"brand\": \"Example Brand\",\n    \"model\": \"Aero E-Bike 1\"\n  },\n  \"package\": \"Zusatzpaket Inspektion & Verschleiß\",\n  \"addons\": []\n}"},"url":"https://api.sandbox.alteos.com/v2/policies/policies","description":"<p>Use this API to create a policy for the Leasing E-Bike/Fahrrad Product</p>\n<p><strong>Values</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory (data type)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>BikeID</td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>Partner's internal identifier</td>\n</tr>\n<tr>\n<td>policyStartDate</td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>Format: YYYY-MM-DD  <br />  <br />- Date of handover of the bike.  <br />- Coverage starts on this day.  <br />- Minimum Date: One day before today.  <br />- Maximum Date: One month in the future.</td>\n</tr>\n<tr>\n<td>insuredPersonName</td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>Use this field to store the company name of the employer of the bike user.</td>\n</tr>\n<tr>\n<td>insuredPersonFamilyName</td>\n<td><em>Optional</em> (string)</td>\n<td></td>\n</tr>\n<tr>\n<td>insuredPersonEmail</td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>Must be in correct email format, e.g., <a href=\"https://mailto:username@domain.com\">username@domain.com</a></td>\n</tr>\n<tr>\n<td>bikeUserFirstName</td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>First Name of the bike user.</td>\n</tr>\n<tr>\n<td>bikeUserFamilyName</td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>Family name of the bike user.</td>\n</tr>\n<tr>\n<td>bikeUserEmail</td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>Must be in correct email format, e.g., <a href=\"https://mailto:username@domain.com\">username@domain.com</a></td>\n</tr>\n<tr>\n<td>price</td>\n<td><strong>Mandatory</strong> (number)</td>\n<td>Example: 3000  <br />Price of the (E-)Bike incl. taxes</td>\n</tr>\n<tr>\n<td>brand</td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>Brand of the Bike</td>\n</tr>\n<tr>\n<td>vehicleType</td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>Vehicle type [\"E-Bike\", \"Fahrrad\"]</td>\n</tr>\n<tr>\n<td>frameNumber</td>\n<td><strong>Mandatory</strong> (string)</td>\n<td>Frame number of the bike</td>\n</tr>\n<tr>\n<td>model</td>\n<td><em>Optional</em> (string)</td>\n<td>Model of (E-)Bike</td>\n</tr>\n<tr>\n<td>contractNumber</td>\n<td><em>Optional</em> (string)</td>\n<td>Leasing contract number</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Packages</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>(data type) Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>package</td>\n<td>(string): [\"Zusatzpaket Inspektion &amp; Verschleiß\" / \"Zusatzpaket Inspektion\"]</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies","policies"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"a9e656df-e254-4ff3-8ced-2ba8ff1cf202","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"companybike-leasing\",\n    \"customer\": {\n        \"email\": \"companyBike@domain.com\",\n        \"type\": \"business\",\n        \"firstName\": \"Company Bike Solutions\",\n        \"lastName\": \"GmbH\",\n        \"values\": {\n            \"addressStreet\": \"Aidenbachstraße\",\n            \"addressHouseNumber\": \"54-56\",\n            \"addressPlz\": \"81379\",\n            \"addressCity\": \"München\",\n            \"companyName\": \"Company Bike Solutions GmbH\"\n        }\n    },\n  \"values\": {\n    \"BikeID\": \"BikeID123\",\n    \"policyStartDate\": \"2024-08-01\",\n    \"insuredPersonName\": \"Employer Company GmbH\",\n    \"insuredPersonFamilyName\": \"\",\n    \"insuredPersonEmail\":\"employerCompany@domain.com\",\n    \"bikeUserFirstName\": \"John\",\n    \"bikeUserFamilyName\": \"Bike-User\",\n    \"bikeUserEmail\":\"john.bike-user@domain.com\",\n    \"price\": 3000,\n    \"frameNumber\": \"WTGgtsdfg2hsr4\",\n    \"type\": \"E-Bike\",\n    \"brand\": \"Example Brand\",\n    \"model\": \"Aero E-Bike 1\"\n  },\n  \"package\": \"Zusatzpaket Inspektion & Verschleiß\",\n  \"addons\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"4ba6d644-0b1b-4b06-b814-4a653e1094fc\",\n    \"prettyId\": \"CR2KDD\",\n    \"requestData\": {\n        \"productName\": \"companybike-leasing\",\n        \"customer\": {\n            \"email\": \"companyBike@domain.com\",\n            \"firstName\": \"Company Bike Solutions\",\n            \"lastName\": \"GmbH\",\n            \"values\": {\n                \"addressStreet\": \"Aidenbachstraße\",\n                \"addressHouseNumber\": \"54-56\",\n                \"addressPlz\": \"81379\",\n                \"addressCity\": \"München\",\n                \"companyName\": \"Company Bike Solutions GmbH\"\n            }\n        },\n        \"values\": {\n            \"BikeID\": \"BikeID123\",\n            \"policyStartDate\": \"2024-08-01\",\n            \"insuredPersonName\": \"Employer Company GmbH\",\n            \"insuredPersonFamilyName\": \"\",\n            \"insuredPersonEmail\": \"employerCompany@domain.com\",\n            \"bikeUserFirstName\": \"John\",\n            \"bikeUserFamilyName\": \"Bike-User\",\n            \"bikeUserEmail\": \"john.bike-user@domain.com\",\n            \"price\": 3000,\n            \"frameNumber\": \"WTGgtsdfg2hsr4\",\n            \"type\": \"E-Bike\",\n            \"brand\": \"Example Brand\",\n            \"model\": \"Aero E-Bike 1\"\n        },\n        \"package\": \"Zusatzpaket Inspektion & Verschleiß\",\n        \"addons\": []\n    },\n    \"quote\": {\n        \"gross\": 12.9,\n        \"premium\": 10.84,\n        \"taxes\": 2.06,\n        \"premiumExclDiscounts\": 10.84,\n        \"taxesExclDiscounts\": 2.06,\n        \"grossExclDiscounts\": 12.9,\n        \"addons\": [],\n        \"package\": {\n            \"tax\": 2.06,\n            \"name\": \"Zusatzpaket Inspektion & Verschleiß\",\n            \"gross\": 12.9,\n            \"payments\": []\n        }\n    },\n    \"draftInvoice\": {}\n}"},{"id":"85816cba-f7e2-413d-a654-2c63d1b8ebeb","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike-Leasing-2024\",\n    \"values\": {\n        \"policyStartDate\": \"2024-02-29\",\n        \"paymentSchedule\": \"monthly\",\n        \"price\": \"3000.01-3500.00\"\n    },\n    \"package\": \"LeasingSchutz\",\n    \"addons\": [\n        \"gpsTracking\",\n        \"mobilitaetsschutz\",\n        \"gewerblicheNutzung\",\n        \"inspektion\",\n        \"wartungUndVerschleiss\",\n        \"einzelteileVerschleiss\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"05856a1b-de39-471e-ad1c-1658fa4407a8"},{"name":"Leasing Product B2B2C 2023 NO SEPA","id":"a5382786-dabd-44d8-93ca-c4368f1e9cd7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"X-App-Key","type":"text","value":"{{appKeyAlteos}}"}],"body":{"mode":"raw","raw":"{\n  \"productName\": \"ebike-Leasing-2022-no-sepa\",\n  \"customer\": {\n    \"email\": \"username@username.com\",\n    \"firstName\": \"Paul\",\n    \"lastName\": \"Luke\",\n    \"values\": {\n      \"addressStreet\": \"Hardenbergerstr.\",\n      \"addressHouseNumber\": \"32\",\n       \"addressPlz\": \"10623\",\n       \"addressCity\": \"Berlin\",\n      \"companyName\": \"CompanyName\"\n    }\n  },\n  \"values\": {\n      \n    \"policyStartDate\": \"2023-02-01\",\n    \"insuredPersonName\": \"ttest\",\n    \"insuredPersonFamilyName\": \"test\",\n    \"insuredPersonEmail\":\"test@alteos.com\",\n    \"bikeUserFirstName\": \"ttest\",\n    \"bikeUserFamilyName\": \"test\",\n    \"bikeUserEmail\":\"test@alteos.com\",\n    \"lockModel\": \"123\",\n    \"lockPrice\": 12,\n    \"hasEligibleLock\": true,\n    \"price\": 1000,\n    \"frameNumber\": \"23\",\n    \"type\": \"E-Bike\",\n    \"brand\": \"3GBikes\",\n    \"model\": \"testModel\",\n    \"noSEPA\": true\n  },\n  \"package\": \"komplettschutz\",\n  \"addons\": [\n      \n        \"gpsTracking\",\n        \"mobilitaetsschutz\",\n        \"gewerblicheNutzung\",\n        \"inspektion\",\n        \"wartungUndVerschleiss\",\n        \"ruecknahmegarantie\",\n        \"einzelteile-Verschleiss\"\n      ]\n}"},"url":"https://api.sandbox.alteos.com/v2/policies/policies","description":"<p>Use this API to create a policy for the Leasing E-Bike/Fahrrad Product</p>\n<p>Values</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>policyStartDate</td>\n<td>Mandatory</td>\n<td>YYYY-MM-DD format  <br />  <br />- Also corresponding to date of handover of the bike  <br />- Coverage starts on this day as well</td>\n</tr>\n<tr>\n<td>insuredPersonName</td>\n<td>Mandatory</td>\n<td>In case of a company: use this field to store the company name</td>\n</tr>\n<tr>\n<td>insuredPersonFamilyName</td>\n<td>Optional</td>\n<td></td>\n</tr>\n<tr>\n<td>insuredPersonEmail</td>\n<td>Mandatory</td>\n<td>In correct email format eg. <a href=\"mailto:username@username.com\">username@username.com</a></td>\n</tr>\n<tr>\n<td>bikeUserFirstName</td>\n<td>Mandatory</td>\n<td></td>\n</tr>\n<tr>\n<td>bikeUserFamilyName</td>\n<td>Mandatory</td>\n<td></td>\n</tr>\n<tr>\n<td>bikeUserEmail</td>\n<td>Mandatory</td>\n<td>In correct email format eg. <a href=\"mailto:username@username.com\">username@username.com</a></td>\n</tr>\n<tr>\n<td>lockModel</td>\n<td>Mandatory</td>\n<td>String</td>\n</tr>\n<tr>\n<td>lockPrice</td>\n<td>Mandatory</td>\n<td>Number</td>\n</tr>\n<tr>\n<td>hasEligibleLock</td>\n<td>Mandatory</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>price</td>\n<td>Mandatory</td>\n<td>Number -  <br />Price of the bike (or ebike) incl. taxes</td>\n</tr>\n<tr>\n<td>frameNumber</td>\n<td>Mandatory</td>\n<td>String</td>\n</tr>\n<tr>\n<td>type</td>\n<td>Mandatory</td>\n<td>String - Vehicle type (E-Bike, Fahrrad)</td>\n</tr>\n<tr>\n<td>brand</td>\n<td>Mandatory</td>\n<td>String (free-text)</td>\n</tr>\n<tr>\n<td>model</td>\n<td>Optional</td>\n<td>String - Model of (E)Bike</td>\n</tr>\n<tr>\n<td>noSEPA</td>\n<td>Mandatory</td>\n<td>Boolean - it must be set to true for the policy creation to succeed. This field is a validation to ensure that it is expected not to include SEPA payment for this product.</td>\n</tr>\n<tr>\n<td>contractNumber</td>\n<td>Optional</td>\n<td>Leasing contract number</td>\n</tr>\n</tbody>\n</table>\n</div><p>Packages &amp; Add-ons</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>package</td>\n<td>komplettschutz</td>\n</tr>\n<tr>\n<td>addons (array)</td>\n<td>one or multiple of the below available addons (with the logic described)</td>\n</tr>\n<tr>\n<td>\"gpsTracking\"</td>\n<td></td>\n</tr>\n<tr>\n<td>\"mobilitaetsschutz\"</td>\n<td>should be included by default; throws error if omitted</td>\n</tr>\n<tr>\n<td>\"gewerblicheNutzung\"</td>\n<td>if the bike/ebike is meant for commercial use.  <br />  <br />Note: if this addon is selected, the Rücknahmegarantie Module is not available</td>\n</tr>\n<tr>\n<td>\"inspektion\"</td>\n<td></td>\n</tr>\n<tr>\n<td>\"wartungUndVerschleiss\"</td>\n<td></td>\n</tr>\n<tr>\n<td>\"ruecknahmegarantie\"</td>\n<td></td>\n</tr>\n<tr>\n<td>\"einzelteile-Verschleiss\"</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies","policies"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"93f99288-7631-4aa4-b8f9-a74ec0c50d11","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"productName\": \"ebike-Leasing-2023-no-sepa\",\n  \"customer\": {\n    \"email\": \"username@username.com\",\n    \"firstName\": \"Paul\",\n    \"lastName\": \"Luke\",\n    \"values\": {\n      \"addressStreet\": \"Hardenbergerstr.\",\n      \"addressHouseNumber\": \"32\",\n       \"addressPlz\": \"10623\",\n       \"addressCity\": \"Berlin\",\n      \"companyName\": \"CompanyName\"\n    }\n  },\n  \"values\": {\n      \n    \"policyStartDate\": \"2023-02-01\",\n    \"insuredPersonName\": \"ttest\",\n    \"insuredPersonFamilyName\": \"test\",\n    \"insuredPersonEmail\":\"test@alteos.com\",\n    \"bikeUserFirstName\": \"ttest\",\n    \"bikeUserFamilyName\": \"test\",\n    \"bikeUserEmail\":\"test@alteos.com\",\n    \"lockModel\": \"123\",\n    \"lockPrice\": 12,\n    \"hasEligibleLock\": true,\n    \"price\": 1000,\n    \"frameNumber\": \"23\",\n    \"type\": \"E-Bike\",\n    \"brand\": \"3GBikes\",\n    \"model\": \"testModel\",\n    \"noSEPA\": true\n  },\n  \"package\": \"komplettschutz\",\n  \"addons\": [\n      \n        \"gpsTracking\",\n        \"mobilitaetsschutz\",\n        \"gewerblicheNutzung\",\n        \"inspektion\",\n        \"wartungUndVerschleiss\",\n        \"ruecknahmegarantie\",\n        \"einzelteile-Verschleiss\"\n      ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"44fea3a8-e81a-4174-af56-342fcbf85d49\",\n    \"prettyId\": \"RDGET6\",\n    \"requestData\": {\n        \"productName\": \"ebike-Leasing-2023-no-sepa\",\n        \"customer\": {\n            \"email\": \"test@alteos.com\",\n            \"phone\": \"08084413300\",\n            \"firstName\": \"Softstar Computer Systems\",\n            \"lastName\": \"GmbH\",\n            \"values\": {\n                \"companyName\": \"Softstar Computer Systems GmbH\",\n                \"addressStreet\": \"Erdinger Straße\",\n                \"addressHouseNumber\": \"13\",\n                \"addressPlz\": \"84416\",\n                \"addressCity\": \"Taufkirchen (Vils)\"\n            }\n        },\n        \"values\": {\n            \"policyStartDate\": \"2023-02-01\",\n            \"price\": \"2949\",\n            \"brand\": \"Cube\",\n            \"model\": \"\",\n            \"frameNumber\": \"WOW13532KGET\",\n            \"batteryNumber\": \"0 275 007 543 Bosch 625WH\",\n            \"type\": \"Touring Hybrid Pro 625 Trapeze 46 XS\",\n            \"hasEligibleLock\": true,\n            \"insuredPersonName\": \"Softstar Computer Systems GmbH\",\n            \"insuredPersonEmail\": \"test@alteos.com\",\n            \"bikeUserFirstName\": \"Miriam\",\n            \"bikeUserFamilyName\": \"Breuer\",\n            \"bikeUserEmail\": \"test@alteos.de\",\n            \"lockModel\": \"abus\",\n            \"lockPrice\": \"50\",\n            \"insuredPersonFamilyName\": \"\",\n            \"noSEPA\": true,\n            \"reimbursementType\": \"leasingBalance\"\n        },\n        \"package\": \"komplettschutz\",\n        \"addons\": [\n            \"gpsTracking\",\n            \"mobilitaetsschutz\"\n        ]\n    },\n    \"quote\": {\n        \"gross\": 7.95,\n        \"premium\": 6.68,\n        \"taxes\": 1.27,\n        \"premiumExclDiscounts\": 6.68,\n        \"taxesExclDiscounts\": 1.27,\n        \"grossExclDiscounts\": 7.95,\n        \"addons\": [\n            {\n                \"tax\": 0,\n                \"name\": \"gpsTracking\",\n                \"gross\": 0,\n                \"premium\": 0,\n                \"payments\": []\n            },\n            {\n                \"tax\": 0,\n                \"name\": \"mobilitaetsschutz\",\n                \"gross\": 0,\n                \"premium\": 0,\n                \"payments\": []\n            }\n        ],\n        \"package\": {\n            \"tax\": 1.27,\n            \"name\": \"komplettschutz\",\n            \"gross\": 7.95,\n            \"premium\": 6.68,\n            \"payments\": []\n        }\n    }\n}"},{"id":"3a7978b6-0d3c-46a0-9de8-fc4a3803a3b0","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike\",\n    \"values\": {\n        \"policyStartDate\": \"2021-01-10\",\n        \"paymentSchedule\": \"yearly\",\n        \"price\": \"3000.01-3500.00\"\n    },\n    \"package\": \"schadenschutz\",\n    \"addons\": [\n        \"batteryWear\",\n        \"mobilityGuarantee\",\n        \"individualPartsWear\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"a5382786-dabd-44d8-93ca-c4368f1e9cd7"},{"name":"eBike Product B2B (finalize-compatible)","id":"2247cfed-eb2b-4e17-9da0-880adf5b3588","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"eBike\",\n    \"customer\": {\n        \"email\": \"username@username.com\",\n        \"phone\": \"491234567890\",\n        \"firstName\": \"John\",\n        \"lastName\": \"Doe\",\n        \"values\": {\n            \"addressStreet\": \"Hardenbergerstr.\",\n            \"addressHouseNumber\": \"32\",\n            \"addressPlz\": \"10623\",\n            \"addressCity\": \"Berlin\",\n            \"birthDate\": \"1977-12-25\"\n        }\n    },\n    \"values\": {\n        \"policyStartDate\": \"2019-10-01\",\n        \"policyEndDate\": \"2020-09-30\",\n        \"activationDate\": \"2019-09-29\"\n    },\n    \"objects\": [\n        {\n            \"name\": \"eBike\",\n            \"values\": {\n                \"reference\": \"DE01150425111\",\n                \"country\": \"DE\",\n                \"language\": \"de\",\n                \"model\": \"SuperBike 9000\",\n                \"serialNumber\": \"123456\",\n                \"itemValue\": 1999\n            },\n            \"risks\": [\n                {\n                    \"name\": \"theft\",\n                    \"values\": {}\n                },\n                {\n                    \"name\": \"breakage\",\n                    \"values\": {}\n                }\n            ]\n        }\n    ]\n}"},"url":"https://api.sandbox.alteos.com/v1/policies","description":"<p>Use this API to create a policy for the eBike Product</p>\n","urlObject":{"path":["v1","policies"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"01c20a5e-a098-4e42-a5cf-9d79c5911742","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"eBike\",\n    \"customer\": {\n        \"email\": \"username@username.com\",\n        \"phone\": \"491234567890\",\n        \"firstName\": \"John\",\n        \"lastName\": \"Doe\",\n        \"values\": {\n            \"addressStreet\": \"Hardenbergerstr.\",\n            \"addressHouseNumber\": \"32\",\n            \"addressPlz\": \"10623\",\n            \"addressCity\": \"Berlin\",\n            \"birthDate\": \"1977-12-25\"\n        }\n    },\n    \"values\": {\n        \"policyStartDate\": \"2019-10-01\",\n        \"policyEndDate\": \"2020-09-30\",\n        \"activationDate\": \"2019-09-29\"\n    },\n    \"objects\": [\n        {\n            \"name\": \"eBike\",\n            \"values\": {\n                \"reference\": \"DE01150425111\",\n                \"country\": \"DE\",\n                \"language\": \"de\",\n                \"model\": \"SuperBike 9000\",\n                \"serialNumber\": \"123456\",\n                \"itemValue\": 1999\n            },\n            \"risks\": [\n                {\n                    \"name\": \"theft\",\n                    \"values\": {}\n                },\n                {\n                    \"name\": \"breakage\",\n                    \"values\": {}\n                }\n            ]\n        }\n    ],\n    \"metadata\": {\n        \"arbitrary\": \"value\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v1/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"df3907b6-8ea3-46ed-90fd-e0416deab2af\",\n    \"prettyId\": \"LF7RHY\"\n}"},{"id":"23bd763a-471c-45e2-93dd-bfbc5230a38c","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"eBike\",\n    \"customer\": {\n        \"email\": \"username@username.com\",\n        \"phone\": \"491234567890\",\n        \"firstName\": \"John\",\n        \"lastName\": \"Doe\",\n        \"values\": {\n            \"addressStreet\": \"Hardenbergerstr.\",\n            \"addressHouseNumber\": \"32\",\n            \"addressPlz\": \"10623\",\n            \"addressCity\": \"Berlin\",\n            \"birthDate\": \"1977-12-25\"\n        }\n    },\n    \"values\": {\n        \"policyStartDate\": \"2019-10-01\",\n        \"policyEndDate\": \"2020-09-30\",\n        \"activationDate\": \"2019-09-29\"\n    },\n    \"objects\": [\n        {\n            \"name\": \"eBike\",\n            \"values\": {\n                \"reference\": \"DE01150425111\",\n                \"country\": \"DE\",\n                \"language\": \"de\",\n                \"model\": \"SuperBike 9000\",\n                \"serialNumber\": \"123456\",\n                \"itemValue\": 1999\n            },\n            \"risks\": [\n                {\n                    \"name\": \"theft\",\n                    \"values\": {}\n                },\n                {\n                    \"name\": \"breakage\",\n                    \"values\": {}\n                }\n            ]\n        }\n    ],\n    \"metadata\": {\n        \"arbitrary\": \"value\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v1/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"specific error message\"\n}"}],"_postman_id":"2247cfed-eb2b-4e17-9da0-880adf5b3588"},{"name":"eBike Product B2B2C","id":"291198a4-e1bf-4bf6-a994-6d7815f81704","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"x-app-key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike\",\n    \"customer\": {\n        \"email\": \"username@username.com\",\n        \"firstName\": \"John\",\n        \"lastName\": \"Doe\",\n        \"values\": {\n            \"salutation\": \"Herr\",\n            \"dateOfBirth\": \"1999-01-02\",\n            \"addressStreet\": \"Hardenbergerstr.\",\n            \"addressHouseNumber\": \"32\",\n            \"addressPlz\": \"10623\",\n            \"addressCity\": \"Berlin\",\n            \"companyName\": \"CompanyName GmbH\"\n        }\n    },\n    \"values\": {\n        \"policyStartDate\": \"2021-01-10\",\n        \"paymentSchedule\": \"5years\",\n        \"duration\": \"5years\",\n        \"price\": \"1000.01-1500.00\",\n        \"purchasedAt\": \"2020-08-20\",\n        \"brand\": \"Batavus\",\n        \"frameNumber\": \"1245311\",\n        \"batteryNumber\": \"124245311\",\n        \"type\": \"Mountainbike\",\n        \"lockModel\": \"Abus ab 45 € Verkaufspreis\",\n        \"insuredPersonSalutation\":\"Herr\",\n        \"insuredPersonEmail\":\"test@alteos.com\",\n\t\t\"insuredPersonName\":\"testPerson\",\n        \"insuredPersonFamilyName\":\"testPerson\",\n        \"insuredPersonDateOfBirth\":\"1995-10-10\",\n        \"insuredPersonPhone\":\"0777373\",\n\t\t\"insuredPersonStreet\":\"Potsdamer Str\",\n        \"insuredPersonHouseNumber\":\"1\",\n        \"insuredPersonPlz\":\"10785\",\n        \"insuredPersonCity\":\"Berlin\",\n        \"insuredPersonAddressCo\":\"Mustermann\"\n    },\n    \"package\": \"schadenschutz\",\n    \"addons\": [\n        \"akkuVerschleiss\",\n        \"mobilitaetsgarantie\",\n        \"einzelteileVerschleiss\"\n    ]\n}"},"url":"https://api.sandbox.alteos.com/v2/policies","description":"<p>Use this API to create a policy for the eBike Product</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>values.paymentSchedule</td>\n<td>Payment schedule for the contract, from a set of fixed values: \"yearly\", \"3years\", \"5years\". The last two are upfront payments; the first is recurring.</td>\n</tr>\n<tr>\n<td>purchasedAt</td>\n<td>Date of purchase of the eBike. Must not be older than 12 months before the insurance starting date. Example: \"2020-11-30\".</td>\n</tr>\n<tr>\n<td>duration</td>\n<td>Contract duration. Can be \"3years\" or \"5years\".</td>\n</tr>\n</tbody>\n</table>\n</div><p>All mandatory parameters: </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Mandatory Parameter</th>\n<th>Sub-parameters also mandatory</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>productName</td>\n<td>ebike</td>\n</tr>\n<tr>\n<td>customer</td>\n<td>email, firstName, lastName; salutation, dateOfBirth, addressStreet, addressHouseNumber, addressPlz, addressCity, companyName.</td>\n</tr>\n<tr>\n<td>values</td>\n<td>paymentSchedule, policyStartDate, duration, price, purchasedAt, brand, frameNumber, batteryNumber, type, lockModel, insuredPersonSalutation, insuredPersonEmail, insuredPersonName, insuredPersonFamilyName, insuredPersonPhone, insuredPersonDateOfBirth, insuredPersonStreet, insuredPersonHouseNumber, insuredPersonPlz, insuredPersonCity</td>\n</tr>\n<tr>\n<td>package</td>\n<td>Type of coverage selected from a set of options, with increasing level of completeness: \"schadenschutz\", \"diebstahlschutz\", \"komplettschutz\".</td>\n</tr>\n<tr>\n<td>addons</td>\n<td>List of policy-addons to be included: \"batteryWear\",  \"mobilityGuarantee\",  \"individualPartsWear\"</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","policies"],"host":["https://api.sandbox.alteos.com"],"query":[{"disabled":true,"description":{"content":"<p>Coverage period of the insurance.</p>\n","type":"text/plain"},"key":"duration","value":""},{"disabled":true,"description":{"content":"<p>Date of purchase of the eBike. Must not be older than 6 months before the insurance starting date.</p>\n","type":"text/plain"},"key":"purchasedAt","value":""}],"variable":[]}},"response":[{"id":"32910648-f82e-465d-a823-6fa610a6a0bd","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike\",\n    \"customer\": {\n        \"email\": \"username@username.com\",\n        \"firstName\": \"John\",\n        \"lastName\": \"Doe\",\n        \"values\": {\n            \"salutation\": \"Herr\",\n            \"dateOfBirth\": \"1999-01-02\",\n            \"addressStreet\": \"Hardenbergerstr.\",\n            \"addressHouseNumber\": \"32\",\n            \"addressPlz\": \"10623\",\n            \"addressCity\": \"Berlin\"\n        }\n    },\n    \"values\": {\n        \"policyStartDate\": \"2021-01-10\",\n        \"plan\": \"schadenschutz\",\n        \"paymentSchedule\": \"yearly\",\n        \"price\": \"1000.01-1500.00\",\n        \"purchasedAt\": \"2020-08-20\",\n        \"brand\": \"Batavus\",\n        \"frameNumber\": \"1245311\",\n        \"batteryNumber\": \"124245311\",\n        \"type\": \"Mountainbike\",\n        \"lockModel\": \"Abus ab 45 € Verkaufspreis\"\n    },\n    \"package\": \"komplettschutz\",\n    \"addons\": [\n        \"gpsTracking\",\n        \"batteryWear\",\n        \"mobilityGuarantee\",\n        \"individualPartsWear\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"df3907b6-8ea3-46ed-90fd-e0416deab2af\",\n    \"prettyId\": \"L87RQY\"\n}"}],"_postman_id":"291198a4-e1bf-4bf6-a994-6d7815f81704"},{"name":"eBike Product B2C | 2023","id":"a7c49c85-0e91-47c8-a13b-7e56a26f6726","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"x-app-key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike\",\n    \"customer\": {\n        \"email\": \"test@alteos.com\",\n        \"firstName\": \"John\",\n        \"lastName\": \"Doe\",\n        \"values\": {\n            \"dateOfBirth\": \"1999-01-02\",\n            \"addressStreet\": \"Hardenbergerstr.\",\n            \"addressHouseNumber\": \"32\",\n            \"addressPlz\": \"10623\",\n            \"addressCity\": \"Berlin\"\n        }\n    },\n    \"values\": {\n        \"policyStartDate\": \"2023-02-20\",\n        \"paymentSchedule\": \"oneTime\",\n        \"price\": \"1000.01-1500.00\",\n        \"purchasedAt\": \"2023-01-20\",\n        \"vehicleType\": \"E-Bike\",\n        \"brand\": \"Batavus\",\n        \"frameNumber\": \"1245311\",\n        \"hasEligibleLock\": true,\n        \"preinstalledGps\":\"-\",\n        \"partnerCode\":\"0123\"\n    },\n    \"package\": \"diebstahlschutz\",\n    \"addons\": [\n        \"gpsTracking\"\n    ]\n}"},"url":"https://api.sandbox.alteos.com/v2/policies","description":"<p>Use this API to create a policy for the eBike Product.</p>\n<p>Parameters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Mandatory / Optional</th>\n<th>Description and values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>productName</td>\n<td>mandatory</td>\n<td>Should be used the value: \"ebike\"</td>\n</tr>\n<tr>\n<td>customer  <br />  <br /></td>\n<td>mandatory</td>\n<td>Contains sub-fields:  <br />email, firstName, lastName; dateOfBirth, addressStreet, addressHouseNumber, addressPlz, addressCity.</td>\n</tr>\n<tr>\n<td>policyStartDate</td>\n<td>mandatory</td>\n<td>In format YYYY-MM-DD, can be up to 1 month in the future (from current date of the request).  <br />  <br />Minimum starting date: current date (today)</td>\n</tr>\n<tr>\n<td>paymentSchedule</td>\n<td>mandatory</td>\n<td>One of: \"monthly\", \"annual\",  <br />\"3years\",  <br />\"oneTime\"</td>\n</tr>\n<tr>\n<td>price</td>\n<td>mandatory</td>\n<td>Price of the insured E-Bike (max: 15.000 Eur).  <br />  <br />Can be one of:  <br />  <br />- \"0.00-500.00\"  <br />- \"500.01-1000.00\"  <br />- \"1000.01-1500.00\"  <br />  <br />... and so on, in 500 Eur increments until:  <br />- \"14500.01-15000.00\"  <br /></td>\n</tr>\n<tr>\n<td>purchasedAt</td>\n<td>mandatory</td>\n<td>Purchase date of the insured E-Bike, in format YYYY-MM-DD  <br />  <br />- Max 2 years in the past  <br />- if the bike is older than 1Y, only Diebstahlschutz package is available</td>\n</tr>\n<tr>\n<td>vehicleType</td>\n<td>mandatory</td>\n<td>One of: \"Fahrrad\" or \"E-Bike\"  <br />  <br />Note that GPS addon is not available if Fahrrad selected.</td>\n</tr>\n<tr>\n<td>brand</td>\n<td>mandatory</td>\n<td>specific value from a list of available options</td>\n</tr>\n<tr>\n<td>frameNumber</td>\n<td>optional</td>\n<td>simple string</td>\n</tr>\n<tr>\n<td>hasEligibleLock</td>\n<td>mandatory</td>\n<td>Boolean (true/false) Customer should confirm that has been using a lock worth at least €45.</td>\n</tr>\n<tr>\n<td>preinstalledGps</td>\n<td>optional</td>\n<td>Select field which control discounts, for preinstalled GPS trackers (by brand).  <br />  <br />Accepted Values (9):  <br />  <br />1. -  <br />2. IT'S MY BIKE  <br />3. Velomate  <br />4. My Boo Track &amp; Protect  <br />4. CaGo Me  <br />5. UD #Smart 2.0 GPS-Tracker  <br />6. RX-Chip/RX Connect  <br />7. Bosch  <br />8. ConnectModule  <br />9. Powunity</td>\n</tr>\n<tr>\n<td>partnerCode</td>\n<td>optional</td>\n<td>partner ID to capture a third party involved in policy creation process (e.g. a store or branch where the contract is created)</td>\n</tr>\n<tr>\n<td>package</td>\n<td>mandatory</td>\n<td>Type of coverage selected from a set of options: \"diebstahlschutz\", \"komfortschutz\", \"premiumschutz\".</td>\n</tr>\n<tr>\n<td>addons</td>\n<td>mandatory</td>\n<td>List of selected policy-addons (can be an empty array, if none selected).  <br />  <br />Possible addons:  <br />- \"gpsTracking\"</td>\n</tr>\n</tbody>\n</table>\n</div><p>The policy creation response will also return the <code>requestData</code> object which contains all the data that was given by the user during the policy creation and the <code>quote</code> object which contains all the quotation calculations.</p>\n","urlObject":{"path":["v2","policies"],"host":["https://api.sandbox.alteos.com"],"query":[{"disabled":true,"description":{"content":"<p>Coverage period of the insurance.</p>\n","type":"text/plain"},"key":"duration","value":""},{"disabled":true,"description":{"content":"<p>Date of purchase of the eBike. Must not be older than 6 months before the insurance starting date.</p>\n","type":"text/plain"},"key":"purchasedAt","value":""}],"variable":[]}},"response":[{"id":"50dce3b1-5608-4922-add7-1ce8282419fb","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"ebike\",\n    \"customer\": {\n        \"email\": \"test@alteos.com\",\n        \"firstName\": \"John\",\n        \"lastName\": \"Doe\",\n        \"values\": {\n            \"dateOfBirth\": \"1999-01-02\",\n            \"addressStreet\": \"Hardenbergerstr.\",\n            \"addressHouseNumber\": \"32\",\n            \"addressPlz\": \"10623\",\n            \"addressCity\": \"Berlin\"\n        }\n    },\n    \"values\": {\n        \"policyStartDate\": \"2023-02-20\",\n        \"paymentSchedule\": \"oneTime\",\n        \"price\": \"1000.01-1500.00\",\n        \"purchasedAt\": \"2023-01-20\",\n        \"vehicleType\": \"E-Bike\",\n        \"brand\": \"Batavus\",\n        \"frameNumber\": \"1245311\",\n        \"hasEligibleLock\": true,\n        \"preinstalledGps\":\"-\",\n        \"partnerCode\":\"0123\"\n    },\n    \"package\": \"diebstahlschutz\",\n    \"addons\": [\n        \"gpsTracking\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"4851bfd7-60c8-4038-93fd-97ae7262aaee\",\n    \"prettyId\": \"AUW6L5\",\n    \"requestData\": {\n        \"productName\": \"ebike\",\n        \"customer\": {\n            \"email\": \"test@alteos.com\",\n            \"firstName\": \"John\",\n            \"lastName\": \"Doe\",\n            \"values\": {\n                \"dateOfBirth\": \"1999-01-02\",\n                \"addressStreet\": \"Hardenbergerstr.\",\n                \"addressHouseNumber\": \"32\",\n                \"addressPlz\": \"10623\",\n                \"addressCity\": \"Berlin\"\n            }\n        },\n        \"values\": {\n            \"policyStartDate\": \"2023-02-20\",\n            \"paymentSchedule\": \"oneTime\",\n            \"price\": \"1000.01-1500.00\",\n            \"purchasedAt\": \"2023-01-20\",\n            \"vehicleType\": \"E-Bike\",\n            \"brand\": \"Batavus\",\n            \"frameNumber\": \"1245311\",\n            \"hasEligibleLock\": true,\n            \"preinstalledGps\": \"-\",\n            \"partnerCode\": \"0123\"\n        },\n        \"package\": \"diebstahlschutz\",\n        \"addons\": [\n            \"gpsTracking\"\n        ]\n    },\n    \"quote\": {\n        \"gross\": 71.95,\n        \"premium\": 60.46,\n        \"taxes\": 11.49,\n        \"premiumExclDiscounts\": 60.46,\n        \"taxesExclDiscounts\": 11.49,\n        \"grossExclDiscounts\": 71.95,\n        \"addons\": [\n            {\n                \"name\": \"gpsTracking\",\n                \"gross\": 12,\n                \"payments\": [\n                    {\n                        \"tax\": 1.92,\n                        \"premium\": 10.08\n                    }\n                ]\n            }\n        ],\n        \"package\": {\n            \"name\": \"diebstahlschutz\",\n            \"gross\": 59.95,\n            \"payments\": [\n                {\n                    \"tax\": 9.57,\n                    \"premium\": 50.38\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"a7c49c85-0e91-47c8-a13b-7e56a26f6726"},{"name":"eBike Product Sushi Bikes","id":"e420c907-f6a4-4704-974d-744031e8ae78","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-app-key","value":"520478ab-bda4-4ee7-a753-5400edf8fb6f"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"sushi-bikes\",\n    \"customer\": {\n        \"email\": \"Versicherung@sushi-bikes.com\",\n        \"firstName\": \"Sushi\",\n        \"lastName\": \"Mobility GmbH\",\n        \"values\": {\n            \"addressStreet\": \"Geretsrieder.\",\n            \"addressHouseNumber\": \"10\",\n            \"addressPlz\": \"81379\",\n            \"addressCity\": \"München\"\n        }\n    },\n    \"values\": {\n        \"insuredPersonName\": \"Endkunde\",\n        \"insuredPersonFamilyName\": \"Nachname\",\n        \"insuredPersonEmail\":\"ank@alteos.com\",\n        \"policyStartDate\": \"2024-06-17\",\n        \"paymentSchedule\": \"annual\",\n        \"price\": \"2000.01-2500.00\",\n        \"purchasedAt\": \"2024-06-17\",\n        \"vehicleType\": \"E-Bike\",\n        \"brand\": \"Sushi\",\n        \"frameNumber\": \"1245311\",\n        \"hasEligibleLock\": true\n    },\n    \"package\": \"premiumschutz\",\n    \"addons\": [\n        \"mobilitaetsschutz\"\n    ]\n}"},"url":"https://api.sandbox.alteos.com/v2/policies","description":"<p>Use this API to create a policy for the eBike Product.</p>\n<p>Parameters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Mandatory / Optional</th>\n<th>Description and values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>productName</td>\n<td>mandatory</td>\n<td>Should be used the value: \"sushi-bikes\"</td>\n</tr>\n<tr>\n<td>customer</td>\n<td>mandatory</td>\n<td>Contains sub-fields:  <br />email, firstName, lastName; addressStreet, addressHouseNumber, addressPlz, addressCity.  <br />Customer (policyholder) is Sushi, so all the fields should be filled in accordingly.</td>\n</tr>\n<tr>\n<td>insuredPersonName</td>\n<td>mandatory</td>\n<td>First name of the insured person (the end-customer)</td>\n</tr>\n<tr>\n<td>insuredPersonFamilyName</td>\n<td>mandatory</td>\n<td>Last name of the insured person (the end-customer)</td>\n</tr>\n<tr>\n<td>policyStartDate</td>\n<td>mandatory</td>\n<td>In format YYYY-MM-DD, can be up to 1 month in the future (from current date of the request).  <br />  <br />Minimum starting date: current date (today)</td>\n</tr>\n<tr>\n<td>paymentSchedule</td>\n<td>mandatory</td>\n<td>One of: \"monthly\", \"annual\"</td>\n</tr>\n<tr>\n<td>price</td>\n<td>mandatory</td>\n<td>Price of the insured E-Bike (max: 5.000 Eur).  <br />  <br />Can be one of:  <br />- \"0.00-500.00\"  <br />- \"500.01-1000.00\"  <br />- \"1000.01-1500.00\"  <br />  <br />... and so on, in 500 Eur increments until:  <br />- \"4500.01-5000.00\"</td>\n</tr>\n<tr>\n<td>purchasedAt</td>\n<td>mandatory</td>\n<td>Purchase date of the insured E-Bike, in format YYYY-MM-DD  <br />  <br />- Max 1 month in the past</td>\n</tr>\n<tr>\n<td>vehicleType</td>\n<td>mandatory</td>\n<td>Should be used the value: \"E-Bike\"</td>\n</tr>\n<tr>\n<td>type</td>\n<td>optional</td>\n<td>One of: \"Stadtrad\", \"Lasten- / Transportrad\", \"Mountainbike\", \"Gravelbike / Rennrad\", \"S-Pedelecs\", \"Sonstige\"</td>\n</tr>\n<tr>\n<td>frameNumber</td>\n<td>optional</td>\n<td>simple string</td>\n</tr>\n<tr>\n<td>hasEligibleLock</td>\n<td>mandatory</td>\n<td>Boolean (true/false) Customer should confirm that has been using a lock worth at least €45.</td>\n</tr>\n<tr>\n<td>package</td>\n<td>mandatory</td>\n<td>Type of coverage selected from a set of options: \"diebstahlschutz\", \"komfortschutz\", \"premiumschutz\".</td>\n</tr>\n<tr>\n<td>addons</td>\n<td>mandatory</td>\n<td>always pass \"mobilitaetsschutz\"</td>\n</tr>\n<tr>\n<td>contractNumber</td>\n<td>optional</td>\n<td>supplementary identifier to link the insurance policy with the corresponding e-bike order</td>\n</tr>\n</tbody>\n</table>\n</div><p>The policy creation response will also return the <code>requestData</code> object which contains all the data that was given by the user during the policy creation and the <code>quote</code> object which contains all the quotation calculations.</p>\n","urlObject":{"path":["v2","policies"],"host":["https://api.sandbox.alteos.com"],"query":[{"disabled":true,"description":{"content":"<p>Coverage period of the insurance.</p>\n","type":"text/plain"},"key":"duration","value":""},{"disabled":true,"description":{"content":"<p>Date of purchase of the eBike. Must not be older than 6 months before the insurance starting date.</p>\n","type":"text/plain"},"key":"purchasedAt","value":""}],"variable":[]}},"response":[{"id":"5ae825b3-de5c-4575-9067-da951477389c","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-App-Key","value":"520478ab-bda4-4ee7-a753-5400edf8fb6f"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"sushi-bikes\",\n    \"customer\": {\n        \"email\": \"Versicherung@sushi-bikes.com\",\n        \"firstName\": \"Sushi\",\n        \"lastName\": \"Mobility GmbH\",\n        \"values\": {\n            \"addressStreet\": \"Geretsrieder.\",\n            \"addressHouseNumber\": \"10\",\n            \"addressPlz\": \"81379\",\n            \"addressCity\": \"München\"\n        }\n    },\n    \"values\": {\n        \"insuredPersonName\": \"Endkunde\",\n        \"insuredPersonFamilyName\": \"Nachname\",\n        \"insuredPersonEmail\":\"ank@alteos.com\",\n        \"policyStartDate\": \"2024-06-17\",\n        \"paymentSchedule\": \"annual\",\n        \"price\": \"2000.01-2500.00\",\n        \"purchasedAt\": \"2024-06-17\",\n        \"vehicleType\": \"E-Bike\",\n        \"brand\": \"Sushi\",\n        \"frameNumber\": \"1245311\",\n        \"hasEligibleLock\": true,\n        \"contractNumber\": \"AF3456\"\n    },\n    \"package\": \"premiumschutz\",\n    \"addons\": [\n        \"mobilitaetsschutz\"\n    ]\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"f849df93-b312-4821-95a4-65dc8054b152\",\n    \"prettyId\": \"ZFA9XC\",\n    \"requestData\": {\n        \"productName\": \"sushi-bikes\",\n        \"customer\": {\n            \"email\": \"Versicherung@sushi-bikes.com\",\n            \"firstName\": \"Sushi\",\n            \"lastName\": \"Mobility GmbH\",\n            \"values\": {\n                \"addressStreet\": \"Geretsrieder.\",\n                \"addressHouseNumber\": \"10\",\n                \"addressPlz\": \"81379\",\n                \"addressCity\": \"München\"\n            }\n        },\n        \"values\": {\n            \"insuredPersonName\": \"Endkunde\",\n            \"insuredPersonFamilyName\": \"Nachname\",\n            \"insuredPersonEmail\": \"ank@alteos.com\",\n            \"policyStartDate\": \"2024-06-17\",\n            \"paymentSchedule\": \"annual\",\n            \"price\": \"2000.01-2500.00\",\n            \"purchasedAt\": \"2024-06-17\",\n            \"vehicleType\": \"E-Bike\",\n            \"brand\": \"Sushi\",\n            \"frameNumber\": \"1245311\",\n            \"hasEligibleLock\": true,\n            \"contractNumber\": \"BikeOrderNumber123\"\n        },\n        \"package\": \"premiumschutz\",\n        \"addons\": [\n            \"mobilitaetsschutz\"\n        ]\n    },\n    \"quote\": {\n        \"gross\": 139,\n        \"premium\": 116.81,\n        \"taxes\": 22.19,\n        \"premiumExclDiscounts\": 116.81,\n        \"taxesExclDiscounts\": 22.19,\n        \"grossExclDiscounts\": 139,\n        \"addons\": [\n            {\n                \"name\": \"mobilitaetsschutz\",\n                \"payments\": []\n            }\n        ],\n        \"package\": {\n            \"name\": \"premiumschutz\",\n            \"gross\": 139,\n            \"payments\": [\n                {\n                    \"tax\": 22.19,\n                    \"premium\": 116.81\n                },\n                {\n                    \"tax\": 22.19,\n                    \"premium\": 116.81\n                },\n                {\n                    \"tax\": 22.19,\n                    \"premium\": 116.81\n                },\n                {\n                    \"tax\": 22.19,\n                    \"premium\": 116.81\n                },\n                {\n                    \"tax\": 22.19,\n                    \"premium\": 116.81\n                }\n            ]\n        }\n    },\n    \"draftInvoice\": {}\n}"}],"_postman_id":"e420c907-f6a4-4704-974d-744031e8ae78"},{"name":"Display-Versicherung Product","id":"a6c66b36-c1ba-4296-81fd-7396534a1dc8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{authorizationHeader}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"\n{\n\t\"productName\": \"displayVersicherung\",\n     \"customer\": {\n        \"email\": \"username@username.com\",\n        \"firstName\": \"John\",\n        \"lastName\": \"Doe\",\n        \"phone\": \"49123456789\",\n        \"values\": {\n            \"salutation\": \"Herr\",\n            \"addressStreet\": \"Hardenbergerstr.\",\n            \"addressHouseNumber\": \"42\",\n            \"addressPlz\": \"12345\",\n            \"addressCity\": \"Berlin\"\n        }\n    },\n\t\"values\": {\n\t\t\"duration\": \"2years\",\n        \"paymentSchedule\": \"oneTime\",\n        \"partnerContractId\": \"1\",\n\t\t\"policyStartDate\": \"2020-06-20\",\n\t\t\"assignedPremium\": 49.95,\n        \"insuredPersonSalutation\": \"Herr\",\n\t\t\"insuredPersonName\":\"John\",\n        \"insuredPersonFamilyName\":\"Doe\",\n        \"insuredPersonEmail\":\"john.doe@gmail.com\",\n\t\t\"insuredPersonStreetAddress\":\"Potsdamer Str\",\n        \"insuredPersonHouseNumber\":\"1\",\n        \"insuredPersonAddressPostalCode\":\"10785\",\n        \"insuredPersonCityAddress\":\"Berlin\"\n\t},\n\t\"objects\": [\n\t\t{\n\t\t\t\"name\": \"Geraet\",\n\t\t\t\"values\": {\n\t\t\t\t\t\t\"priceCategory\": \"A\",\n                        \"purchaseDate\": \"2020-05-11\",\n                        \"deviceId\": \"123\",\n                        \"deviceBrand\": \"iPhone\",\n                        \"deviceModel\": \"12\",\n                        \"deviceImei\": \"8V6A9K49157\",\n                        \"protectionInstalled\": \"yes\"\n\t\t\t},\n\t\t\t\"risks\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"Bildschirmglasbruch\",\n\t\t\t\t\t\"values\": {}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"Rueckseitenglasbruch\",\n\t\t\t\t\t\"values\": {}\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t]\n}"},"url":"https://api.sandbox.alteos.com/v1/policies","description":"<p>Use this API to create a policy for the Display-Versicherung product.</p>\n","urlObject":{"path":["v1","policies"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"ec65854d-7abf-4891-8c01-3d848dd302ea","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"warrantyExtension\",\n    \"customer\": {\n        \"email\": \"username@username.com\",\n        \"firstName\": \"John\",\n    \t\"lastName\": \"Doe\",\n    \t\"phone\": \"49123456789\",\n        \"values\": {\n            \"salutation\": \"Herr\",\n            \"addressStreet\": \"Hardenbergerstr.\",\n            \"addressHouseNumber\": \"42\",\n            \"addressPlz\": \"12345\",\n            \"addressCity\": \"Berlin\"\n        }\n    },\n    \"values\": {\n        \"duration\": \"12\"\n    },\n    \"objects\": [\n        {\n            \"name\": \"whiteAppliances\",\n            \"values\": {\n                \"brand\": \"Bosch\",\n                \"itemCategory\": \"Backofen\",\n                \"ean\": \"3523DFGdf2343\",\n                \"itemValue\": \"0-150\",\n                \"purchasedAt\": \"2018-11-30\"\n            },\n            \"risks\": [\n                {\n                    \"name\": \"deviceBreakdown\",\n                    \"values\": {}\n                }\n            ]\n        }\n    ]\n}"},"url":"https://api.sandbox.alteos.com/v1/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"119f91d4-4a40-41c2-ac84-346ed531a998\",\n    \"prettyId\": \"L87RHY\"\n}"}],"_postman_id":"a6c66b36-c1ba-4296-81fd-7396534a1dc8"},{"name":"Electronic Scooters","id":"b91a8ea0-1de3-4551-8619-c63a922f3536","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"x-app-key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"garantie-tisto\",\n    \"customer\": {\n        \"email\": \"test@alteos.com\",\n        \"firstName\": \"Tisto\",\n        \"lastName\": \"GmbH\",\n        \"values\": {\n            \"companyName\":\"Tisto\",\n            \"salutation\": \"Divers\",\n            \"addressStreet\": \"Hardenbergerstr.\",\n            \"addressHouseNumber\": \"42\",\n            \"addressPlz\": \"12345\",\n            \"addressCity\": \"Berlin\"\n        }\n    },\n    \"values\": {\n        \"insuredPersonEmail\":\"arr@alteos.com\",\n        \"insuredPersonName\":\"testPerson\",\n        \"insuredPersonFamilyName\":\"testPerson\",\n        \"insuredPersonStreet\":\"Potsdamer Str\",\n        \"insuredPersonHouseNumber\":\"1\",\n        \"insuredPersonPostalCode\":\"10785\",\n        \"insuredPersonCity\":\"Berlin\",\n        \"duration\":\"24\",\n        \"itemValue\":\"2000.00-2500.00\",\n        \"purchasedAt\": \"2023-10-27\",\n        \"serialNumber\":\"1234hndjoawi\",\n        \"model\":\"123cjyiosdc\"\n        },\n        \"package\": \"garantieverlaengerung\",\n        \"addons\": [\n        ]\n}"},"url":"https://api.sandbox.alteos.com/v2/policies","description":"<p>Use this API to create a policy for the Electronic Scooters.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>productName</th>\n<th>\"garantie-tisto\"</th>\n</tr>\n</thead>\n<tbody>\n</tbody>\n</table>\n</div><p><em><strong>Customer</strong></em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory / Optional</th>\n<th>Description and values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>email</td>\n<td>mandatory</td>\n<td>email of the insured person (in email format)</td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>mandatory</td>\n<td>first name of the insured person</td>\n</tr>\n<tr>\n<td>lastName</td>\n<td>mandatory</td>\n<td>last name of the insured person</td>\n</tr>\n<tr>\n<td>companyName</td>\n<td>mandatory</td>\n<td>company name</td>\n</tr>\n<tr>\n<td>salutation</td>\n<td>optional</td>\n<td>\"Herr\", \"Frau\" or \"Divers\"</td>\n</tr>\n<tr>\n<td>customer address (4 strings)</td>\n<td>mandatory</td>\n<td>street, house number, plz and city of the insured person</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Values:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Mandatory / Optional</th>\n<th>Description and values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>insuredPersonEmail</td>\n<td>mandatory</td>\n<td>insured person email</td>\n</tr>\n<tr>\n<td>insuredPersonName</td>\n<td>mandatory</td>\n<td>insured person first name</td>\n</tr>\n<tr>\n<td>insuredPersonFamilyName</td>\n<td>mandatory</td>\n<td>insured person family name</td>\n</tr>\n<tr>\n<td>insuredPersonStreet</td>\n<td>mandatory</td>\n<td>insured person street</td>\n</tr>\n<tr>\n<td>insuredPersonHouseNumber</td>\n<td>mandatory</td>\n<td>insured person house number</td>\n</tr>\n<tr>\n<td>insuredPersonPostalCode</td>\n<td>mandatory</td>\n<td>insured person postal code</td>\n</tr>\n<tr>\n<td>insuredPersonCity</td>\n<td>mandatory</td>\n<td>insured person city</td>\n</tr>\n<tr>\n<td>duration</td>\n<td>mandatory</td>\n<td>(select) must be \"24\"</td>\n</tr>\n<tr>\n<td>itemValue</td>\n<td>mandatory</td>\n<td>corresponds to the total value of an Electronic Scooter.  <br />  <br />e.g:  <br />\"2000.00-2500.00\" \"2500.01-3000.00\"  <br />\"3000.01-3500.00\" \"3500.01-4000.00\" \"4000.01-4500.00\" \"4500.01-5000.00\" \"5000.01-5500.00\" \"5500.01-6000.00\"  <br />\"6000.01-6500.00\" \"6500.01-7000.00\"  <br />\"7000.01-7500.00\"</td>\n</tr>\n<tr>\n<td>purchasedAt</td>\n<td>mandatory</td>\n<td>date of purchase stated on invoice.  <br />Format YYYY-MM-DD.  <br />  <br />Must have a date no more than 14 days in the past to be eligible for scooter purchase.</td>\n</tr>\n<tr>\n<td>serialNumber</td>\n<td>optional</td>\n<td>(string) serial number of your Electronic Scooter.</td>\n</tr>\n<tr>\n<td>model</td>\n<td>optional</td>\n<td>(string) model of your Electronic Scooter.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Other</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Mandatory / Optional</th>\n<th>Description and values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>package</td>\n<td>mandatory</td>\n<td>\"garantieverlaengerung\"</td>\n</tr>\n</tbody>\n</table>\n</div><p>The policy creation response will also return the <code>requestData</code> object which contains all the data that was given by the user during the policy creation and the <code>quote</code> object which contains all the quotation calculations.</p>\n","urlObject":{"path":["v2","policies"],"host":["https://api.sandbox.alteos.com"],"query":[{"disabled":true,"description":{"content":"<p>Coverage period of the insurance.</p>\n","type":"text/plain"},"key":"duration","value":""},{"disabled":true,"description":{"content":"<p>Date of purchase of the eBike. Must not be older than 6 months before the insurance starting date.</p>\n","type":"text/plain"},"key":"purchasedAt","value":""}],"variable":[]}},"response":[{"id":"224b2aa4-6611-4234-9608-e4924a4fc5a6","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productName\": \"garantie-tisto\",\n    \"customer\": {\n        \"email\": \"test@alteos.com\",\n        \"firstName\": \"Tisto\",\n        \"lastName\": \"GmbH\",\n        \"values\": {\n            \"companyName\":\"Tisto\",\n            \"salutation\": \"Divers\",\n            \"addressStreet\": \"Hardenbergerstr.\",\n            \"addressHouseNumber\": \"42\",\n            \"addressPlz\": \"12345\",\n            \"addressCity\": \"Berlin\"\n        }\n    },\n    \"values\": {\n        \"insuredPersonEmail\":\"arr@alteos.com\",\n        \"insuredPersonName\":\"testPerson\",\n        \"insuredPersonFamilyName\":\"testPerson\",\n        \"insuredPersonStreet\":\"Potsdamer Str\",\n        \"insuredPersonHouseNumber\":\"1\",\n        \"insuredPersonPostalCode\":\"10785\",\n        \"insuredPersonCity\":\"Berlin\",\n        \"duration\":\"24\",\n        \"itemValue\":\"2000.00-2500.00\",\n        \"purchasedAt\": \"2023-10-27\",\n        \"serialNumber\":\"1234hndjoawi\",\n        \"model\":\"123cjyiosdc\"\n        },\n        \"package\": \"garantieverlaengerung\",\n        \"addons\": [\n        ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"ec30fd2f-4b46-499c-b471-a4cc360e589d\",\n    \"prettyId\": \"55ANFD\",\n    \"requestData\": {\n        \"productName\": \"garantie-tisto\",\n        \"customer\": {\n            \"email\": \"test@alteos.com\",\n            \"firstName\": \"Tisto\",\n            \"lastName\": \"GmbH\",\n            \"values\": {\n                \"companyName\": \"Tisto\",\n                \"salutation\": \"Divers\",\n                \"addressStreet\": \"Hardenbergerstr.\",\n                \"addressHouseNumber\": \"42\",\n                \"addressPlz\": \"12345\",\n                \"addressCity\": \"Berlin\"\n            }\n        },\n        \"values\": {\n            \"insuredPersonEmail\": \"arr@alteos.com\",\n            \"insuredPersonName\": \"testPerson\",\n            \"insuredPersonFamilyName\": \"testPerson\",\n            \"insuredPersonStreet\": \"Potsdamer Str\",\n            \"insuredPersonHouseNumber\": \"1\",\n            \"insuredPersonPostalCode\": \"10785\",\n            \"insuredPersonCity\": \"Berlin\",\n            \"duration\": \"24\",\n            \"itemValue\": \"2000.00-2500.00\",\n            \"purchasedAt\": \"2023-10-27\",\n            \"serialNumber\": \"1234hndjoawi\",\n            \"model\": \"123cjyiosdc\"\n        },\n        \"package\": \"garantieverlaengerung\",\n        \"addons\": []\n    },\n    \"quote\": {\n        \"gross\": 102.45,\n        \"premium\": 86.09,\n        \"taxes\": 16.36,\n        \"premiumExclDiscounts\": 86.09,\n        \"taxesExclDiscounts\": 16.36,\n        \"grossExclDiscounts\": 102.45,\n        \"addons\": [],\n        \"package\": {\n            \"name\": \"garantieverlaengerung\",\n            \"payments\": []\n        }\n    },\n    \"draftInvoice\": {}\n}"}],"_postman_id":"b91a8ea0-1de3-4551-8619-c63a922f3536"},{"name":"Hearing Aids Hörgeräteversicherung ERP","id":"720e90c1-2b71-451a-8093-7dba14221ab2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-app-key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"hoerschutz-partner\",\n\t\"customer\": {\n\t\t\"email\": \"test@alteos.com\",\n\t\t\"firstName\": \"Testvorname\",\n\t  \t\"lastName\": \"Testnachname\",\n\t  \t\"phone\": \"+49170123456\",\n\t\t\"values\": {\n\t    \t\"salutation\": \"Herr\",\n\t    \t\"addressStreet\": \"Teststr.\",\n\t\t\t\"addressHouseNumber\": \"42\",\n\t\t\t\"addressPlz\": \"12345\",\n\t\t\t\"addressCity\": \"Berlin\"\n\t\t}\n\t},\n\t\"values\": {\n\t\t\"healthInsuranceType\": \"public\",\n\t\t\"numberOfDevices\": \"2\",\n        \"brand1\": \"test\",\n        \"brand2\": \"test\",\n        \"model1\": \"test\",\n        \"model2\": \"test\",\n        \"purchasedAt\": \"2024-10-11\",\n        \"serialNum1\": \"12345678\",\n        \"serialNum2\": \"12345678\",\n        \"partnerCode\":\"0003\",\n        \"distributionChannel\": \"ERP\",\n        \"paymentSchedule\": \"oneTime\",\n        \"durationSelector\": \"\",\n\n        \"purchasePrice\": \"500\",\n        \"policyStartDate\": \"2023-07-17\",\n        \"insuredPersonSalutation\":\"Frau\",\n        \"insuredPersonDateOfBirth\":\"1996-04-29\",\n        \"insuredPersonName\": \"testPerson\",\n        \"insuredPersonFamilyName\": \"testPerson\",\n        \"insuredPersonAddressStreet\": \"Potsdamer Str\",\n        \"insuredPersonAddressHouseNumber\": \"1\",\n        \"insuredPersonAddressPlz\": \"10785\",\n        \"insuredPersonAddressCity\": \"Berlin\"\n\t},\n    \"package\": \"IAS+ Verlust\",\n    \"addons\": []\n}"},"url":"https://api.sandbox.alteos.com/v2/policies","description":"<p>Use this API to create a policy for the Hearing Aids Hörgeräteversicherung ERP.</p>\n<p><em><strong>Note: Please use these</strong></em> <strong>partnerCodes</strong> <em><strong>for testing on sandbox:</strong></em></p>\n<p><em><strong>\"0001\" -</strong></em> AmparexTestAudimus,</p>\n<p><em><strong>\"0002\"</strong></em> - AmparexTestISMA\",</p>\n<p><em><strong>\"0003\"</strong></em> - AmparexTestIAS,</p>\n<p><em><strong>\"0004 \"</strong></em> - OptadataTestAudimus,</p>\n<p><em><strong>\"0005\"</strong></em> - OptadataTestISMA,</p>\n<p>\"<em><strong>0006\"</strong></em> - OptadataTestIAS</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>productName</th>\n<th>hoerschutz-partner</th>\n</tr>\n</thead>\n<tbody>\n</tbody>\n</table>\n</div><p><strong>Customer</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory / Optional  <br />(data type)</th>\n<th>Description and values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>firstName</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>First name of the insured person.  <br />  <br />Example: \"Noah\"</td>\n</tr>\n<tr>\n<td>lastName</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Last name of the insured person.  <br />  <br />Example: \"Schmidt\"</td>\n</tr>\n<tr>\n<td>email</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Email of the insured person (in email format).  <br />  <br />Example: <a href=\"https://mailto:noah.schmidt@email.de\">noah.schmidt@email.de</a></td>\n</tr>\n<tr>\n<td>phone</td>\n<td>optional  <br />(string)</td>\n<td>Phone number of the insured person.  <br />  <br />Format: starting with 0 or +49, no spaces. Min 7 characters.  <br />  <br />Example: \"01234567\" or \"+4915738929598\"</td>\n</tr>\n<tr>\n<td>addressStreet</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Street name of the insured person's address.  <br />  <br />Example: \"Sendlinger Strasse\"</td>\n</tr>\n<tr>\n<td>addressHouseNumber</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>House number of the insured person's address.  <br />  <br />Example: \"21\"</td>\n</tr>\n<tr>\n<td>addressPlz</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Postal code (PLZ) of the insured person's address.  <br />  <br />Example: \"21212\"</td>\n</tr>\n<tr>\n<td>addressCity</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>City of the insured person's address.  <br />  <br />Example: \"Munich\"</td>\n</tr>\n<tr>\n<td>salutation</td>\n<td>optional  <br />(string)</td>\n<td>The salutation or title of the insured person.  <br />  <br />One of:  <br />\"Herr\",  <br />\"Frau\",  <br />\"Divers\"  <br />  <br />Example: \"Herr\"</td>\n</tr>\n</tbody>\n</table>\n</div><p><em><strong>Values</strong></em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Mandatory / Optional</th>\n<th>Description and values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>policyStartDate</td>\n<td><strong>mandatory</strong>  <br />(date)</td>\n<td>Start date of the policy and start date of the coverage.  <br />  <br />Format: YYYY-MM-DD  <br />  <br />Example: \"2025-03-01\"</td>\n</tr>\n<tr>\n<td>purchasePrice</td>\n<td><strong>mandatory</strong>  <br />(number)</td>\n<td>Corresponds to the total value of one or both hearing aids.  <br />  <br />Audimus, IAS:  <br />0 up to 15000 EUR  <br />  <br />ISMA:  <br />0 up to 10000 EUR  <br />  <br />Example: 7452.12</td>\n</tr>\n<tr>\n<td>purchasedAt</td>\n<td><strong>mandatory</strong>  <br />(date)</td>\n<td>The date of purchase stated on the invoice.  <br />  <br />Minimum: 54 months in the past  <br />Maximum: 1 day into the future.  <br />  <br />Format YYYY-MM-DD  <br />  <br />Example: \"2025-02-01\"</td>\n</tr>\n<tr>\n<td>insuredPersonSalutation</td>\n<td>Optional  <br />(string)</td>\n<td>Indicates salutation or title of the insured person.  <br />  <br />\"Herr\", \"Frau\" or \"Divers\".  <br />  <br />Example: \"Frau\"</td>\n</tr>\n<tr>\n<td>insuredPersonName</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>First name of the policy holder.  <br />  <br />Example: \"Alma\"</td>\n</tr>\n<tr>\n<td>insuredPersonFamilyName</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Family name of the policy holder.  <br />  <br />Example: \"Meier\"</td>\n</tr>\n<tr>\n<td>insuredPersonDateOfBirth</td>\n<td><strong>mandatory</strong>  <br />(date)</td>\n<td>Birthday of the policy holder.  <br />  <br />Format: YYYY-MM-DD  <br />  <br />Example: \"1999-02-13\"</td>\n</tr>\n<tr>\n<td>insuredPersonAddressStreet</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Street name of the insured person.  <br />  <br />Example: \"Karl-Marx-Allee\"</td>\n</tr>\n<tr>\n<td>insuredPersonAddressHouseNumber</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>House number of the insured person.  <br />  <br />Example: \"13\"</td>\n</tr>\n<tr>\n<td>insuredPersonAddressPlz</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Postal code (PLZ) of the insured person.  <br />  <br />Example: \"13021\"</td>\n</tr>\n<tr>\n<td>insuredPersonAddressCity</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Address city of the insured person.  <br />  <br />Example: \"Berlin\"</td>\n</tr>\n<tr>\n<td>healthInsuranceType</td>\n<td><strong>mandatory  <br /></strong>(string)</td>\n<td>Health insurance type of the insured person.  <br />  <br />One of:  <br />\"public\",  <br />\"private\"</td>\n</tr>\n<tr>\n<td>numberOfDevices</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Number of the insured hearing aid devices.  <br />  <br />one of:  <br />\"1\",  <br />\"2\"</td>\n</tr>\n<tr>\n<td>brand1</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Name of the manufacturer of the first hearing aid.  <br />  <br />Example: \"Earth\"</td>\n</tr>\n<tr>\n<td>brand2</td>\n<td>optional  <br />(string)</td>\n<td>Name of the manufacturer of the second hearing aid.  <br />  <br />Example: \"Planet\"</td>\n</tr>\n<tr>\n<td>model1</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Model of the first hearing aid.  <br />  <br />Example: \"Orbit\"</td>\n</tr>\n<tr>\n<td>model2</td>\n<td>optional  <br />(string)</td>\n<td>Model of the second hearing aid.  <br />  <br />Example: \"Gravity\"</td>\n</tr>\n<tr>\n<td>serialNum1</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Serial number of the first hearing aid.  <br />  <br />Example: \"12345678\"</td>\n</tr>\n<tr>\n<td>serialNum2</td>\n<td>optional  <br />(string)</td>\n<td>Serial number of the second hearing aid.  <br />  <br />Example: \"87654321\"</td>\n</tr>\n<tr>\n<td>partnerCode</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Partner ID to capture a third party involved in the policy creation process (e.g. a store or branch where the contract is created).  <br />  <br />Example: \"0001\"</td>\n</tr>\n<tr>\n<td>distributionChannel</td>\n<td>optional  <br />(string)</td>\n<td>Select distribution channels only if applicable:  <br />  <br />One of:  <br />“app”,  <br />“ERP”</td>\n</tr>\n<tr>\n<td>paymentSchedule</td>\n<td><strong>mandatory</strong>: IAS  <br />optional: others  <br />(string)</td>\n<td>Defines the customer's preferred payment schedule for the contract. The contract has a default duration of 5 years unless canceled earlier by the customer.  <br />- <strong>annual</strong>: The customer pays once every year for 6 years.  <br />- <strong>3years</strong>: The customer makes an upfront payment for the first 3 years, followed by two annual payments for the remaining 3 years.  <br />- <strong>oneTime</strong>: The customer makes a single upfront payment for the entire 6-year period  <br />  <br />One of:  <br />\"annual\",  <br />\"3years\",  <br />\"oneTime\"</td>\n</tr>\n<tr>\n<td>durationSelector</td>\n<td><strong>mandatory</strong>: ISMA  <br />optional: others  <br />(string)</td>\n<td>Defines the customer's preferred duration of the contract. The contract has a default duration of 6 years. For ISMA the duration can be changed by the customer between 5 and 6 years.  <br />  <br />One of:  <br />\"5\",  <br />\"6\"</td>\n</tr>\n</tbody>\n</table>\n</div><p><em><strong>Package</strong></em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory/  <br />Optional</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>package</td>\n<td><strong>mandatory</strong>  <br />(string)</td>\n<td>Package that controlls the insured risks.  <br />  <br />One of:  <br />\"IAS Komfort\",  <br />“IAS+ Verlust”,  <br />\"IAS Premium\",  <br />\"audimus\",  <br />\"ISMA Verlustschutz\",  <br />\"ISMA Premiumschutz\"</td>\n</tr>\n</tbody>\n</table>\n</div><p>The policy creation response will also return the <code>requestData</code> object which contains all the data that was given by the user during the policy creation and the <code>quote</code> object which contains all the quotation calculations.</p>\n","urlObject":{"path":["v2","policies"],"host":["https://api.sandbox.alteos.com"],"query":[{"disabled":true,"description":{"content":"<p>Coverage period of the insurance.</p>\n","type":"text/plain"},"key":"duration","value":""},{"disabled":true,"description":{"content":"<p>Date of purchase of the eBike. Must not be older than 6 months before the insurance starting date.</p>\n","type":"text/plain"},"key":"purchasedAt","value":""}],"variable":[]}},"response":[{"id":"9db1e3b6-4fe1-4fb0-a33b-25a727803fed","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"hoerschutz-partner\",\n\t\"customer\": {\n\t\t\"email\": \"noah.schmidt@email.de\",\n\t\t\"firstName\": \"Noah\",\n\t  \t\"lastName\": \"Schmidt\",\n\t  \t\"phone\": \"+4915738929598\",\n\t\t\"values\": {\n\t    \t\"salutation\": \"Herr\",\n\t    \t\"addressStreet\": \"Sendlinger Strasse.\",\n\t\t\t\"addressHouseNumber\": \"21\",\n\t\t\t\"addressPlz\": \"21212\",\n\t\t\t\"addressCity\": \"Munich\"\n\t\t}\n\t},\n\t\"values\": {\n        \"purchasedAt\": \"2025-02-01\",\n\t\t\"healthInsuranceType\": \"public\",\n\t\t\"numberOfDevices\": \"2\",\n        \"brand1\": \"Earth\",\n        \"brand2\": \"Planet\",\n        \"model1\": \"Orbit\",\n        \"model2\": \"Gravity\",\n        \"serialNum1\": \"12345678\",\n        \"serialNum2\": \"87654321\",\n        \"partnerCode\":\"0001\",\n        \"distributionChannel\": \"ERP\",\n        \"purchasePrice\": 7452.12,\n        \"policyStartDate\": \"2025-03-01\",\n        \"insuredPersonSalutation\":\"Frau\",\n        \"insuredPersonDateOfBirth\":\"1999-02-13\",\n        \"insuredPersonName\": \"Alma\",\n        \"insuredPersonFamilyName\": \"Meier\",\n        \"insuredPersonAddressStreet\": \"Karl-Marx-Allee\",\n        \"insuredPersonAddressHouseNumber\": \"13\",\n        \"insuredPersonAddressPlz\": \"13021\",\n        \"insuredPersonAddressCity\": \"Berlin\"\n\t},\n    \"package\": \"audimus\",\n    \"addons\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"2721cd21-d0d7-4527-8dff-1693870c1e38\",\n    \"prettyId\": \"XGNFEW\",\n    \"requestData\": {\n        \"productName\": \"hoerschutz-partner\",\n        \"customer\": {\n            \"email\": \"noah.schmidt@email.de\",\n            \"firstName\": \"Noah\",\n            \"lastName\": \"Schmidt\",\n            \"phone\": \"+4915738929598\",\n            \"values\": {\n                \"salutation\": \"Herr\",\n                \"addressStreet\": \"Sendlinger Strasse.\",\n                \"addressHouseNumber\": \"21\",\n                \"addressPlz\": \"21212\",\n                \"addressCity\": \"Munich\"\n            }\n        },\n        \"values\": {\n            \"purchasedAt\": \"2025-02-01\",\n            \"healthInsuranceType\": \"public\",\n            \"numberOfDevices\": \"2\",\n            \"brand1\": \"Earth\",\n            \"brand2\": \"Planet\",\n            \"model1\": \"Orbit\",\n            \"model2\": \"Gravity\",\n            \"serialNum1\": \"12345678\",\n            \"serialNum2\": \"87654321\",\n            \"partnerCode\": \"0001\",\n            \"distributionChannel\": \"ERP\",\n            \"purchasePrice\": 7452.12,\n            \"policyStartDate\": \"2025-03-01\",\n            \"insuredPersonSalutation\": \"Frau\",\n            \"insuredPersonDateOfBirth\": \"1999-02-13\",\n            \"insuredPersonName\": \"Alma\",\n            \"insuredPersonFamilyName\": \"Meier\",\n            \"insuredPersonAddressStreet\": \"Karl-Marx-Allee\",\n            \"insuredPersonAddressHouseNumber\": \"13\",\n            \"insuredPersonAddressPlz\": \"13021\",\n            \"insuredPersonAddressCity\": \"Berlin\"\n        },\n        \"package\": \"audimus\",\n        \"addons\": []\n    },\n    \"quote\": {\n        \"gross\": 615.95,\n        \"premium\": 517.61,\n        \"taxes\": 98.34,\n        \"premiumExclDiscounts\": 517.61,\n        \"taxesExclDiscounts\": 98.34,\n        \"grossExclDiscounts\": 615.95,\n        \"addons\": [],\n        \"package\": {\n            \"name\": \"audimus\",\n            \"payments\": []\n        }\n    },\n    \"draftInvoice\": {\n        \"invoiceId\": \"in_1e38_v9VtgTn330tRj\",\n        \"paymentOrderId\": \"ipo_0tRj_lT29jW8BmHB9\"\n    }\n}"}],"_postman_id":"720e90c1-2b71-451a-8093-7dba14221ab2"},{"name":"Hearing Aids 2023 IPN","id":"950a5761-a5d2-4770-83b5-b517e1cce5c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-app-key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"hoerschutz-erp-2023\",\n\t\"customer\": {\n\t\t\"email\": \"test@alteos.com\",\n\t\t\"firstName\": \"Marta\",\n\t  \t\"lastName\": \"Musterfrau\",\n\t  \t\"phone\": \"0123456789\",\n\t\t\"values\": {\n\t    \t\"salutation\": \"Herr\",\n\t    \t\"addressStreet\": \"Teststr.\",\n\t\t\t\"addressHouseNumber\": \"42\",\n\t\t\t\"addressPlz\": \"12345\",\n\t\t\t\"addressCity\": \"Berlin\",\n            \"dateOfBirth\": \"1992-02-26\"\n\t\t}\n\t},\n\t\"values\": {\n        \"paymentSchedule\": \"oneTime\",\n\t\t\"healthInsuranceType\": \"public\",\n\t\t\"numberOfDevices\": \"2\",\n        \"onlyAccessories\":false,\n        \"model1\":\"ModelTesting1\",\n        \"brand1\":\"BrandTesting1\",\n        \"model2\":\"ModelTesting2\",\n        \"brand2\":\"BrandTesting2\",\n        \"serialNum1\":\"123456789\",\n        \"serialNum2\":\"987654321\",\n        \"accessoryModel1\":\"modeltest1\",\n        \"accessoryBrand1\":\"brandtest1\",\n        \"itemValue\": \"1500.01-2000.00\",\n        \"purchasedAt\": \"2025-09-05\",\n        \"employeeId\": \"Mark\",\n        \"partnerCode\":\"1234\",\n        \"distributionChannel\": \"ERP\"\n\t},\n    \"package\": \"premiumschutz\",\n    \"addons\": []\n}"},"url":"https://api.sandbox.alteos.com/v2/policies","description":"<p>Use this API to create a policy for the Hearing Aids Product.</p>\n<p><em><strong>Note: Please use this Test</strong></em> <strong>partnerCode</strong> <em><strong>for sandbox: \"1234\"</strong></em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>productName</th>\n<th>\"hoerschutz-erp-2023\"</th>\n</tr>\n</thead>\n<tbody>\n</tbody>\n</table>\n</div><p><em><strong>Customer</strong></em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory / Optional  <br />(Data format)</th>\n<th>Description and values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>email</td>\n<td><strong>Mandatory</strong>  <br />(email)</td>\n<td>email of the insured person  <br />  <br /><strong>e.g. \"</strong><a href=\"https://mailto:test@alteos.com\"><b>test@alteos.com</b></a><strong>\"</strong></td>\n</tr>\n<tr>\n<td>firstName</td>\n<td><strong>Mandatory  <br /></strong>(string)</td>\n<td>first name of the insured person  <br />  <br /><strong>e.g. \"Marta\"</strong></td>\n</tr>\n<tr>\n<td>lastName</td>\n<td><strong>Mandatory  <br /></strong>(string)</td>\n<td>last name of the insured person  <br />  <br /><strong>e.g. \"Musterfrau\"</strong></td>\n</tr>\n<tr>\n<td>phone</td>\n<td><strong>Mandatory  <br /></strong>(string)</td>\n<td>phone number of the insured person.  <br />Format: starting with 0 or +49, no spaces. Min 7 characters.  <br />  <br /><strong>e.g. \"01234567\" or \"+4909393030\"</strong></td>\n</tr>\n<tr>\n<td>dateOfBirth</td>\n<td><strong>Mandatory  <br /></strong>(date)</td>\n<td>birthday of insured person  <br />in YYYY-MM-DD format  <br />  <br />e.g. \"2005-08-15\"</td>\n</tr>\n<tr>\n<td>addressStreet</td>\n<td><strong>Mandatory  <br /></strong>(string)</td>\n<td>street name of the insured person's address  <br />  <br /><strong>e.g. \"Teststr.\"</strong></td>\n</tr>\n<tr>\n<td>addressHouseNumber</td>\n<td><strong>Mandatory  <br /></strong>(string)</td>\n<td>house number of the insured person's address  <br />  <br /><strong>e.g. \"42\"</strong></td>\n</tr>\n<tr>\n<td>addressPlz</td>\n<td><strong>Mandatory  <br /></strong>(string)</td>\n<td>Postal code of the insured person's address  <br />  <br /><strong>e.g. \"12345\"</strong></td>\n</tr>\n<tr>\n<td>addressCity</td>\n<td><strong>Mandatory  <br /></strong>(string)</td>\n<td>name of the city of the insured person's address  <br />  <br /><strong>e.g. \"Berlin\"</strong></td>\n</tr>\n<tr>\n<td>salutation</td>\n<td><strong>Optional</strong>  <br />(select)</td>\n<td>Chooses the salutation used to address the customer  <br />  <br /><strong>possible values:  <br />\"Herr\"  <br />\"Frau\"  <br />\"Divers\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Values:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Mandatory / Optional</th>\n<th>Description and values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>paymentSchedule</td>\n<td><strong>Mandatory  <br /></strong>(select)</td>\n<td>Specifies at which intervalls the customer pays their insurance premium  <br />  <br /><strong>Possible values:  <br />\"annual\"</strong>  <br /><strong>\"threeYear\"</strong> (one payment for the first three years, then annual payments)  <br /><strong>\"oneTime\"</strong></td>\n</tr>\n<tr>\n<td>healthInsuranceType</td>\n<td><strong>Mandatory  <br /></strong>(select)</td>\n<td>Indicates whether the customer has public or private health insurance  <br />  <br /><strong>possible values:  <br />\"public\"  <br />\"private\"</strong></td>\n</tr>\n<tr>\n<td>brand1</td>\n<td><strong>Mandatory/Optional  <br /></strong>(string)</td>\n<td>name of the manufacturer of the customer's first hearing aid.  <br />  <br />If \"onlyAcessories\" is false, brand1 is mandatory  <br />  <br /><strong>e.g. \"BrandTesting1\"</strong></td>\n</tr>\n<tr>\n<td>brand2</td>\n<td><strong>Mandatory/Optional  <br /></strong>(string)</td>\n<td>name of the manufacturer of the customer's second hearing aid  <br />  <br />If \"numberOfDevices\" is \"2\", \"brand2\"  <br />is mandatory  <br />  <br /><strong>e.g. \"BrandTesting2\"</strong></td>\n</tr>\n<tr>\n<td>model1</td>\n<td><strong>Mandatory / Optional</strong>  <br />(string)</td>\n<td>model of the customer's first hearing aid.  <br />  <br />If \"onlyAcessories\" is false, model1 is mandatory  <br />  <br /><strong>e.g. \"ModelTesting1\"</strong></td>\n</tr>\n<tr>\n<td>model2</td>\n<td><strong>Mandatory / Optional</strong>  <br />(string)</td>\n<td>model of the customer's second hearing aid  <br />  <br />If \"numberOfDevices\" is \"2\", \"model2\"  <br />is mandatory  <br />  <br /><strong>e.g. \"ModelTesting2\"</strong></td>\n</tr>\n<tr>\n<td>serialNum1</td>\n<td><strong>Mandatory / Optional</strong>  <br />(string)</td>\n<td>serial number of the customer's first hearing aid.  <br />  <br />If \"onlyAcessories\" is false, \"serialNum1\"  <br />is mandatory  <br />  <br /><strong>e.g. \"123456789\"</strong></td>\n</tr>\n<tr>\n<td>serialNum2</td>\n<td><strong>Mandatory / Optional</strong>  <br />(string)</td>\n<td>serial number of the customer's second hearing aid  <br />  <br />If \"numberOfDevices\" is \"2\", \"serialNum2\"  <br />is mandatory  <br />  <br /><strong>e.g. \"987654321\"</strong></td>\n</tr>\n<tr>\n<td>itemValue</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>corresponds to the total value of all insured devices (in increments of 500 euros)  <br />  <br /><strong>Possible values:  <br />\"0.00-500.00\"  <br />\"500.01-1000.00\"  <br />\"1000.01-1500.00\"  <br />...  <br />\"14500.01-15000.00\"</strong></td>\n</tr>\n<tr>\n<td>purchasedAt</td>\n<td><strong>Mandatory</strong>  <br />(date)</td>\n<td>date of purchase stated on invoice  <br />Format: YYYY-MM-DD  <br />  <br /><strong>e.g. \"2025-09-15\"</strong></td>\n</tr>\n<tr>\n<td>partnerCode</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>partner ID to capture a third party involved in policy creation process (e.g. a store or branch where the contract is created)  <br />  <br /><strong>e.g.</strong> Test Code <strong>\"1234\"</strong></td>\n</tr>\n<tr>\n<td>distributionChannel</td>\n<td><strong>Optional</strong>  <br />(selection)</td>\n<td>mandatory only if applicable  <br />  <br /><strong>Possible values:  <br />“app”  <br />“ERP”</strong></td>\n</tr>\n<tr>\n<td>employeeId</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>ID of the employee who sold the insurance  <br />  <br /><strong>e.g. \"Mark\"</strong></td>\n</tr>\n<tr>\n<td>onlyAccessories</td>\n<td><strong>Mandatory</strong>  <br />(boolean)</td>\n<td>Specifies if the insured devices are hearing aids (with optional accessories) or only accessories  <br />  <br />If true, numberOfDevices must be \"3\"  <br />If false, it must be \"1\" or \"2\"  <br />  <br /><strong>Possible values:  <br />true  <br />false</strong></td>\n</tr>\n<tr>\n<td>numberOfDevices</td>\n<td><strong>Mandatory</strong>  <br />(select)</td>\n<td>An integer indicating the number of insured hearing aids  <br /><strong>Possible values:  <br />\"1\"</strong> (one hearing device with optional accessories)  <br /><strong>\"2\"</strong> (two hearing devices with optional accessories)  <br /><strong>\"3\"</strong> (only accessories are insured, number of accessories must not neccessarily be 3)</td>\n</tr>\n<tr>\n<td>accessoryModel1</td>\n<td><strong>Mandatory/Optional</strong>  <br />(string)</td>\n<td>model of the customer's first accessory  <br />  <br />If \"onlyAcessories\" is true, \"accessoryModel1\" is mandatory  <br />  <br /><strong>e.g. \"modeltest1\"</strong></td>\n</tr>\n<tr>\n<td>accessoryModel2</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>model of the customer's second accessory  <br />  <br /><strong>e.g. \"modeltest2\"</strong></td>\n</tr>\n<tr>\n<td>accessoryModel3</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>model of the customer's third accessory  <br />  <br /><strong>e.g. \"modeltest3\"</strong></td>\n</tr>\n<tr>\n<td>accessoryBrand1</td>\n<td><strong>Mandatory/Optional</strong>  <br />(string)</td>\n<td>brand of the customer's first acessory  <br />  <br />If \"onlyAcessories\" is true, \"accessoryBrand1\" must be mandatory  <br />  <br /><strong>e.g. \"brandtest1\"</strong></td>\n</tr>\n<tr>\n<td>accessoryBrand2</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>brand of the customer's second acessory  <br />  <br /><strong>e.g. \"brandtest2\"</strong></td>\n</tr>\n<tr>\n<td>accessoryBrand3</td>\n<td><strong>Optional</strong>  <br />(string)</td>\n<td>brand of the customer's thrid acessory  <br />  <br /><strong>e.g. \"brandtest3\"</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Other</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Mandatory / Optional</th>\n<th>Description and values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>package</td>\n<td><strong>Mandatory</strong>  <br />(string)</td>\n<td>Type of coverage selected from a set of options  <br />  <br /><strong>Possible values:  <br />\"verlustschutz\"  <br />\"komplettschutz\"  <br />\"komfortschutz\"</strong></td>\n</tr>\n<tr>\n<td>addons</td>\n<td><strong>Mandatory</strong></td>\n<td>For this product, no addons are available.  <br />Must be an empty array.</td>\n</tr>\n</tbody>\n</table>\n</div><p>The policy creation response will also return the <code>requestData</code> object which contains all the data that was given by the user during the policy creation and the <code>quote</code> object which contains all the quotation calculations.</p>\n","urlObject":{"path":["v2","policies"],"host":["https://api.sandbox.alteos.com"],"query":[{"disabled":true,"description":{"content":"<p>Coverage period of the insurance.</p>\n","type":"text/plain"},"key":"duration","value":""},{"disabled":true,"description":{"content":"<p>Date of purchase of the eBike. Must not be older than 6 months before the insurance starting date.</p>\n","type":"text/plain"},"key":"purchasedAt","value":""}],"variable":[]}},"response":[{"id":"5e3be584-afa1-4486-9ec6-2b988e34411a","name":"Successful Creation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"productName\": \"hoerschutz-erp-2023\",\n\t\"customer\": {\n\t\t\"email\": \"test@alteos.com\",\n\t\t\"firstName\": \"Marta\",\n\t  \t\"lastName\": \"Musterfrau\",\n\t  \t\"phone\": \"0123456789\",\n\t\t\"values\": {\n\t    \t\"salutation\": \"Herr\",\n\t    \t\"addressStreet\": \"Teststr.\",\n\t\t\t\"addressHouseNumber\": \"42\",\n\t\t\t\"addressPlz\": \"12345\",\n\t\t\t\"addressCity\": \"Berlin\",\n            \"dateOfBirth\": \"1992-02-26\"\n\t\t}\n\t},\n\t\"values\": {\n        \"paymentSchedule\": \"oneTime\",\n\t\t\"healthInsuranceType\": \"public\",\n\t\t\"numberOfDevices\": \"2\",\n        \"onlyAccessories\":false,\n        \"model1\":\"ModelTesting1\",\n        \"brand1\":\"BrandTesting1\",\n        \"model2\":\"ModelTestin2\",\n        \"brand2\":\"BrandTesting2\",\n        \"serialNum1\":\"123456789\",\n        \"serialNum2\":\"987654321\",\n        \"accessoryModel1\":\"modeltest1\",\n        \"accessoryBrand1\":\"brandtest1\",\n        \"itemValue\": \"1500.01-2000.00\",\n        \"purchasedAt\": \"2025-09-05\",\n        \"employeeId\": \"Mark\",\n        \"partnerCode\":\"1234\",\n        \"distributionChannel\": \"ERP\"\n\t},\n    \"package\": \"premiumschutz\",\n    \"addons\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.alteos.com/v2/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 15:11:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4b-OXlCtHbPQPog4dawXHKSg+H6aM0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"policyId\": \"0881de16-f115-4c3f-b6b2-ad9177bc5b0c\",\n    \"prettyId\": \"DYD2NE\",\n    \"requestData\": {\n        \"productName\": \"hoerschutz-erp-2023\",\n        \"customer\": {\n            \"email\": \"test@alteos.com\",\n            \"firstName\": \"Marta\",\n            \"lastName\": \"Musterfrau\",\n            \"phone\": \"0123456789\",\n            \"values\": {\n                \"salutation\": \"Herr\",\n                \"addressStreet\": \"Teststr.\",\n                \"addressHouseNumber\": \"42\",\n                \"addressPlz\": \"12345\",\n                \"addressCity\": \"Berlin\",\n                \"dateOfBirth\": \"1992-02-26\"\n            }\n        },\n        \"values\": {\n            \"paymentSchedule\": \"oneTime\",\n            \"healthInsuranceType\": \"public\",\n            \"numberOfDevices\": \"2\",\n            \"onlyAccessories\": false,\n            \"model1\": \"ModelTesting1\",\n            \"brand1\": \"BrandTesting1\",\n            \"model2\": \"ModelTestin2\",\n            \"brand2\": \"BrandTesting2\",\n            \"serialNum1\": \"123456789\",\n            \"serialNum2\": \"987654321\",\n            \"accessoryModel1\": \"modeltest1\",\n            \"accessoryBrand1\": \"brandtest1\",\n            \"itemValue\": \"1500.01-2000.00\",\n            \"purchasedAt\": \"2025-09-05\",\n            \"employeeId\": \"Mark\",\n            \"partnerCode\": \"1234\",\n            \"distributionChannel\": \"ERP\"\n        },\n        \"package\": \"premiumschutz\",\n        \"addons\": []\n    },\n    \"quote\": {\n        \"gross\": 404.95,\n        \"premium\": 340.29,\n        \"taxes\": 64.66,\n        \"premiumExclDiscounts\": 340.29,\n        \"taxesExclDiscounts\": 64.66,\n        \"grossExclDiscounts\": 404.95,\n        \"addons\": [],\n        \"package\": {\n            \"name\": \"premiumschutz\",\n            \"payments\": []\n        }\n    },\n    \"draftInvoice\": {\n        \"invoiceId\": \"in_5b0c_HxTIx2JdIk9SG\",\n        \"paymentOrderId\": \"ipo_k9SG_wWhbNfEHkdiW\"\n    }\n}"}],"_postman_id":"950a5761-a5d2-4770-83b5-b517e1cce5c5"}],"id":"1737bece-0736-45eb-8516-d05e132e96c7","_postman_id":"1737bece-0736-45eb-8516-d05e132e96c7","description":""},{"name":"Alteos Legacy Authentication (Deprecated)","item":[{"name":"Auth on Behalf","item":[{"name":"Start ","id":"8112f6da-c5b8-4543-a5c3-d0fa3a81a5c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{apiKey}}","type":"text"},{"key":"Authorization","value":"Bearer {{accessToken}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"username@username.com\",\n\t\"phone\": \"49123456789\"\n}"},"url":"https://api.sandbox.alteos.com/v1/auth-on-behalf/start","description":"<p>Get verification code to the provided email. On a success, a 200 response will be received with verification code in the body.</p>\n","urlObject":{"path":["v1","auth-on-behalf","start"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"b1d58a60-79ac-4577-acae-1283f2be9e5d","name":"Successful start (with help of email)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{apiKey}}","type":"text"},{"key":"Authorization","value":"Bearer {{accessToken}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"someCustomerEmail@gmail.com\"\n}"},"url":"https://api.sandbox.alteos.com/v1/auth-on-behalf/start"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"verificationCode\": \"296cf128-1e85-4966-9b33-fb556e4db6fe\"\n}"},{"id":"fc224b8a-13c1-4259-b3d8-df50d0ba945c","name":"Successful Start (with phone number)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{apiKey}}","type":"text"},{"key":"Authorization","value":"Bearer {{accessToken}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"body":{"mode":"raw","raw":"{\n\t\"phone\": \"49123456789\"\n}"},"url":"https://api.sandbox.alteos.com/v1/auth-on-behalf/start"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"verificationCode\": \"296cf128-1e85-4966-9b33-fb556e4db6fe\"\n}"}],"_postman_id":"8112f6da-c5b8-4543-a5c3-d0fa3a81a5c1"},{"name":"Verify Code","id":"78516a05-4870-486f-9f73-b54bdca698d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"{{apiKey}}"}],"body":{"mode":"raw","raw":"{\n\t\"verificationCode\": \"8a7f71da-c541-47c0-8bac-338f465b8c4f\"\n}"},"url":"https://api.sandbox.alteos.com/v1/auth-on-behalf/verify-code","description":"<p>Verify code and get auth tokens in response body.</p>\n","urlObject":{"path":["v1","auth-on-behalf","verify-code"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"37efe389-c68b-4cbc-bce5-b95df8f06f9e","name":"Successful Verification","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"{{apiKey}}"}],"body":{"mode":"raw","raw":"{\n\t\"verificationCode\": \"8a7f71da-c541-47c0-8bac-338f465b8c4f\"\n}"},"url":"https://api.sandbox.alteos.com/v1/auth-on-behalf/verify-code"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"access\": \"access_token\",\n    \"renew\": \"renew_token\"\n}"}],"_postman_id":"78516a05-4870-486f-9f73-b54bdca698d0"}],"id":"8e3a52c8-5e93-4142-bc8e-a6b7845342c3","description":"<p>This section covers all endpoints for authentication on behalf of customers. For customer identification can be used email or phone.</p>\n","event":[{"listen":"prerequest","script":{"id":"604234fb-de80-4eb5-8c63-6b8d79978cad","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"943a12e2-0518-451f-9930-8b9ed7ba8ba7","type":"text/javascript","exec":[""]}}],"_postman_id":"8e3a52c8-5e93-4142-bc8e-a6b7845342c3"},{"name":"Alteos Passwordless","item":[{"name":"Start ","id":"d149cfbf-3a41-400d-893c-0ebda0d25993","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"username@username.com\",\n\t\"redirectUri\": \"https://test.de\"\n}"},"url":"https://api.sandbox.alteos.com/v1/passwordless/start","description":"<p>Send email with <em>login-link</em> to the provided email. On a success, a 200 response will be received with no additional information in the body. The link will be received in the email provided.</p>\n","urlObject":{"path":["v1","passwordless","start"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"e5dfacd1-0858-454f-b5df-a47cd051cdf3","name":"Successful Start ","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"customerEmail@test.com\",\n\t\"redirectUri\": \"https://test.de\"\n}"},"url":"https://api.sandbox.alteos.com/v1/passwordless/start"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{}"}],"_postman_id":"d149cfbf-3a41-400d-893c-0ebda0d25993"},{"name":"VerifyRedirect","id":"dbca29a8-142f-4375-916a-e94c691db294","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"verificationCode\": \"8a7f71da-c541-47c0-8bac-338f465b8c4f\"\n}"},"url":"https://api.sandbox.alteos.com/v1/passwordless/verify","description":"<p>Verify <em>login-link</em> data.</p>\n","urlObject":{"path":["v1","passwordless","verify"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"718c3a50-f6eb-4ddf-91c3-a73662b1b71f","name":"Successful Verification","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"verificationCode\": \"8a7f71da-c541-47c0-8bac-338f465b8c4f\",\n}"},"url":"https://api.sandbox.alteos.com/v1/passwordless/verify"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"access\": \"access_token\",\n    \"redirectURI\": \"https://test.de\",\n    \"renew\": \"renew_token\"\n}"}],"_postman_id":"dbca29a8-142f-4375-916a-e94c691db294"},{"name":"New Request","id":"5491e8c4-74c0-4e47-b7be-cbb172e60242","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"5491e8c4-74c0-4e47-b7be-cbb172e60242"}],"id":"8bce0c95-73aa-474d-9028-61df5616e7c9","description":"<p>This section covers all endpoints for authentication through <em>login-link</em> send via email.</p>\n","event":[{"listen":"prerequest","script":{"id":"8e81c26f-7850-4dad-8804-b16c251d2778","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"ce4488b7-3a69-41a1-a326-12d93558b54c","type":"text/javascript","exec":[""]}}],"_postman_id":"8bce0c95-73aa-474d-9028-61df5616e7c9"},{"name":"Authenticate","event":[{"listen":"test","script":{"id":"de6c8e1a-6782-4095-af05-e2e857004762","exec":["var jsonData = JSON.parse(responseBody);","","postman.setEnvironmentVariable(\"accessToken\", jsonData.access);","","//***AUTOMATED TESTS***","","//HAPPY PATH","tests[\"Status code is 200\"] = responseCode.code === 200;","","tests[\"Check if access variable is present\"] = responseBody.has(\"access\");","","tests[\"Check if renew variable is present\"] = responseBody.has(\"renew\");","","pm.test(\"Check if access token is not empty\", function () {","    var jsonData = pm.response.json();","    pm.expect(jsonData.access).to.not.eql(null);","});","","pm.test(\"Check if renew token is not empty\", function () {","    var jsonData = pm.response.json();","    pm.expect(jsonData.renew).to.not.eql(null);","});",""],"type":"text/javascript"}}],"id":"428e482b-813d-4b70-b9f8-be162ec9b588","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-API-Key","value":"{{apiKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"username\": \"username@username.com\",\n    \"password\": \"!password123\"\n}"},"url":"https://api.sandbox.alteos.com/v1/authentication","description":"<p>Used for authentication to the rest of the system - after providing correct username and password, two types of tokens are returned:</p>\n<ul>\n<li><em>access token</em> is used for authentication and needs to be provided in <code>Authorization</code> header in <code>Bearer &lt;token&gt;</code> format</li>\n<li><em>renew token</em> is used for refreshing expired access tokens.</li>\n</ul>\n","urlObject":{"path":["v1","authentication"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"7b7f67fa-1803-45fd-85dd-4c0c8ff71b04","name":"Invalid Credentials ","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-api-key","value":"{{apiKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"username\": \"username@username.com\",\n    \"password\": \"!password123\"\n}"},"url":"https://api.sandbox.alteos.com/auth/v1/authentication"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 14:09:42 GMT"},{"key":"Content-Type","value":"application/vnd.goa.error"},{"key":"Content-Length","value":"3"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"incorrect username and password\"\n}"},{"id":"b95e6739-140b-4294-a39c-e518bb92cec0","name":"Authenticate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-api-key","value":"{{apiKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"username\": \"username@username.com\",\n    \"password\": \"!password123\"\n}"},"url":"https://api.sandbox.alteos.com/auth/v1/authentication"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"content-length","value":"1189","name":"content-length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"content-type","value":"application/com.alteos.auth.token+json","name":"content-type","description":"The mime type of this content"},{"key":"date","value":"Mon, 24 Sep 2018 07:35:39 GMT","name":"date","description":"The date and time that the message was sent"},{"key":"server","value":"envoy","name":"server","description":"A name for the server"},{"key":"x-envoy-upstream-service-time","value":"379","name":"x-envoy-upstream-service-time","description":"Custom header"}],"cookie":[],"responseTime":null,"body":"{\"access\":\"...\",\n\"renew\":\"...\",\n\t\"email\":\"username@username.com\",\n\t\"role\": \"...\",\n\t\"expiresIn\":86400\n}\n"}],"_postman_id":"428e482b-813d-4b70-b9f8-be162ec9b588"},{"name":"Renew","event":[{"listen":"test","script":{"id":"9554bed2-5ea1-49a8-827d-f2a19c655cb6","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","tests[\"Check if access variable is present\"] = responseBody.has(\"access\");","","tests[\"Check if renew variable is present\"] = responseBody.has(\"renew\");","","pm.test(\"Check if access token is not empty\", function () {","    var jsonData = pm.response.json();","    pm.expect(jsonData.access).to.not.eql(null);","});","","pm.test(\"Check if renew token is not empty\", function () {","    var jsonData = pm.response.json();","    pm.expect(jsonData.renew).to.not.eql(null);","});",""],"type":"text/javascript"}}],"id":"c1910b6d-8dfe-4383-bf6d-9527434ccf42","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-API-Key","value":"{{apiKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"access\": \"...\",\n\t\"renew\": \"...\"\n}"},"url":"https://api.sandbox.alteos.com/v1/authentication/renew","description":"<p>Used to renew authentication. Pass both access and renew token to receive a new pair of tokens.</p>\n","urlObject":{"path":["v1","authentication","renew"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"5619dbfc-6447-4fb8-94cf-1ab4ff15521f","name":"Successful Renew","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-api-key","value":"{{apiKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"access\": \"...\",\n\t\"renew\": \"...\"\n}"},"url":"https://api.sandbox.alteos.com/auth/v1/authentication/renew"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 14:24:01 GMT"},{"key":"Content-Type","value":"application/com.alteos.auth.token+json"},{"key":"Content-Length","value":"1209"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"access\": \"...\",\n    \"renew\": \"...\"\n}"},{"id":"a36b2dec-ba6c-4d55-a817-333a46bcd983","name":"Invalid Renew Token","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-api-key","value":"{{apiKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"access\": \"...\",\n\t\"renew\": \"...\"\n}"},"url":"https://api.sandbox.alteos.com/auth/v1/authentication/renew"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"raw","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Mon, 14 Jan 2019 14:24:23 GMT"},{"key":"Content-Type","value":"application/vnd.goa.error"},{"key":"Content-Length","value":"25"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{}"}],"_postman_id":"c1910b6d-8dfe-4383-bf6d-9527434ccf42"},{"name":"Issue token: Browser-to-Server","id":"dfee47d3-def6-47b8-b279-83f4697187f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"},{"key":"Date","type":"text","value":"{{HttpDateHeader}}"},{"key":"X-App-Key","type":"text","value":"{{AlteosAppKey}}"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","type":"text","value":"password"},{"key":"client_id","type":"text","value":"{{AlteosAccessKeyId}}"},{"key":"client_secret","type":"text","value":""},{"key":"username","type":"text","value":"{{AccountEmail}}"},{"key":"password","type":"text","value":"{{AccountPassword}}"}]},"url":"https://api.sandbox.alteos.com/v1/authentication/token","description":"<p>In RFC 6749 OAuth 2.0 (Resource Owner Password Credentials Grant) flow, required issue access token request parameters are\n<code>grant_type</code> (set to <code>\"password\"</code>, a RFC 6749 OAuth 2.0 constant), <code>client_id</code> (set to <strong>AlteosAccessKeyId</strong>), <code>client_secret</code> (set to empty string, as <strong>AlteosAccessKey Secret</strong> MUST NOT be exposed to browser environment), <code>username</code> (set to email address of an account signing in), <code>password</code> (set to password of an account logging in).</p>\n","urlObject":{"path":["v1","authentication","token"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[]}},"response":[{"id":"5fb154c4-ea9f-4d27-9b9b-0a237726b88a","name":"Issue token: Browser-to-Server","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"Date","value":"Mon, 23 Sep 2019 14:48:13 GMT","type":"text"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"password","type":"text"},{"key":"client_id","value":"0e1b11ec-2360-408a-aebe-9f86c7053b94","type":"text"},{"key":"client_secret","value":"","type":"text"},{"key":"username","value":"user@example.com","type":"text"},{"key":"password","value":"examplepassword123!","type":"text"}]},"url":"https://api.sandbox.alteos.com/v1/authentication/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"access_token\": \"exampleMsMuTMOcmeSxD5evQp9gbbl+kFJS58Govz10=\",\n  \"refresh_token\": \"examplexu8PMtohHuP2vphpio+rUvSFHiYqpooEbgBk=\",\n  \"token_type\": \"Alteos/v1\",\n  \"expires_in\": 86400\n}"}],"_postman_id":"dfee47d3-def6-47b8-b279-83f4697187f0"}],"id":"58f75500-ba6d-4ab2-a5b9-1e493ee9db25","event":[{"listen":"prerequest","script":{"id":"7ed73d11-25ac-4cf1-91f6-467bac27baf9","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"830204cf-a453-467e-8c96-2e04be8c65c5","type":"text/javascript","exec":[""]}}],"_postman_id":"58f75500-ba6d-4ab2-a5b9-1e493ee9db25","description":""},{"name":"eScooter Private Liability Product","id":"909f786b-524f-44ef-ad58-c005bf643661","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","type":"text","value":"{{appKey}}"}],"body":{"mode":"raw","raw":"{\n    \"claimType\": \"Sachschäden ohne Beteiligung Dritter\",\n    \"answers\": {\n        \"G1Q1\": \"Frau\",\n        \"G1Q2\": \"FirstName\",\n        \"G1Q3\": \"Lastname\",\n        \"G1Q4\": \"Main\",\n        \"G1Q5\": \"2\",\n        \"G1Q6\": \"10999\",\n        \"G1Q7\": \"Berlin\",\n        \"G1Q8\": \"000000099\",\n        \"G1Q9\": \"username@username.com\",\n        \"G4Q1\": \"2019-04-11\",\n        \"G4Q2\": \"02:34\",\n        \"G4Q3\": \"Street\",\n        \"G4Q4\": \"12\",\n        \"G4Q5\": \"10991\",\n        \"G4Q6\": \"Berlin\",\n        \"G4Q7\": \"Description\",\n        \"G4Q8\": \"1000\",\n        \"G4Q10\": \"Ja\"\n    },\n    \"claimedAt\": \"2005-10-31\"\n}"},"url":"https://api.sandbox.alteos.com/v1/policies/:policyId/claim","description":"<p>Use this API to create a claim record for a claim type, information of the claim incident and the claim date; for the eScooter Private Liability product.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Claims Questions</th>\n<th>Claims Question Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>G1Q1</td>\n<td>Salutation</td>\n</tr>\n<tr>\n<td>G1Q2</td>\n<td>First Name (user of the eScooter)</td>\n</tr>\n<tr>\n<td>G1Q3</td>\n<td>Last Name (user of the eScooter)</td>\n</tr>\n<tr>\n<td>G1Q4</td>\n<td>Street Name (user of the eScooter)</td>\n</tr>\n<tr>\n<td>G1Q5</td>\n<td>House Number (user of the eScooter)</td>\n</tr>\n<tr>\n<td>G1Q6</td>\n<td>PLZ (user of the eScooter)</td>\n</tr>\n<tr>\n<td>G1Q7</td>\n<td>City(user of the eScooter)</td>\n</tr>\n<tr>\n<td>G1Q8</td>\n<td>Phone number (user of the eScooter)</td>\n</tr>\n<tr>\n<td>G1Q9</td>\n<td>Email (user of the eScooter)</td>\n</tr>\n<tr>\n<td>G4Q1</td>\n<td>Accident Date</td>\n</tr>\n<tr>\n<td>G4Q2</td>\n<td>Accident Time</td>\n</tr>\n<tr>\n<td>G4Q3</td>\n<td>Accident Street Name</td>\n</tr>\n<tr>\n<td>G4Q4</td>\n<td>Accident House Number</td>\n</tr>\n<tr>\n<td>G4Q5</td>\n<td>Accident PLZ</td>\n</tr>\n<tr>\n<td>G4Q6</td>\n<td>Accident City</td>\n</tr>\n<tr>\n<td>G4Q7</td>\n<td>Accident Description</td>\n</tr>\n<tr>\n<td>G4Q8</td>\n<td>Accident Loss in Euros</td>\n</tr>\n<tr>\n<td>G4Q10</td>\n<td>Police report filed?</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","policies",":policyId","claim"],"host":["https://api.sandbox.alteos.com"],"query":[],"variable":[{"type":"string","value":"{{policyId}}","key":"policyId"}]}},"response":[{"id":"5da00a85-90cf-4fa7-a309-2dfd2ede87bc","name":"Create Claim","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{authorizationHeader}}"},{"key":"X-App-Key","value":"{{appKey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"claimType\": \"Sachschäden ohne Beteiligung Dritter\",\n    \"answers\": {\n        \"G1Q1\": \"Frau\",\n        \"G1Q2\": \"FirstName\",\n        \"G1Q3\": \"Lastname\",\n        \"G1Q4\": \"Main\",\n        \"G1Q5\": \"2\",\n        \"G1Q6\": \"10999\",\n        \"G1Q7\": \"Berlin\",\n        \"G1Q8\": \"000000099\",\n        \"G1Q9\": \"username@username.com\",\n        \"G4Q1\": \"2019-04-11\",\n        \"G4Q2\": \"02:34\",\n        \"G4Q3\": \"Street\",\n        \"G4Q4\": \"12\",\n        \"G4Q5\": \"10991\",\n        \"G4Q6\": \"Berlin\",\n        \"G4Q7\": \"Description\",\n        \"G4Q8\": \"1000\",\n        \"G4Q10\": \"Ja\"\n    },\n    \"claimedAt\": \"2005-10-31\"\n}"},"url":{"raw":"https://api.sandbox.alteos.com/v1/policies/:policyId/claim","host":["https://api.sandbox.alteos.com"],"path":["v1","policies",":policyId","claim"],"variable":[{"key":"policyId","value":"598d0eac-5418-4770-91b5-5f506ca8a42f"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"d4d2b9b3-2824-45a6-bb8a-ed66c2fd0bf3\",\n    \"prettyId\": \"39BGRG\",\n    \"policyId\": \"b5063ef5-3940-40f3-b63f-6d497389092e\",\n    \"status\": \"created\",\n    \"claimType\": \"Sachschäden ohne Beteiligung Dritter\",\n    \"answers\": {\n        \"G1Q1\": \"Frau\",\n        \"G1Q2\": \"FirstName\",\n        \"G1Q3\": \"Lastname\",\n        \"G1Q4\": \"Main\",\n        \"G1Q5\": \"2\",\n        \"G1Q6\": \"10999\",\n        \"G1Q7\": \"Berlin\",\n        \"G1Q8\": \"000000099\",\n        \"G1Q9\": \"username@username.com\",\n        \"G4Q1\": \"2019-04-11\",\n        \"G4Q2\": \"02:34\",\n        \"G4Q3\": \"Street\",\n        \"G4Q4\": \"12\",\n        \"G4Q5\": \"10991\",\n        \"G4Q6\": \"Berlin\",\n        \"G4Q7\": \"Description\",\n        \"G4Q8\": \"1000\",\n        \"G4Q10\": \"Ja\"\n    },\n    \"claimedAt\": \"2005-10-31T00:00:00.000Z\",\n    \"updatedAt\": \"2019-09-23T14:37:39.856Z\"\n}"}],"_postman_id":"909f786b-524f-44ef-ad58-c005bf643661"}],"id":"c37155cd-9fb6-4d75-a5e0-71a833547632","_postman_id":"c37155cd-9fb6-4d75-a5e0-71a833547632","description":""}],"event":[{"listen":"prerequest","script":{"id":"2270473c-5b09-4f29-844f-10fba790497d","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"8db9046d-a9db-4502-be8e-bea48835044f","type":"text/javascript","exec":[""]}}],"variable":[{"key":"apiDomain","value":"https://api.sandbox.alteos.com","type":"default"}]}