{"info":{"_postman_id":"58ed9ff0-2f2c-4849-9b03-22f63caa0ce7","name":"Turtlefin OneAPI Platform (v1 - 1.0.0)","description":"<html><head></head><body><p><strong>Welcome to Turtlefin OneAPI Platform - Embed insurance purchase in your regular e-commerce journey.</strong></p>\n<p> Turtlefin OneAPI is the platform that delivers on our vision to launch your digital insurance experience in 7 days.\nPlease <b><a href=\"https://developers.turtlefin.com/contact-us\">Contact us</a></b> for API updates.                          </p>\n<p> This document describes the API resources available to promote Turtlefin OneAPI Platform insurance products on your own website.</p>\n<p> The Turtlefin OneAPI Platform API adheres to the principles of a REST architectural style. It is user-friendly: it is predictive, with logically organized resource-oriented URLs, and it uses HTTP response codes to indicate any errors (explained under the Error section).</p>\n<p> We will offer a sandbox environment [Developer Playground] that you can use to test the Turtlefin OneAPI Platform API and its integration. </p>\n<h1 id=\"authentication\">Authentication</h1>\n<p> All HTTP requests sent to the Turtlefin OneAPI Platform API must be signed with a special signature to be fully authenticated, and must also be provided in the <code>Authorization</code> header of the HTTP request.  To do this, you can obtain an API key and a secret signing key from Self Sign up on <b><a href=\"https://developers.turtlefin.com/login\">Developer Portal</a></b>.</p>\n<p> Example [ javascript code ]:<b> </b></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">\nvar myHeaders = new Headers(); myHeaders.append(\"Authorization\", \"Bearer [YOUR_AUTH_TOKEN]\"); \n\nvar requestOptions = { method: 'GET', headers: myHeaders, redirect: 'follow' }; \n\nfetch(\"https://api.eval.mintpro.in/v1/products/private-car/lookups/rto?search=mh6\", requestOptions) \n.then(response =&gt; response.text())  \n.then(result =&gt; console.log(result))  \n.catch(error =&gt; console.log('error', error)); \n\n</code></pre>\n  \n\n \n\n<h1 id=\"error-codes\">Error Codes</h1>\n<p>Turtlefin OneAPI Platform uses conventional HTTP response codes to indicate the success or failure of an API request. \nError codes ranging from 200 to 299 indicate a successful operation. \nError codes ranging from 400 to 499 represent various error codes. \nErrors that can be resolved programmatically will result in an error code that briefly explains the type of error or reason for the error. \n5xx codes indicate an error within the Turtlefin OneAPI Platform servers, which will be minimized on our end. In the unlikely event of a 5xx error, our engineering team will automatically receive a report and will fix the issue as fast as possible. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>200 - OK</td>\n<td>Everything worked as expected.</td>\n</tr>\n<tr>\n<td>201 - Created</td>\n<td>The request has been fulfilled and has resulted in one or more new resources being created.</td>\n</tr>\n<tr>\n<td>400 - Bad Request</td>\n<td>The request was not accepted, often due to the wrong format of the request.</td>\n</tr>\n<tr>\n<td>401 - Unauthorized</td>\n<td>No valid API key was provided.</td>\n</tr>\n<tr>\n<td>402 - Request Failed</td>\n<td>The parameters were valid, but the request failed.</td>\n</tr>\n<tr>\n<td>404 - Not Found</td>\n<td>The requested resource doesn't exist.</td>\n</tr>\n<tr>\n<td>409 - Conflict</td>\n<td>The request conflicts with another request, perhaps due to the usage of the same idempotency key.</td>\n</tr>\n<tr>\n<td>422 - Unprocessable Entity</td>\n<td>Used mostly for validation or logical errors.</td>\n</tr>\n<tr>\n<td>429 - Too Many Requests</td>\n<td>Too many requests hit the API too quickly. We recommend an exponential back-off of your requests.</td>\n</tr>\n<tr>\n<td>500, 502, 503, 504 - Server Errors</td>\n<td>Something went wrong on Turtlefin OneAPI Platforms's end. (These are rare, we promise!)</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"workflow\">Workflow</h1>\n<p>To issue policy online, insurance product has multiple stages like generate quotes, create proposal etc. Below is the sample workflow for the motor insurance product:</p>\n<p><img src=\"https://turtleone-devportal.apigee.io/files/motor-workflow.png\" alt=\"motor-workflow\"></p>\n<p>TurtleFin OneAPI helps developer to build the complex workflows for the seamless integration with 30+ insurers...</p>\n<h1 id=\"explore-our-apis\">Explore our APIs</h1>\n<p> Below are the details of each API &amp; schema [object] with the detail information like <b> Data Types, fields, ENUMs, Request/Response Examples </b> etc.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Authentication","slug":"authentication"},{"content":"Error Codes","slug":"error-codes"},{"content":"Workflow","slug":"workflow"},{"content":"Explore our APIs","slug":"explore-our-apis"}],"owner":"861564","collectionId":"58ed9ff0-2f2c-4849-9b03-22f63caa0ce7","publishedId":"UVC6imTD","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"009E9E"},"publishDate":"2021-12-08T12:16:34.000Z"},"item":[{"name":"Authentication APIs","item":[{"name":"Issue Token","id":"d43b9528-ed01-458e-921b-bb2d7b6cd233","request":{"auth":{"type":"basic","basic":{"username":"<username>","password":"<password>"},"isInherited":false},"method":"POST","header":[{"description":"<p>(Required) API Key to issue token</p>\n","key":"x-api-key","value":"<string>"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"entityIdentifier\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.eval.mintpro.in/v1/token/issue","description":"<p>You have to pass <b>API Key</b> and <b>API Secret</b> to generate the token.</p>\n<p> This is based on <b>Basic Auth</b> type of Authorization where <b>API Key will be passed to Username</b> &amp; <b>API Secret as an Password.</b></p>\n<p> For this API, header check is also enabled for API key, please pass Key in <b>x-api-key</b> header.</p>\n<p> In response, you will get <b>access_token</b>, used this value as an <b>Authorization token</b>.</p>\n<p> Please use default <b>Authorization tab</b> for same.</p>\n","urlObject":{"path":["token","issue"],"host":["https://api.eval.mintpro.in/v1"],"query":[],"variable":[]}},"response":[{"id":"90945ac0-74be-4e89-be9f-a94a947258bb","name":"successful operation","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"},{"description":"(Required) API Key to issue token","key":"x-api-key","value":"<string>"}],"body":{"mode":"raw","raw":"{\n    \"entityIdentifier\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.eval.mintpro.in/v1/token/issue"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n  \"accessToken\": \"<string>\",\n  \"tokenType\": \"<string>\",\n  \"apiProductList\": \"<string>\",\n  \"issuedAt\": \"<string>\",\n  \"expiresIn\": \"<string>\"\n },\n \"meta\": {\n  \"msg\": \"<string>\",\n  \"errorCode\": \"<integer>\",\n  \"error\": false\n },\n \"timestamp\": \"<datetime>\"\n}"},{"id":"91a597db-4e56-4d25-93e4-2db0cf8ca10d","name":"Invalid resource supplied","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"},{"description":"(Required) API Key to issue token","key":"x-api-key","value":"<string>"}],"body":{"mode":"raw","raw":"{\n    \"entityIdentifier\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.eval.mintpro.in/v1/token/issue"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"msg\": \"<string>\",\n \"errorCode\": \"<integer>\",\n \"error\": false\n}"},{"id":"41de2778-711f-48a3-b878-73587fd43b36","name":"resource not found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"},{"description":"(Required) API Key to issue token","key":"x-api-key","value":"<string>"}],"body":{"mode":"raw","raw":"{\n    \"entityIdentifier\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.eval.mintpro.in/v1/token/issue"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"98de5c19-bf1b-4a58-b265-dca0ceb38ce2","name":"Internal Server Error","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"},{"description":"(Required) API Key to issue token","key":"x-api-key","value":"<string>"}],"body":{"mode":"raw","raw":"{\n    \"entityIdentifier\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.eval.mintpro.in/v1/token/issue"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"d43b9528-ed01-458e-921b-bb2d7b6cd233"}],"id":"20efab68-41ba-4adc-a81e-8f0118a6b0e3","description":"<p>Authentication tokens are mandatory to access the private APIs. Below section will guide you to generate the authentication token.\nSelf Sign up on <b><a href=\"https://developers.turtlefin.com/login\">Developer Portal</a></b> to get API Key &amp; Secret to request token from Auth API.\n<br /> \n<br /> \n<img src=\"https://turtleone-devportal.apigee.io/files/auth-api-workflow.png\" alt=\"Auth workflow\" /> </p>\n","event":[{"listen":"prerequest","script":{"id":"e7070dcf-5cf2-4e43-b541-18fe1fb03a92","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f84f6c3c-5830-44eb-a252-a67f1151d472","type":"text/javascript","exec":[""]}}],"_postman_id":"20efab68-41ba-4adc-a81e-8f0118a6b0e3"},{"name":"Lookup APIs","item":[{"name":"Get Master Details By Resource Name","id":"c0c88c25-6c96-49f4-a806-a23c2649a3c1","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"url":"https://api.eval.mintpro.in/v1/products/:productName/lookups/:resourceName?search=mh6","urlObject":{"path":["products",":productName","lookups",":resourceName"],"host":["https://api.eval.mintpro.in/v1"],"query":[{"description":{"content":"<p>(Required) <b>url-encoded query parameters. E.g.</b>  </p><table><tr> <td><b>Resource</b></td> <td><b>Model</b></td> <td><b>Example</b></td></tr><tr> <td>rto</td> <td>-</td> <td>mh6</td></tr><tr> <td>vehicalMakeModel</td> <td>-</td> <td>Hyunda</td></tr><tr> <td>vehicleVariant</td> <td>make (string),<br /> model (string)<br /><br />OR<br /><br /> makeModelId (string)<br /><br /></td> <td>make=Hyundai&amp;model=i20<br /><br />OR<br /><br />makeModelId=155<br /><br />Get this ID from vehicalMakeModel resource call<br /><br /></td></tr> <tr> <td>city</td><td>key (string),<br /> rtoCode (string),<br /> insurer (string)<br /><br /></td><td>key=Mumbai&amp;rtoCode=MH01&amp;insurer=hdfc</td></tr></table><p></p>\n","type":"text/plain"},"key":"search","value":"mh6"}],"variable":[{"id":"8bb2cd98-f10a-4cd7-aa7d-5784be41d5ca","description":{"content":"<p>(Required) The Product name</p>\n<ul>\n<li><code>private-car</code> - Private Car</li>\n<li><code>bike</code> - Bike </li>\n<li><code>personal-accident</code> - Personal Accident</li>\n</ul>\n","type":"text/plain"},"type":"any","value":"private-car","key":"productName"},{"id":"d2d2b1d2-9150-456f-bbfd-33507c5de16a","description":{"content":"<p>(Required) The resources that needs to be fetched.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"resourceName"}]}},"response":[{"id":"88924b03-364e-4bb9-b6b2-3df7da8517b9","name":"successful operation","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"(Required) Authorization token","key":"Authorization","value":"Bearer [YOUR_AUTH_TOKEN]"}],"url":{"raw":"https://api.eval.mintpro.in/v1/products/:productName/lookups/:resourceName?search=mh6","host":["https://api.eval.mintpro.in/v1"],"path":["products",":productName","lookups",":resourceName"],"query":[{"key":"search","value":"mh6"}],"variable":[{"key":"productName","value":"private-car","description":"(Required) The Product name\n  * `private-car` - Private Car\n  * `bike` - Bike \n  * `personal-accident` - Personal Accident\n"},{"key":"resourceName","value":"<string>","description":"(Required) The resources that needs to be fetched."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"data\": [\n  {\n   \"_id\": \"<string>\",\n   \"rtoCode\": \"<string>\",\n   \"city\": \"<string>\",\n   \"rtoPlate\": \"<string>\"\n  },\n  {\n   \"_id\": \"<string>\",\n   \"rtoCode\": \"<string>\",\n   \"city\": \"<string>\",\n   \"rtoPlate\": \"<string>\"\n  }\n ],\n \"meta\": {\n  \"msg\": \"<string>\",\n  \"errorCode\": \"<integer>\",\n  \"error\": false\n },\n \"timestamp\": \"<datetime>\"\n}"},{"id":"76ca4569-79c0-449a-ac93-1704d9b3f24e","name":"Invalid resource supplied","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"(Required) Authorization token","key":"Authorization","value":"Bearer [YOUR_AUTH_TOKEN]"}],"url":{"raw":"https://api.eval.mintpro.in/v1/products/:productName/lookups/:resourceName?search=mh6","host":["https://api.eval.mintpro.in/v1"],"path":["products",":productName","lookups",":resourceName"],"query":[{"key":"search","value":"mh6"}],"variable":[{"key":"productName","value":"private-car","description":"(Required) The Product name\n  * `private-car` - Private Car\n  * `bike` - Bike \n  * `personal-accident` - Personal Accident\n"},{"key":"resourceName","value":"<string>","description":"(Required) The resources that needs to be fetched."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"msg\": \"<string>\",\n \"errorCode\": \"<integer>\",\n \"error\": false\n}"},{"id":"a798fc9d-1575-4730-8cf8-53e84b8dabe3","name":"resource not found","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"(Required) Authorization token","key":"Authorization","value":"Bearer [YOUR_AUTH_TOKEN]"}],"url":{"raw":"https://api.eval.mintpro.in/v1/products/:productName/lookups/:resourceName?search=mh6","host":["https://api.eval.mintpro.in/v1"],"path":["products",":productName","lookups",":resourceName"],"query":[{"key":"search","value":"mh6"}],"variable":[{"key":"productName","value":"private-car","description":"(Required) The Product name\n  * `private-car` - Private Car\n  * `bike` - Bike \n  * `personal-accident` - Personal Accident\n"},{"key":"resourceName","value":"<string>","description":"(Required) The resources that needs to be fetched."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"df2030cc-c551-4987-a0f8-f60acc8cdf9c","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"(Required) Authorization token","key":"Authorization","value":"Bearer [YOUR_AUTH_TOKEN]"}],"url":{"raw":"https://api.eval.mintpro.in/v1/products/:productName/lookups/:resourceName?search=mh6","host":["https://api.eval.mintpro.in/v1"],"path":["products",":productName","lookups",":resourceName"],"query":[{"key":"search","value":"mh6"}],"variable":[{"key":"productName","value":"private-car","description":"(Required) The Product name\n  * `private-car` - Private Car\n  * `bike` - Bike \n  * `personal-accident` - Personal Accident\n"},{"key":"resourceName","value":"<string>","description":"(Required) The resources that needs to be fetched."}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"c0c88c25-6c96-49f4-a806-a23c2649a3c1"}],"id":"8a0a11f1-8337-4e48-a11d-fe573a344669","description":"<p>This APIs are used to fetch data for RTO, Vehicle make model, Vehicle variants and city list from master. The API mentioned below will help you to perform the operations on master resource.</p>\n","event":[{"listen":"prerequest","script":{"id":"76fae40e-5f2e-401d-9325-5ceebadbacf2","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"3e543c79-970a-4909-9099-0421e3491dbc","type":"text/javascript","exec":[""]}}],"_postman_id":"8a0a11f1-8337-4e48-a11d-fe573a344669"},{"name":"Quote APIs","item":[{"name":"Generate Quotation links","id":"b394c261-241e-4d1a-a836-bfa3d39b3858","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"policyType\": \"COMPREHENSIVE\",\n        \"businessType\": \"NEW\",\n        \"premiumRequest\": {\n            \"prevPolicyDetails\": {\n                \"ncb\": 0,\n                \"isClaimMade\": false,\n                \"policyType\": \"COMPREHENSIVE\",\n                \"insurerCode\": \"<string>\",\n                \"riskEndDate\": \"<datetime>\"\n            },\n            \"riskInsured\": {\n                \"vehicalDetails\": {\n                    \"year\": \"<integer>\",\n                    \"_id\": \"<string>\",\n                    \"rtoCode\": \"<string>\"\n                }\n            },\n            \"addOnCovers\": {\n                \"addOnCode\": \"<string>\",\n                \"isEnabled\": false,\n                \"sumInsured\": 0\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.eval.mintpro.in/v1/products/:productName/quotes","urlObject":{"path":["products",":productName","quotes"],"host":["https://api.eval.mintpro.in/v1"],"query":[],"variable":[{"id":"7115f09f-d01b-4af1-bb78-8fa94ae84d16","description":{"content":"<p>(Required) The Product name</p>\n<ul>\n<li><code>private-car</code> - Private Car</li>\n<li><code>bike</code> - Bike </li>\n<li><code>personal-accident</code> - Personal Accident</li>\n</ul>\n","type":"text/plain"},"type":"any","value":"private-car","key":"productName"}]}},"response":[{"id":"d13b0b4a-e053-4544-8957-963d81fa1462","name":"successful operation","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"(Required) Authorization token","key":"Authorization","value":"Bearer [YOUR_AUTH_TOKEN]"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"policyType\": \"COMPREHENSIVE\",\n        \"businessType\": \"NEW\",\n        \"premiumRequest\": {\n            \"prevPolicyDetails\": {\n                \"ncb\": 0,\n                \"isClaimMade\": false,\n                \"policyType\": \"COMPREHENSIVE\",\n                \"insurerCode\": \"<string>\",\n                \"riskEndDate\": \"<datetime>\"\n            },\n            \"riskInsured\": {\n                \"vehicalDetails\": {\n                    \"year\": \"<integer>\",\n                    \"_id\": \"<string>\",\n                    \"rtoCode\": \"<string>\"\n                }\n            },\n            \"addOnCovers\": {\n                \"addOnCode\": \"<string>\",\n                \"isEnabled\": false,\n                \"sumInsured\": 0\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.eval.mintpro.in/v1/products/:productName/quotes","host":["https://api.eval.mintpro.in/v1"],"path":["products",":productName","quotes"],"variable":[{"key":"productName","value":"private-car","description":"(Required) The Product name\n  * `private-car` - Private Car\n  * `bike` - Bike \n  * `personal-accident` - Personal Accident\n"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n  \"referenceId\": \"<string>\",\n  \"quoteId\": \"<uuid>\",\n  \"fetchQuoteLinks\": [\n   {\n    \"insurerCode\": \"<string>\",\n    \"link\": \"<string>\"\n   },\n   {\n    \"insurerCode\": \"<string>\",\n    \"link\": \"<string>\"\n   }\n  ]\n },\n \"meta\": {\n  \"msg\": \"<string>\",\n  \"errorCode\": \"<integer>\",\n  \"error\": false\n },\n \"timestamp\": \"<datetime>\"\n}"},{"id":"d792b71a-5f08-4058-a5c3-60e5c9fc82c8","name":"Invalid resource supplied","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"(Required) Authorization token","key":"Authorization","value":"Bearer [YOUR_AUTH_TOKEN]"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"policyType\": \"COMPREHENSIVE\",\n        \"businessType\": \"NEW\",\n        \"premiumRequest\": {\n            \"prevPolicyDetails\": {\n                \"ncb\": 0,\n                \"isClaimMade\": false,\n                \"policyType\": \"COMPREHENSIVE\",\n                \"insurerCode\": \"<string>\",\n                \"riskEndDate\": \"<datetime>\"\n            },\n            \"riskInsured\": {\n                \"vehicalDetails\": {\n                    \"year\": \"<integer>\",\n                    \"_id\": \"<string>\",\n                    \"rtoCode\": \"<string>\"\n                }\n            },\n            \"addOnCovers\": {\n                \"addOnCode\": \"<string>\",\n                \"isEnabled\": false,\n                \"sumInsured\": 0\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.eval.mintpro.in/v1/products/:productName/quotes","host":["https://api.eval.mintpro.in/v1"],"path":["products",":productName","quotes"],"variable":[{"key":"productName","value":"private-car","description":"(Required) The Product name\n  * `private-car` - Private Car\n  * `bike` - Bike \n  * `personal-accident` - Personal Accident\n"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"msg\": \"<string>\",\n \"errorCode\": \"<integer>\",\n \"error\": false\n}"},{"id":"1be10a2b-88f6-461c-bd42-82ad04547b56","name":"resource not found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"(Required) Authorization token","key":"Authorization","value":"Bearer [YOUR_AUTH_TOKEN]"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"policyType\": \"COMPREHENSIVE\",\n        \"businessType\": \"NEW\",\n        \"premiumRequest\": {\n            \"prevPolicyDetails\": {\n                \"ncb\": 0,\n                \"isClaimMade\": false,\n                \"policyType\": \"COMPREHENSIVE\",\n                \"insurerCode\": \"<string>\",\n                \"riskEndDate\": \"<datetime>\"\n            },\n            \"riskInsured\": {\n                \"vehicalDetails\": {\n                    \"year\": \"<integer>\",\n                    \"_id\": \"<string>\",\n                    \"rtoCode\": \"<string>\"\n                }\n            },\n            \"addOnCovers\": {\n                \"addOnCode\": \"<string>\",\n                \"isEnabled\": false,\n                \"sumInsured\": 0\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.eval.mintpro.in/v1/products/:productName/quotes","host":["https://api.eval.mintpro.in/v1"],"path":["products",":productName","quotes"],"variable":[{"key":"productName","value":"private-car","description":"(Required) The Product name\n  * `private-car` - Private Car\n  * `bike` - Bike \n  * `personal-accident` - Personal Accident\n"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"fa56f2f6-b893-4e4a-aae9-d5d907afd903","name":"Internal Server Error","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"(Required) Authorization token","key":"Authorization","value":"Bearer [YOUR_AUTH_TOKEN]"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"policyType\": \"COMPREHENSIVE\",\n        \"businessType\": \"NEW\",\n        \"premiumRequest\": {\n            \"prevPolicyDetails\": {\n                \"ncb\": 0,\n                \"isClaimMade\": false,\n                \"policyType\": \"COMPREHENSIVE\",\n                \"insurerCode\": \"<string>\",\n                \"riskEndDate\": \"<datetime>\"\n            },\n            \"riskInsured\": {\n                \"vehicalDetails\": {\n                    \"year\": \"<integer>\",\n                    \"_id\": \"<string>\",\n                    \"rtoCode\": \"<string>\"\n                }\n            },\n            \"addOnCovers\": {\n                \"addOnCode\": \"<string>\",\n                \"isEnabled\": false,\n                \"sumInsured\": 0\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.eval.mintpro.in/v1/products/:productName/quotes","host":["https://api.eval.mintpro.in/v1"],"path":["products",":productName","quotes"],"variable":[{"key":"productName","value":"private-car","description":"(Required) The Product name\n  * `private-car` - Private Car\n  * `bike` - Bike \n  * `personal-accident` - Personal Accident\n"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"b394c261-241e-4d1a-a836-bfa3d39b3858"},{"name":"Update Quotation By Quote ID","id":"7ce3decd-dcfe-4d74-9f25-712ddf8c2aa8","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"policyType\": \"COMPREHENSIVE\",\n        \"businessType\": \"NEW\",\n        \"premiumRequest\": {\n            \"prevPolicyDetails\": {\n                \"ncb\": 0,\n                \"isClaimMade\": false,\n                \"policyType\": \"COMPREHENSIVE\",\n                \"insurerCode\": \"<string>\",\n                \"riskEndDate\": \"<datetime>\"\n            },\n            \"riskInsured\": {\n                \"vehicalDetails\": {\n                    \"year\": \"<integer>\",\n                    \"_id\": \"<string>\",\n                    \"rtoCode\": \"<string>\"\n                }\n            },\n            \"addOnCovers\": {\n                \"addOnCode\": \"<string>\",\n                \"isEnabled\": false,\n                \"sumInsured\": 0\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.eval.mintpro.in/v1/products/:productName/quotes/:quoteId?referenceId=AGH54CNKFN8&insurerCode=ROYALSUNDARAM","urlObject":{"path":["products",":productName","quotes",":quoteId"],"host":["https://api.eval.mintpro.in/v1"],"query":[{"description":{"content":"<p>(Required) Id shared in generate quotation links response</p>\n","type":"text/plain"},"key":"referenceId","value":"AGH54CNKFN8"},{"description":{"content":"<p>(Required) Insurer unique code</p>\n","type":"text/plain"},"key":"insurerCode","value":"ROYALSUNDARAM"}],"variable":[{"id":"98acb356-9236-4a82-a3da-15c328ed2d44","description":{"content":"<p>(Required) The Product name</p>\n<ul>\n<li><code>private-car</code> - Private Car</li>\n<li><code>bike</code> - Bike </li>\n<li><code>personal-accident</code> - Personal Accident</li>\n</ul>\n","type":"text/plain"},"type":"any","value":"private-car","key":"productName"},{"id":"356eb34f-d2eb-4061-ab42-8e9fd6654141","description":{"content":"<p>(Required) The quote id for which quotations need to be updated</p>\n","type":"text/plain"},"type":"any","value":"428bf64e-3ac3-46cd-8bf2-34033dfe7653","key":"quoteId"}]}},"response":[{"id":"059e0b4a-6ce1-4840-b01f-27832fc94dac","name":"successful operation","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"(Required) Authorization token","key":"Authorization","value":"Bearer [YOUR_AUTH_TOKEN]"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"policyType\": \"COMPREHENSIVE\",\n        \"businessType\": \"NEW\",\n        \"premiumRequest\": {\n            \"prevPolicyDetails\": {\n                \"ncb\": 0,\n                \"isClaimMade\": false,\n                \"policyType\": \"COMPREHENSIVE\",\n                \"insurerCode\": \"<string>\",\n                \"riskEndDate\": \"<datetime>\"\n            },\n            \"riskInsured\": {\n                \"vehicalDetails\": {\n                    \"year\": \"<integer>\",\n                    \"_id\": \"<string>\",\n                    \"rtoCode\": \"<string>\"\n                }\n            },\n            \"addOnCovers\": {\n                \"addOnCode\": \"<string>\",\n                \"isEnabled\": false,\n                \"sumInsured\": 0\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.eval.mintpro.in/v1/products/:productName/quotes/:quoteId?referenceId=AGH54CNKFN8&insurerCode=ROYALSUNDARAM","host":["https://api.eval.mintpro.in/v1"],"path":["products",":productName","quotes",":quoteId"],"query":[{"key":"referenceId","value":"AGH54CNKFN8"},{"key":"insurerCode","value":"ROYALSUNDARAM"}],"variable":[{"key":"productName","value":"private-car","description":"(Required) The Product name\n  * `private-car` - Private Car\n  * `bike` - Bike \n  * `personal-accident` - Personal Accident\n"},{"key":"quoteId","value":"428bf64e-3ac3-46cd-8bf2-34033dfe7653","description":"(Required) The quote id for which quotations need to be updated"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n  \"referenceId\": \"<string>\",\n  \"quoteId\": \"<uuid>\",\n  \"fetchQuoteLinks\": [\n   {\n    \"insurerCode\": \"<string>\",\n    \"link\": \"<string>\"\n   },\n   {\n    \"insurerCode\": \"<string>\",\n    \"link\": \"<string>\"\n   }\n  ]\n },\n \"meta\": {\n  \"msg\": \"<string>\",\n  \"errorCode\": \"<integer>\",\n  \"error\": false\n },\n \"timestamp\": \"<datetime>\"\n}"},{"id":"d113fb53-be5c-4921-9de6-1ff5e3cbfea8","name":"Invalid resource supplied","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"(Required) Authorization token","key":"Authorization","value":"Bearer [YOUR_AUTH_TOKEN]"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"policyType\": \"COMPREHENSIVE\",\n        \"businessType\": \"NEW\",\n        \"premiumRequest\": {\n            \"prevPolicyDetails\": {\n                \"ncb\": 0,\n                \"isClaimMade\": false,\n                \"policyType\": \"COMPREHENSIVE\",\n                \"insurerCode\": \"<string>\",\n                \"riskEndDate\": \"<datetime>\"\n            },\n            \"riskInsured\": {\n                \"vehicalDetails\": {\n                    \"year\": \"<integer>\",\n                    \"_id\": \"<string>\",\n                    \"rtoCode\": \"<string>\"\n                }\n            },\n            \"addOnCovers\": {\n                \"addOnCode\": \"<string>\",\n                \"isEnabled\": false,\n                \"sumInsured\": 0\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.eval.mintpro.in/v1/products/:productName/quotes/:quoteId?referenceId=AGH54CNKFN8&insurerCode=ROYALSUNDARAM","host":["https://api.eval.mintpro.in/v1"],"path":["products",":productName","quotes",":quoteId"],"query":[{"key":"referenceId","value":"AGH54CNKFN8"},{"key":"insurerCode","value":"ROYALSUNDARAM"}],"variable":[{"key":"productName","value":"private-car","description":"(Required) The Product name\n  * `private-car` - Private Car\n  * `bike` - Bike \n  * `personal-accident` - Personal Accident\n"},{"key":"quoteId","value":"428bf64e-3ac3-46cd-8bf2-34033dfe7653","description":"(Required) The quote id for which quotations need to be updated"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"msg\": \"<string>\",\n \"errorCode\": \"<integer>\",\n \"error\": false\n}"},{"id":"a2241c9d-c8c1-41d5-8f3e-ad590c84c5df","name":"resource not found","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"(Required) Authorization token","key":"Authorization","value":"Bearer [YOUR_AUTH_TOKEN]"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"policyType\": \"COMPREHENSIVE\",\n        \"businessType\": \"NEW\",\n        \"premiumRequest\": {\n            \"prevPolicyDetails\": {\n                \"ncb\": 0,\n                \"isClaimMade\": false,\n                \"policyType\": \"COMPREHENSIVE\",\n                \"insurerCode\": \"<string>\",\n                \"riskEndDate\": \"<datetime>\"\n            },\n            \"riskInsured\": {\n                \"vehicalDetails\": {\n                    \"year\": \"<integer>\",\n                    \"_id\": \"<string>\",\n                    \"rtoCode\": \"<string>\"\n                }\n            },\n            \"addOnCovers\": {\n                \"addOnCode\": \"<string>\",\n                \"isEnabled\": false,\n                \"sumInsured\": 0\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.eval.mintpro.in/v1/products/:productName/quotes/:quoteId?referenceId=AGH54CNKFN8&insurerCode=ROYALSUNDARAM","host":["https://api.eval.mintpro.in/v1"],"path":["products",":productName","quotes",":quoteId"],"query":[{"key":"referenceId","value":"AGH54CNKFN8"},{"key":"insurerCode","value":"ROYALSUNDARAM"}],"variable":[{"key":"productName","value":"private-car","description":"(Required) The Product name\n  * `private-car` - Private Car\n  * `bike` - Bike \n  * `personal-accident` - Personal Accident\n"},{"key":"quoteId","value":"428bf64e-3ac3-46cd-8bf2-34033dfe7653","description":"(Required) The quote id for which quotations need to be updated"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"8e261ee2-5e7b-4177-b7da-8da958cefb3c","name":"Internal Server Error","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"(Required) Authorization token","key":"Authorization","value":"Bearer [YOUR_AUTH_TOKEN]"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"policyType\": \"COMPREHENSIVE\",\n        \"businessType\": \"NEW\",\n        \"premiumRequest\": {\n            \"prevPolicyDetails\": {\n                \"ncb\": 0,\n                \"isClaimMade\": false,\n                \"policyType\": \"COMPREHENSIVE\",\n                \"insurerCode\": \"<string>\",\n                \"riskEndDate\": \"<datetime>\"\n            },\n            \"riskInsured\": {\n                \"vehicalDetails\": {\n                    \"year\": \"<integer>\",\n                    \"_id\": \"<string>\",\n                    \"rtoCode\": \"<string>\"\n                }\n            },\n            \"addOnCovers\": {\n                \"addOnCode\": \"<string>\",\n                \"isEnabled\": false,\n                \"sumInsured\": 0\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.eval.mintpro.in/v1/products/:productName/quotes/:quoteId?referenceId=AGH54CNKFN8&insurerCode=ROYALSUNDARAM","host":["https://api.eval.mintpro.in/v1"],"path":["products",":productName","quotes",":quoteId"],"query":[{"key":"referenceId","value":"AGH54CNKFN8"},{"key":"insurerCode","value":"ROYALSUNDARAM"}],"variable":[{"key":"productName","value":"private-car","description":"(Required) The Product name\n  * `private-car` - Private Car\n  * `bike` - Bike \n  * `personal-accident` - Personal Accident\n"},{"key":"quoteId","value":"428bf64e-3ac3-46cd-8bf2-34033dfe7653","description":"(Required) The quote id for which quotations need to be updated"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"7ce3decd-dcfe-4d74-9f25-712ddf8c2aa8"},{"name":"Get Quotation By Quote ID","id":"e9e26a01-b0c2-4af3-9cda-3305d6aeffc3","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"url":"https://api.eval.mintpro.in/v1/products/:productName/quotes/:quoteId?referenceId=AGH54CNKFN8&insurerCode=ROYALSUNDARAM","urlObject":{"path":["products",":productName","quotes",":quoteId"],"host":["https://api.eval.mintpro.in/v1"],"query":[{"description":{"content":"<p>(Required) Id shared in generate quotation links response</p>\n","type":"text/plain"},"key":"referenceId","value":"AGH54CNKFN8"},{"description":{"content":"<p>(Required) Insurer unique code</p>\n","type":"text/plain"},"key":"insurerCode","value":"ROYALSUNDARAM"}],"variable":[{"id":"08f60ed8-5983-4b86-a6dc-449dac72cd01","description":{"content":"<p>(Required) The Product name</p>\n<ul>\n<li><code>private-car</code> - Private Car</li>\n<li><code>bike</code> - Bike </li>\n<li><code>personal-accident</code> - Personal Accident</li>\n</ul>\n","type":"text/plain"},"type":"any","value":"private-car","key":"productName"},{"id":"d6a394d2-3663-4fa8-8bce-bc9b1af6e0c2","description":{"content":"<p>(Required) The quote ID for which quotations need to be fetched</p>\n","type":"text/plain"},"type":"any","value":"428bf64e-3ac3-46cd-8bf2-34033dfe7653","key":"quoteId"}]}},"response":[{"id":"d79a6320-0cd0-4c13-8688-c08708f3da19","name":"successful operation","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"(Required) Authorization token","key":"Authorization","value":"Bearer [YOUR_AUTH_TOKEN]"}],"url":{"raw":"https://api.eval.mintpro.in/v1/products/:productName/quotes/:quoteId?referenceId=AGH54CNKFN8&insurerCode=ROYALSUNDARAM","host":["https://api.eval.mintpro.in/v1"],"path":["products",":productName","quotes",":quoteId"],"query":[{"key":"referenceId","value":"AGH54CNKFN8"},{"key":"insurerCode","value":"ROYALSUNDARAM"}],"variable":[{"key":"productName","value":"private-car","description":"(Required) The Product name\n  * `private-car` - Private Car\n  * `bike` - Bike \n  * `personal-accident` - Personal Accident\n"},{"key":"quoteId","value":"428bf64e-3ac3-46cd-8bf2-34033dfe7653","description":"(Required) The quote ID for which quotations need to be fetched"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n  \"quoteId\": \"<uuid>\",\n  \"premiumResultId\": \"<uuid>\",\n  \"premiumResults\": {\n   \"totalPremium\": \"<integer>\",\n   \"netPremium\": \"<integer>\",\n   \"tax\": \"<integer>\",\n   \"premiumYear\": \"<integer>\",\n   \"premiumBreakup\": {\n    \"basicPremium\": \"<integer>\",\n    \"additionalPremium\": \"<object>\",\n    \"discount\": \"<object>\"\n   },\n   \"idv\": \"<integer>\",\n   \"isCashlessGarage\": \"<boolean>\"\n  }\n },\n \"meta\": {\n  \"msg\": \"<string>\",\n  \"errorCode\": \"<integer>\",\n  \"error\": false\n },\n \"timestamp\": \"<datetime>\"\n}"},{"id":"ea1352c4-d592-414c-a1bd-e1972ad88a06","name":"Invalid resource supplied","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"(Required) Authorization token","key":"Authorization","value":"Bearer [YOUR_AUTH_TOKEN]"}],"url":{"raw":"https://api.eval.mintpro.in/v1/products/:productName/quotes/:quoteId?referenceId=AGH54CNKFN8&insurerCode=ROYALSUNDARAM","host":["https://api.eval.mintpro.in/v1"],"path":["products",":productName","quotes",":quoteId"],"query":[{"key":"referenceId","value":"AGH54CNKFN8"},{"key":"insurerCode","value":"ROYALSUNDARAM"}],"variable":[{"key":"productName","value":"private-car","description":"(Required) The Product name\n  * `private-car` - Private Car\n  * `bike` - Bike \n  * `personal-accident` - Personal Accident\n"},{"key":"quoteId","value":"428bf64e-3ac3-46cd-8bf2-34033dfe7653","description":"(Required) The quote ID for which quotations need to be fetched"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"msg\": \"<string>\",\n \"errorCode\": \"<integer>\",\n \"error\": false\n}"},{"id":"b8f4f519-79f6-44d4-9300-3804495a44cd","name":"resource not found","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"(Required) Authorization token","key":"Authorization","value":"Bearer [YOUR_AUTH_TOKEN]"}],"url":{"raw":"https://api.eval.mintpro.in/v1/products/:productName/quotes/:quoteId?referenceId=AGH54CNKFN8&insurerCode=ROYALSUNDARAM","host":["https://api.eval.mintpro.in/v1"],"path":["products",":productName","quotes",":quoteId"],"query":[{"key":"referenceId","value":"AGH54CNKFN8"},{"key":"insurerCode","value":"ROYALSUNDARAM"}],"variable":[{"key":"productName","value":"private-car","description":"(Required) The Product name\n  * `private-car` - Private Car\n  * `bike` - Bike \n  * `personal-accident` - Personal Accident\n"},{"key":"quoteId","value":"428bf64e-3ac3-46cd-8bf2-34033dfe7653","description":"(Required) The quote ID for which quotations need to be fetched"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"cec9ab27-abf7-4ee7-930a-941f5869b029","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"(Required) Authorization token","key":"Authorization","value":"Bearer [YOUR_AUTH_TOKEN]"}],"url":{"raw":"https://api.eval.mintpro.in/v1/products/:productName/quotes/:quoteId?referenceId=AGH54CNKFN8&insurerCode=ROYALSUNDARAM","host":["https://api.eval.mintpro.in/v1"],"path":["products",":productName","quotes",":quoteId"],"query":[{"key":"referenceId","value":"AGH54CNKFN8"},{"key":"insurerCode","value":"ROYALSUNDARAM"}],"variable":[{"key":"productName","value":"private-car","description":"(Required) The Product name\n  * `private-car` - Private Car\n  * `bike` - Bike \n  * `personal-accident` - Personal Accident\n"},{"key":"quoteId","value":"428bf64e-3ac3-46cd-8bf2-34033dfe7653","description":"(Required) The quote ID for which quotations need to be fetched"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"e9e26a01-b0c2-4af3-9cda-3305d6aeffc3"}],"id":"e11586d0-bae8-40ef-8129-496b5f83f54d","description":"<p>This APIs are used to generate quotation for Bike, Private Car &amp; Personal-Accident insurance. Below are the APIs which can be used to generate, update &amp; fetch the quotation.</p>\n","event":[{"listen":"prerequest","script":{"id":"009d7aa0-207e-4ac0-8603-a199b7cc21b0","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"89788532-af7d-4fca-84fb-08a6b51c84c1","type":"text/javascript","exec":[""]}}],"_postman_id":"e11586d0-bae8-40ef-8129-496b5f83f54d"},{"name":"Proposal APIs","item":[{"name":"Create Proposal","id":"228f81de-d62f-4ddd-9590-cdf5a13d8424","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"premiumResultId\": \"<uuid>\",\n        \"referenceId\": \"<string>\",\n        \"payMode\": \"<string>\",\n        \"personalDetails\": {\n            \"title\": \"<string>\",\n            \"firstName\": \"<string>\",\n            \"lastName\": \"<string>\",\n            \"email\": \"<string>\",\n            \"mobile\": \"<integer>\",\n            \"dob\": \"<datetime(dd/mm/yyyy)>\",\n            \"gender\": \"<string>\",\n            \"maritalStatus\": \"<string>\"\n        },\n        \"nomineeDetails\": {\n            \"relationship\": \"<string>\",\n            \"name\": \"<string>\",\n            \"dob\": \"<datetime(dd/mm/yyyy)>\"\n        },\n        \"registeredAddress\": {\n            \"cityId\": \"<string>\",\n            \"city\": \"<string>\",\n            \"pincode\": \"<integer>\",\n            \"address1\": \"<string>\",\n            \"address2\": \"<string>\"\n        },\n        \"otherDetails\": {\n            \"vehicleDetails\": {\n                \"engineNum\": \"<string>\",\n                \"chassisNum\": \"<string>\",\n                \"registrationNumber\": \"<string>\",\n                \"registrationDate\": \"<datetime(dd/mm/yyyy)>\"\n            },\n            \"prevPolicyDetails\": {\n                \"insurerCode\": \"<string>\",\n                \"isClaimMade\": \"<boolean>\",\n                \"ncb\": \"<integer>\",\n                \"policyType\": \"<string>\",\n                \"riskEndDate\": \"<datetime(dd/mm/yyyy)>\",\n                \"policyNumber\": \"<string>\"\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.eval.mintpro.in/v1/products/:productName/proposals","urlObject":{"path":["products",":productName","proposals"],"host":["https://api.eval.mintpro.in/v1"],"query":[],"variable":[{"id":"c6f6b768-00c4-4ead-a8eb-c1c67d986ba0","description":{"content":"<p>(Required) The Product name</p>\n<ul>\n<li><code>private-car</code> - Private Car</li>\n<li><code>bike</code> - Bike</li>\n<li><code>personal-accident</code> - Personal Accident</li>\n</ul>\n","type":"text/plain"},"type":"any","value":"private-car","key":"productName"}]}},"response":[{"id":"440165b1-3dad-4a4a-a409-a547b5190399","name":"successful operation","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"(Required) Authorization token","key":"Authorization","value":"Bearer [YOUR_AUTH_TOKEN]"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"premiumResultId\": \"<uuid>\",\n        \"referenceId\": \"<string>\",\n        \"payMode\": \"<string>\",\n        \"personalDetails\": {\n            \"title\": \"<string>\",\n            \"firstName\": \"<string>\",\n            \"lastName\": \"<string>\",\n            \"email\": \"<string>\",\n            \"mobile\": \"<integer>\",\n            \"dob\": \"<datetime(dd/mm/yyyy)>\",\n            \"gender\": \"<string>\",\n            \"maritalStatus\": \"<string>\"\n        },\n        \"nomineeDetails\": {\n            \"relationship\": \"<string>\",\n            \"name\": \"<string>\",\n            \"dob\": \"<datetime(dd/mm/yyyy)>\"\n        },\n        \"registeredAddress\": {\n            \"cityId\": \"<string>\",\n            \"city\": \"<string>\",\n            \"pincode\": \"<integer>\",\n            \"address1\": \"<string>\",\n            \"address2\": \"<string>\"\n        },\n        \"otherDetails\": {\n            \"vehicleDetails\": {\n                \"engineNum\": \"<string>\",\n                \"chassisNum\": \"<string>\",\n                \"registrationNumber\": \"<string>\",\n                \"registrationDate\": \"<datetime(dd/mm/yyyy)>\"\n            },\n            \"prevPolicyDetails\": {\n                \"insurerCode\": \"<string>\",\n                \"isClaimMade\": \"<boolean>\",\n                \"ncb\": \"<integer>\",\n                \"policyType\": \"<string>\",\n                \"riskEndDate\": \"<datetime(dd/mm/yyyy)>\",\n                \"policyNumber\": \"<string>\"\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.eval.mintpro.in/v1/products/:productName/proposals","host":["https://api.eval.mintpro.in/v1"],"path":["products",":productName","proposals"],"variable":[{"key":"productName","value":"private-car","description":"(Required) The Product name\n  * `private-car` - Private Car\n  * `bike` - Bike\n  * `personal-accident` - Personal Accident\n"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n  \"proposalId\": \"<string>\",\n  \"statusCode\": \"<integer>\",\n  \"statusMessage\": \"<string>\"\n },\n \"meta\": {\n  \"msg\": \"<string>\",\n  \"errorCode\": \"<integer>\",\n  \"error\": false\n },\n \"timestamp\": \"<datetime>\"\n}"},{"id":"aa5e4cf5-d071-4a63-a529-972812c17ed7","name":"Invalid resource supplied","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"(Required) Authorization token","key":"Authorization","value":"Bearer [YOUR_AUTH_TOKEN]"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"premiumResultId\": \"<uuid>\",\n        \"referenceId\": \"<string>\",\n        \"payMode\": \"<string>\",\n        \"personalDetails\": {\n            \"title\": \"<string>\",\n            \"firstName\": \"<string>\",\n            \"lastName\": \"<string>\",\n            \"email\": \"<string>\",\n            \"mobile\": \"<integer>\",\n            \"dob\": \"<datetime(dd/mm/yyyy)>\",\n            \"gender\": \"<string>\",\n            \"maritalStatus\": \"<string>\"\n        },\n        \"nomineeDetails\": {\n            \"relationship\": \"<string>\",\n            \"name\": \"<string>\",\n            \"dob\": \"<datetime(dd/mm/yyyy)>\"\n        },\n        \"registeredAddress\": {\n            \"cityId\": \"<string>\",\n            \"city\": \"<string>\",\n            \"pincode\": \"<integer>\",\n            \"address1\": \"<string>\",\n            \"address2\": \"<string>\"\n        },\n        \"otherDetails\": {\n            \"vehicleDetails\": {\n                \"engineNum\": \"<string>\",\n                \"chassisNum\": \"<string>\",\n                \"registrationNumber\": \"<string>\",\n                \"registrationDate\": \"<datetime(dd/mm/yyyy)>\"\n            },\n            \"prevPolicyDetails\": {\n                \"insurerCode\": \"<string>\",\n                \"isClaimMade\": \"<boolean>\",\n                \"ncb\": \"<integer>\",\n                \"policyType\": \"<string>\",\n                \"riskEndDate\": \"<datetime(dd/mm/yyyy)>\",\n                \"policyNumber\": \"<string>\"\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.eval.mintpro.in/v1/products/:productName/proposals","host":["https://api.eval.mintpro.in/v1"],"path":["products",":productName","proposals"],"variable":[{"key":"productName","value":"private-car","description":"(Required) The Product name\n  * `private-car` - Private Car\n  * `bike` - Bike\n  * `personal-accident` - Personal Accident\n"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"msg\": \"<string>\",\n \"errorCode\": \"<integer>\",\n \"error\": false\n}"},{"id":"37c1794f-3d6e-402b-b6fa-044a62f84174","name":"resource not found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"(Required) Authorization token","key":"Authorization","value":"Bearer [YOUR_AUTH_TOKEN]"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"premiumResultId\": \"<uuid>\",\n        \"referenceId\": \"<string>\",\n        \"payMode\": \"<string>\",\n        \"personalDetails\": {\n            \"title\": \"<string>\",\n            \"firstName\": \"<string>\",\n            \"lastName\": \"<string>\",\n            \"email\": \"<string>\",\n            \"mobile\": \"<integer>\",\n            \"dob\": \"<datetime(dd/mm/yyyy)>\",\n            \"gender\": \"<string>\",\n            \"maritalStatus\": \"<string>\"\n        },\n        \"nomineeDetails\": {\n            \"relationship\": \"<string>\",\n            \"name\": \"<string>\",\n            \"dob\": \"<datetime(dd/mm/yyyy)>\"\n        },\n        \"registeredAddress\": {\n            \"cityId\": \"<string>\",\n            \"city\": \"<string>\",\n            \"pincode\": \"<integer>\",\n            \"address1\": \"<string>\",\n            \"address2\": \"<string>\"\n        },\n        \"otherDetails\": {\n            \"vehicleDetails\": {\n                \"engineNum\": \"<string>\",\n                \"chassisNum\": \"<string>\",\n                \"registrationNumber\": \"<string>\",\n                \"registrationDate\": \"<datetime(dd/mm/yyyy)>\"\n            },\n            \"prevPolicyDetails\": {\n                \"insurerCode\": \"<string>\",\n                \"isClaimMade\": \"<boolean>\",\n                \"ncb\": \"<integer>\",\n                \"policyType\": \"<string>\",\n                \"riskEndDate\": \"<datetime(dd/mm/yyyy)>\",\n                \"policyNumber\": \"<string>\"\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.eval.mintpro.in/v1/products/:productName/proposals","host":["https://api.eval.mintpro.in/v1"],"path":["products",":productName","proposals"],"variable":[{"key":"productName","value":"private-car","description":"(Required) The Product name\n  * `private-car` - Private Car\n  * `bike` - Bike\n  * `personal-accident` - Personal Accident\n"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"2795cad3-04e7-4d3f-b504-fc0b31b09f3c","name":"Internal Server Error","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"(Required) Authorization token","key":"Authorization","value":"Bearer [YOUR_AUTH_TOKEN]"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"premiumResultId\": \"<uuid>\",\n        \"referenceId\": \"<string>\",\n        \"payMode\": \"<string>\",\n        \"personalDetails\": {\n            \"title\": \"<string>\",\n            \"firstName\": \"<string>\",\n            \"lastName\": \"<string>\",\n            \"email\": \"<string>\",\n            \"mobile\": \"<integer>\",\n            \"dob\": \"<datetime(dd/mm/yyyy)>\",\n            \"gender\": \"<string>\",\n            \"maritalStatus\": \"<string>\"\n        },\n        \"nomineeDetails\": {\n            \"relationship\": \"<string>\",\n            \"name\": \"<string>\",\n            \"dob\": \"<datetime(dd/mm/yyyy)>\"\n        },\n        \"registeredAddress\": {\n            \"cityId\": \"<string>\",\n            \"city\": \"<string>\",\n            \"pincode\": \"<integer>\",\n            \"address1\": \"<string>\",\n            \"address2\": \"<string>\"\n        },\n        \"otherDetails\": {\n            \"vehicleDetails\": {\n                \"engineNum\": \"<string>\",\n                \"chassisNum\": \"<string>\",\n                \"registrationNumber\": \"<string>\",\n                \"registrationDate\": \"<datetime(dd/mm/yyyy)>\"\n            },\n            \"prevPolicyDetails\": {\n                \"insurerCode\": \"<string>\",\n                \"isClaimMade\": \"<boolean>\",\n                \"ncb\": \"<integer>\",\n                \"policyType\": \"<string>\",\n                \"riskEndDate\": \"<datetime(dd/mm/yyyy)>\",\n                \"policyNumber\": \"<string>\"\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.eval.mintpro.in/v1/products/:productName/proposals","host":["https://api.eval.mintpro.in/v1"],"path":["products",":productName","proposals"],"variable":[{"key":"productName","value":"private-car","description":"(Required) The Product name\n  * `private-car` - Private Car\n  * `bike` - Bike\n  * `personal-accident` - Personal Accident\n"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"228f81de-d62f-4ddd-9590-cdf5a13d8424"},{"name":"Update Proposal By Proposal ID","id":"0c89ec78-3bc3-4e9f-80c3-dc03d3e0ae89","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"premiumResultId\": \"<uuid>\",\n        \"referenceId\": \"<string>\",\n        \"payMode\": \"<string>\",\n        \"personalDetails\": {\n            \"title\": \"<string>\",\n            \"firstName\": \"<string>\",\n            \"lastName\": \"<string>\",\n            \"email\": \"<string>\",\n            \"mobile\": \"<integer>\",\n            \"dob\": \"<datetime(dd/mm/yyyy)>\",\n            \"gender\": \"<string>\",\n            \"maritalStatus\": \"<string>\"\n        },\n        \"nomineeDetails\": {\n            \"relationship\": \"<string>\",\n            \"name\": \"<string>\",\n            \"dob\": \"<datetime(dd/mm/yyyy)>\"\n        },\n        \"registeredAddress\": {\n            \"cityId\": \"<string>\",\n            \"city\": \"<string>\",\n            \"pincode\": \"<integer>\",\n            \"address1\": \"<string>\",\n            \"address2\": \"<string>\"\n        },\n        \"otherDetails\": {\n            \"vehicleDetails\": {\n                \"engineNum\": \"<string>\",\n                \"chassisNum\": \"<string>\",\n                \"registrationNumber\": \"<string>\",\n                \"registrationDate\": \"<datetime(dd/mm/yyyy)>\"\n            },\n            \"prevPolicyDetails\": {\n                \"insurerCode\": \"<string>\",\n                \"isClaimMade\": \"<boolean>\",\n                \"ncb\": \"<integer>\",\n                \"policyType\": \"<string>\",\n                \"riskEndDate\": \"<datetime(dd/mm/yyyy)>\",\n                \"policyNumber\": \"<string>\"\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.eval.mintpro.in/v1/products/:productName/proposals/:proposalId?referenceId=MGDROZHK0X4","urlObject":{"path":["products",":productName","proposals",":proposalId"],"host":["https://api.eval.mintpro.in/v1"],"query":[{"description":{"content":"<p>(Required) The reference id for which proposal need to be updated</p>\n","type":"text/plain"},"key":"referenceId","value":"MGDROZHK0X4"}],"variable":[{"id":"08f27540-6af4-451c-bf1f-0719cf2c6590","description":{"content":"<p>(Required) The Product name</p>\n<ul>\n<li><code>private-car</code> - Private Car</li>\n<li><code>bike</code> - Bike </li>\n<li><code>personal-accident</code> - Personal Accident</li>\n</ul>\n","type":"text/plain"},"type":"any","value":"private-car","key":"productName"},{"id":"b5a213a6-4e32-490d-9b83-31734d488a0f","description":{"content":"<p>(Required) The proposal id for which proposal need to be updated</p>\n","type":"text/plain"},"type":"any","value":"73bc6295-b5f6-4593-b2d7-549eaa3d622a","key":"proposalId"}]}},"response":[{"id":"64c72724-f014-48cc-85fc-1c0563820945","name":"successful operation","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"(Required) Authorization token","key":"Authorization","value":"Bearer [YOUR_AUTH_TOKEN]"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"premiumResultId\": \"<uuid>\",\n        \"referenceId\": \"<string>\",\n        \"payMode\": \"<string>\",\n        \"personalDetails\": {\n            \"title\": \"<string>\",\n            \"firstName\": \"<string>\",\n            \"lastName\": \"<string>\",\n            \"email\": \"<string>\",\n            \"mobile\": \"<integer>\",\n            \"dob\": \"<datetime(dd/mm/yyyy)>\",\n            \"gender\": \"<string>\",\n            \"maritalStatus\": \"<string>\"\n        },\n        \"nomineeDetails\": {\n            \"relationship\": \"<string>\",\n            \"name\": \"<string>\",\n            \"dob\": \"<datetime(dd/mm/yyyy)>\"\n        },\n        \"registeredAddress\": {\n            \"cityId\": \"<string>\",\n            \"city\": \"<string>\",\n            \"pincode\": \"<integer>\",\n            \"address1\": \"<string>\",\n            \"address2\": \"<string>\"\n        },\n        \"otherDetails\": {\n            \"vehicleDetails\": {\n                \"engineNum\": \"<string>\",\n                \"chassisNum\": \"<string>\",\n                \"registrationNumber\": \"<string>\",\n                \"registrationDate\": \"<datetime(dd/mm/yyyy)>\"\n            },\n            \"prevPolicyDetails\": {\n                \"insurerCode\": \"<string>\",\n                \"isClaimMade\": \"<boolean>\",\n                \"ncb\": \"<integer>\",\n                \"policyType\": \"<string>\",\n                \"riskEndDate\": \"<datetime(dd/mm/yyyy)>\",\n                \"policyNumber\": \"<string>\"\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.eval.mintpro.in/v1/products/:productName/proposals/:proposalId?referenceId=MGDROZHK0X4","host":["https://api.eval.mintpro.in/v1"],"path":["products",":productName","proposals",":proposalId"],"query":[{"key":"referenceId","value":"MGDROZHK0X4"}],"variable":[{"key":"productName","value":"private-car","description":"(Required) The Product name\n  * `private-car` - Private Car\n  * `bike` - Bike \n  * `personal-accident` - Personal Accident\n"},{"key":"proposalId","value":"73bc6295-b5f6-4593-b2d7-549eaa3d622a","description":"(Required) The proposal id for which proposal need to be updated"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n  \"proposalId\": \"<string>\",\n  \"statusCode\": \"<integer>\",\n  \"statusMessage\": \"<string>\"\n },\n \"meta\": {\n  \"msg\": \"<string>\",\n  \"errorCode\": \"<integer>\",\n  \"error\": false\n },\n \"timestamp\": \"<datetime>\"\n}"},{"id":"c80a8137-2983-493e-8f0c-0b4e5fab386c","name":"Invalid resource supplied","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"(Required) Authorization token","key":"Authorization","value":"Bearer [YOUR_AUTH_TOKEN]"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"premiumResultId\": \"<uuid>\",\n        \"referenceId\": \"<string>\",\n        \"payMode\": \"<string>\",\n        \"personalDetails\": {\n            \"title\": \"<string>\",\n            \"firstName\": \"<string>\",\n            \"lastName\": \"<string>\",\n            \"email\": \"<string>\",\n            \"mobile\": \"<integer>\",\n            \"dob\": \"<datetime(dd/mm/yyyy)>\",\n            \"gender\": \"<string>\",\n            \"maritalStatus\": \"<string>\"\n        },\n        \"nomineeDetails\": {\n            \"relationship\": \"<string>\",\n            \"name\": \"<string>\",\n            \"dob\": \"<datetime(dd/mm/yyyy)>\"\n        },\n        \"registeredAddress\": {\n            \"cityId\": \"<string>\",\n            \"city\": \"<string>\",\n            \"pincode\": \"<integer>\",\n            \"address1\": \"<string>\",\n            \"address2\": \"<string>\"\n        },\n        \"otherDetails\": {\n            \"vehicleDetails\": {\n                \"engineNum\": \"<string>\",\n                \"chassisNum\": \"<string>\",\n                \"registrationNumber\": \"<string>\",\n                \"registrationDate\": \"<datetime(dd/mm/yyyy)>\"\n            },\n            \"prevPolicyDetails\": {\n                \"insurerCode\": \"<string>\",\n                \"isClaimMade\": \"<boolean>\",\n                \"ncb\": \"<integer>\",\n                \"policyType\": \"<string>\",\n                \"riskEndDate\": \"<datetime(dd/mm/yyyy)>\",\n                \"policyNumber\": \"<string>\"\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.eval.mintpro.in/v1/products/:productName/proposals/:proposalId?referenceId=MGDROZHK0X4","host":["https://api.eval.mintpro.in/v1"],"path":["products",":productName","proposals",":proposalId"],"query":[{"key":"referenceId","value":"MGDROZHK0X4"}],"variable":[{"key":"productName","value":"private-car","description":"(Required) The Product name\n  * `private-car` - Private Car\n  * `bike` - Bike \n  * `personal-accident` - Personal Accident\n"},{"key":"proposalId","value":"73bc6295-b5f6-4593-b2d7-549eaa3d622a","description":"(Required) The proposal id for which proposal need to be updated"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"msg\": \"<string>\",\n \"errorCode\": \"<integer>\",\n \"error\": false\n}"},{"id":"a1d8da35-7ddc-4c26-9344-631eee1b2aa7","name":"resource not found","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"(Required) Authorization token","key":"Authorization","value":"Bearer [YOUR_AUTH_TOKEN]"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"premiumResultId\": \"<uuid>\",\n        \"referenceId\": \"<string>\",\n        \"payMode\": \"<string>\",\n        \"personalDetails\": {\n            \"title\": \"<string>\",\n            \"firstName\": \"<string>\",\n            \"lastName\": \"<string>\",\n            \"email\": \"<string>\",\n            \"mobile\": \"<integer>\",\n            \"dob\": \"<datetime(dd/mm/yyyy)>\",\n            \"gender\": \"<string>\",\n            \"maritalStatus\": \"<string>\"\n        },\n        \"nomineeDetails\": {\n            \"relationship\": \"<string>\",\n            \"name\": \"<string>\",\n            \"dob\": \"<datetime(dd/mm/yyyy)>\"\n        },\n        \"registeredAddress\": {\n            \"cityId\": \"<string>\",\n            \"city\": \"<string>\",\n            \"pincode\": \"<integer>\",\n            \"address1\": \"<string>\",\n            \"address2\": \"<string>\"\n        },\n        \"otherDetails\": {\n            \"vehicleDetails\": {\n                \"engineNum\": \"<string>\",\n                \"chassisNum\": \"<string>\",\n                \"registrationNumber\": \"<string>\",\n                \"registrationDate\": \"<datetime(dd/mm/yyyy)>\"\n            },\n            \"prevPolicyDetails\": {\n                \"insurerCode\": \"<string>\",\n                \"isClaimMade\": \"<boolean>\",\n                \"ncb\": \"<integer>\",\n                \"policyType\": \"<string>\",\n                \"riskEndDate\": \"<datetime(dd/mm/yyyy)>\",\n                \"policyNumber\": \"<string>\"\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.eval.mintpro.in/v1/products/:productName/proposals/:proposalId?referenceId=MGDROZHK0X4","host":["https://api.eval.mintpro.in/v1"],"path":["products",":productName","proposals",":proposalId"],"query":[{"key":"referenceId","value":"MGDROZHK0X4"}],"variable":[{"key":"productName","value":"private-car","description":"(Required) The Product name\n  * `private-car` - Private Car\n  * `bike` - Bike \n  * `personal-accident` - Personal Accident\n"},{"key":"proposalId","value":"73bc6295-b5f6-4593-b2d7-549eaa3d622a","description":"(Required) The proposal id for which proposal need to be updated"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"16d7be45-8ea4-4d36-bb28-fbbfcbc626f4","name":"Internal Server Error","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"(Required) Authorization token","key":"Authorization","value":"Bearer [YOUR_AUTH_TOKEN]"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"premiumResultId\": \"<uuid>\",\n        \"referenceId\": \"<string>\",\n        \"payMode\": \"<string>\",\n        \"personalDetails\": {\n            \"title\": \"<string>\",\n            \"firstName\": \"<string>\",\n            \"lastName\": \"<string>\",\n            \"email\": \"<string>\",\n            \"mobile\": \"<integer>\",\n            \"dob\": \"<datetime(dd/mm/yyyy)>\",\n            \"gender\": \"<string>\",\n            \"maritalStatus\": \"<string>\"\n        },\n        \"nomineeDetails\": {\n            \"relationship\": \"<string>\",\n            \"name\": \"<string>\",\n            \"dob\": \"<datetime(dd/mm/yyyy)>\"\n        },\n        \"registeredAddress\": {\n            \"cityId\": \"<string>\",\n            \"city\": \"<string>\",\n            \"pincode\": \"<integer>\",\n            \"address1\": \"<string>\",\n            \"address2\": \"<string>\"\n        },\n        \"otherDetails\": {\n            \"vehicleDetails\": {\n                \"engineNum\": \"<string>\",\n                \"chassisNum\": \"<string>\",\n                \"registrationNumber\": \"<string>\",\n                \"registrationDate\": \"<datetime(dd/mm/yyyy)>\"\n            },\n            \"prevPolicyDetails\": {\n                \"insurerCode\": \"<string>\",\n                \"isClaimMade\": \"<boolean>\",\n                \"ncb\": \"<integer>\",\n                \"policyType\": \"<string>\",\n                \"riskEndDate\": \"<datetime(dd/mm/yyyy)>\",\n                \"policyNumber\": \"<string>\"\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.eval.mintpro.in/v1/products/:productName/proposals/:proposalId?referenceId=MGDROZHK0X4","host":["https://api.eval.mintpro.in/v1"],"path":["products",":productName","proposals",":proposalId"],"query":[{"key":"referenceId","value":"MGDROZHK0X4"}],"variable":[{"key":"productName","value":"private-car","description":"(Required) The Product name\n  * `private-car` - Private Car\n  * `bike` - Bike \n  * `personal-accident` - Personal Accident\n"},{"key":"proposalId","value":"73bc6295-b5f6-4593-b2d7-549eaa3d622a","description":"(Required) The proposal id for which proposal need to be updated"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"0c89ec78-3bc3-4e9f-80c3-dc03d3e0ae89"},{"name":"Get Proposal By Proposal ID","id":"1370ea09-6384-4d69-b19f-69be6cac4449","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"url":"https://api.eval.mintpro.in/v1/products/:productName/proposals/:proposalId?referenceId=MGDROZHK0X4&planId=MPA","urlObject":{"path":["products",":productName","proposals",":proposalId"],"host":["https://api.eval.mintpro.in/v1"],"query":[{"description":{"content":"<p>(Required) The reference id for which proposal need to be fetched</p>\n","type":"text/plain"},"key":"referenceId","value":"MGDROZHK0X4"},{"description":{"content":"<p>The plan id is required to fetch proposal details for <b>personal-accident</b> product category</p>\n","type":"text/plain"},"key":"planId","value":"MPA"}],"variable":[{"id":"a67d5032-f1e4-4ee2-a6b4-bde42733415a","description":{"content":"<p>(Required) The Product name</p>\n<ul>\n<li><code>private-car</code> - Private Car</li>\n<li><code>bike</code> - Bike </li>\n<li><code>personal-accident</code> - Personal Accident</li>\n</ul>\n","type":"text/plain"},"type":"any","value":"private-car","key":"productName"},{"id":"342381c0-530c-4adc-ae7f-f0f743b600e9","description":{"content":"<p>(Required) The proposal id for which proposal need to be fetched</p>\n","type":"text/plain"},"type":"any","value":"73bc6295-b5f6-4593-b2d7-549eaa3d622a","key":"proposalId"}]}},"response":[{"id":"b8e55787-e12f-47f2-aae9-4fa21322b89c","name":"successful operation","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"(Required) Authorization token","key":"Authorization","value":"Bearer [YOUR_AUTH_TOKEN]"}],"url":{"raw":"https://api.eval.mintpro.in/v1/products/:productName/proposals/:proposalId?referenceId=MGDROZHK0X4&planId=MPA","host":["https://api.eval.mintpro.in/v1"],"path":["products",":productName","proposals",":proposalId"],"query":[{"key":"referenceId","value":"MGDROZHK0X4"},{"key":"planId","value":"MPA"}],"variable":[{"key":"productName","value":"private-car","description":"(Required) The Product name\n  * `private-car` - Private Car\n  * `bike` - Bike \n  * `personal-accident` - Personal Accident\n"},{"key":"proposalId","value":"73bc6295-b5f6-4593-b2d7-549eaa3d622a","description":"(Required) The proposal id for which proposal need to be fetched"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n  \"insurerProposalNo\": \"<string>\",\n  \"premiumResultId\": \"<uuid>\",\n  \"referenceId\": \"<string>\",\n  \"payMode\": \"<string>\",\n  \"personalDetails\": {\n   \"title\": \"<string>\",\n   \"firstName\": \"<string>\",\n   \"lastName\": \"<string>\",\n   \"email\": \"<string>\",\n   \"mobile\": \"<integer>\",\n   \"dob\": \"<datetime(dd/mm/yyyy)>\",\n   \"gender\": \"<string>\",\n   \"maritalStatus\": \"<string>\"\n  },\n  \"nomineeDetails\": {\n   \"relationship\": \"<string>\",\n   \"name\": \"<string>\",\n   \"dob\": \"<datetime(dd/mm/yyyy)>\"\n  },\n  \"registeredAddress\": {\n   \"cityId\": \"<string>\",\n   \"city\": \"<string>\",\n   \"pincode\": \"<integer>\",\n   \"address1\": \"<string>\",\n   \"address2\": \"<string>\"\n  },\n  \"otherDetails\": {\n   \"vehicleDetails\": {\n    \"engineNum\": \"<string>\",\n    \"chassisNum\": \"<string>\",\n    \"registrationNumber\": \"<string>\",\n    \"registrationDate\": \"<datetime(dd/mm/yyyy)>\"\n   },\n   \"prevPolicyDetails\": {\n    \"insurerCode\": \"<string>\",\n    \"isClaimMade\": \"<boolean>\",\n    \"ncb\": \"<integer>\",\n    \"policyType\": \"<string>\",\n    \"riskEndDate\": \"<datetime(dd/mm/yyyy)>\",\n    \"policyNumber\": \"<string>\"\n   }\n  }\n }\n}"},{"id":"bc6f3eb1-565f-45fa-8752-4ca3e002db24","name":"Invalid resource supplied","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"(Required) Authorization token","key":"Authorization","value":"Bearer [YOUR_AUTH_TOKEN]"}],"url":{"raw":"https://api.eval.mintpro.in/v1/products/:productName/proposals/:proposalId?referenceId=MGDROZHK0X4&planId=MPA","host":["https://api.eval.mintpro.in/v1"],"path":["products",":productName","proposals",":proposalId"],"query":[{"key":"referenceId","value":"MGDROZHK0X4"},{"key":"planId","value":"MPA"}],"variable":[{"key":"productName","value":"private-car","description":"(Required) The Product name\n  * `private-car` - Private Car\n  * `bike` - Bike \n  * `personal-accident` - Personal Accident\n"},{"key":"proposalId","value":"73bc6295-b5f6-4593-b2d7-549eaa3d622a","description":"(Required) The proposal id for which proposal need to be fetched"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"msg\": \"<string>\",\n \"errorCode\": \"<integer>\",\n \"error\": false\n}"},{"id":"8b6f6fbf-665c-4397-9e19-8829fd9d1b12","name":"resource not found","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"(Required) Authorization token","key":"Authorization","value":"Bearer [YOUR_AUTH_TOKEN]"}],"url":{"raw":"https://api.eval.mintpro.in/v1/products/:productName/proposals/:proposalId?referenceId=MGDROZHK0X4&planId=MPA","host":["https://api.eval.mintpro.in/v1"],"path":["products",":productName","proposals",":proposalId"],"query":[{"key":"referenceId","value":"MGDROZHK0X4"},{"key":"planId","value":"MPA"}],"variable":[{"key":"productName","value":"private-car","description":"(Required) The Product name\n  * `private-car` - Private Car\n  * `bike` - Bike \n  * `personal-accident` - Personal Accident\n"},{"key":"proposalId","value":"73bc6295-b5f6-4593-b2d7-549eaa3d622a","description":"(Required) The proposal id for which proposal need to be fetched"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"95b41fcd-7881-4e69-b823-7a07b3c37544","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"(Required) Authorization token","key":"Authorization","value":"Bearer [YOUR_AUTH_TOKEN]"}],"url":{"raw":"https://api.eval.mintpro.in/v1/products/:productName/proposals/:proposalId?referenceId=MGDROZHK0X4&planId=MPA","host":["https://api.eval.mintpro.in/v1"],"path":["products",":productName","proposals",":proposalId"],"query":[{"key":"referenceId","value":"MGDROZHK0X4"},{"key":"planId","value":"MPA"}],"variable":[{"key":"productName","value":"private-car","description":"(Required) The Product name\n  * `private-car` - Private Car\n  * `bike` - Bike \n  * `personal-accident` - Personal Accident\n"},{"key":"proposalId","value":"73bc6295-b5f6-4593-b2d7-549eaa3d622a","description":"(Required) The proposal id for which proposal need to be fetched"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"1370ea09-6384-4d69-b19f-69be6cac4449"}],"id":"355b5aba-2928-48cb-a535-cb8178918221","description":"<p>This APIs are used to generate proposal for Bike, Private Car &amp; Personal-Accident insurance. Below are the APIs which can be used to generate, update &amp; fetch the proposal</p>\n","event":[{"listen":"prerequest","script":{"id":"3e8c5cb5-caca-48a2-966a-87050453e869","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"fd7edb65-c145-42b5-b134-31b5bdbddf02","type":"text/javascript","exec":[""]}}],"_postman_id":"355b5aba-2928-48cb-a535-cb8178918221"},{"name":"Payment APIs","item":[{"name":"Get Modes of Payment","id":"64d8dbe3-528a-4059-a647-b8520d7ff4a2","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"url":"https://api.eval.mintpro.in/v1/products/:productName/payments/mode","urlObject":{"path":["products",":productName","payments","mode"],"host":["https://api.eval.mintpro.in/v1"],"query":[],"variable":[{"id":"2c3a0511-15ee-4744-bd86-b48d27da8d21","description":{"content":"<p>(Required) The Product name</p>\n<ul>\n<li><code>private-car</code> - Private Car</li>\n<li><code>bike</code> - Bike</li>\n<li><code>personal-accident</code> - Personal Accident</li>\n</ul>\n","type":"text/plain"},"type":"any","value":"private-car","key":"productName"}]}},"response":[{"id":"721e7a74-6cc1-4b3e-8362-c276552e22ad","name":"successful operation","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"(Required) Authorization token","key":"Authorization","value":"Bearer [YOUR_AUTH_TOKEN]"}],"url":{"raw":"https://api.eval.mintpro.in/v1/products/:productName/payments/mode","host":["https://api.eval.mintpro.in/v1"],"path":["products",":productName","payments","mode"],"variable":[{"key":"productName","value":"private-car","description":"(Required) The Product name\n  * `private-car` - Private Car\n  * `bike` - Bike\n  * `personal-accident` - Personal Accident\n"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n  \"payMode\": \"<array>\"\n },\n \"meta\": {\n  \"msg\": \"<string>\",\n  \"errorCode\": \"<integer>\",\n  \"error\": false\n },\n \"timestamp\": \"<datetime>\"\n}"},{"id":"793ad0d4-3d76-4835-a849-873f5fdc9aaa","name":"Invalid resource supplied","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"(Required) Authorization token","key":"Authorization","value":"Bearer [YOUR_AUTH_TOKEN]"}],"url":{"raw":"https://api.eval.mintpro.in/v1/products/:productName/payments/mode","host":["https://api.eval.mintpro.in/v1"],"path":["products",":productName","payments","mode"],"variable":[{"key":"productName","value":"private-car","description":"(Required) The Product name\n  * `private-car` - Private Car\n  * `bike` - Bike\n  * `personal-accident` - Personal Accident\n"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"msg\": \"<string>\",\n \"errorCode\": \"<integer>\",\n \"error\": false\n}"},{"id":"08a0a0c5-247b-4e26-a8e2-5a9fe94ddbfc","name":"resource not found","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"(Required) Authorization token","key":"Authorization","value":"Bearer [YOUR_AUTH_TOKEN]"}],"url":{"raw":"https://api.eval.mintpro.in/v1/products/:productName/payments/mode","host":["https://api.eval.mintpro.in/v1"],"path":["products",":productName","payments","mode"],"variable":[{"key":"productName","value":"private-car","description":"(Required) The Product name\n  * `private-car` - Private Car\n  * `bike` - Bike\n  * `personal-accident` - Personal Accident\n"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"fb17baf9-5e9a-47db-8097-d5e0a264bd4d","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"(Required) Authorization token","key":"Authorization","value":"Bearer [YOUR_AUTH_TOKEN]"}],"url":{"raw":"https://api.eval.mintpro.in/v1/products/:productName/payments/mode","host":["https://api.eval.mintpro.in/v1"],"path":["products",":productName","payments","mode"],"variable":[{"key":"productName","value":"private-car","description":"(Required) The Product name\n  * `private-car` - Private Car\n  * `bike` - Bike\n  * `personal-accident` - Personal Accident\n"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"64d8dbe3-528a-4059-a647-b8520d7ff4a2"},{"name":"Generate Payment Link","id":"82e0d0e3-1e45-44d3-ad27-1127e589ad30","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"proposalId\": \"<string>\",\n        \"referenceId\": \"<string>\",\n        \"payMode\": \"<string>\",\n        \"planId\": \"<string>\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.eval.mintpro.in/v1/products/:productName/payments/link","urlObject":{"path":["products",":productName","payments","link"],"host":["https://api.eval.mintpro.in/v1"],"query":[],"variable":[{"id":"88796e22-df00-435f-850a-77b991dc29ba","description":{"content":"<p>(Required) The Product name</p>\n<ul>\n<li><code>private-car</code> - Private Car</li>\n<li><code>bike</code> - Bike</li>\n<li><code>personal-accident</code> - Personal Accident</li>\n</ul>\n","type":"text/plain"},"type":"any","value":"private-car","key":"productName"}]}},"response":[{"id":"d2818dd4-729b-46a3-9a05-206de6c13ab7","name":"successful operation","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"(Required) Authorization token","key":"Authorization","value":"Bearer [YOUR_AUTH_TOKEN]"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"proposalId\": \"<string>\",\n        \"referenceId\": \"<string>\",\n        \"payMode\": \"<string>\",\n        \"planId\": \"<string>\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.eval.mintpro.in/v1/products/:productName/payments/link","host":["https://api.eval.mintpro.in/v1"],"path":["products",":productName","payments","link"],"variable":[{"key":"productName","value":"private-car","description":"(Required) The Product name\n  * `private-car` - Private Car\n  * `bike` - Bike\n  * `personal-accident` - Personal Accident\n"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n  \"paymentLink\": \"<string>\",\n  \"insurerProposalNo\": \"<string>\",\n  \"referenceId\": \"<string>\",\n  \"statusCode\": \"<integer>\",\n  \"statusMessage\": \"<string>\"\n },\n \"meta\": {\n  \"msg\": \"<string>\",\n  \"errorCode\": \"<integer>\",\n  \"error\": false\n },\n \"timestamp\": \"<datetime>\"\n}"},{"id":"2747cdc8-c66c-44b9-bca0-a2b0bb30f2d1","name":"Invalid resource supplied","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"(Required) Authorization token","key":"Authorization","value":"Bearer [YOUR_AUTH_TOKEN]"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"proposalId\": \"<string>\",\n        \"referenceId\": \"<string>\",\n        \"payMode\": \"<string>\",\n        \"planId\": \"<string>\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.eval.mintpro.in/v1/products/:productName/payments/link","host":["https://api.eval.mintpro.in/v1"],"path":["products",":productName","payments","link"],"variable":[{"key":"productName","value":"private-car","description":"(Required) The Product name\n  * `private-car` - Private Car\n  * `bike` - Bike\n  * `personal-accident` - Personal Accident\n"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"msg\": \"<string>\",\n \"errorCode\": \"<integer>\",\n \"error\": false\n}"},{"id":"13315638-af0a-4f5d-81a7-a5cb1287d217","name":"resource not found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"(Required) Authorization token","key":"Authorization","value":"Bearer [YOUR_AUTH_TOKEN]"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"proposalId\": \"<string>\",\n        \"referenceId\": \"<string>\",\n        \"payMode\": \"<string>\",\n        \"planId\": \"<string>\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.eval.mintpro.in/v1/products/:productName/payments/link","host":["https://api.eval.mintpro.in/v1"],"path":["products",":productName","payments","link"],"variable":[{"key":"productName","value":"private-car","description":"(Required) The Product name\n  * `private-car` - Private Car\n  * `bike` - Bike\n  * `personal-accident` - Personal Accident\n"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"15a13d22-328f-401b-9155-3d81a8eca3a3","name":"Internal Server Error","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"(Required) Authorization token","key":"Authorization","value":"Bearer [YOUR_AUTH_TOKEN]"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"proposalId\": \"<string>\",\n        \"referenceId\": \"<string>\",\n        \"payMode\": \"<string>\",\n        \"planId\": \"<string>\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.eval.mintpro.in/v1/products/:productName/payments/link","host":["https://api.eval.mintpro.in/v1"],"path":["products",":productName","payments","link"],"variable":[{"key":"productName","value":"private-car","description":"(Required) The Product name\n  * `private-car` - Private Car\n  * `bike` - Bike\n  * `personal-accident` - Personal Accident\n"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"82e0d0e3-1e45-44d3-ad27-1127e589ad30"}],"id":"326596f6-5f99-46d5-8098-d370b6f98e70","description":"<p>Payment related APIs can be accessed through this section.</p>\n","event":[{"listen":"prerequest","script":{"id":"2f9bc3a7-6a63-40b0-8433-43edfe873f3e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9aac41cd-5144-4ceb-892e-b4d2a707df60","type":"text/javascript","exec":[""]}}],"_postman_id":"326596f6-5f99-46d5-8098-d370b6f98e70"}],"variable":[{"id":"2a5c0279-497c-4dc7-9bba-bc77ae43865f","key":"baseUrl","value":"https://api.eval.mintpro.in/v1","type":"string"}]}