{"info":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","description":"<html><head></head><body><p><img src=\"https://aadhaarkyc.io/wp-content/uploads/2019/12/New-Project-6.png\" alt=\"image\"></p>\n<h2 id=\"introduction\">Introduction</h2>\n<p>The API is built using RESTful endpoints and standard HTTP verbs.</p>\n<ol>\n<li>Response codes are used to indicate the status of the message and any error codes.</li>\n<li>JSON is returned on all our API responses, including errors, with a consistent structure for all messages.</li>\n<li>Authentication to the API is performed via token-based auth.</li>\n<li>Requests to our API should be made as JSON, except when uploading documents.</li>\n<li>All API requests must be made over HTTPS. Calls made over plain HTTP will fail.</li>\n<li>All requests must use TLS 1.2 or above, with Server Name Indication enabled</li>\n<li>Text fields support UTF-8, but do not allow certain special characters that could be used maliciously.</li>\n</ol>\n<h2 id=\"api-status\">API Status</h2>\n<p>Status for the API can be found at <a href=\"https://status.aadhaarkyc.io\">status.aadhaarkyc.io</a>!</p>\n<h1 id=\"getting-started\">Getting Started</h1>\n<p>AadhaarKYC's API exposes the entire AadhaarKYC infrastructure via a standardized programmatic interface. Using AadhaarKYC's API, you can avail all of our services, while using your programming language of choice. The AadhaarKYC API is a RESTful API based on HTTP requests and JSON responses.</p>\n<p>This version of the API, version 1. All requests work on HTTPS.</p>\n<p>The easiest way to start using the AadhaarKYC API is by clicking the <strong>Run in Postman</strong> button above. <a href=\"https://www.getpostman.com/\">Postman</a> is a free tool which helps developers run and debug API requests, and is the source of truth for this documentation. Every endpoint you see documented here is readily available by running our Postman collection. </p>\n<h2 id=\"need-help\">Need help?</h2>\n<p>The AadhaarKYC engineers are always around answering questions. The quickest way to get help is by contacting us at <a href=\"mailto:techsupport@aadhaarkyc.io\">techsupport@aadhaarkyc.io</a></p>\n<p>All the resources require Token Authentication. So all requests have to be provided with an authorization header along with the token</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer &lt;YOUR_TOKEN&gt;\n</code></pre><h3 id=\"registration-quickstart\">Registration Quickstart</h3>\n<p>To get a token for staging and then subsequently for production contact us at - <a href=\"mailto:techsupport@aadhaarkyc.io\">techsupport@aadhaarkyc.io</a></p>\n<h2 id=\"trial-usage\">Trial Usage</h2>\n<p>The Aadhaar API provides a trial for 3 days with a usage limit of 50 requests. Contact us at <a href=\"mailto:techsupport@aadhaarkyc.io\">techsupport@aadhaarkyc.io</a> to start your trial.</p>\n<h1 id=\"endpoints\">Endpoints</h1>\n<p>The API is accessed by making HTTP requests to a specific version endpoint URL, in which GET or POST variables contain information about what you wish to access. Every endpoint is accessed via an SSL-enabled HTTPS.</p>\n<p>Everything (methods, parameters, etc.) is fixed to a version number, and every call must contain one. Different Versions are available at different endpoint URLs. The latest version is Version 1.</p>\n<p>The stable HTTP endpoint for the latest version is:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>`https://kyc-api.aadhaarkyc.io/api/v1`\n</code></pre><h2 id=\"responses\">Responses</h2>\n<p>Each response is wrapped in a data tag. This means if you have a response, it will always be within the data field. We also include a status code, success flag, type and message in the responseof each request. </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"data\": {\n        \"pan_number\": \"AAAPM1234L\",\n        \"full_name\": \"MUNNA BHAIYA\",\n        \"father_name\": \"KALEEN BHAIYA\",\n        \"client_id\": \"takdTqhCxo\",\n        \"dob\": \"1990-01-01\"\n},\n    \"status_code\": 200,\n    \"message\": \"\",\n    \"success\": true\n}\n</code></pre>\n<h1 id=\"authentication\">Authentication</h1>\n<p>The API uses token-based authentication. You will be provided with a token which must be included in the header of all requests made to the API.</p>\n<p>All API requests must be made over HTTPS. Any requests made over HTTP will fail.</p>\n<p>You will be provided with both live and sandbox tokens. Requests made with the sandbox token can be used to test our API before going live. Requests made in sandbox-mode will return actual responses and trial credits capped at 50 will be deducted from your account.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer &lt;YOUR_TOKEN&gt;\n</code></pre><h1 id=\"errors-and-status-codes\">Errors and Status Codes</h1>\n<p>Standard HTTP error codes are returned in the case of a failure. 2xx codes indicate a successful message; 4xx codes indicate an error caused by information provided by the client; and 5xx codes indicate an error on AadhaarKYC’s servers.</p>\n<h2 id=\"status-codes\">Status Codes</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status Codes</th>\n<th>Name</th>\n<th>Meaning</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>200</td>\n<td>OK</td>\n<td>Successful Request.</td>\n</tr>\n<tr>\n<td>201</td>\n<td>Created</td>\n<td>Resource successfully created.</td>\n</tr>\n<tr>\n<td>202</td>\n<td>Accepted</td>\n<td>Asynchronous Request. Response will be sent to configured Webhook.</td>\n</tr>\n<tr>\n<td>204</td>\n<td>No Content</td>\n<td>Successful with no Response.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"error-codes\">Error Codes</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Name</th>\n<th>Meaning</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>400</td>\n<td>Bad Request</td>\n<td>Malformed request</td>\n</tr>\n<tr>\n<td>401</td>\n<td>Unauthorized</td>\n<td>Invalid authorization credentials</td>\n</tr>\n<tr>\n<td>403</td>\n<td>Forbidden</td>\n<td>Action prohibited</td>\n</tr>\n<tr>\n<td>404</td>\n<td>Not Found</td>\n<td>Resource not found</td>\n</tr>\n<tr>\n<td>422</td>\n<td>Unprocessable Entity</td>\n<td>Validation error</td>\n</tr>\n<tr>\n<td>429</td>\n<td>Too Many Requests</td>\n<td>Rate limit reached</td>\n</tr>\n<tr>\n<td>500</td>\n<td>Internal Server Error</td>\n<td>An unexpected error occurred in our API</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"rate-limits\">Rate Limits</h1>\n<p>AadhaarKYC’s API enforces a maximum volume of requests per minute for all clients. Unless contractually agreed otherwise, the maximum rate is 100 requests per minute.</p>\n<p>Any request over the limit will return a 429 HTTP response.</p>\n<h2 id=\"avoiding-the-limit\">Avoiding the limit</h2>\n<p>The tips below are some simple suggestions to help reduce the possibility of being rate limited. We recommend:</p>\n<ol>\n<li>running non essential or routine batch API jobs outside your peak hours.</li>\n<li>throttling batch jobs.</li>\n<li>implementing an exponential back-off approach for requests essential to your verification process, with an initial delay of 30 seconds.</li>\n<li>prioritising requests that are essential to verify an active user.</li>\n<li>setting up monitors and alerts for error responses on our API.</li>\n</ol>\n<h2 id=\"api-deprecation\">API Deprecation</h2>\n<p>When an API endpoint is scheduled for deprecation the following actions will be taken: </p>\n<ol>\n<li>The endpoint documentation will be marked as deprececated and a migration plan will be added.</li>\n<li>The endpoint will have a <code>Sunset</code> header (<a href=\"https://tools.ietf.org/id/draft-wilde-sunset-header-03.html\">Sunset HTTP Header</a>) added to incidate the last date the endpoint should be relied upon. </li>\n<li>A email will be sent to active third party developers notifing of the deprecation.</li>\n<li>A entry to the API changelog table will be added.</li>\n</ol>\n<p>When the <code>Sunset</code> date has passed followup email will be sent to active third party developers notifing of the deprecation.</p>\n<h2 id=\"backwards-compatibility\">Backwards Compatibility</h2>\n<p>The following changes are considered backwards compatible:</p>\n<ol>\n<li>Adding new API endpoints.</li>\n<li>Adding new properties to the responses from existing API endpoints.</li>\n<li>Adding optional request parameters to existing API endpoints.</li>\n<li>Altering the format or length of IDs.</li>\n<li>Altering the message attributes returned by validation failures or other errors.</li>\n<li>Sending webhooks for new event types.</li>\n<li>Reordering properties returned from existing API endpoints.</li>\n</ol>\n<h1 id=\"api-changelog\">API Changelog</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Date Introduced</th>\n<th>Available Until</th>\n<th>Endpoint/ Resource Group</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>15-02-2019</td>\n<td>-</td>\n<td><a href=\"#rc-model\">Vehicle RC</a></td>\n</tr>\n<tr>\n<td>12-02-2019</td>\n<td>-</td>\n<td><a href=\"#events-model\">Webhooks</a></td>\n</tr>\n<tr>\n<td>11-02-2019</td>\n<td>-</td>\n<td><a href=\"#aadhaar-v2-model\">Aadhaar v2</a></td>\n</tr>\n<tr>\n<td>10-02-2019</td>\n<td>-</td>\n<td><a href=\"#aadhaar-validation-model\">Aadhaar Validation</a></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"additional-information\">Additional Information</h2>\n<p>If you have questions that aren't answered here, contact the Support Team - <a href=\"mailto:techsupport@aadhaarkyc.io\">techsupport@aadhaarkyc.io</a>.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Getting Started","slug":"getting-started"},{"content":"Endpoints","slug":"endpoints"},{"content":"Authentication","slug":"authentication"},{"content":"Errors and Status Codes","slug":"errors-and-status-codes"},{"content":"Rate Limits","slug":"rate-limits"},{"content":"API Changelog","slug":"api-changelog"}],"owner":"6629919","collectionId":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","publishedId":"UVsTp1x3","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2022-03-23T23:02:59.000Z"},"item":[{"name":"PAN","item":[{"name":"PAN Lite","event":[{"listen":"test","script":{"id":"ee0157e7-7547-4c2c-928c-45d5496d28db","exec":["let jsonData = pm.response.json()","let token = jsonData.data.client_id","pm.environment.set(\"client_id\", token)"],"type":"text/javascript"}}],"id":"8c4d0610-bb6c-4a94-bff9-062f866b9a14","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"id_number\": \"{{my_pan_number}}\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/pan/pan","description":"<p>Endpoint to get PAN details of a new client using PAN Number.</p>\n<p><strong>Request Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id_number</td>\n<td>String</td>\n<td>ID Number of the ID to run check on.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Body</strong></p>\n<p>Refer to <a href=\"#pan-model\">PAN Object Model</a> above.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","pan","pan"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"11c590f5-33ec-48a6-9cee-468df26214cb","name":"PAN Lite Response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"id_number\": \"GIVEN_PAN_NUMBER\"\n}","options":{"raw":{"language":"json"}}},"url":"https://kyc-api.aadhaarkyc.io/api/v1/pan/pan"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"pan_number\": \"AAAPM1234L\",\n        \"full_name\": \"MUNNA BHAIYA\",\n        \"client_id\": \"takdTqhCxo\",\n        \"category\": \"person\"\n    },\n    \"status_code\": 200,\n    \"message\": \"\",\n    \"success\": true\n}"}],"_postman_id":"8c4d0610-bb6c-4a94-bff9-062f866b9a14"}],"id":"f8d84c3f-f11a-4516-95ff-423b3a55bc6c","description":"<p>Request Group for PAN related requests.</p>\n<h2 id=\"pan-model\">PAN Model</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>pan_number</td>\n<td>String</td>\n<td>PAN Number of the Client</td>\n</tr>\n<tr>\n<td>full_name</td>\n<td>String</td>\n<td>Full Name as per PAN Records</td>\n</tr>\n<tr>\n<td>client_id</td>\n<td>String</td>\n<td>Unique identifier of this object/ query.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"pan-categories\">PAN Categories</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Possible Values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>company</td>\n</tr>\n<tr>\n<td>person</td>\n</tr>\n<tr>\n<td>huf</td>\n</tr>\n<tr>\n<td>firm</td>\n</tr>\n<tr>\n<td>aop</td>\n</tr>\n<tr>\n<td>aop_trust</td>\n</tr>\n<tr>\n<td>boi</td>\n</tr>\n<tr>\n<td>local_authority</td>\n</tr>\n<tr>\n<td>artificial_juridical_person</td>\n</tr>\n<tr>\n<td>government</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"f8d84c3f-f11a-4516-95ff-423b3a55bc6c","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"Aadhaar","item":[{"name":"Upload","item":[{"name":"Upload QR","id":"d76cb69f-666d-45e2-b4ae-38143bf63fd0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"qr_text","value":"","description":"<p>Aadhaar QR code text</p>\n","type":"text"}]},"url":"https://kyc-api.aadhaarkyc.io/api/v1/aadhaar/upload/qr","description":"<p>Endpoint to verify Aadhaar QR and extract details.</p>\n<p>Input through Text of QR.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","aadhaar","upload","qr"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"d76cb69f-666d-45e2-b4ae-38143bf63fd0"},{"name":"Upload XML","event":[{"listen":"test","script":{"id":"46242dfa-9b92-41fb-b551-febe0d2498e5","exec":[""],"type":"text/javascript"}}],"id":"a65ffe8f-e86c-480c-bbce-5d7ae0459fa2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"description":"<p>Zip file containting aadhaar XML</p>\n","key":"file","type":"file","value":null},{"key":"base64","value":"","description":"<p>Zip file containting aadhaar XML in Base64 Format</p>\n","type":"text"},{"description":"<p>Share code to decrypt zip file</p>\n","key":"share_code","type":"text","value":""}]},"url":"https://kyc-api.aadhaarkyc.io/api/v1/aadhaar/upload/xml","description":"<p>Endpoint to verify and extract details from Aadhaar XML.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","aadhaar","upload","xml"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"a65ffe8f-e86c-480c-bbce-5d7ae0459fa2"},{"name":"Upload eAadhaar","id":"19f8ac82-94b1-4cfa-9f43-c4fdc8b6c8d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","description":"<p>Aadhaar PDF file</p>\n","type":"file","value":null},{"key":"base64","value":"","description":"<p>Aadhaar PDF file in Base64 Format</p>\n","type":"text"},{"key":"yob","value":"","description":"<p>Year of Birth</p>\n","type":"text"},{"key":"full_name","value":"","description":"<p>Full name of person</p>\n","type":"text"}]},"url":"https://kyc-api.aadhaarkyc.io/api/v1/aadhaar/upload/eaadhaar","description":"<p>Endpoint to verify Aadhaar PDF and extract details</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","aadhaar","upload","eaadhaar"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"19f8ac82-94b1-4cfa-9f43-c4fdc8b6c8d3"}],"id":"90294029-8d54-4457-84bc-c90c1178647a","description":"<p>Request Group for Aadhaar Upload related requests.</p>\n<h2 id=\"aadhaar-address-model\">Aadhaar Address Model</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>dist</td>\n<td>String</td>\n<td>District as per Aadhaar Records</td>\n</tr>\n<tr>\n<td>house</td>\n<td>String</td>\n<td>House No. as per Aadhaar Records</td>\n</tr>\n<tr>\n<td>country</td>\n<td>String</td>\n<td>Country of residence as per Aadhaar Records</td>\n</tr>\n<tr>\n<td>subdist</td>\n<td>String</td>\n<td>Sub-District as per Aadhaar Records</td>\n</tr>\n<tr>\n<td>vtc</td>\n<td>String</td>\n<td>VTC as per Aadhaar Records</td>\n</tr>\n<tr>\n<td>po</td>\n<td>String</td>\n<td>Post Office as per Aadhaar Records</td>\n</tr>\n<tr>\n<td>state</td>\n<td>String</td>\n<td>State as per Aadhaar Records</td>\n</tr>\n<tr>\n<td>street</td>\n<td>String</td>\n<td>Street as per Aadhaar Records</td>\n</tr>\n<tr>\n<td>loc</td>\n<td>String</td>\n<td>Location as per Aadhaar Records</td>\n</tr>\n<tr>\n<td>full_address</td>\n<td>String</td>\n<td>Full Address as per Aadhaar Records</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"aadhaar-model\">Aadhaar Model</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>aadhaar_number</td>\n<td>String</td>\n<td>Aadhaar Number</td>\n</tr>\n<tr>\n<td>dob</td>\n<td>String</td>\n<td>Date of Birth as per Aadhaar Records (yyyy-mm-dd)</td>\n</tr>\n<tr>\n<td>zip</td>\n<td>String</td>\n<td>ZIP Code as per Aadhaar Records</td>\n</tr>\n<tr>\n<td>full_name</td>\n<td>String</td>\n<td>Full Name as per Aadhaar Records</td>\n</tr>\n<tr>\n<td>gender</td>\n<td>String</td>\n<td>Gender as per Aadhaar Records</td>\n</tr>\n<tr>\n<td>address</td>\n<td>AadhaarAddress</td>\n<td>Address as per Aadhaar Records</td>\n</tr>\n<tr>\n<td>client_id</td>\n<td>String</td>\n<td>Unique identifier of this object/ query.</td>\n</tr>\n<tr>\n<td>sign_status</td>\n<td>Boolean</td>\n<td>Signature Verified or not</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"d098f59a-91ab-45cf-8d2c-56a03d1d0ab4","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a338eed3-ca7e-4599-9005-520a7190316f","type":"text/javascript","exec":[""]}}],"_postman_id":"90294029-8d54-4457-84bc-c90c1178647a","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"Aadhaar Validation","item":[{"name":"Aadhaar Validation","event":[{"listen":"test","script":{"id":"1386ad1f-c9ae-427e-888d-b71bb17d7865","exec":["let jsonData = pm.response.json()","let token = jsonData.data.client_id","pm.environment.set(\"client_id\", token)"],"type":"text/javascript"}}],"id":"c42ef117-aa5b-4f18-abcd-d994a1516ac2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"id_number\":  \"GIVEN_AADHAAR_NUMBER\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/aadhaar-validation/aadhaar-validation","description":"<p>Endpoint to validate from given Aadhaar Number.</p>\n<p><strong>Request Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id_number</td>\n<td>String</td>\n<td>ID Number of the ID to run check on.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Body</strong></p>\n<p>Refer to <a href=\"#aadhaar-validation-model\"> Aadhaar Validation Object Model</a> above.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","aadhaar-validation","aadhaar-validation"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"d673d7af-f757-41f8-9a5f-f0b89b64fa66","name":"Aadhaar Validation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer YOUR_TOKEN","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"id_number\":  \"GIVEN_AADHAAR_NUMBER\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/aadhaar-validation/aadhaar-validation"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"age_range\": \"20-30\",\n        \"state\": \"UTTAR PRADESH\",\n        \"is_mobile\": true,\n        \"gender\": \"M\",\n        \"aadhaar_number\": \"543298761234\",\n        \"last_digits\": \"700\",\n        \"client_id\": \"takdTqhCxo\"\n    },\n    \"status_code\": 200,\n    \"message\": \"\",\n    \"success\": true\n}"}],"_postman_id":"c42ef117-aa5b-4f18-abcd-d994a1516ac2"}],"id":"231ad4bc-b165-4f9b-a4a1-78d84f9aace2","description":"<p>Request Group for Aadhaar Validation related requests.</p>\n<h2 id=\"aadhaar-validation-model\">Aadhaar Validation Model</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>String</td>\n<td>Unique identifier of this object/ query.</td>\n</tr>\n<tr>\n<td>age_range</td>\n<td>String</td>\n<td>Age Range as per Aadhaar Data.</td>\n</tr>\n<tr>\n<td>is_mobile</td>\n<td>Boolean</td>\n<td>Mobile linking status with Aadhaar</td>\n</tr>\n<tr>\n<td>gender</td>\n<td>String</td>\n<td>Gender as per Aadhaar Data</td>\n</tr>\n<tr>\n<td>last_digits</td>\n<td>String</td>\n<td>Last 3 digits of Aadhaar Linked number.</td>\n</tr>\n<tr>\n<td>state</td>\n<td>String</td>\n<td>State as per Aadhaar Records</td>\n</tr>\n<tr>\n<td>aadhaar_number</td>\n<td>String</td>\n<td>ID Number of the ID to run check on.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"5996defd-1794-4b85-8990-d99b445e7958","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"0ba3acc8-c0b2-45c4-ab5b-7594b7cbcde4","type":"text/javascript","exec":[""]}}],"_postman_id":"231ad4bc-b165-4f9b-a4a1-78d84f9aace2","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"Aadhaar v2","item":[{"name":"Generate OTP v2","event":[{"listen":"test","script":{"id":"b2db57db-307e-4169-ad80-ac59fc7b5863","exec":["let jsonData = pm.response.json()","let token = jsonData.data.client_id","pm.environment.set(\"client_id\", token)","postman.setNextRequest(\"Submit Info via Text\")"],"type":"text/javascript"}}],"id":"6660dd90-81cd-49ce-a6de-cc605c0c44cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"id_number\": \"GIVEN_AADHAAR_NUMBER\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/aadhaar-v2/generate-otp","description":"<p>Endpoint to generate OTP from given Aadhaar Number.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Wait 45 seconds to generate OTP for same Aadhaar Number.\nStatus Code 429 is sent in case request is sent in less than the prescribed time.\n</code></pre><p><strong>Request Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id_number</td>\n<td>String</td>\n<td>ID Number of the ID to run check on.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>String</td>\n<td>An unexpected error occurred in our API</td>\n</tr>\n<tr>\n<td>otp_sent</td>\n<td>Boolean</td>\n<td>Whether OTP Sent</td>\n</tr>\n<tr>\n<td>if_number</td>\n<td>Boolean</td>\n<td>If Number exists</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","aadhaar-v2","generate-otp"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"5885b79c-7c52-49ad-b712-7ad6ef0eaca9","name":"Generate OTP V2 - Rate Limited","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"Bearer YOUR_TOKEN","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"id_number\": \"GIVEN_AADHAAR_NUMBER\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/aadhaar-v2/generate-otp"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": null,\n    \"status_code\": 429,\n    \"message\": \"\",\n    \"success\": false,\n    \"type\": \"aadhaar_v2_generate\"\n}"},{"id":"f3d9d6f9-f7ad-484f-815b-484ab518ec8e","name":"Generate OTP V2","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer YOUR_TOKEN","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"id_number\": \"GIVEN_AADHAAR_NUMBER\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/aadhaar-v2/generate-otp"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"if_number\": true,\n        \"otp_sent\": true,\n        \"client_id\": \"takdTqhCxo\"\n    },\n    \"status_code\": 200,\n    \"message\": \"\",\n    \"success\": true,\n    \"type\": \"aadhaar_v2_generate\"\n}"},{"id":"b579bf3d-99ae-4f02-b09f-e67082b178a2","name":"Generate OTP V2 - Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"Bearer YOUR_TOKEN","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"id_number\": \"GIVEN_AADHAAR_NUMBER\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/aadhaar-v2/generate-otp"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"if_number\": false,\n        \"otp_sent\": false,\n        \"client_id\": \"takdTqhCxo\"\n    },\n    \"status_code\": 422,\n    \"message\": \"\",\n    \"success\": false,\n    \"type\": \"aadhaar_v2_generate\"\n}"}],"_postman_id":"6660dd90-81cd-49ce-a6de-cc605c0c44cf"},{"name":"Submit OTP v2","event":[{"listen":"test","script":{"id":"d57961b1-63c7-4c2a-99db-29edcf0b14da","exec":["let jsonData = pm.response.json()","let token = jsonData.data.client_id","pm.environment.set(\"client_id\", token)","postman.setNextRequest(\"Submit Info via Text\")"],"type":"text/javascript"}}],"id":"e8417dc3-6701-485c-9fdc-30155b87b233","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"client_id\": \"GENERATED_CLIENT_ID\",\n\t\"otp\": \"{{otp}}\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/aadhaar-v2/submit-otp","description":"<p>Endpoint to submit OTP after successful Generate OTP Request.</p>\n<p><strong>Request Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>String</td>\n<td>ID Number of the ID to run check on.</td>\n</tr>\n<tr>\n<td>mobile_number</td>\n<td>String</td>\n<td>Mobile Number to cross verify with records.</td>\n</tr>\n<tr>\n<td>otp</td>\n<td>String</td>\n<td>OTP Received.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Body</strong></p>\n<p>Refer to <a href=\"#aadhaar-v2-model\">Aadhaar v2 Object Model</a> above.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","aadhaar-v2","submit-otp"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"12a33d0a-7018-4c1f-b81e-cb0134c0c831","name":"Submit OTP v2 - Renerate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"client_id\": \"GENERATED_CLIENT_ID\",\n\t\"otp\": \"708768\"\n}","options":{"raw":{"language":"json"}}},"url":"https://kyc-api.aadhaarkyc.io/api/v1/aadhaar-v2/submit-otp"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"data\": {\r\n        \"client_id\": \"aadhaar_v2_HefqKbsAPrKnCfhsmoPd\",\r\n        \"full_name\": null,\r\n        \"aadhaar_number\": null,\r\n        \"dob\": null,\r\n        \"gender\": null,\r\n        \"address\": {\r\n            \"country\": null,\r\n            \"dist\": null,\r\n            \"state\": null,\r\n            \"po\": null,\r\n            \"loc\": null,\r\n            \"vtc\": null,\r\n            \"subdist\": null,\r\n            \"street\": null,\r\n            \"house\": null,\r\n            \"landmark\": null\r\n        },\r\n        \"face_status\": false,\r\n        \"face_score\": -1,\r\n        \"zip\": null,\r\n        \"profile_image\": null,\r\n        \"has_image\": false,\r\n        \"raw_xml\": null,\r\n        \"zip_data\": null,\r\n        \"care_of\": null,\r\n        \"share_code\": null,\r\n        \"mobile_verified\": null,\r\n        \"reference_id\": null,\r\n        \"aadhaar_pdf\": null\r\n    },\r\n    \"status_code\": 500,\r\n    \"success\": false,\r\n    \"message\": \"Regenerate OTP.\",\r\n    \"message_code\": \"regenerate_otp\"\r\n}"},{"id":"43ceb3c8-4ea5-442c-9a02-aec5f8fb7711","name":"Submit OTP V2","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer YOUR_TOKEN","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"client_id\": \"GENERATED_CLIENT_ID\",\n    \"otp\": \"{{otp}}\",\n    \"mobile_number\": \"9988776655\"\n}","options":{"raw":{"language":"json"}}},"url":"https://kyc-api.aadhaarkyc.io/api/v1/aadhaar-v2/submit-otp"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"gender\": \"M\",\n        \"address\": {\n            \"loc\": \"mirzapur\",\n            \"country\": \"India\",\n            \"house\": \"tripathi haveli, mirzapur\",\n            \"subdist\": \"mirzapur\",\n            \"vtc\": \"mirzapur\",\n            \"po\": \"mirzapur\",\n            \"state\": \"uttar pradesh\",\n            \"street\": \"tripathi lane\",\n            \"dist\": \"mirzapur\"\n        },\n        \"aadhaar_number\": \"543298761234\",\n        \"dob\": \"1990-08-31\",\n        \"client_id\": \"ZGTaWjbbfv\",\n        \"zip\": \"231001\",\n        \"full_name\": \"Munna Bhaiya\",\n        \"zip_data\": \"https://aadhaar-api-docs.s3.amazonaws.com/aadhaar_offline_xml.zip\",\n        \"care_of\": \"S/O: Kaleen Bhaiya\",\n        \"profile_image\": \"base64_image\",\n        \"raw_xml\": \"https://aadhaar-api-docs.s3.amazonaws.com/aadhaar_offline_raw_xml.xml\",\n        \"share_code\": \"1234\",\n        \"mobile_verified\": true,\n        \"reference_id\": \"123420201012232726518\"\n    },\n    \"status_code\": 200,\n    \"message\": \"\",\n    \"success\": true,\n    \"type\": \"aadhaav_v2_model\"\n}"}],"_postman_id":"e8417dc3-6701-485c-9fdc-30155b87b233"}],"id":"9e01e4bc-54f3-4e98-8227-8aa5f64a0011","description":"<p>Request Group for Aadhaar V2 related requests.</p>\n<h2 id=\"aadhaar-v2-address-model\">Aadhaar V2 Address Model</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>dist</td>\n<td>String</td>\n<td>District as per Aadhaar Records</td>\n</tr>\n<tr>\n<td>house</td>\n<td>String</td>\n<td>House No. as per Aadhaar Records</td>\n</tr>\n<tr>\n<td>country</td>\n<td>String</td>\n<td>Country of residence as per Aadhaar Records</td>\n</tr>\n<tr>\n<td>subdist</td>\n<td>String</td>\n<td>Sub-District as per Aadhaar Records</td>\n</tr>\n<tr>\n<td>vtc</td>\n<td>String</td>\n<td>VTC as per Aadhaar Records</td>\n</tr>\n<tr>\n<td>po</td>\n<td>String</td>\n<td>Post Office as per Aadhaar Records</td>\n</tr>\n<tr>\n<td>state</td>\n<td>String</td>\n<td>State as per Aadhaar Records</td>\n</tr>\n<tr>\n<td>street</td>\n<td>String</td>\n<td>Street as per Aadhaar Records</td>\n</tr>\n<tr>\n<td>loc</td>\n<td>String</td>\n<td>Location as per Aadhaar Records</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"aadhaar-v2-model\">Aadhaar V2 Model</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>aadhaar_number</td>\n<td>String</td>\n<td>Aadhaar Number</td>\n</tr>\n<tr>\n<td>dob</td>\n<td>String</td>\n<td>Date of Birth as per Aadhaar Records (yyyy-mm-dd)</td>\n</tr>\n<tr>\n<td>zip</td>\n<td>String</td>\n<td>ZIP Code as per Aadhaar Records</td>\n</tr>\n<tr>\n<td>full_name</td>\n<td>String</td>\n<td>Full Name as per Aadhaar Records</td>\n</tr>\n<tr>\n<td>gender</td>\n<td>String</td>\n<td>Gender as per Aadhaar Records</td>\n</tr>\n<tr>\n<td>address</td>\n<td>AadhaarAddress</td>\n<td>Address as per Aadhaar Records</td>\n</tr>\n<tr>\n<td>client_id</td>\n<td>String</td>\n<td>Unique identifier of this object/ query.</td>\n</tr>\n<tr>\n<td>profile_image</td>\n<td>String</td>\n<td>Base64 image as per the Aadhaar.</td>\n</tr>\n<tr>\n<td>zip_data</td>\n<td>String</td>\n<td>URL of the Zip File.</td>\n</tr>\n<tr>\n<td>raw_xml</td>\n<td>String</td>\n<td>URL of the XML File.</td>\n</tr>\n<tr>\n<td>share_code</td>\n<td>String</td>\n<td>Share code of the ZIP File.</td>\n</tr>\n<tr>\n<td>care_of</td>\n<td>String</td>\n<td>Care of as per Aadhaar Records.</td>\n</tr>\n<tr>\n<td>mobile_verified</td>\n<td>Boolean</td>\n<td>True if provided mobile number matches with Aadhaar</td>\n</tr>\n<tr>\n<td>reference_id</td>\n<td>String</td>\n<td>Reference ID of XML as per Aadhaar Records.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"abc29764-9412-4615-87f3-61912ee98806","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"5d14cde2-c031-419b-afbe-9ad00480f328","type":"text/javascript","exec":[""]}}],"_postman_id":"9e01e4bc-54f3-4e98-8227-8aa5f64a0011","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}}],"id":"79b9776a-094c-4136-8c53-e804dbe7616b","description":"<h2 id=\"requests-categories-for-different-types-of-aadhaar-verification\">Requests Categories for different types of Aadhaar Verification</h2>\n","_postman_id":"79b9776a-094c-4136-8c53-e804dbe7616b","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"Bank Verification","item":[{"name":"Bank Verification","event":[{"listen":"test","script":{"id":"7af95cca-e11d-49c3-8ce8-5b6922753d78","exec":["let jsonData = pm.response.json()","let token = jsonData.data.client_id","pm.environment.set(\"client_id\", token)"],"type":"text/javascript"}}],"id":"8fad1ea5-1a20-43a6-9a29-5c79719efbb0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"id_number\": \"GIVEN_ACCOUNT_NUMBER\",\n\t\"ifsc\": \"GIVEN_IFSC\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/bank-verification/","description":"<p>Endpoint to verify Bank details of a new client using Bank Account Number or IFSC.</p>\n<p><strong>Request Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id_number</td>\n<td>String</td>\n<td>ID Number of the ID to run check on.</td>\n</tr>\n<tr>\n<td>ifsc</td>\n<td>String</td>\n<td>IFSC code of the bank branch.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Body</strong></p>\n<p>Refer to <a href=\"#bank-verification-model\">Bank Verification Object Model</a> above.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","bank-verification",""],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"ee7ef40a-1704-4638-8d38-99a5f0beabaa","name":"Bank Verification Response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"id_number\": \"GIVEN_ACCOUNT_NUMBER\",\n\t\"ifsc\": \"GIVEN_IFSC\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/bank-verification"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"account_number\": \"01234567890\",\n        \"full_name\": \"MUNNA BHAIYA\",\n        \"client_id\": \"takdTqhCxo\",\n        \"amount_deposited\": 1.00,\n        \"account_exists\": true\n    },\n    \"status_code\": 200,\n    \"message\": \"\",\n    \"success\": true\n}"}],"_postman_id":"8fad1ea5-1a20-43a6-9a29-5c79719efbb0"},{"name":"UPI Verification","event":[{"listen":"test","script":{"id":"7af95cca-e11d-49c3-8ce8-5b6922753d78","exec":["let jsonData = pm.response.json()","let token = jsonData.data.client_id","pm.environment.set(\"client_id\", token)"],"type":"text/javascript"}}],"id":"08dd54c9-636d-4c4e-a7cf-996db4c5e8b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"upi_id\": \"{{upi_id}}\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/bank-verification/upi-verification","description":"<p>Endpoint to verify UPI details of a new client using UPI ID.</p>\n<p><strong>Request Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>upi_id</td>\n<td>String</td>\n<td>UPI ID or VPA of the account holder.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Body</strong></p>\n<p>Refer to <a href=\"#upi-verification-model\">UPI Verification Object Model</a> above.</p>\n<p><strong>Sample cases for Sandbox</strong></p>\n<p>Success - success@upi</p>\n<p>Failure - failure@upi</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","bank-verification","upi-verification"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"ab210e82-a32b-42e0-bed8-e2b3db12b14e","name":"Bank Verification Response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"id_number\": \"GIVEN_ACCOUNT_NUMBER\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/bank-verification"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"account_number\": \"01234567890\",\n        \"full_name\": \"MUNNA BHAIYA\",\n        \"client_id\": \"takdTqhCxo\",\n        \"amount_deposited\": 1.00,\n        \"account_exists\": true\n    },\n    \"status_code\": 200,\n    \"message\": \"\",\n    \"success\": true\n}"}],"_postman_id":"08dd54c9-636d-4c4e-a7cf-996db4c5e8b8"}],"id":"55b596ca-59b0-4152-82bd-7c4e565fdb55","description":"<p>Request Group for Bank Verification related requests.</p>\n<h2 id=\"bank-verification-model\">Bank Verification Model</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>account_exists</td>\n<td>Boolean</td>\n<td>Account exists or not</td>\n</tr>\n<tr>\n<td>full_name</td>\n<td>String</td>\n<td>Full Name as per Bank Records</td>\n</tr>\n<tr>\n<td>amount_deposited</td>\n<td>float</td>\n<td>Amount Deposited in teh account</td>\n</tr>\n<tr>\n<td>client_id</td>\n<td>String</td>\n<td>Unique identifier of this object/ query.</td>\n</tr>\n<tr>\n<td>account_number</td>\n<td>String</td>\n<td>Bank Account number.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"upi-verification-model\">UPI Verification Model</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>account_exists</td>\n<td>Boolean</td>\n<td>Account exists or not</td>\n</tr>\n<tr>\n<td>full_name</td>\n<td>String</td>\n<td>Full Name as per Bank Records</td>\n</tr>\n<tr>\n<td>client_id</td>\n<td>String</td>\n<td>Unique identifier of this object/ query.</td>\n</tr>\n<tr>\n<td>UPI ID</td>\n<td>String</td>\n<td>UPI ID or VPA of account holder.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"75bd6ddc-059f-4970-a51a-d65059661954","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"6b178328-b6a1-4068-bb0d-5d5e128d713e","type":"text/javascript","exec":[""]}}],"_postman_id":"55b596ca-59b0-4152-82bd-7c4e565fdb55","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"Voter ID","item":[{"name":"Voter ID","event":[{"listen":"test","script":{"id":"4a81fd21-1700-4c73-ad16-d34eb6ad2746","exec":["let jsonData = pm.response.json()","let token = jsonData.data.client_id","pm.environment.set(\"client_id\", token)"],"type":"text/javascript"}}],"id":"5fb6df2c-560a-45c0-b4c3-17fcbba39002","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"id_number\": \"GIVEN_EPIC_NUMBER\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/voter-id/voter-id","description":"<p>Endpoint to get details of Voter ID as per the given ID Number.</p>\n<p><strong>Request Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id_number</td>\n<td>String</td>\n<td>ID Number of the ID to run check on.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Body</strong></p>\n<p>Refer to <a href=\"#voter-id-model\">Voter ID Object Model</a> above.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","voter-id","voter-id"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"64cdb21f-5236-4bac-b3fa-76d799aebed8","name":"Voter ID By Number","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer YOUR_TOKEN","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"id_number\": \"{{voter_id_number}}\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/voter-id/voter-id"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 08 Feb 2019 20:50:23 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"4a60f7ceca94c83d-AMS"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"client_id\": \"voter_pOZMKtFvHmTunivpukrv\",\n        \"epic_no\": \"XGV1234567\",\n        \"gender\": \"M\",\n        \"state\": \"UTTAR PRADESH\",\n        \"name\": \"MUNNA BHAIYA\",\n        \"relation_name\": \"KALEEN BHAIYA\",\n        \"relation_type\": \"F\",\n        \"house_no\": \"\",\n        \"dob\": null,\n        \"age\": \"24\",\n        \"area\": \"MIRZAPUR\",\n        \"additional_check\": [],\n        \"multiple\": false,\n        \"last_update\": \"2021-01-24\",\n        \"assembly_constituency\": \"MIRZAPUR\",\n        \"assembly_constituency_number\": \"3\",\n        \"polling_station\": \"GOVT SARVODAYA KANYA VIDYALAYA MIRZAPUR\",\n        \"part_number\": \"136\",\n        \"part_name\": \"MIRZAPUR\",\n        \"parliamentary_constituency\": \"MIRZAPUR\"\n    },\n    \"status_code\": 200,\n    \"success\": true,\n    \"message\": null,\n    \"message_code\": \"success\"\n}"}],"_postman_id":"5fb6df2c-560a-45c0-b4c3-17fcbba39002"}],"id":"6ef9f4c0-9b07-4443-a9d2-f918c439a1d6","description":"<p>Request Group for Voter ID related requests.</p>\n<h2 id=\"voter-id-model\">Voter ID Model</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>name</th>\n<th>String</th>\n<th>Name as per Voter ID Records</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>gender</td>\n<td>String</td>\n<td>Gender as per Voter ID Records</td>\n</tr>\n<tr>\n<td>epic_no</td>\n<td>String</td>\n<td>Voter ID Number of the User</td>\n</tr>\n<tr>\n<td>dob</td>\n<td>String</td>\n<td>Date of Birth as per Voter ID Records. Format(yyyy-mm-dd)(Deprecated)</td>\n</tr>\n<tr>\n<td>relation_name</td>\n<td>String</td>\n<td>Relation Name (Father/Husband)</td>\n</tr>\n<tr>\n<td>relation_type</td>\n<td>String</td>\n<td>Type of Relation with the Voter ID Holder</td>\n</tr>\n<tr>\n<td>state</td>\n<td>String</td>\n<td>State as per Voter ID Records</td>\n</tr>\n<tr>\n<td>house_no</td>\n<td>String</td>\n<td>House Number as per Voter ID Records. (Deprecated)</td>\n</tr>\n<tr>\n<td>area</td>\n<td>String</td>\n<td>Address Area as per Voter ID Records</td>\n</tr>\n<tr>\n<td>client_id</td>\n<td>String</td>\n<td>Unique identifier of this object/ query.</td>\n</tr>\n<tr>\n<td>multiple</td>\n<td>Boolean</td>\n<td>Multiple records exists for the user.</td>\n</tr>\n<tr>\n<td>last_update</td>\n<td>String</td>\n<td>Date of last update in Voter DB. (yyyy-mm-dd)</td>\n</tr>\n<tr>\n<td>assembly_constituency</td>\n<td>String</td>\n<td>Assembly Constituency as per Voter DB.</td>\n</tr>\n<tr>\n<td>assembly_constituency_number</td>\n<td>String</td>\n<td>Assembly Constituency Number as per Voter DB.</td>\n</tr>\n<tr>\n<td>polling_station</td>\n<td>String</td>\n<td>Polling Station as per Voter DB.</td>\n</tr>\n<tr>\n<td>part_name</td>\n<td>String</td>\n<td>Part Name as per Voter DB</td>\n</tr>\n<tr>\n<td>part_number</td>\n<td>String</td>\n<td>Part Number as per Voter DB.</td>\n</tr>\n<tr>\n<td>parliamentary_constituency</td>\n<td>String</td>\n<td>Parliamentary Constituency as per Voter DB.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"8c3953bb-3e8d-4533-9046-651588ca0e09","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a9f25036-ae83-4506-9955-bc8b228f6fcd","type":"text/javascript","exec":[""]}}],"_postman_id":"6ef9f4c0-9b07-4443-a9d2-f918c439a1d6","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"License","item":[{"name":"License","event":[{"listen":"test","script":{"id":"598645fb-6318-433e-9bea-e667a1e3d6d1","exec":["let jsonData = pm.response.json()","let token = jsonData.data.client_id","pm.environment.set(\"client_id\", token)"],"type":"text/javascript"}}],"id":"2275b9f4-e4c6-48cf-a8da-3986e46135a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"id_number\": \"GIVEN_LICENSE_NUMBER\",\n    \"dob\": {{dob}}\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/driving-license/driving-license","description":"<p>Endpoint to get details of driving license as per the given ID Number.</p>\n<p><strong>Request Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id_number</td>\n<td>String</td>\n<td>ID Number of the ID to run check on.</td>\n</tr>\n<tr>\n<td>dob</td>\n<td>String</td>\n<td>DOB in yyyy-mm-dd format.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Note - DOB is optional only for some states like Kerala, Telangana</p>\n<p><strong>Response Body</strong></p>\n<p>Refer to <a href=\"#license-model\">License Object Model</a> above.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","driving-license","driving-license"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"6c1b9261-7d2d-42e4-b7f3-7019e0e06ef8","name":"License","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer YOUR_TOKEN","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"id_number\": \"GIVEN_LICENSE_NUMBER\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/driving-license/driving-license"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"temporary_address\": \"TRIPATHI HAVELI, MIRZAPUR\",\n        \"father_or_husband_name\": \"KALEEN BHAIYA\",\n        \"doe\": \"2032-07-23\",\n        \"temporary_zip\": \"231001\",\n        \"permanent_address\": \"TRIPATHI HAVELI, MIRZAPUR\",\n        \"doi\": \"2012-07-24\",\n        \"client_id\": \"dIysSjHnIG\",\n        \"citizenship\": \"IND\",\n        \"dob\": \"1990-08-31\",\n        \"permanent_zip\": \"231001\",\n        \"gender\": \"Male\",\n        \"license_number\": \"UP20 20150000000\",\n        \"name\": \"MUNNA BHAIYA\",\n        \"state\": \"UP\",\n        \"ola_name\": \"DISTRICT TRANSPORT OFFICE, MIRZAPUR\",\n        \"ola_code\": \"UP20\"\n    },\n    \"status_code\": 200,\n    \"message\": \"\",\n    \"success\": true\n}"}],"_postman_id":"2275b9f4-e4c6-48cf-a8da-3986e46135a4"}],"id":"df37ab38-ca9c-4398-9258-0336b80bb5ef","description":"<p>Request Group for Passport related requests.</p>\n<h2 id=\"license-model\">License Model</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>license_number</td>\n<td>String</td>\n<td>License number of the Client</td>\n</tr>\n<tr>\n<td>state_code</td>\n<td>String</td>\n<td>State Code as per DL Records</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String</td>\n<td>Full Name as per DL Records</td>\n</tr>\n<tr>\n<td>has_image</td>\n<td>Boolean</td>\n<td>Flag for presence of face image in Response.</td>\n</tr>\n<tr>\n<td>less_info</td>\n<td>Boolean</td>\n<td>Flag for less information in response for some states</td>\n</tr>\n<tr>\n<td>profile_image</td>\n<td>String</td>\n<td>Base64 Image as per DL Records</td>\n</tr>\n<tr>\n<td>vehicle_classes</td>\n<td>Array</td>\n<td>Vehicle classes allowed on DL</td>\n</tr>\n<tr>\n<td>permanent_address</td>\n<td>String</td>\n<td>Permanent Address as per DL Records</td>\n</tr>\n<tr>\n<td>permanent_zip</td>\n<td>String</td>\n<td>Permanent as ZIP Code as per DL Records</td>\n</tr>\n<tr>\n<td>temporary_address</td>\n<td>String</td>\n<td>Temporary Address as per DL Records (Same as Permanent address in case of no different records)</td>\n</tr>\n<tr>\n<td>temporary_zip</td>\n<td>String</td>\n<td>Temporary ZIP Code as per DL Records (Same as Permanent ZIP Code in case of no different records)</td>\n</tr>\n<tr>\n<td>citizenship</td>\n<td>String</td>\n<td>Citizenship as per DL Records</td>\n</tr>\n<tr>\n<td>ola_name</td>\n<td>String</td>\n<td>RTO of issuance as per DL Records</td>\n</tr>\n<tr>\n<td>ola_code</td>\n<td>String</td>\n<td>OLA Code of RTO as per DL Records</td>\n</tr>\n<tr>\n<td>gender</td>\n<td>String</td>\n<td>Gender as per DL Records(M, F or X)</td>\n</tr>\n<tr>\n<td>care_of</td>\n<td>String</td>\n<td>Father/Husband/Guardian Name as per DL Records</td>\n</tr>\n<tr>\n<td>dob</td>\n<td>String</td>\n<td>Date of Birth as per DL Records</td>\n</tr>\n<tr>\n<td>transport_doe</td>\n<td>String</td>\n<td>Date of Expiry of License for transport vehicle as per DL Records</td>\n</tr>\n<tr>\n<td>doe</td>\n<td>String</td>\n<td>Date of Expiry of License as per DL Records</td>\n</tr>\n<tr>\n<td>transport_doi</td>\n<td>String</td>\n<td>Date of Issuance of License for transport vehicle as per DL Records</td>\n</tr>\n<tr>\n<td>doi</td>\n<td>String</td>\n<td>Date of Issuance of License as per DL Records</td>\n</tr>\n<tr>\n<td>client_id</td>\n<td>String</td>\n<td>Unique identifier of this object/ query.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"d82dc420-c79b-4fa2-b79a-90574b759ece","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f75dda6b-b959-4fe3-a9d8-c5c9a8033210","type":"text/javascript","exec":[""]}}],"_postman_id":"df37ab38-ca9c-4398-9258-0336b80bb5ef","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"Passport","item":[{"name":"Create Client","event":[{"listen":"test","script":{"id":"72f82ef7-0924-4f5e-ba1b-5602cb17c5b1","exec":["let jsonData = pm.response.json()","let token = jsonData.data.client_id","pm.environment.set(\"client_id\", token)","postman.setNextRequest(\"Submit Info via Text\")"],"type":"text/javascript"}}],"id":"97e99ff3-518f-47a5-8d0f-e20fff8bb974","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":""},"url":"https://kyc-api.aadhaarkyc.io/api/v1/passport/passport/create","description":"<p>Endpoint to generate a unique resource to upload data and run checks on.</p>\n<p><strong>Request Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>String</td>\n<td>Unique identifier of this object/ query.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","passport","passport","create"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"9bc27d90-1815-404c-a0e1-ae556f5ca222","name":"Create Client","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer YOUR_TOKEN","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://kyc-api.aadhaarkyc.io/api/v1/passport/passport/create"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"client_id\": \"takdTqhCxo\"\n    },\n    \"status_code\": 201,\n    \"message\": \"\",\n    \"success\": true\n}"}],"_postman_id":"97e99ff3-518f-47a5-8d0f-e20fff8bb974"},{"name":"Passport Upload","id":"39ee9827-e799-40e6-9f86-934854a83fdf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":""}]},"url":"https://kyc-api.aadhaarkyc.io/api/v1/passport/passport/GENERATED_CLIENT_ID/upload","description":"<p>Expected Formats - JPG, PNG</p>\n<p>Max File Size - 5MB</p>\n<p><strong>Request Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>file</td>\n<td>File</td>\n<td>Image of the ID</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Body</strong></p>\n<p>Refer to <a href=\"#passport-model\">Passport Object Model</a> above.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","passport","passport","GENERATED_CLIENT_ID","upload"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"ecfd396c-ab21-47a4-a830-aa71dfa5efdf","name":"Passport Upload","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer YOUR_TOKEN","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":""}]},"url":"https://kyc-api.aadhaarkyc.io/api/v1/passport/passport/GENERATED_CLIENT_ID/upload"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"doe\": \"2020-09-15\",\n        \"dob\": \"1990-08-31\",\n        \"father\": \"KALEEN BHAIYA\",\n        \"given_name\": \"MUNNA BHAIYA\",\n        \"mrz_line_1\": \"PPINDBHAIYA<<MUNNA<<<<<<<<<<<<<<<<<<<<<<<<<<\",\n        \"old_passport_num\": \"F0233736\",\n        \"file_num\": \"UPHM00597710\",\n        \"client_id\": \"TTJmMxbZQi\",\n        \"place_of_issue\": \"MIRZAPUR\",\n        \"spouse\": \"\",\n        \"country_code\": \"IND\",\n        \"address\": \"TRIPATHI HAVELI, MIRZAPUR\",\n        \"surname\": \"BAGGA\",\n        \"mrz_line_2\": \"J0933933<1IND9008319M2009155<<<<<<<<<<<<<<04\",\n        \"passport_num\": \"J0933836\",\n        \"doi\": \"2010-10-15\",\n        \"old_doi\": \"2005-10-15\",\n        \"gender\": \"MALE\",\n        \"nationality\": \"INDIAN\",\n        \"place_of_birth\": \" MIRZAPUR\",\n        \"mother\": \"BEENA TRIPATHI\",\n        \"old_place_of_issue\": \"MIRZAPUR\",\n        \"pin\": \"231001\",\n        \"passport_validity\": null\n    },\n    \"status_code\": 200,\n    \"message\": \"\",\n    \"success\": true\n}"}],"_postman_id":"39ee9827-e799-40e6-9f86-934854a83fdf"},{"name":"Verify Passport","id":"81c663d7-2d9f-4ca3-acf4-4384547053b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"client_id\": \"GENERATED_CLIENT_ID\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/passport/passport/verify","description":"<p>Endpoint to run verification check on Passport after upload.\nCombined image of front and back, front individually, and back individually are accepted. In case of multiple images use the endpoint multiple times</p>\n<p><strong>Request Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>String</td>\n<td>Unique identifier of this object/ query.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Body</strong></p>\n<p>Refer to <a href=\"#passport-model\">Passport Object Model</a> above.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","passport","passport","verify"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"5f319ea2-f874-477e-9c15-36e7fc9dfced","name":"Verify Passport","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer YOUR_TOKEN","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"client_id\": \"GENERATED_CLIENT_ID\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/passport/passport/verify"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"doe\": \"2020-09-15\",\n        \"dob\": \"1990-08-31\",\n        \"father\": \"KALEEN BHAIYA\",\n        \"given_name\": \"MUNNA BHAIYA\",\n        \"mrz_line_1\": \"PPINDBHAIYA<<MUNNA<<<<<<<<<<<<<<<<<<<<<<<<<<\",\n        \"old_passport_num\": \"F0233736\",\n        \"file_num\": \"UPHM00597710\",\n        \"client_id\": \"TTJmMxbZQi\",\n        \"place_of_issue\": \"MIRZAPUR\",\n        \"spouse\": \"\",\n        \"country_code\": \"IND\",\n        \"address\": \"TRIPATHI HAVELI, MIRZAPUR\",\n        \"surname\": \"BAGGA\",\n        \"mrz_line_2\": \"J0933933<1IND9008319M2009155<<<<<<<<<<<<<<04\",\n        \"passport_num\": \"J0933836\",\n        \"doi\": \"2010-10-15\",\n        \"old_doi\": \"2005-10-15\",\n        \"gender\": \"MALE\",\n        \"nationality\": \"INDIAN\",\n        \"place_of_birth\": \" MIRZAPUR\",\n        \"mother\": \"BEENA TRIPATHI\",\n        \"old_place_of_issue\": \"MIRZAPUR\",\n        \"pin\": \"231001\"\n        \n    },\n    \"status_code\": 200,\n    \"message\": \"\",\n    \"success\": true\n}"}],"_postman_id":"81c663d7-2d9f-4ca3-acf4-4384547053b5"},{"name":"Get Client Details","id":"d768d553-29e6-4fc6-a028-0c748dd78c50","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://kyc-api.aadhaarkyc.io/api/v1/passport/passport/GENERATED_CLIENT_ID","description":"<p>Endpoint to get details of Passport as per existing Client.</p>\n<p><strong>Request Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>String</td>\n<td>Unique identifier of this object/ query.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Body</strong></p>\n<p>Refer to <a href=\"#passport-model\">Passport Object Model</a> above.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","passport","passport","GENERATED_CLIENT_ID"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"ae59a609-cfeb-40c0-9ee9-2d6c3b6ee57e","name":"Get Client Details","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{dev_token}}"}],"url":"https://kyc-api.aadhaarkyc.io/api/v1/passport/passport/GENERATED_CLIENT_ID"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"doe\": \"2020-09-15\",\n        \"dob\": \"1990-08-31\",\n        \"father\": \"KALEEN BHAIYA\",\n        \"given_name\": \"MUNNA BHAIYA\",\n        \"mrz_line_1\": \"PPINDBHAIYA<<MUNNA<<<<<<<<<<<<<<<<<<<<<<<<<<\",\n        \"old_passport_num\": \"F0233736\",\n        \"file_num\": \"UPHM00597710\",\n        \"client_id\": \"TTJmMxbZQi\",\n        \"place_of_issue\": \"MIRZAPUR\",\n        \"spouse\": \"\",\n        \"country_code\": \"IND\",\n        \"address\": \"TRIPATHI HAVELI, MIRZAPUR\",\n        \"surname\": \"BAGGA\",\n        \"mrz_line_2\": \"J0933933<1IND9008319M2009155<<<<<<<<<<<<<<04\",\n        \"passport_num\": \"J0933836\",\n        \"doi\": \"2010-10-15\",\n        \"old_doi\": \"2005-10-15\",\n        \"gender\": \"MALE\",\n        \"nationality\": \"INDIAN\",\n        \"place_of_birth\": \" MIRZAPUR\",\n        \"mother\": \"BEENA TRIPATHI\",\n        \"old_place_of_issue\": \"MIRZAPUR\",\n        \"pin\": \"231001\",\n        \"verified\": true\n    },\n    \"status_code\": 200,\n    \"message\": \"\",\n    \"success\": true\n}"}],"_postman_id":"d768d553-29e6-4fc6-a028-0c748dd78c50"},{"name":"Passport Details","id":"7a561d87-d225-4e82-8b50-a3fd0b6aa3ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"id_number\": \"{{file_number}}\",\n\t\"dob\": \"{{dob}}\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/passport/passport/passport-details","description":"<p><strong>Request Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>file_number</td>\n<td>String</td>\n<td>File Number as provided</td>\n</tr>\n<tr>\n<td>dob</td>\n<td>String</td>\n<td>DOB(yyyy-mm-dd)</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>file_number</td>\n<td>String</td>\n<td>File Number as provided</td>\n</tr>\n<tr>\n<td>dob</td>\n<td>String</td>\n<td>DOB(yyyy-mm-dd)</td>\n</tr>\n<tr>\n<td>full_name</td>\n<td>String</td>\n<td>Full name as per passport DB.</td>\n</tr>\n<tr>\n<td>passport_number</td>\n<td>String</td>\n<td>Passport number as per passport DB.</td>\n</tr>\n<tr>\n<td>date_of_application</td>\n<td>String</td>\n<td>yyyy-mm-dd</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","passport","passport","passport-details"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"a2f82969-ed17-427c-94ec-88df26e01032","name":"Passport Details","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"id_number\": \"{{file_number}}\",\n\t\"dob\": \"{{dob}}\"\n}","options":{"raw":{"language":"json"}}},"url":"https://kyc-api.aadhaarkyc.io/api/v1/passport/passport/passport-details"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": 200,\n    \"data\": {\n        \"date_of_application\": \"2017-07-24\",\n        \"file_number\": \"DL1061291XXXXXX\",\n        \"client_id\": \"passport_rfqevMkcqenNPushfhfM\",\n        \"full_name\": \"MUNNA BHAIYA\",\n        \"passport_number\": \"S2420000\",\n        \"dob\": \"1990-01-01\"\n    },\n    \"message_code\": \"success\",\n    \"success\": true,\n    \"message\": null\n}"}],"_postman_id":"7a561d87-d225-4e82-8b50-a3fd0b6aa3ab"},{"name":"International Passport Upload","id":"41ab9c7b-a7a2-4a2d-9bcf-0ed542fb6807","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":null}]},"url":"https://kyc-api.aadhaarkyc.io/api/v1/ocr/international-passport","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","ocr","international-passport"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"89c569c6-0a58-4437-99a0-919df4661bfd","name":"International Passport Upload","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":["/C:/Users/karan/Downloads/slovakia.jpg"]}]},"url":"https://kyc-api.aadhaarkyc.io/api/v1/ocr/international-passport"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Thu, 22 Oct 2020 07:13:41 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"737"},{"key":"Connection","value":"keep-alive"},{"key":"X-Client-Email","value":"admin@surepass.io"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"client_id\": \"ocr_international_passport_qDCvjhnuqvclDIyLSmHR\",\n        \"ocr_fields\": [\n            {\n                \"type\": \"international_passport\",\n                \"details\": {\n                    \"birth_date\": \"111111\",\n                    \"birth_date_hash\": \"2\",\n                    \"country_code\": \"SVK\",\n                    \"country\": \"Slovakia\",\n                    \"document_number\": \"PD000000\",\n                    \"document_number_hash\": \"5\",\n                    \"document_type\": \"P\",\n                    \"expiry_date\": \"150104\",\n                    \"expiry_date_hash\": \"3\",\n                    \"final_hash\": \"0\",\n                    \"name\": \"VZOR\",\n                    \"nationality_code\": \"5VK\",\n                    \"nationality\": null,\n                    \"optional_data\": \"\",\n                    \"optional_data_hash\": \"0\",\n                    \"sex\": \"M\",\n                    \"surname\": \"SPECIMEN\",\n                    \"mrz_line_1\": \"P<SVKSPECIMEN<<VZOR<<<<<<<<<<<<<<<<<<<<<<<<<\",\n                    \"mrz_line_2\": \"PD000000<55VK1111112M1501043<<<<<<<<<<<<<<00\"\n                }\n            }\n        ]\n    },\n    \"status_code\": 200,\n    \"success\": true,\n    \"message\": null,\n    \"message_code\": \"success\"\n}"}],"_postman_id":"41ab9c7b-a7a2-4a2d-9bcf-0ed542fb6807"}],"id":"ac905763-7733-46fa-8b61-66e110ce83a5","description":"<p>Request Group for Passport related requests.</p>\n<h2 id=\"passport-model\">Passport Model</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>given_name</td>\n<td>String</td>\n<td>Given Name of the holder</td>\n</tr>\n<tr>\n<td>surname</td>\n<td>String</td>\n<td>Surname of the holder</td>\n</tr>\n<tr>\n<td>dob</td>\n<td>String</td>\n<td>Date of Birth of the holder</td>\n</tr>\n<tr>\n<td>place_of_issue</td>\n<td>String</td>\n<td>Place of issue of the Passport</td>\n</tr>\n<tr>\n<td>passport_num</td>\n<td>String</td>\n<td>Passport Number of the holder</td>\n</tr>\n<tr>\n<td>country_code</td>\n<td>String</td>\n<td>Country Code of the holder’s Passport</td>\n</tr>\n<tr>\n<td>nationality</td>\n<td>String</td>\n<td>Nationality of the holder</td>\n</tr>\n<tr>\n<td>gender</td>\n<td>String</td>\n<td>Gender of the holder</td>\n</tr>\n<tr>\n<td>doi</td>\n<td>String</td>\n<td>Date of Birth as on Passport</td>\n</tr>\n<tr>\n<td>mrz_line_1</td>\n<td>String</td>\n<td>Line 1 of MRZ in the Passport</td>\n</tr>\n<tr>\n<td>mrz_line_2</td>\n<td>String</td>\n<td>Line 2 of MRZ in the Passport</td>\n</tr>\n<tr>\n<td>doe</td>\n<td>String</td>\n<td>Date of Expiry of the Passport</td>\n</tr>\n<tr>\n<td>mother</td>\n<td>String</td>\n<td>Mothers name of the holder</td>\n</tr>\n<tr>\n<td>father</td>\n<td>String</td>\n<td>Fathers name of the holder</td>\n</tr>\n<tr>\n<td>old_passport_num</td>\n<td>String</td>\n<td>Old Passport Number of the holder</td>\n</tr>\n<tr>\n<td>file_num</td>\n<td>String</td>\n<td>File number of the Passport</td>\n</tr>\n<tr>\n<td>spouse</td>\n<td>String</td>\n<td>Spouse name of the holder</td>\n</tr>\n<tr>\n<td>address</td>\n<td>String</td>\n<td>Address of the passport holder</td>\n</tr>\n<tr>\n<td>pin</td>\n<td>String</td>\n<td>Pincode of the Address of the holder</td>\n</tr>\n<tr>\n<td>old_doi</td>\n<td>String</td>\n<td>Date of Issue of the Old Passport</td>\n</tr>\n<tr>\n<td>type</td>\n<td>String</td>\n<td>Type of Passport</td>\n</tr>\n<tr>\n<td>client_id</td>\n<td>String</td>\n<td>Unique identifier of the Client</td>\n</tr>\n<tr>\n<td>place_of_birth</td>\n<td>String</td>\n<td>Place of birth of passport holder</td>\n</tr>\n<tr>\n<td>old_place_of_issue</td>\n<td>String</td>\n<td>Old Place of issue of the Passport</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"passport-details-model\">Passport Details Model</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>date_of_application</td>\n<td>String</td>\n<td>Date of application for Passport</td>\n</tr>\n<tr>\n<td>file_number</td>\n<td>String</td>\n<td>File Number as provided</td>\n</tr>\n<tr>\n<td>client_id</td>\n<td>String</td>\n<td>Unique identifier of this object/ query.</td>\n</tr>\n<tr>\n<td>full_name</td>\n<td>String</td>\n<td>Full Name as extracted.</td>\n</tr>\n<tr>\n<td>passport_number</td>\n<td>String</td>\n<td>Passport Number as extracted.</td>\n</tr>\n<tr>\n<td>dob</td>\n<td>String</td>\n<td>DOB as provided</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"8b8e2b70-5612-44f7-a943-4b9470e9760a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"7e700481-3f8c-4de2-89a7-0f6911d98c05","type":"text/javascript","exec":[""]}}],"_postman_id":"ac905763-7733-46fa-8b61-66e110ce83a5","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"Corporate","item":[{"name":"Company Info","item":[{"name":"Company Details","event":[{"listen":"test","script":{"id":"ec32fa7d-5843-4bd2-9d39-0fb16e53a003","exec":["let jsonData = pm.response.json()","let token = jsonData.data.client_id","pm.environment.set(\"client_id\", token)","postman.setNextRequest(\"Submit Info via Text\")"],"type":"text/javascript"}}],"id":"dcf50c4d-e01d-4a0f-b974-6860fc9ede40","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"id_number\": \"{{cin_number}}\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/corporate/company-details","description":"<p>Endpoint to get details of RC as per the given ID Number.</p>\n<p><strong>Request Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id_number</td>\n<td>String</td>\n<td>ID Number of the ID to run check on.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Body</strong></p>\n<p>Refer to <a href=\"#rc-model\">RC Object Model</a> above.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","corporate","company-details"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"f2e8a577-a0a0-412b-830d-00419dc52e8e","name":"Company Details","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id_number\": \"L17110MH1973PLC019786\"\n}","options":{"raw":{"language":"json"}}},"url":"https://kyc-api.aadhaarkyc.io/api/v1/corporate/company-details"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Mon, 01 Feb 2021 07:58:42 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"49656"},{"key":"Connection","value":"keep-alive"},{"key":"X-Client-Email","value":"admin@surepass.io"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"client_id\": \"company_vusrcquYFhByabDraadA\",\n        \"company_id\": \"L17110MH1973PLC019786\",\n        \"company_type\": \"Company\",\n        \"company_name\": \"RELIANCE INDUSTRIES LIMITED\",\n        \"details\": {\n            \"company_info\": {\n                \"cin\": \"L17110MH1973PLC019786\",\n                \"roc_code\": \"RoC-Mumbai\",\n                \"registration_number\": \"019786\",\n                \"company_category\": \"Company limited by Shares\",\n                \"class_of_company\": \"Public\",\n                \"company_sub_category\": \"Non-govt company\",\n                \"authorized_capital\": \"150000000000\",\n                \"paid_up_capital\": \"64450974435\",\n                \"number_of_members\": \"0\",\n                \"date_of_incorporation\": \"1973-05-08\",\n                \"registered_address\": \"3 RD FLOORMAKER CHAMBER IV 222 NARIMAN POINT MUMBAI MH 400021 IN\",\n                \"address_other_than_ro\": \"-\",\n                \"email_id\": \"savithri.parekh@ril.com\",\n                \"listed_status\": \"Listed\",\n                \"active_compliance\": null,\n                \"suspended_at_stock_exchange\": \"-\",\n                \"last_agm_date\": \"2020-07-15\",\n                \"last_bs_date\": \"2020-03-31\",\n                \"company_status\": \"Active\"\n            },\n            \"directors\": [\n                {\n                    \"din_number\": \"00001620\",\n                    \"director_name\": \"NIKHIL RASIKLAL MESWANI\"\n                },\n                {\n                    \"din_number\": \"00001623\",\n                    \"director_name\": \"HITAL RASIKLAL MESWANI\"\n                },\n                {\n                    \"din_number\": \"00001695\",\n                    \"director_name\": \"MUKESH DHIRUBHAI AMBANI\"\n                },\n                {\n                    \"din_number\": \"00001879\",\n                    \"director_name\": \"YOGENDRA PREMKRISHNA TRIVEDI\"\n                },\n                {\n                    \"din_number\": \"AABPV2193C\",\n                    \"director_name\": \"SRIKANTH VENKATACHARI\"\n                },\n                {\n                    \"din_number\": \"ADUPK3895Q\",\n                    \"director_name\": \"SETHURAMAN KANDASAMY\"\n                },\n                {\n                    \"din_number\": \"00012144\",\n                    \"director_name\": \"MADHUSUDANA SIVAPRASAD PANDA\"\n                },\n                {\n                    \"din_number\": \"00074119\",\n                    \"director_name\": \"RAGHUNATH ANANT MASHELKAR\"\n                },\n                {\n                    \"din_number\": \"00228513\",\n                    \"director_name\": \"DIPAK CHAND JAIN\"\n                },\n                {\n                    \"din_number\": \"AEMPP1916N\",\n                    \"director_name\": \"SAVITHRI PAREKH\"\n                },\n                {\n                    \"din_number\": \"02011213\",\n                    \"director_name\": \"ARUNDHATI BHATTACHARYA\"\n                },\n                {\n                    \"din_number\": \"02460200\",\n                    \"director_name\": \"PAWAN KUMAR KAPIL\"\n                },\n                {\n                    \"din_number\": \"02787784\",\n                    \"director_name\": \"SHUMEET BANERJI\"\n                },\n                {\n                    \"din_number\": \"03115198\",\n                    \"director_name\": \"NITA MUKESH AMBANI\"\n                },\n                {\n                    \"din_number\": \"AAGPA6138F\",\n                    \"director_name\": \"ALOK VINOD AGARWAL\"\n                },\n                {\n                    \"din_number\": \"06646490\",\n                    \"director_name\": \"ADIL ZAINULBHAI\"\n                },\n                {\n                    \"din_number\": \"07175393\",\n                    \"director_name\": \"RAMINDER SINGH GUJRAL\"\n                },\n                {\n                    \"din_number\": \"08485334\",\n                    \"director_name\": \"VEERAYYA CHOWDARY KOSARAJU\"\n                }\n            ],\n            \"charges\": [\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"20200000000\",\n                    \"date_of_creation\": \"2007-07-23\",\n                    \"date_of_modification\": \"2007-11-20\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"90000000000\",\n                    \"date_of_creation\": \"2007-04-09\",\n                    \"date_of_modification\": \"2007-11-20\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"80000000\",\n                    \"date_of_creation\": \"1986-03-19\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"53000000\",\n                    \"date_of_creation\": \"1996-03-27\",\n                    \"date_of_modification\": \"1996-05-24\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1982-03-25\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein; Movable property (not being pledge)\",\n                    \"charge_amount\": \"4125000\",\n                    \"date_of_creation\": \"1979-08-27\",\n                    \"date_of_modification\": \"1979-08-27\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1991-05-31\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1992-01-28\",\n                    \"date_of_modification\": \"1995-10-09\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1995-01-30\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein\",\n                    \"charge_amount\": \"2000000000\",\n                    \"date_of_creation\": \"1998-05-06\",\n                    \"date_of_modification\": \"2005-06-22\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Movable property (not being pledge)\",\n                    \"charge_amount\": \"41800000\",\n                    \"date_of_creation\": \"1980-02-06\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1995-02-22\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1999-01-14\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Book debts\",\n                    \"charge_amount\": \"877560716\",\n                    \"date_of_creation\": \"1994-09-03\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein; Movable property (not being pledge)\",\n                    \"charge_amount\": \"1141351000\",\n                    \"date_of_creation\": \"2006-10-26\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1983-12-31\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1986-08-26\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1991-06-25\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Movable property (not being pledge)\",\n                    \"charge_amount\": \"900000\",\n                    \"date_of_creation\": \"1967-03-01\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Movable property (not being pledge)\",\n                    \"charge_amount\": \"5000000\",\n                    \"date_of_creation\": \"1972-08-10\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein; Floating charge; Movable property (not being pledge)\",\n                    \"charge_amount\": \"20200000000\",\n                    \"date_of_creation\": \"2007-07-23\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1999-02-26\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1991-08-27\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1989-09-07\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Movable property (not being pledge)\",\n                    \"charge_amount\": \"233000000\",\n                    \"date_of_creation\": \"1977-12-07\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1991-09-12\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"140000000\",\n                    \"date_of_creation\": \"1994-02-07\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Book debts\",\n                    \"charge_amount\": \"24500000\",\n                    \"date_of_creation\": \"1987-02-23\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1990-02-26\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1982-02-08\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein; Movable property (not being pledge)\",\n                    \"charge_amount\": \"50400000\",\n                    \"date_of_creation\": \"1993-12-01\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"3600000\",\n                    \"date_of_creation\": \"1984-12-31\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"662500000\",\n                    \"date_of_creation\": \"1988-01-14\",\n                    \"date_of_modification\": \"1996-01-04\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"2000000000\",\n                    \"date_of_creation\": \"1998-11-06\",\n                    \"date_of_modification\": \"1999-05-17\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1997-02-20\",\n                    \"date_of_modification\": \"1994-01-12\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein\",\n                    \"charge_amount\": \"5000000000\",\n                    \"date_of_creation\": \"2009-02-12\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1994-10-31\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein\",\n                    \"charge_amount\": \"3080700000\",\n                    \"date_of_creation\": \"2003-03-29\",\n                    \"date_of_modification\": \"2004-08-28\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1983-12-30\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"20000000\",\n                    \"date_of_creation\": \"1987-04-09\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1984-09-25\",\n                    \"date_of_modification\": \"1986-05-15\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1983-12-30\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein\",\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1984-12-19\",\n                    \"date_of_modification\": \"1995-10-09\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Movable property (not being pledge)\",\n                    \"charge_amount\": \"430000000\",\n                    \"date_of_creation\": \"1985-05-30\",\n                    \"date_of_modification\": \"1985-12-07\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Book debts\",\n                    \"charge_amount\": \"200000\",\n                    \"date_of_creation\": \"1970-01-22\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"61800000\",\n                    \"date_of_creation\": \"1981-08-28\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"4999997300\",\n                    \"date_of_creation\": \"1987-02-18\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Movable property (not being pledge)\",\n                    \"charge_amount\": \"5000000\",\n                    \"date_of_creation\": \"1980-03-19\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein\",\n                    \"charge_amount\": \"510000000\",\n                    \"date_of_creation\": \"2000-10-20\",\n                    \"date_of_modification\": \"2005-08-30\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Book debts\",\n                    \"charge_amount\": \"60000000\",\n                    \"date_of_creation\": \"2004-05-18\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein\",\n                    \"charge_amount\": \"5450000000\",\n                    \"date_of_creation\": \"1998-03-31\",\n                    \"date_of_modification\": \"2005-06-22\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"11060000\",\n                    \"date_of_creation\": \"1980-07-18\",\n                    \"date_of_modification\": \"1995-10-09\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1986-06-24\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1997-03-26\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"7500000\",\n                    \"date_of_creation\": \"1970-08-01\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein\",\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1983-01-28\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1999-07-01\",\n                    \"date_of_modification\": \"1999-04-05\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Movable property (not being pledge)\",\n                    \"charge_amount\": \"33200000\",\n                    \"date_of_creation\": \"1990-05-31\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein\",\n                    \"charge_amount\": \"5000000000\",\n                    \"date_of_creation\": \"2010-08-18\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"100000000\",\n                    \"date_of_creation\": \"1993-06-15\",\n                    \"date_of_modification\": \"1994-07-04\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein\",\n                    \"charge_amount\": \"510000000\",\n                    \"date_of_creation\": \"2006-10-20\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Movable property (not being pledge)\",\n                    \"charge_amount\": \"35000000\",\n                    \"date_of_creation\": \"1978-10-20\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"18610000000\",\n                    \"date_of_creation\": \"2020-06-24\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"OPEN\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein; Floating charge; Movable property (not being pledge)\",\n                    \"charge_amount\": \"34875000000\",\n                    \"date_of_creation\": \"2007-11-20\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Movable property (not being pledge)\",\n                    \"charge_amount\": \"7600000\",\n                    \"date_of_creation\": \"1980-02-04\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1986-03-06\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein\",\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"2003-07-24\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"13350000000\",\n                    \"date_of_creation\": \"2001-04-27\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein\",\n                    \"charge_amount\": \"13800000\",\n                    \"date_of_creation\": \"1988-03-16\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"1250000000\",\n                    \"date_of_creation\": \"2002-09-24\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"70000000\",\n                    \"date_of_creation\": \"1992-10-01\",\n                    \"date_of_modification\": \"1993-02-25\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1996-08-26\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1998-01-27\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein; Movable property (not being pledge)\",\n                    \"charge_amount\": \"510000000\",\n                    \"date_of_creation\": \"2006-10-19\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1979-04-27\",\n                    \"date_of_modification\": \"1986-05-15\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"2000000\",\n                    \"date_of_creation\": \"1971-04-26\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Movable property (not being pledge)\",\n                    \"charge_amount\": \"5000000\",\n                    \"date_of_creation\": \"1980-08-11\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"150000000\",\n                    \"date_of_creation\": \"1984-05-30\",\n                    \"date_of_modification\": \"1995-10-09\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"426500000\",\n                    \"date_of_creation\": \"1988-01-30\",\n                    \"date_of_modification\": \"1989-08-16\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Movable property (not being pledge)\",\n                    \"charge_amount\": \"52360000\",\n                    \"date_of_creation\": \"1989-04-28\",\n                    \"date_of_modification\": \"1989-05-23\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein\",\n                    \"charge_amount\": \"473\",\n                    \"date_of_creation\": \"2001-09-13\",\n                    \"date_of_modification\": \"2005-06-22\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1983-12-30\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein\",\n                    \"charge_amount\": \"1250000000\",\n                    \"date_of_creation\": \"2004-06-17\",\n                    \"date_of_modification\": \"2006-04-24\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1989-10-06\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Movable property (not being pledge)\",\n                    \"charge_amount\": \"10000000\",\n                    \"date_of_creation\": \"1976-05-21\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Movable property (not being pledge)\",\n                    \"charge_amount\": \"20156571\",\n                    \"date_of_creation\": \"1978-11-15\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1998-10-15\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein\",\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1999-01-25\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Book debts\",\n                    \"charge_amount\": \"12900000000\",\n                    \"date_of_creation\": \"2006-06-10\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein; Book debts; Floating charge; Movable property (not being pledge)\",\n                    \"charge_amount\": \"126500000000\",\n                    \"date_of_creation\": \"2007-12-20\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"5750000000\",\n                    \"date_of_creation\": \"1996-09-26\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Movable property (not being pledge)\",\n                    \"charge_amount\": \"4000000\",\n                    \"date_of_creation\": \"1980-01-02\",\n                    \"date_of_modification\": \"1980-01-02\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein\",\n                    \"charge_amount\": \"200000000\",\n                    \"date_of_creation\": \"2006-03-29\",\n                    \"date_of_modification\": \"2006-04-24\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1994-07-04\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"355000000\",\n                    \"date_of_creation\": \"1996-01-25\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"22500000\",\n                    \"date_of_creation\": \"1992-05-29\",\n                    \"date_of_modification\": \"1992-09-12\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Movable property (not being pledge)\",\n                    \"charge_amount\": \"40000000\",\n                    \"date_of_creation\": \"1973-08-11\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1983-12-03\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"126500000000\",\n                    \"date_of_creation\": \"2007-12-20\",\n                    \"date_of_modification\": \"2010-12-30\",\n                    \"status\": \"OPEN\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein; Book debts; Movable property (not being pledge)\",\n                    \"charge_amount\": \"2371336800\",\n                    \"date_of_creation\": \"1985-12-07\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1983-01-25\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"150000000\",\n                    \"date_of_creation\": \"1984-05-10\",\n                    \"date_of_modification\": \"1995-10-06\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"30000000\",\n                    \"date_of_creation\": \"1992-05-15\",\n                    \"date_of_modification\": \"1992-09-12\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Movable property (not being pledge)\",\n                    \"charge_amount\": \"1996000\",\n                    \"date_of_creation\": \"1973-06-08\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"3500000\",\n                    \"date_of_creation\": \"1979-08-08\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"122266485.5\",\n                    \"date_of_creation\": \"1989-03-23\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1994-10-17\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"2000000000\",\n                    \"date_of_creation\": \"2001-04-27\",\n                    \"date_of_modification\": \"2005-10-28\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"5500000\",\n                    \"date_of_creation\": \"1980-07-19\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Book debts\",\n                    \"charge_amount\": \"60000000\",\n                    \"date_of_creation\": \"2004-05-18\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"2700000000\",\n                    \"date_of_creation\": \"1985-08-16\",\n                    \"date_of_modification\": \"1995-10-09\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Movable property (not being pledge)\",\n                    \"charge_amount\": \"3300000\",\n                    \"date_of_creation\": \"1979-09-21\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1999-01-25\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1994-07-05\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein\",\n                    \"charge_amount\": \"587188807\",\n                    \"date_of_creation\": \"2006-10-27\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"20000000\",\n                    \"date_of_creation\": \"1988-04-28\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Movable property (not being pledge)\",\n                    \"charge_amount\": \"1095000000\",\n                    \"date_of_creation\": \"1996-03-27\",\n                    \"date_of_modification\": \"1996-06-04\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"4750000000\",\n                    \"date_of_creation\": \"1999-02-03\",\n                    \"date_of_modification\": \"2005-10-28\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Movable property (not being pledge)\",\n                    \"charge_amount\": \"4500000\",\n                    \"date_of_creation\": \"1973-01-22\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Movable property (not being pledge)\",\n                    \"charge_amount\": \"6000000\",\n                    \"date_of_creation\": \"1979-08-06\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"37788800\",\n                    \"date_of_creation\": \"1989-11-10\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein; Floating charge; Movable property (not being pledge)\",\n                    \"charge_amount\": \"22500000000\",\n                    \"date_of_creation\": \"2008-08-20\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1991-03-21\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"1500000000\",\n                    \"date_of_creation\": \"1994-10-15\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1996-08-20\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Movable property (not being pledge)\",\n                    \"charge_amount\": \"8000000\",\n                    \"date_of_creation\": \"1980-06-19\",\n                    \"date_of_modification\": \"1985-12-07\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"21453000\",\n                    \"date_of_creation\": \"1969-10-05\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1994-10-06\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1995-05-05\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"500000000\",\n                    \"date_of_creation\": \"1998-02-12\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"20000000\",\n                    \"date_of_creation\": \"1987-08-26\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1998-12-31\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"18300000000\",\n                    \"date_of_creation\": \"1999-09-20\",\n                    \"date_of_modification\": \"1999-09-20\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"264000000000\",\n                    \"date_of_creation\": \"1996-12-27\",\n                    \"date_of_modification\": \"2008-12-30\",\n                    \"status\": \"OPEN\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"29100000\",\n                    \"date_of_creation\": \"1991-07-10\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein\",\n                    \"charge_amount\": \"1111\",\n                    \"date_of_creation\": \"2001-07-16\",\n                    \"date_of_modification\": \"2005-12-26\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"5469000000\",\n                    \"date_of_creation\": \"1993-02-20\",\n                    \"date_of_modification\": \"1995-10-09\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein\",\n                    \"charge_amount\": \"800000000\",\n                    \"date_of_creation\": \"1998-03-31\",\n                    \"date_of_modification\": \"2005-06-22\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1997-02-06\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"10000000\",\n                    \"date_of_creation\": \"1980-04-18\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1984-08-17\",\n                    \"date_of_modification\": \"1986-05-15\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein\",\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1989-11-10\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1998-10-13\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"80000000\",\n                    \"date_of_creation\": \"1991-09-12\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"65306000\",\n                    \"date_of_creation\": \"1985-06-07\",\n                    \"date_of_modification\": \"1995-10-09\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"3000000000\",\n                    \"date_of_creation\": \"2000-08-09\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Movable property (not being pledge)\",\n                    \"charge_amount\": \"9000000\",\n                    \"date_of_creation\": \"1978-02-15\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Movable property (not being pledge)\",\n                    \"charge_amount\": \"52245000\",\n                    \"date_of_creation\": \"1985-06-07\",\n                    \"date_of_modification\": \"1995-10-09\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein\",\n                    \"charge_amount\": \"500000000\",\n                    \"date_of_creation\": \"2007-06-12\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"26076000\",\n                    \"date_of_creation\": \"1985-07-17\",\n                    \"date_of_modification\": \"1986-05-15\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"60000000\",\n                    \"date_of_creation\": \"1987-10-01\",\n                    \"date_of_modification\": \"1988-05-30\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"29500000\",\n                    \"date_of_creation\": \"1986-04-02\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Movable property (not being pledge)\",\n                    \"charge_amount\": \"302493920\",\n                    \"date_of_creation\": \"1985-10-15\",\n                    \"date_of_modification\": \"1986-05-15\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"430000000\",\n                    \"date_of_creation\": \"1985-05-30\",\n                    \"date_of_modification\": \"1995-10-09\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"80000000\",\n                    \"date_of_creation\": \"1987-02-13\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"2069000\",\n                    \"date_of_creation\": \"1991-09-13\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"4000000\",\n                    \"date_of_creation\": \"1983-12-30\",\n                    \"date_of_modification\": \"1983-12-30\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"14000000\",\n                    \"date_of_creation\": \"1982-05-16\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1991-03-26\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"61500000\",\n                    \"date_of_creation\": \"1985-11-21\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"30000000\",\n                    \"date_of_creation\": \"1988-05-30\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein; Movable property (not being pledge)\",\n                    \"charge_amount\": \"52360000\",\n                    \"date_of_creation\": \"1989-04-21\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein\",\n                    \"charge_amount\": \"10000000000\",\n                    \"date_of_creation\": \"2009-02-12\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"5250000000\",\n                    \"date_of_creation\": \"1995-11-22\",\n                    \"date_of_modification\": \"2005-10-28\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein; Movable property (not being pledge)\",\n                    \"charge_amount\": \"9000000000\",\n                    \"date_of_creation\": \"2003-06-17\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1998-08-24\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"20156571\",\n                    \"date_of_creation\": \"1979-08-10\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Movable property (not being pledge)\",\n                    \"charge_amount\": \"14500000\",\n                    \"date_of_creation\": \"1984-08-13\",\n                    \"date_of_modification\": \"1985-06-28\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"2800000\",\n                    \"date_of_creation\": \"1986-08-13\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"128500000\",\n                    \"date_of_creation\": \"1992-07-14\",\n                    \"date_of_modification\": \"1992-11-17\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein; Book debts; Movable property (not being pledge)\",\n                    \"charge_amount\": \"57500000\",\n                    \"date_of_creation\": \"1997-01-15\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1998-09-23\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1994-10-11\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein; Movable property (not being pledge)\",\n                    \"charge_amount\": \"250000000\",\n                    \"date_of_creation\": \"1996-10-07\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"217800000\",\n                    \"date_of_creation\": \"1989-07-05\",\n                    \"date_of_modification\": \"1995-10-09\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1989-01-16\",\n                    \"date_of_modification\": \"1995-10-09\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1994-07-04\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Movable property (not being pledge)\",\n                    \"charge_amount\": \"20000000\",\n                    \"date_of_creation\": \"1976-05-19\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1979-04-27\",\n                    \"date_of_modification\": \"1985-12-07\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Movable property (not being pledge)\",\n                    \"charge_amount\": \"11060000\",\n                    \"date_of_creation\": \"1979-08-13\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1996-01-08\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein\",\n                    \"charge_amount\": \"3966000000\",\n                    \"date_of_creation\": \"1993-02-20\",\n                    \"date_of_modification\": \"1995-10-09\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"446300000\",\n                    \"date_of_creation\": \"1987-06-19\",\n                    \"date_of_modification\": \"1991-03-11\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein\",\n                    \"charge_amount\": \"1141351000\",\n                    \"date_of_creation\": \"2006-10-26\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"173000000\",\n                    \"date_of_creation\": \"1978-05-17\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1993-10-09\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1998-11-06\",\n                    \"date_of_modification\": \"2000-03-11\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"8400000000\",\n                    \"date_of_creation\": \"1999-02-10\",\n                    \"date_of_modification\": \"2000-08-03\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1990-03-17\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein\",\n                    \"charge_amount\": \"500000000\",\n                    \"date_of_creation\": \"2001-12-29\",\n                    \"date_of_modification\": \"2005-12-26\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"1250000000\",\n                    \"date_of_creation\": \"2002-09-24\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1982-09-13\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"1083500000\",\n                    \"date_of_creation\": \"1986-05-19\",\n                    \"date_of_modification\": \"1995-01-12\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Movable property (not being pledge)\",\n                    \"charge_amount\": \"600000000\",\n                    \"date_of_creation\": \"1997-02-06\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein; Movable property (not being pledge)\",\n                    \"charge_amount\": \"185000000\",\n                    \"date_of_creation\": \"1975-08-19\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1991-03-26\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1986-07-17\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein\",\n                    \"charge_amount\": \"50000000000\",\n                    \"date_of_creation\": \"2009-03-03\",\n                    \"date_of_modification\": \"2009-08-24\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Book debts\",\n                    \"charge_amount\": \"12900000000\",\n                    \"date_of_creation\": \"2006-06-10\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1999-05-28\",\n                    \"date_of_modification\": \"1999-08-23\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1981-07-30\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein\",\n                    \"charge_amount\": \"11413510\",\n                    \"date_of_creation\": \"2002-03-27\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein; Movable property (not being pledge)\",\n                    \"charge_amount\": \"587188807\",\n                    \"date_of_creation\": \"2006-10-26\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"4250000000\",\n                    \"date_of_creation\": \"1998-08-18\",\n                    \"date_of_modification\": \"2005-10-28\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"60000000\",\n                    \"date_of_creation\": \"1991-09-12\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1982-12-10\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"10000000\",\n                    \"date_of_creation\": \"1985-04-23\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"33120716\",\n                    \"date_of_creation\": \"1991-11-08\",\n                    \"date_of_modification\": \"1992-10-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1999-01-07\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1997-01-10\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"139200000\",\n                    \"date_of_creation\": \"1988-02-18\",\n                    \"date_of_modification\": \"1988-02-18\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"20000000\",\n                    \"date_of_creation\": \"1992-12-03\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein; Movable property (not being pledge)\",\n                    \"charge_amount\": \"52360000\",\n                    \"date_of_creation\": \"1989-04-21\",\n                    \"date_of_modification\": \"1995-10-06\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein; Movable property (not being pledge)\",\n                    \"charge_amount\": \"100000000\",\n                    \"date_of_creation\": \"1996-10-07\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"28200000\",\n                    \"date_of_creation\": \"1987-12-14\",\n                    \"date_of_modification\": \"1995-10-09\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1991-12-20\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Book debts; Movable property (not being pledge)\",\n                    \"charge_amount\": \"1245000000\",\n                    \"date_of_creation\": \"2005-09-28\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein\",\n                    \"charge_amount\": \"500000000\",\n                    \"date_of_creation\": \"2007-06-12\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein\",\n                    \"charge_amount\": \"10000000000\",\n                    \"date_of_creation\": \"2009-02-12\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein; Movable property (not being pledge)\",\n                    \"charge_amount\": \"50000000\",\n                    \"date_of_creation\": \"1990-08-21\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein\",\n                    \"charge_amount\": \"450973700\",\n                    \"date_of_creation\": \"2006-10-27\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"6000000\",\n                    \"date_of_creation\": \"1982-07-15\",\n                    \"date_of_modification\": \"1986-05-15\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1991-08-14\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein\",\n                    \"charge_amount\": \"1000000000\",\n                    \"date_of_creation\": \"1999-11-22\",\n                    \"date_of_modification\": \"2005-06-22\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Movable property (not being pledge)\",\n                    \"charge_amount\": \"50000000\",\n                    \"date_of_creation\": \"1986-12-11\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein\",\n                    \"charge_amount\": \"17320000000\",\n                    \"date_of_creation\": \"2000-04-19\",\n                    \"date_of_modification\": \"2005-12-26\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Movable property (not being pledge)\",\n                    \"charge_amount\": \"221900000\",\n                    \"date_of_creation\": \"1989-04-28\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Movable property (not being pledge)\",\n                    \"charge_amount\": \"550000\",\n                    \"date_of_creation\": \"1974-11-26\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1983-01-17\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Movable property (not being pledge)\",\n                    \"charge_amount\": \"3500000\",\n                    \"date_of_creation\": \"1980-02-05\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Book debts\",\n                    \"charge_amount\": \"5000000\",\n                    \"date_of_creation\": \"1981-05-19\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"500000000\",\n                    \"date_of_creation\": \"2000-10-04\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Movable property (not being pledge)\",\n                    \"charge_amount\": \"5000000\",\n                    \"date_of_creation\": \"1972-09-16\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"57500000\",\n                    \"date_of_creation\": \"1990-02-24\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"9250000000\",\n                    \"date_of_creation\": \"1995-02-17\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"40000000\",\n                    \"date_of_creation\": \"1987-10-16\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1990-03-17\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1985-10-15\",\n                    \"date_of_modification\": \"1986-05-15\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein; Movable property (not being pledge)\",\n                    \"charge_amount\": \"11000000\",\n                    \"date_of_creation\": \"1991-10-03\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"2200000000\",\n                    \"date_of_creation\": \"2006-06-26\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1982-07-15\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1990-03-17\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1996-04-10\",\n                    \"date_of_modification\": \"1996-06-04\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"30500000\",\n                    \"date_of_creation\": \"1986-04-02\",\n                    \"date_of_modification\": \"1988-02-25\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Movable property (not being pledge)\",\n                    \"charge_amount\": \"22000000\",\n                    \"date_of_creation\": \"1978-10-03\",\n                    \"date_of_modification\": \"1978-10-03\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein; Movable property (not being pledge)\",\n                    \"charge_amount\": \"222000000\",\n                    \"date_of_creation\": \"1989-04-28\",\n                    \"date_of_modification\": \"1995-10-06\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein; Movable property (not being pledge)\",\n                    \"charge_amount\": \"17900000000\",\n                    \"date_of_creation\": \"2002-11-13\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1996-03-19\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1982-06-07\",\n                    \"date_of_modification\": \"1986-05-15\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1998-01-22\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1986-09-29\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"3740000000\",\n                    \"date_of_creation\": \"1993-09-20\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1991-08-27\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein; Movable property (not being pledge)\",\n                    \"charge_amount\": \"450973700\",\n                    \"date_of_creation\": \"2006-10-26\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein\",\n                    \"charge_amount\": \"8000000000\",\n                    \"date_of_creation\": \"2004-02-17\",\n                    \"date_of_modification\": \"2014-11-20\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Goodwill\",\n                    \"charge_amount\": \"12575000\",\n                    \"date_of_creation\": \"1988-01-28\",\n                    \"date_of_modification\": \"1994-10-17\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1996-12-28\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Movable property (not being pledge)\",\n                    \"charge_amount\": \"6000000\",\n                    \"date_of_creation\": \"1980-03-15\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Movable property (not being pledge)\",\n                    \"charge_amount\": \"35000000\",\n                    \"date_of_creation\": \"1994-08-10\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"30500000\",\n                    \"date_of_creation\": \"1985-05-27\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"219000000\",\n                    \"date_of_creation\": \"1992-11-04\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1985-10-15\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Book debts; Movable property (not being pledge)\",\n                    \"charge_amount\": \"1245000000\",\n                    \"date_of_creation\": \"2005-09-28\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1989-11-10\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein\",\n                    \"charge_amount\": \"541000000\",\n                    \"date_of_creation\": \"2003-03-29\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Floating charge; Movable property (not being pledge)\",\n                    \"charge_amount\": \"90000000000\",\n                    \"date_of_creation\": \"2007-04-09\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Movable property (not being pledge)\",\n                    \"charge_amount\": \"1000000000\",\n                    \"date_of_creation\": \"1997-01-04\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"4400000000\",\n                    \"date_of_creation\": \"1996-01-24\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1978-12-24\",\n                    \"date_of_modification\": \"1985-12-07\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Movable property (not being pledge)\",\n                    \"charge_amount\": \"20000000\",\n                    \"date_of_creation\": \"1980-02-07\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Immovable property or any interest therein\",\n                    \"charge_amount\": \"5000000000\",\n                    \"date_of_creation\": \"2009-02-12\",\n                    \"date_of_modification\": \"2014-11-21\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Movable property (not being pledge)\",\n                    \"charge_amount\": \"1680000\",\n                    \"date_of_creation\": \"1967-03-31\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": \" Movable property (not being pledge)\",\n                    \"charge_amount\": \"3000000\",\n                    \"date_of_creation\": \"1976-08-07\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"1044800000\",\n                    \"date_of_creation\": \"1990-11-20\",\n                    \"date_of_modification\": \"1995-10-09\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"1000000000\",\n                    \"date_of_creation\": \"1998-02-26\",\n                    \"date_of_modification\": \"1999-02-26\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"0\",\n                    \"date_of_creation\": \"1990-05-31\",\n                    \"date_of_modification\": \"1995-10-09\",\n                    \"status\": \"CLOSED\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"19900000000\",\n                    \"date_of_creation\": \"2020-06-24\",\n                    \"date_of_modification\": \"2020-08-04\",\n                    \"status\": \"OPEN\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"10000000000\",\n                    \"date_of_creation\": \"2020-06-24\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"OPEN\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"20000000000\",\n                    \"date_of_creation\": \"2020-06-24\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"OPEN\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"30000000000\",\n                    \"date_of_creation\": \"2020-06-24\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"OPEN\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"20000000000\",\n                    \"date_of_creation\": \"2020-06-24\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"OPEN\"\n                },\n                {\n                    \"assets_under_charge\": null,\n                    \"charge_amount\": \"15000000000\",\n                    \"date_of_creation\": \"2020-06-24\",\n                    \"date_of_modification\": \"1800-01-01\",\n                    \"status\": \"OPEN\"\n                },\n                {\n                    \"assets_under_charge\": \" Fixed Deposits of the Company with HDFC Bank Ltd\",\n                    \"charge_amount\": \"9750000000\",\n                    \"date_of_creation\": \"2020-05-20\",\n                    \"date_of_modification\": \"2020-10-29\",\n                    \"status\": \"OPEN\"\n                }\n            ]\n        }\n    },\n    \"status_code\": 200,\n    \"success\": true,\n    \"message\": null,\n    \"message_code\": \"success\"\n}"}],"_postman_id":"dcf50c4d-e01d-4a0f-b974-6860fc9ede40"}],"id":"58985006-d898-4c69-8eb3-a994660d4b9a","event":[{"listen":"prerequest","script":{"id":"e3d6bf3a-6c5d-4a98-8c30-8f17152c20a0","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"6ed9beb9-c913-467c-8488-29f6f232a98e","type":"text/javascript","exec":[""]}}],"_postman_id":"58985006-d898-4c69-8eb3-a994660d4b9a","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"DIN","item":[{"name":"DIN","event":[{"listen":"test","script":{"id":"3955a6a5-34a4-45f5-83eb-0442513fb3d5","exec":["let jsonData = pm.response.json()","let token = jsonData.data.client_id","pm.environment.set(\"client_id\", token)","postman.setNextRequest(\"Submit Info via Text\")"],"type":"text/javascript"}}],"id":"547311b5-0837-4f57-a9b8-715790934997","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"id_number\": \"{{din_number}}\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/corporate/din","description":"<p>Endpoint to get details of DIN as per the given DIN Number.</p>\n<p><strong>Request Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id_number</td>\n<td>String</td>\n<td>ID Number of the ID to run check on.</td>\n</tr>\n<tr>\n<td>companies_associated</td>\n<td>Boolean</td>\n<td>Associated companies flag.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Body</strong></p>\n<p>Refer to <a href=\"#din-model\">DIN Object Model</a> above.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","corporate","din"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"61fbacf8-2cc2-41ad-9180-c1b83803ccba","name":"DIN","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer YOUR_TOKEN","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"id_number\": \"{{din_number}}\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/corporate/din"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status_code\": 200,\n    \"data\": {\n        \"present_address\": \"1, TRIPATHI HAVELI$MIRZAPUR$UTTAR PRADESH$231001$INDIA$\",\n        \"nationality\": \"IN\",\n        \"client_id\": \"corporate_din_QMuxsfXypAvoqiUsXlof\",\n        \"father_name\": \"KALEEN BHAIYA\",\n        \"email\": \"MUNNA.BHAIYA@GMAIL.COM\",\n        \"permanent_address\": \"\",\n        \"full_name\": \"MUNNA BHAIYA\",\n        \"dob\": \"1990-08-31\",\n        \"din_number\": \"08036000\"\n    },\n    \"message\": null\n}"}],"_postman_id":"547311b5-0837-4f57-a9b8-715790934997"}],"id":"0143a101-6478-4b4e-bfb6-ee3e1053b1d9","_postman_id":"0143a101-6478-4b4e-bfb6-ee3e1053b1d9","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"GSTIN","item":[{"name":"GSTIN","event":[{"listen":"test","script":{"id":"3955a6a5-34a4-45f5-83eb-0442513fb3d5","exec":["let jsonData = pm.response.json()","let token = jsonData.data.client_id","pm.environment.set(\"client_id\", token)","postman.setNextRequest(\"Submit Info via Text\")"],"type":"text/javascript"}}],"id":"3011601f-f263-4fad-8865-f5055f2629f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"id_number\": \"{{gstin_number}}\",\n\t\"filing_status_get\": true\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/corporate/gstin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","corporate","gstin"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"c1df83a2-3465-4eb9-8ed5-38ea5b023ea0","name":"GSTIN Example","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"id_number\": \"30AAACR5055K1ZK\",\n\t\"filing_status_get\": true\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/corporate/gstin"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 Jan 2020 10:56:07 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"close"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"55a9b7f7de6baa1e-SIN"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": 200,\n    \"data\": {\n        \"field_visit_conducted\": \"No\",\n        \"gstin_status\": \"Active\",\n        \"state_jurisdiction\": \"Panaji (Jurisdictional Office)\",\n        \"constitution_of_business\": \"Public Limited Company\",\n        \"gstin\": \"30AAACR5055K1ZK\",\n        \"address\": \"CMM Arena,RCITPL Premises,Ground Floor,, , Renovadi, Merces, GOA, 403005\",\n        \"date_of_registration\": \"2017-07-01\",\n        \"business_name\": \"RELIANCE INDUSTRIES LIMITED\",\n        \"center_jurisdiction\": \"RANGE-IV\",\n        \"taxpayer_type\": \"Regular\",\n        \"client_id\": \"corporate_gstin_gpSFtlrHhLJxjPjnspjs\",\n        \"filing_status\": [\n            [\n                {\n                    \"mode_of_filing\": \"ONLINE\",\n                    \"tax_period\": \"2019-2020\",\n                    \"status\": \"Filed\",\n                    \"date_of_filing\": \"2020-01-17\",\n                    \"return_type\": \"GSTR3B\",\n                    \"financial_year\": \"2019-2020\"\n                },\n                {\n                    \"mode_of_filing\": \"ONLINE\",\n                    \"tax_period\": \"2019-2020\",\n                    \"status\": \"Filed\",\n                    \"date_of_filing\": \"2020-01-10\",\n                    \"return_type\": \"GSTR1\",\n                    \"financial_year\": \"2019-2020\"\n                },\n                {\n                    \"mode_of_filing\": \"ONLINE\",\n                    \"tax_period\": \"2019-2020\",\n                    \"status\": \"Filed\",\n                    \"date_of_filing\": \"2019-12-20\",\n                    \"return_type\": \"GSTR3B\",\n                    \"financial_year\": \"2019-2020\"\n                },\n                {\n                    \"mode_of_filing\": \"ONLINE\",\n                    \"tax_period\": \"2019-2020\",\n                    \"status\": \"Filed\",\n                    \"date_of_filing\": \"2019-12-09\",\n                    \"return_type\": \"GSTR1\",\n                    \"financial_year\": \"2019-2020\"\n                },\n                {\n                    \"mode_of_filing\": \"ONLINE\",\n                    \"tax_period\": \"2019-2020\",\n                    \"status\": \"Filed\",\n                    \"date_of_filing\": \"2019-11-20\",\n                    \"return_type\": \"GSTR3B\",\n                    \"financial_year\": \"2019-2020\"\n                },\n                {\n                    \"mode_of_filing\": \"ONLINE\",\n                    \"tax_period\": \"2019-2020\",\n                    \"status\": \"Filed\",\n                    \"date_of_filing\": \"2019-11-08\",\n                    \"return_type\": \"GSTR1\",\n                    \"financial_year\": \"2019-2020\"\n                },\n                {\n                    \"mode_of_filing\": \"ONLINE\",\n                    \"tax_period\": \"2019-2020\",\n                    \"status\": \"Filed\",\n                    \"date_of_filing\": \"2019-10-20\",\n                    \"return_type\": \"GSTR3B\",\n                    \"financial_year\": \"2019-2020\"\n                },\n                {\n                    \"mode_of_filing\": \"ONLINE\",\n                    \"tax_period\": \"2019-2020\",\n                    \"status\": \"Filed\",\n                    \"date_of_filing\": \"2019-10-10\",\n                    \"return_type\": \"GSTR1\",\n                    \"financial_year\": \"2019-2020\"\n                },\n                {\n                    \"mode_of_filing\": \"ONLINE\",\n                    \"tax_period\": \"2018-2019\",\n                    \"status\": \"Filed\",\n                    \"date_of_filing\": \"2019-09-26\",\n                    \"return_type\": \"ITC04\",\n                    \"financial_year\": \"2018-2019\"\n                },\n                {\n                    \"mode_of_filing\": \"ONLINE\",\n                    \"tax_period\": \"2019-2020\",\n                    \"status\": \"Filed\",\n                    \"date_of_filing\": \"2019-09-20\",\n                    \"return_type\": \"GSTR3B\",\n                    \"financial_year\": \"2019-2020\"\n                }\n            ]\n        ],\n        \"date_of_cancellation\": \"1800-01-01\"\n    },\n    \"message_code\": \"success\",\n    \"success\": true,\n    \"message\": null\n}"}],"_postman_id":"3011601f-f263-4fad-8865-f5055f2629f0"},{"name":"GSTIN By PAN","id":"80fa15c3-7f80-4058-8c03-b8f44916611a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"id_number\": \"{{gstin_pan_number}}\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/corporate/gstin-by-pan","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","corporate","gstin-by-pan"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"d54a3349-322e-4390-b45a-7d143848cfa9","name":"GSTIN By PAN Example","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"id_number\": \"{{gstin_pan_number}}\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/corporate/gstin-by-pan"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 Jan 2020 10:33:07 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"close"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"55a99648fec5a8fe-SIN"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": 200,\n    \"data\": {\n        \"gstin_list\": [\n            {\n                \"gstin\": \"30AAACR5055K1ZK\",\n                \"state_code\": \"30\",\n                \"state\": \"Goa\",\n                \"active_status\": \"Active\"\n            },\n            {\n                \"gstin\": \"12AAACR5055K1ZI\",\n                \"state_code\": \"12\",\n                \"state\": \"Arunachal Pradesh\",\n                \"active_status\": \"Active\"\n            },\n            {\n                \"gstin\": \"23AAACR5055K3ZD\",\n                \"state_code\": \"23\",\n                \"state\": \"Madhya Pradesh\",\n                \"active_status\": \"Active\"\n            },\n            {\n                \"gstin\": \"24AAACR5055K3ZB\",\n                \"state_code\": \"24\",\n                \"state\": \"Gujarat\",\n                \"active_status\": \"Active\"\n            },\n            {\n                \"gstin\": \"20AAACR5055K1ZL\",\n                \"state_code\": \"20\",\n                \"state\": \"Jharkhand\",\n                \"active_status\": \"Active\"\n            },\n            {\n                \"gstin\": \"01AAACR5055K1ZL\",\n                \"state_code\": \"01\",\n                \"state\": \"Jammu & Kashmir\",\n                \"active_status\": \"Active\"\n            },\n            {\n                \"gstin\": \"03AAACR5055K2ZG\",\n                \"state_code\": \"03\",\n                \"state\": \"Punjab\",\n                \"active_status\": \"Active\"\n            },\n            {\n                \"gstin\": \"23AAACR5055K1ZF\",\n                \"state_code\": \"23\",\n                \"state\": \"Madhya Pradesh\",\n                \"active_status\": \"Inactive\"\n            },\n            {\n                \"gstin\": \"29AAACR5055K1Z3\",\n                \"state_code\": \"29\",\n                \"state\": \"Karnataka\",\n                \"active_status\": \"Active\"\n            },\n            {\n                \"gstin\": \"09AAACR5055K1Z5\",\n                \"state_code\": \"09\",\n                \"state\": \"Uttar Pradesh\",\n                \"active_status\": \"Active\"\n            },\n            {\n                \"gstin\": \"19AAACR5055K1Z4\",\n                \"state_code\": \"19\",\n                \"state\": \"West Bengal\",\n                \"active_status\": \"Active\"\n            },\n            {\n                \"gstin\": \"34AAACR5055K1ZC\",\n                \"state_code\": \"34\",\n                \"state\": \"Puducherry\",\n                \"active_status\": \"Active\"\n            },\n            {\n                \"gstin\": \"04AAACR5055K1ZF\",\n                \"state_code\": \"04\",\n                \"state\": \"Chandigarh\",\n                \"active_status\": \"Active\"\n            },\n            {\n                \"gstin\": \"26AAACR5055K1Z9\",\n                \"state_code\": \"26\",\n                \"state\": \"Dadra & Nagar Haveli\",\n                \"active_status\": \"Active\"\n            },\n            {\n                \"gstin\": \"05AAACR5055K1ZD\",\n                \"state_code\": \"05\",\n                \"state\": \"Uttarakhand\",\n                \"active_status\": \"Active\"\n            },\n            {\n                \"gstin\": \"02AAACR5055K1ZJ\",\n                \"state_code\": \"02\",\n                \"state\": \"Himachal Pradesh\",\n                \"active_status\": \"Inactive\"\n            },\n            {\n                \"gstin\": \"32AAACR5055K1ZG\",\n                \"state_code\": \"32\",\n                \"state\": \"Kerala\",\n                \"active_status\": \"Active\"\n            },\n            {\n                \"gstin\": \"22AAACR5055K1ZH\",\n                \"state_code\": \"22\",\n                \"state\": \"Chhattisgarh\",\n                \"active_status\": \"Active\"\n            },\n            {\n                \"gstin\": \"24AAACR5055K2ZC\",\n                \"state_code\": \"24\",\n                \"state\": \"Gujarat\",\n                \"active_status\": \"Inactive\"\n            },\n            {\n                \"gstin\": \"17AAACR5055K1Z8\",\n                \"state_code\": \"17\",\n                \"state\": \"Meghalaya\",\n                \"active_status\": \"Active\"\n            },\n            {\n                \"gstin\": \"06AAACR5055K1ZB\",\n                \"state_code\": \"06\",\n                \"state\": \"Haryana\",\n                \"active_status\": \"Active\"\n            },\n            {\n                \"gstin\": \"37AAACR5055K2Z5\",\n                \"state_code\": \"37\",\n                \"state\": \"Andrapradesh(New)\",\n                \"active_status\": \"Active\"\n            },\n            {\n                \"gstin\": \"27AAACR5055K1Z7\",\n                \"state_code\": \"27\",\n                \"state\": \"Maharashtra\",\n                \"active_status\": \"Active\"\n            },\n            {\n                \"gstin\": \"36AAACR5055K1Z8\",\n                \"state_code\": \"36\",\n                \"state\": \"Telengana\",\n                \"active_status\": \"Active\"\n            },\n            {\n                \"gstin\": \"29AAACR5055K2Z2\",\n                \"state_code\": \"29\",\n                \"state\": \"Karnataka\",\n                \"active_status\": \"Inactive\"\n            },\n            {\n                \"gstin\": \"18AAACR5055K1Z6\",\n                \"state_code\": \"18\",\n                \"state\": \"Assam\",\n                \"active_status\": \"Active\"\n            },\n            {\n                \"gstin\": \"23AAACR5055K2ZE\",\n                \"state_code\": \"23\",\n                \"state\": \"Madhya Pradesh\",\n                \"active_status\": \"Active\"\n            },\n            {\n                \"gstin\": \"24AAACR5055K1ZD\",\n                \"state_code\": \"24\",\n                \"state\": \"Gujarat\",\n                \"active_status\": \"Active\"\n            },\n            {\n                \"gstin\": \"02AAACR5055K2ZI\",\n                \"state_code\": \"02\",\n                \"state\": \"Himachal Pradesh\",\n                \"active_status\": \"Active\"\n            },\n            {\n                \"gstin\": \"07AAACR5055K1Z9\",\n                \"state_code\": \"07\",\n                \"state\": \"Delhi\",\n                \"active_status\": \"Active\"\n            },\n            {\n                \"gstin\": \"21AAACR5055K2ZI\",\n                \"state_code\": \"21\",\n                \"state\": \"Orissa\",\n                \"active_status\": \"Inactive\"\n            },\n            {\n                \"gstin\": \"21AAACR5055K1ZJ\",\n                \"state_code\": \"21\",\n                \"state\": \"Orissa\",\n                \"active_status\": \"Active\"\n            },\n            {\n                \"gstin\": \"16AAACR5055K1ZA\",\n                \"state_code\": \"16\",\n                \"state\": \"Tripura\",\n                \"active_status\": \"Active\"\n            },\n            {\n                \"gstin\": \"24AAACR5055K4ZA\",\n                \"state_code\": \"24\",\n                \"state\": \"Gujarat\",\n                \"active_status\": \"Active\"\n            },\n            {\n                \"gstin\": \"27AAACR5055K3Z5\",\n                \"state_code\": \"27\",\n                \"state\": \"Maharashtra\",\n                \"active_status\": \"Active\"\n            },\n            {\n                \"gstin\": \"10AAACR5055K1ZM\",\n                \"state_code\": \"10\",\n                \"state\": \"Bihar\",\n                \"active_status\": \"Active\"\n            },\n            {\n                \"gstin\": \"25AAACR5055K1ZB\",\n                \"state_code\": \"25\",\n                \"state\": \"Daman & Diu\",\n                \"active_status\": \"Active\"\n            },\n            {\n                \"gstin\": \"34AAACR5055K2ZB\",\n                \"state_code\": \"34\",\n                \"state\": \"Puducherry\",\n                \"active_status\": \"Inactive\"\n            },\n            {\n                \"gstin\": \"37AAACR5055K1Z6\",\n                \"state_code\": \"37\",\n                \"state\": \"Andrapradesh(New)\",\n                \"active_status\": \"Active\"\n            },\n            {\n                \"gstin\": \"08AAACR5055K1Z7\",\n                \"state_code\": \"08\",\n                \"state\": \"Rajasthan\",\n                \"active_status\": \"Active\"\n            },\n            {\n                \"gstin\": \"27AAACR5055K2Z6\",\n                \"state_code\": \"27\",\n                \"state\": \"Maharashtra\",\n                \"active_status\": \"Active\"\n            },\n            {\n                \"gstin\": \"33AAACR5055K1ZE\",\n                \"state_code\": \"33\",\n                \"state\": \"Tamil Nadu\",\n                \"active_status\": \"Active\"\n            },\n            {\n                \"gstin\": \"03AAACR5055K1ZH\",\n                \"state_code\": \"03\",\n                \"state\": \"Punjab\",\n                \"active_status\": \"Inactive\"\n            },\n            {\n                \"gstin\": \"13AAACR5055K1ZG\",\n                \"state_code\": \"13\",\n                \"state\": \"Nagaland\",\n                \"active_status\": \"Active\"\n            }\n        ],\n        \"pan_number\": \"AAACR5055K\",\n        \"client_id\": \"gstin_pan_XxYggLHRBtxKLEwlwkIW\"\n    },\n    \"message_code\": \"success\",\n    \"success\": true,\n    \"message\": null\n}"}],"_postman_id":"80fa15c3-7f80-4058-8c03-b8f44916611a"}],"id":"21470df2-8c9f-4196-a4f0-211ef640534d","description":"<p>Possible Values of Constitution of Business in GST API - </p>\n<ul>\n<li>Private Limited Company</li>\n<li>Limited Liability Partnership</li>\n<li>Proprietorship</li>\n<li>Public Limited Company</li>\n<li>Society/ Club/ Trust/ AOP</li>\n<li>Partnership</li>\n<li>Hindu Undivided Family</li>\n<li>Government Department</li>\n</ul>\n","event":[{"listen":"prerequest","script":{"id":"1c7d87eb-1773-49d1-bbf4-80f15b2d1e16","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9d012cf6-4559-41ec-968e-20ca58ded140","type":"text/javascript","exec":[""]}}],"_postman_id":"21470df2-8c9f-4196-a4f0-211ef640534d","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"Udyog Aadhaar","item":[{"name":"Udyog Aadhaar","id":"b488de29-8907-4154-b2aa-7dee2fef8534","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"id_number\": \"{{udyog_aadhaar}}\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/corporate/udyog-aadhaar","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","corporate","udyog-aadhaar"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"b488de29-8907-4154-b2aa-7dee2fef8534"},{"name":"Udyam","id":"b3a2c8b8-4282-4675-a1a2-e43a5005147c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"id_number\": \"UDYAM-RJ-17-0000034\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/corporate/udyog-aadhaar","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","corporate","udyog-aadhaar"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"8609e20f-2160-4d3e-ac04-fa8407952625","name":"Udyam","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"id_number\": \"UDYAM-RJ-17-0000034\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/corporate/udyog-aadhaar"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 16 Nov 2021 15:45:15 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1328"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"uan\": \"UDYAM-RJ-17-1234534\",\n        \"main_details\": {\n            \"name_of_enterprise\": \"RANDOM\",\n            \"major_activity\": \"Services\",\n            \"social_category\": \"General\",\n            \"enterprise_type\": \"MICRO\",\n            \"date_of_commencement\": \"2018-12-01\",\n            \"dic_name\": \"JAIPUR\",\n            \"state\": \"RAJASTHAN\",\n            \"applied_date\": \"2020-01-013\",\n            \"flat\": \"405 4TH FLOOR\",\n            \"name_of_building\": \"BIG RANDOM OKAY RANDOM\",\n            \"road\": \"RANDOM\",\n            \"village\": \"RANDOM\",\n            \"block\": \"RANDOM\",\n            \"city\": \"JAIPUR\",\n            \"pin\": \"302019\"\n        },\n        \"location_of_plant_details\": [\n            {\n                \"line_1\": \"123\",\n                \"building\": \"RANDOM ELECTRONIC MARKET\",\n                \"village\": \"RANDOM\",\n                \"street\": \"RANDOM BYPASS\",\n                \"road\": \"JAIPUR\",\n                \"city\": \"JAIPUR\",\n                \"pin\": \"302018\",\n                \"state\": \"RAJASTHAN\",\n                \"district\": \"JAIPUR\"\n            }\n        ],\n        \"nic_code\": [\n            {\n                \"nic_2_digit\": \"69 - Legal and accounting activities\",\n                \"nic_4_digit\": \"6920 - Accounting, bookkeeping and auditing activities; tax consultancy\",\n                \"nic_5_digit\": \"69201 - Accounting, bookkeeping and auditing activities\",\n                \"activity_type\": \"Services\",\n                \"added_on\": \"2020-07-03\"\n            },\n            {\n                \"nic_2_digit\": \"69 - Legal and accounting activities\",\n                \"nic_4_digit\": \"6920 - Accounting, bookkeeping and auditing activities; tax consultancy\",\n                \"nic_5_digit\": \"69202 - Tax consultancy\",\n                \"activity_type\": \"Services\",\n                \"added_on\": \"2020-07-03\"\n            }\n        ]\n    },\n    \"status_code\": 200,\n    \"success\": true,\n    \"message\": null,\n    \"message_code\": \"success\"\n}"}],"_postman_id":"b3a2c8b8-4282-4675-a1a2-e43a5005147c"}],"id":"251eefbb-2be0-45e8-a16e-1b5ee79aa810","_postman_id":"251eefbb-2be0-45e8-a16e-1b5ee79aa810","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"Company Autocomplete","item":[{"name":"AutoComplete","event":[{"listen":"test","script":{"id":"ec66054c-9e4d-422f-acd7-60f1af9771b6","exec":["let jsonData = pm.response.json()","let token = jsonData.data.client_id","pm.environment.set(\"client_id\", token)","postman.setNextRequest(\"Submit Info via Text\")"],"type":"text/javascript"}}],"id":"52cf3882-a293-4e3c-a6f0-cc3b5494ceae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"https://kyc-api.aadhaarkyc.io/api/v1/corporate/company-autofill?company={{company_name}}","description":"<p>Endpoint to get details of RC as per the given ID Number.</p>\n<p><strong>Request Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>company_name</td>\n<td>String</td>\n<td>ID Number of the ID to run check on.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","corporate","company-autofill"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[{"key":"company","value":"{{company_name}}"}],"variable":[]}},"response":[{"id":"c012b916-d0d0-48fa-ad8d-e2523b5fafcb","name":"AutoComplete","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":{"raw":"https://kyc-api.aadhaarkyc.io/api/v1/corporate/company-complete?company=RELIA","host":["https://kyc-api.aadhaarkyc.io"],"path":["api","v1","corporate","company-complete"],"query":[{"key":"company","value":"RELIA"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Success\",\n    \"data\": [\n        {\n            \"cin\": \"U72900GJ2019PTC111114\",\n            \"category\": \"COMPANY\",\n            \"company_name\": \"RELIABLE CONTROL SYSTEMS PRIVATE LIMITED\"\n        },\n        {\n            \"cin\": \"U93090UP2019PTC116779\",\n            \"category\": \"COMPANY\",\n            \"company_name\": \"RELIANT MANPOWER SUPPLY PRIVATE LIMITED\"\n        },\n        {\n            \"cin\": \"AAQ-7932\",\n            \"category\": \"LLP\",\n            \"company_name\": \"RELIA ADVISORY SERVICES LLP\"\n        },\n        {\n            \"cin\": \"U72900TG2019PTC137848\",\n            \"category\": \"COMPANY\",\n            \"company_name\": \"RELIABULL.TECH PRIVATE LIMITED\"\n        },\n        {\n            \"cin\": \"U60200GJ2019PLC108724\",\n            \"category\": \"COMPANY\",\n            \"company_name\": \"RELIANCE ETHANE PIPELINE LIMITED\"\n        },\n        {\n            \"cin\": \"U63030DL2019PTC356772\",\n            \"category\": \"COMPANY\",\n            \"company_name\": \"RELIABLE RYDES PRIVATE LIMITED\"\n        },\n        {\n            \"cin\": \"U22130MH2019PTC334908\",\n            \"category\": \"COMPANY\",\n            \"company_name\": \"RELIANCE FILMS DISTRIBUTION PRIVATE LIMITED\"\n        },\n        {\n            \"cin\": \"U33309MH2019PTC332388\",\n            \"category\": \"COMPANY\",\n            \"company_name\": \"RELIABILITY HEALTHCARE PRIVATE LIMITED\"\n        },\n        {\n            \"cin\": \"U36910RJ2020PTC068276\",\n            \"category\": \"COMPANY\",\n            \"company_name\": \"RELIABLE GOLD INDIA PRIVATE LIMITED\"\n        },\n        {\n            \"cin\": \"U22300MH2020PTC335509\",\n            \"category\": \"COMPANY\",\n            \"company_name\": \"RELIANCE FILMS PRIVATE LIMITED\"\n        }\n    ],\n    \"message_code\": \"success\",\n    \"status_code\": 200,\n    \"success\": true\n}"}],"_postman_id":"52cf3882-a293-4e3c-a6f0-cc3b5494ceae"}],"id":"2e696b3e-0548-4c38-97f2-987e0066a43e","event":[{"listen":"prerequest","script":{"id":"74e9b024-f471-4773-93b4-15087b35f6db","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"7c69f192-982d-43d5-b170-33fc6a31c17d","type":"text/javascript","exec":[""]}}],"_postman_id":"2e696b3e-0548-4c38-97f2-987e0066a43e","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"LEI Validation","item":[{"name":"LEI Validation","event":[{"listen":"test","script":{"id":"efef974e-5981-4bb4-8c59-5b6e75b41f6e","exec":["let jsonData = pm.response.json()","let token = jsonData.data.client_id","pm.environment.set(\"client_id\", token)","postman.setNextRequest(\"Submit Info via Text\")"],"type":"text/javascript"}}],"id":"9a884e89-9d44-4199-a9aa-d97965a07558","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"lei_code\": \"3358002S1D1783BTEA90\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/lei-validation/","description":"<p>Endpoint to get PAN details of a new client using PAN Number.</p>\n<p><strong>Request Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id_number</td>\n<td>String</td>\n<td>ID Number of the ID to run check on.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Resonpse Body</strong></p>\n<p>Refer to <a href=\"#pan-model\">PAN Object Model</a> above.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","lei-validation",""],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"946df474-fb55-4600-b800-929453bd7680","name":"LEI Validation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"lei_code\": \"3358002S1D1783BTEA90\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/lei-validation/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 26 May 2021 14:46:07 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1416"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"client_id\": \"lei_WefcNOkWPgSNOyQXSRwk\",\n        \"lei_number\": null,\n        \"full_name\": \"SHREE ANANT INFRA ENERGY PVT LTD\",\n        \"legal_entity_address\": {\n            \"registered_first_address_line\": \"PLOT NO-N-4/232, SECOND FLOOR, IRC VILLAGE, BEHIND RELIANCE FRESH, NAYAPALLI BHUBANESWAR\",\n            \"additional_address_line_1\": \"\",\n            \"additional_address_line_2\": \"\",\n            \"additional_address_line_3\": \"\",\n            \"country\": \"India\",\n            \"region\": \"Odisha\",\n            \"city\": \"KHORDA\",\n            \"zipcode\": \"751015\"\n        },\n        \"headquarters_entity_address\": {\n            \"registered_first_address_line\": \"PLOT NO-N-4/232, SECOND FLOOR, IRC VILLAGE, BEHIND RELIANCE FRESH, NAYAPALLI BHUBANESWAR\",\n            \"additional_address_line_1\": \"\",\n            \"additional_address_line_2\": \"\",\n            \"additional_address_line_3\": \"\",\n            \"country\": \"India\",\n            \"region\": \"Odisha\",\n            \"city\": \"KHORDA\",\n            \"zipcode\": \"751015\"\n        },\n        \"entity_identifiers\": {\n            \"registration_authority_name\": \"Ministry of Corporate Affairs\",\n            \"registration_authority_id\": \"U27100OR2008PTC010223\",\n            \"jurisdiction\": \"IN\",\n            \"legal_form\": \"Private Limited Companies\",\n            \"lei_registration_date\": \"2019-06-11\",\n            \"lei_registration_last_update\": \"2020-06-12\",\n            \"entity_status\": \"ACTIVE\",\n            \"entity_expiration_date\": \"\",\n            \"lei_next_renewal_date\": \"2020-06-11\",\n            \"entity_expiration_reason\": \"\",\n            \"lei_registration_status\": \"LAPSED\",\n            \"succsessor_lei\": \"\",\n            \"lou_id\": \"LEIL\",\n            \"lei_validation_source\": \"FULLY_CORROBORATED\"\n        }\n    },\n    \"status_code\": 200,\n    \"success\": true,\n    \"message\": \"Success\",\n    \"message_code\": \"success\"\n}"}],"_postman_id":"9a884e89-9d44-4199-a9aa-d97965a07558"}],"id":"1d222a1b-d51a-43f6-a004-8a7295723f66","description":"<p>Request Group for TAN related requests.</p>\n","event":[{"listen":"prerequest","script":{"id":"13aeb719-ebee-418c-adf4-687041c5f42f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e581c074-c731-4d20-85f6-99d485b54f06","type":"text/javascript","exec":[""]}}],"_postman_id":"1d222a1b-d51a-43f6-a004-8a7295723f66","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}}],"id":"eb144021-e53d-49ef-8b01-e910af94f67e","_postman_id":"eb144021-e53d-49ef-8b01-e910af94f67e","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"Face - Beta","item":[{"name":"Face Match","id":"921a350a-43a2-4451-a0a7-db2e83b46805","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"selfie","description":"<p>Selfie of the Person to match</p>\n","type":"file","value":null},{"key":"id_card","description":"<p>ID Card of the Person to match</p>\n","type":"file","value":null},{"key":"selfie_2","description":"<p>Second Selfie of the Person to match</p>\n","type":"file","value":null,"disabled":true}]},"url":"https://kyc-api.aadhaarkyc.io/api/v1/face/face-match","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","face","face-match"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"be00ca08-a591-4de5-8fbe-29e9572505c4","name":"Face Match","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"selfie","description":"Selfie of the Person to match","type":"file","value":null},{"key":"id_card","description":"ID Card of the Person to match","type":"file","value":null},{"key":"selfie_2","description":"Second Selfie of the Person to match","type":"file","value":null,"disabled":true}]},"url":"https://kyc-api.aadhaarkyc.io/api/v1/face/face-match"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"match_status\": true,\n        \"confidence\": 82.87096405029297\n    },\n    \"message_code\": null,\n    \"message\": null,\n    \"status_code\": 200,\n    \"success\": true\n}"}],"_postman_id":"921a350a-43a2-4451-a0a7-db2e83b46805"},{"name":"Face Liveness","id":"f205ecfd-8cab-40fa-86bd-8ac6276ff793","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"formdata","formdata":[{"description":"<p>Selfie of the Person to match</p>\n","key":"file","type":"file","value":null}]},"url":"https://kyc-api.aadhaarkyc.io/api/v1/face/face-liveness","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","face","face-liveness"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"3ba3bf9b-7d47-4898-b775-a416fcefa66e","name":"Face Liveness","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","description":"Selfie of the Person to test","type":"file","src":"/C:/Users/karan/Downloads/face_1.png"}]},"url":"https://kyc-api.aadhaarkyc.io/api/v1/face/face-liveness"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 18 Jun 2019 12:46:10 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"4e8d5d4ccae830be-SIN"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"confidence\": 7,\n        \"live\": false\n    },\n    \"message\": null,\n    \"success\": true,\n    \"status_code\": 200,\n    \"message_code\": \"success\"\n}"}],"_postman_id":"f205ecfd-8cab-40fa-86bd-8ac6276ff793"}],"id":"02d0b38f-51c6-41a7-aa73-94efa6505b95","event":[{"listen":"prerequest","script":{"id":"567decd9-829b-437c-8a61-990015b79265","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"3818654d-6a7f-4c38-9d6c-c338534ae826","type":"text/javascript","exec":[""]}}],"_postman_id":"02d0b38f-51c6-41a7-aa73-94efa6505b95","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"OCR","item":[{"name":"Aadhaar","item":[{"name":"Aadhaar Upload","id":"41625c29-f9d0-4e90-93f8-9487dcfa127e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":null}]},"url":"https://kyc-api.aadhaarkyc.io/api/v1/ocr/aadhaar","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","ocr","aadhaar"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"814fa91c-709e-45fb-b93d-7ef998252dc6","name":"Aadhaar Upload","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":[]}]},"url":"https://kyc-api.aadhaarkyc.io/api/v1/ocr/aadhaar"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 30 Dec 2020 19:37:55 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"615"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"X-Client-Email","value":"admin@surepass.io"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"client_id\": \"ocr_aadhaar_MRIosSXyczVbedsZvElu\",\n        \"ocr_fields\": [\n            {\n                \"document_type\": \"aadhaar_front_bottom\",\n                \"full_name\": {\n                    \"value\": \"Munna Bhaiya\",\n                    \"confidence\": 91\n                },\n                \"gender\": {\n                    \"value\": \"M\",\n                    \"confidence\": 91\n                },\n                \"mother_name\": {\n                    \"value\": null,\n                    \"confidence\": null\n                },\n                \"dob\": {\n                    \"value\": \"1990-01-01\",\n                    \"confidence\": 93\n                },\n                \"aadhaar_number\": {\n                    \"value\": \"123456789010\",\n                    \"confidence\": 91,\n                    \"is_masked\": false\n                },\n                \"image_url\": null,\n                \"uniqueness_id\": null\n            }\n        ]\n    },\n    \"status_code\": 200,\n    \"success\": true,\n    \"message\": null,\n    \"message_code\": \"success\"\n}"},{"id":"b0f5bc63-1695-4fb1-a10b-70a5cd4bc96e","name":"Aadhaar Upload - Back","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":["/C:/Users/karan/Desktop/ocr-stuff/id-dataset/Aadhaar-solution/47082_2019-07-12-15-58-09/47082_2019-07-12-15-58-09.jpeg"]}]},"url":"https://kyc-api.aadhaarkyc.io/api/v1/ocr/aadhaar"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 30 Dec 2020 19:44:41 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"753"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"X-Client-Email","value":"admin@surepass.io"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"client_id\": \"ocr_aadhaar_qCoQjprfutTJtmHqAWja\",\n        \"ocr_fields\": [\n            {\n                \"document_type\": \"aadhaar_back\",\n                \"address\": {\n                    \"value\": \"S/O Kaleen Bhaiya, Tripathi Haveli, Mirzapur, Uttar Pradesh - 123456\",\n                    \"confidence\": 92,\n                    \"first_line\": \"Tripathi Haveli\",\n                    \"second_line\": \"\",\n                    \"locality\": \"\",\n                    \"landmark\": \"\",\n                    \"house_number\": \"\",\n                    \"district\": \"Mirzapur\",\n                    \"city\": \"\",\n                    \"state\": \"Uttar Pradesh\",\n                    \"country\": \"\",\n                    \"zip\": \"123456\"\n                },\n                \"zip\": {\n                    \"value\": \"123456\",\n                    \"confidence\": 92\n                },\n                \"care_of\": {\n                    \"value\": \"Kaleen Bhaiya\",\n                    \"confidence\": 92,\n                    \"relation\": \"father\"\n                },\n                \"aadhaar_number\": {\n                    \"value\": \"123456789010\",\n                    \"confidence\": 91,\n                    \"is_masked\": false\n                },\n                \"image_url\": null\n            }\n        ]\n    },\n    \"status_code\": 200,\n    \"success\": true,\n    \"message\": null,\n    \"message_code\": \"success\"\n}"}],"_postman_id":"41625c29-f9d0-4e90-93f8-9487dcfa127e"},{"name":"Aadhaar Masking","id":"9ed2ca8d-7376-4534-b32d-332e281083f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":"/C:/Users/karan/Desktop/ocr-stuff/pichain-ocr/aadhar11.jpg"}]},"url":"https://kyc-api.aadhaarkyc.io/api/v1/ocr/mask-aadhaar","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","ocr","mask-aadhaar"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"e2727429-1057-468f-8a9b-6f65d80f3811","name":"Aadhaar Masking","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":[]}]},"url":"https://kyc-api.aadhaarkyc.io/api/v1/ocr/mask-aadhaar"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 20 Aug 2021 13:19:25 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"542"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"client_id\": \"aadhaar_masking_tldsfdgdfgsdfhdkTadgsKnMhePiDB\",\n        \"masked_image\": \"https://aadhaar-kyc-docs.s3.amazonaws.com/link\"\n    },\n    \"status_code\": 200,\n    \"success\": true,\n    \"message\": null,\n    \"message_code\": \"success\"\n}"}],"_postman_id":"9ed2ca8d-7376-4534-b32d-332e281083f4"}],"id":"e3e293a0-f717-49fb-8bbb-6b1236a18c97","_postman_id":"e3e293a0-f717-49fb-8bbb-6b1236a18c97","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"PAN","item":[{"name":"PAN Upload","id":"69dcdd55-d940-4e9e-b06f-a4c26fe98538","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":null}]},"url":"https://kyc-api.aadhaarkyc.io/api/v1/ocr/pan","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","ocr","pan"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"b5ebeac8-2005-47cb-bd62-e62405636416","name":"PAN Upload","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":[]}]},"url":"https://kyc-api.aadhaarkyc.io/api/v1/ocr/pan"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 30 Dec 2020 19:39:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"411"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"X-Client-Email","value":"admin@surepass.io"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"client_id\": \"pan_photo_mesSqeyCjoohnpbdxerB\",\n        \"ocr_fields\": [\n            {\n                \"document_type\": \"pan\",\n                \"pan_number\": {\n                    \"value\": \"ABCPD1234E\",\n                    \"confidence\": 99\n                },\n                \"full_name\": {\n                    \"value\": \"Munna Bhaiya\",\n                    \"confidence\": 99\n                },\n                \"father_name\": {\n                    \"value\": \"Kaleen Bhaiya\",\n                    \"confidence\": 99\n                },\n                \"dob\": {\n                    \"value\": \"01/01/1990\",\n                    \"confidence\": 99\n                }\n            }\n        ]\n    },\n    \"status_code\": 200,\n    \"message_code\": \"success\",\n    \"message\": null,\n    \"success\": true\n}"}],"_postman_id":"69dcdd55-d940-4e9e-b06f-a4c26fe98538"}],"id":"72327363-4648-40e2-bfad-f9acdc3ffbec","event":[{"listen":"prerequest","script":{"id":"47ea4ab5-a334-4f2b-9900-78d327517f80","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9162c187-99d0-4dac-8c4f-40bc65b81537","type":"text/javascript","exec":[""]}}],"_postman_id":"72327363-4648-40e2-bfad-f9acdc3ffbec","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"Document Detect","item":[{"name":"Detect","id":"e4e969e1-6dc4-4ac9-b060-05bab3440a25","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":null}]},"url":"https://kyc-api.aadhaarkyc.io/api/v1/ocr/document-detect","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","ocr","document-detect"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"e4e969e1-6dc4-4ac9-b060-05bab3440a25"}],"id":"b9fe84e4-7d69-4fc3-8916-590256161bc4","event":[{"listen":"prerequest","script":{"id":"11a5e5e6-d87f-4915-bb76-581c645c5557","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"1bc9d79a-1eaf-4b50-9b7b-66d308b809c2","type":"text/javascript","exec":[""]}}],"_postman_id":"b9fe84e4-7d69-4fc3-8916-590256161bc4","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"VoterID","item":[{"name":"VoterID Upload","id":"09b6a30f-24ab-43d2-9a13-39352d8dc663","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":null}]},"url":"https://kyc-api.aadhaarkyc.io/api/v1/ocr/voter","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","ocr","voter"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"95e25001-1ec1-4f9e-8532-8b08c4f0d060","name":"VoterID Upload","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":[]}]},"url":"https://kyc-api.aadhaarkyc.io/api/v1/ocr/voter"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 30 Dec 2020 19:41:02 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"557"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"X-Client-Email","value":"admin@surepass.io"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"client_id\": \"ocr_voter_skdzmnvczTmyvkAkdmfa\",\n        \"ocr_fields\": [\n            {\n                \"document_type\": \"voterid_front\",\n                \"full_name\": {\n                    \"value\": \"Munna Bhaiya\",\n                    \"confidence\": 92\n                },\n                \"age\": {\n                    \"value\": \"30\",\n                    \"confidence\": 95\n                },\n                \"care_of\": {\n                    \"value\": \"Kaleen Bhaiya\",\n                    \"confidence\": 97\n                },\n                \"dob\": {\n                    \"value\": \"1990-01-01\",\n                    \"confidence\": 76\n                },\n                \"doc\": {\n                    \"value\": \"2020-01-01\",\n                    \"confidence\": 0\n                },\n                \"gender\": {\n                    \"value\": \"M\",\n                    \"confidence\": 84\n                },\n                \"epic_number\": {\n                    \"value\": \"WSN0123456\",\n                    \"confidence\": 95\n                }\n            }\n        ]\n    },\n    \"status_code\": 200,\n    \"success\": true,\n    \"message\": null,\n    \"message_code\": \"success\"\n}"},{"id":"80c27d7b-a418-4d28-9214-d5d7de583e18","name":"VoterID Upload - Back","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":["/C:/Users/karan/Desktop/ocr-stuff/id-dataset/VoterID-solution/3738380_2019-02-02-19-02-53/3738380_2019-02-02-19-02-53.jpeg"]}]},"url":"https://kyc-api.aadhaarkyc.io/api/v1/ocr/voter"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 30 Dec 2020 19:47:24 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"811"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"X-Client-Email","value":"admin@surepass.io"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"client_id\": \"ocr_voter_qnLUNrNelcAewdFyzica\",\n        \"ocr_fields\": [\n            {\n                \"document_type\": \"voterid_back\",\n                \"address\": {\n                    \"value\": \"Trpathi Haveli, Mirzapur, Uttar Pradesh - 123456\",\n                    \"confidence\": 93,\n                    \"first_line\": \"Trpathi Haveli\",\n                    \"second_line\": \"\",\n                    \"locality\": \"\",\n                    \"landmark\": \"\",\n                    \"house_number\": \"\",\n                    \"district\": \"\",\n                    \"city\": \"\",\n                    \"state\": \"Uttar Pradesh\",\n                    \"country\": \"India\",\n                    \"zip\": \"123456\"\n                },\n                \"zip\": {\n                    \"value\": \"500008\",\n                    \"confidence\": 93\n                },\n                \"epic_number\": {\n                    \"value\": \"ABC1234567\",\n                    \"confidence\": 91\n                },\n                \"dob\": {\n                    \"value\": \"1990-01-01\",\n                    \"confidence\": 87\n                },\n                \"doi\": {\n                    \"value\": \"2017-01-01\",\n                    \"confidence\": 82\n                },\n                \"gender\": {\n                    \"value\": \"\",\n                    \"confidence\": 0\n                },\n                \"age\": {\n                    \"value\": \"\",\n                    \"confidence\": 0\n                }\n            }\n        ]\n    },\n    \"status_code\": 200,\n    \"success\": true,\n    \"message\": null,\n    \"message_code\": \"success\"\n}"}],"_postman_id":"09b6a30f-24ab-43d2-9a13-39352d8dc663"}],"id":"8ddb08f2-c14a-45e4-8ba4-949ca69fc67b","_postman_id":"8ddb08f2-c14a-45e4-8ba4-949ca69fc67b","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"Cheque","item":[{"name":"Cheque Upload","id":"db729d93-0fba-4f8f-a7dd-291d8068d16a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":null}]},"url":"https://kyc-api.aadhaarkyc.io/api/v1/ocr/cheque","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","ocr","cheque"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"bfc95125-c52d-4487-b29c-3b67965a6973","name":"Cheque Upload","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":[]}]},"url":"https://kyc-api.aadhaarkyc.io/api/v1/ocr/cheque"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 09 Apr 2020 18:37:59 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"334"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.10.3 (Ubuntu)"},{"key":"X-Client-Email","value":"admin@surepass.io"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": null,\n    \"success\": true,\n    \"status_code\": 200,\n    \"data\": {\n        \"client_id\": \"ocr_cheque_qFwRweajrhOFLVbXhkxg\",\n        \"micr\": {\n            \"value\": \"C0001261C 110221232A 002123C\",\n            \"confidence\": 75\n        },\n        \"account_number\": {\n            \"value\": \"012305001234\",\n            \"confidence\": 96\n        },\n        \"ifsc_code\": {\n            \"value\": \"ICIC0000123\",\n            \"confidence\": 92\n        }\n    },\n    \"message_code\": \"success\"\n}"}],"_postman_id":"db729d93-0fba-4f8f-a7dd-291d8068d16a"}],"id":"8caf184d-9914-43bf-a854-7329a1413f8b","event":[{"listen":"prerequest","script":{"id":"11d2bf51-631b-4c80-b48b-d65e1e439a53","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e05b5625-31e4-48f9-a406-0507ff7b3306","type":"text/javascript","exec":[""]}}],"_postman_id":"8caf184d-9914-43bf-a854-7329a1413f8b","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"GST","item":[{"name":"GST Upload","id":"090fbd2a-d352-44c8-8aa4-f7558f379203","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":null}]},"url":"https://kyc-api.aadhaarkyc.io/api/v1/ocr/gst","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","ocr","gst"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"090fbd2a-d352-44c8-8aa4-f7558f379203"}],"id":"57dad4f6-755f-440c-a3d1-9f7684ee35dc","event":[{"listen":"prerequest","script":{"id":"6c6b65a4-0de6-4132-8885-0c9333347140","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"47e84c38-ebfb-4824-918a-c616cbaab642","type":"text/javascript","exec":[""]}}],"_postman_id":"57dad4f6-755f-440c-a3d1-9f7684ee35dc","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"CIN","item":[{"name":"CIN Upload","id":"cea33933-6ad5-4d7c-92c4-04d57051dafc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":null}]},"url":"https://kyc-api.aadhaarkyc.io/api/v1/ocr/cin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","ocr","cin"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"cea33933-6ad5-4d7c-92c4-04d57051dafc"}],"id":"0f10431f-3ab6-4ca5-a535-1438f31b304a","event":[{"listen":"prerequest","script":{"id":"1ddf8fab-d2ba-458a-b01d-76877240476d","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"3a8928c6-ea13-436c-a407-d042b7715da6","type":"text/javascript","exec":[""]}}],"_postman_id":"0f10431f-3ab6-4ca5-a535-1438f31b304a","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"ITR","item":[{"name":"ITR Upload","id":"d82e3e27-dde1-4eb3-aeb8-d49fc1cf1d91","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":null},{"key":"use_pdf","value":"true","type":"text"}]},"url":"https://kyc-api.aadhaarkyc.io/api/v1/ocr/itr-v","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","ocr","itr-v"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"d82e3e27-dde1-4eb3-aeb8-d49fc1cf1d91"}],"id":"0ec39877-df6d-4b18-8a1f-912384eb0068","event":[{"listen":"prerequest","script":{"id":"ff9ab0ef-1a81-47a5-9616-c7c03cc5a57e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"770f3011-79ac-4a33-b8a9-47c21fa87677","type":"text/javascript","exec":[""]}}],"_postman_id":"0ec39877-df6d-4b18-8a1f-912384eb0068","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"License","item":[{"name":"License Upload","id":"4597c249-2ba7-466c-8a56-532851ca22e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"formdata","formdata":[{"key":"front","type":"file","src":"/C:/Users/karan/Desktop/id-dataset/license_ocr/easy.jpg"},{"key":"back","type":"file","src":"/C:/Users/karan/PycharmProjects/era-nlp/era_nlp/resources/dl-dataset/Andaman and Nicobar Islands/1_back.jpg","disabled":true}]},"url":"https://kyc-api.aadhaarkyc.io/api/v1/ocr/license","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","ocr","license"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"53e0bf7e-9199-4686-aa4d-73ddb05bd7ba","name":"License Upload","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"formdata","formdata":[{"key":"front","type":"file","src":[]},{"key":"back","type":"file","src":[],"disabled":true}]},"url":"https://kyc-api.aadhaarkyc.io/api/v1/ocr/license"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 30 Dec 2020 19:42:41 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"255"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"X-Client-Email","value":"admin@surepass.io"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"document_type\": null,\n        \"license_number\": {\n            \"value\": \"ANO1 20131234567\",\n            \"confidence\": 83\n        },\n        \"dob\": {\n            \"value\": \"1990-01-01\",\n            \"confidence\": 84\n        },\n        \"image_url\": null\n    },\n    \"status_code\": 200,\n    \"success\": true,\n    \"message\": null,\n    \"message_code\": \"success\"\n}"}],"_postman_id":"4597c249-2ba7-466c-8a56-532851ca22e3"}],"id":"430b85e4-21ef-411e-ad58-a4812e83f683","event":[{"listen":"prerequest","script":{"id":"95c877b4-532b-4b51-a76c-f9b24a66e97d","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"53513d18-1d0c-4305-9012-24f422c91600","type":"text/javascript","exec":[""]}}],"_postman_id":"430b85e4-21ef-411e-ad58-a4812e83f683","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"Passport","item":[{"name":"Passport Upload","id":"c0e473d2-a982-49b9-8d09-eb2218baced3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":null}]},"url":"https://kyc-api.aadhaarkyc.io/api/v1/ocr/passport","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","ocr","passport"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"8577bd2f-9ebb-40c4-bd1d-b8b3f8e33c75","name":"Passport Upload - Back","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":[]}]},"url":"https://kyc-api.aadhaarkyc.io/api/v1/ocr/passport"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Sat, 16 Jan 2021 21:58:19 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"739"},{"key":"Connection","value":"keep-alive"},{"key":"X-Client-Email","value":"admin@surepass.io"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"client_id\": \"ocr_passport_fSdixDiwGPhybykSTRdf\",\n        \"ocr_fields\": [\n            {\n                \"document_type\": \"passport_back\",\n                \"address\": {\n                    \"value\": \"TRIPATHI HAVELI, MIRZAPUR, UTTAR PRADESH\",\n                    \"confidence\": 94\n                },\n                \"father\": {\n                    \"value\": \"Kaleen Bhaiya\",\n                    \"confidence\": 94\n                },\n                \"mother\": {\n                    \"value\": \"Bina Devi\",\n                    \"confidence\": 91\n                },\n                \"file_num\": {\n                    \"value\": \"DL1061961923456\",\n                    \"confidence\": 91\n                },\n                \"old_doi\": {\n                    \"value\": \"\",\n                    \"confidence\": 0\n                },\n                \"old_passport_num\": {\n                    \"value\": \"\",\n                    \"confidence\": 0\n                },\n                \"old_place_of_issue\": {\n                    \"value\": \"\",\n                    \"confidence\": 0\n                },\n                \"pin\": {\n                    \"value\": \"231001\",\n                    \"confidence\": 94\n                },\n                \"spouse\": {\n                    \"value\": \"\",\n                    \"confidence\": 0\n                }\n            }\n        ]\n    },\n    \"status_code\": 200,\n    \"success\": true,\n    \"message\": null,\n    \"message_code\": \"success\"\n}"},{"id":"45042212-a089-44d7-9bd6-89e09fe6d27d","name":"Passport Upload - Front","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":[]}]},"url":"https://kyc-api.aadhaarkyc.io/api/v1/ocr/passport"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Sat, 16 Jan 2021 21:50:46 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1064"},{"key":"Connection","value":"keep-alive"},{"key":"X-Client-Email","value":"admin@surepass.io"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"client_id\": \"ocr_passport_MFEdalbzrFEarzvuxjsr\",\n        \"ocr_fields\": [\n            {\n                \"document_type\": \"passport_front\",\n                \"country_code\": {\n                    \"value\": \"IND\",\n                    \"confidence\": 81\n                },\n                \"dob\": {\n                    \"value\": \"01/01/1990\",\n                    \"confidence\": 91\n                },\n                \"doe\": {\n                    \"value\": \"18/07/2028\",\n                    \"confidence\": 91\n                },\n                \"doi\": {\n                    \"value\": \"19/07/2018\",\n                    \"confidence\": 91\n                },\n                \"gender\": {\n                    \"value\": \"M\",\n                    \"confidence\": 91\n                },\n                \"given_name\": {\n                    \"value\": \"Munna\",\n                    \"confidence\": 92\n                },\n                \"nationality\": {\n                    \"value\": \"INDIAN\",\n                    \"confidence\": 71\n                },\n                \"passport_num\": {\n                    \"value\": \"S2426282\",\n                    \"confidence\": 92\n                },\n                \"place_of_birth\": {\n                    \"value\": \"MIRZAPUR, UTTAR PRADESH\",\n                    \"confidence\": 91\n                },\n                \"place_of_issue\": {\n                    \"value\": \"MIRZAPUR\",\n                    \"confidence\": 72\n                },\n                \"surname\": {\n                    \"value\": \"Bhaita\",\n                    \"confidence\": 94\n                },\n                \"mrz_line_1\": {\n                    \"value\": \"P<INDBHAIYA<<MUNNA<<<<<<<<<<<<<<<<<<<<<<<<<<\",\n                    \"confidence\": 92\n                },\n                \"mrz_line_2\": {\n                    \"value\": \"S2426282<2IND90001010M2807188<<<<<<<<<<<<<<<4\",\n                    \"confidence\": 91\n                },\n                \"type_of_passport\": {\n                    \"value\": \"P\",\n                    \"confidence\": 92\n                },\n                \"passport_validity\": null\n            }\n        ]\n    },\n    \"status_code\": 200,\n    \"success\": true,\n    \"message\": null,\n    \"message_code\": \"success\"\n}"},{"id":"7a862acc-3412-4344-ac4c-37dbff951b27","name":"Passport Upload - Both","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":[]},{"key":"use_pdf","value":"True","type":"text"}]},"url":"https://kyc-api.aadhaarkyc.io/api/v1/ocr/passport"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Sat, 16 Jan 2021 21:59:30 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1642"},{"key":"Connection","value":"keep-alive"},{"key":"X-Client-Email","value":"admin@surepass.io"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"client_id\": \"ocr_passport_vxbaSgVYtRMfLyWjYbhd\",\n        \"ocr_fields\": [\n            {\n                \"document_type\": \"passport_front\",\n                \"country_code\": {\n                    \"value\": \"IND\",\n                    \"confidence\": 81\n                },\n                \"dob\": {\n                    \"value\": \"01/01/1990\",\n                    \"confidence\": 91\n                },\n                \"doe\": {\n                    \"value\": \"18/07/2028\",\n                    \"confidence\": 91\n                },\n                \"doi\": {\n                    \"value\": \"19/07/2018\",\n                    \"confidence\": 91\n                },\n                \"gender\": {\n                    \"value\": \"M\",\n                    \"confidence\": 91\n                },\n                \"given_name\": {\n                    \"value\": \"Munna\",\n                    \"confidence\": 92\n                },\n                \"nationality\": {\n                    \"value\": \"INDIAN\",\n                    \"confidence\": 71\n                },\n                \"passport_num\": {\n                    \"value\": \"S2426282\",\n                    \"confidence\": 92\n                },\n                \"place_of_birth\": {\n                    \"value\": \"MIRZAPUR, UTTAR PRADESH\",\n                    \"confidence\": 91\n                },\n                \"place_of_issue\": {\n                    \"value\": \"MIRZAPUR\",\n                    \"confidence\": 72\n                },\n                \"surname\": {\n                    \"value\": \"Bhaita\",\n                    \"confidence\": 94\n                },\n                \"mrz_line_1\": {\n                    \"value\": \"P<INDBHAIYA<<MUNNA<<<<<<<<<<<<<<<<<<<<<<<<<<\",\n                    \"confidence\": 92\n                },\n                \"mrz_line_2\": {\n                    \"value\": \"S2426282<2IND90001010M2807188<<<<<<<<<<<<<<<4\",\n                    \"confidence\": 91\n                },\n                \"type_of_passport\": {\n                    \"value\": \"P\",\n                    \"confidence\": 92\n                },\n                \"passport_validity\": null\n            },\n            {\n                \"document_type\": \"passport_back\",\n                \"address\": {\n                    \"value\": \"TRIPATHI HAVELI, MIRZAPUR, UTTAR PRADESH\",\n                    \"confidence\": 94\n                },\n                \"father\": {\n                    \"value\": \"Kaleen Bhaiya\",\n                    \"confidence\": 94\n                },\n                \"mother\": {\n                    \"value\": \"Bina Devi\",\n                    \"confidence\": 91\n                },\n                \"file_num\": {\n                    \"value\": \"DL1061961923456\",\n                    \"confidence\": 91\n                },\n                \"old_doi\": {\n                    \"value\": \"\",\n                    \"confidence\": 0\n                },\n                \"old_passport_num\": {\n                    \"value\": \"\",\n                    \"confidence\": 0\n                },\n                \"old_place_of_issue\": {\n                    \"value\": \"\",\n                    \"confidence\": 0\n                },\n                \"pin\": {\n                    \"value\": \"231001\",\n                    \"confidence\": 94\n                },\n                \"spouse\": {\n                    \"value\": \"\",\n                    \"confidence\": 0\n                }\n            }\n        ]\n    },\n    \"status_code\": 200,\n    \"success\": true,\n    \"message\": null,\n    \"message_code\": \"success\"\n}"}],"_postman_id":"c0e473d2-a982-49b9-8d09-eb2218baced3"}],"id":"24fbfc9f-ec07-4a7c-9cec-bc5baea73d78","event":[{"listen":"prerequest","script":{"id":"3303ead8-5c8a-4b90-ad75-a80d70627e39","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"7ddb74b4-4004-474b-b2ea-80e0d09ae349","type":"text/javascript","exec":[""]}}],"_postman_id":"24fbfc9f-ec07-4a7c-9cec-bc5baea73d78","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"International Passport","item":[{"name":"International Passport Upload","id":"194e4f30-500e-4095-a196-51ee2da05692","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":null}]},"url":"https://kyc-api.aadhaarkyc.io/api/v1/ocr/international-passport","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","ocr","international-passport"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"fc88171a-09ba-4014-b27c-98116ed362d0","name":"International Passport Upload","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":["/C:/Users/karan/Downloads/slovakia.jpg"]}]},"url":"https://kyc-api.aadhaarkyc.io/api/v1/ocr/international-passport"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Thu, 22 Oct 2020 07:13:41 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"737"},{"key":"Connection","value":"keep-alive"},{"key":"X-Client-Email","value":"admin@surepass.io"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"client_id\": \"ocr_international_passport_qDCvjhnuqvclDIyLSmHR\",\n        \"ocr_fields\": [\n            {\n                \"type\": \"international_passport\",\n                \"details\": {\n                    \"birth_date\": \"111111\",\n                    \"birth_date_hash\": \"2\",\n                    \"country_code\": \"SVK\",\n                    \"country\": \"Slovakia\",\n                    \"document_number\": \"PD000000\",\n                    \"document_number_hash\": \"5\",\n                    \"document_type\": \"P\",\n                    \"expiry_date\": \"150104\",\n                    \"expiry_date_hash\": \"3\",\n                    \"final_hash\": \"0\",\n                    \"name\": \"VZOR\",\n                    \"nationality_code\": \"5VK\",\n                    \"nationality\": null,\n                    \"optional_data\": \"\",\n                    \"optional_data_hash\": \"0\",\n                    \"sex\": \"M\",\n                    \"surname\": \"SPECIMEN\",\n                    \"mrz_line_1\": \"P<SVKSPECIMEN<<VZOR<<<<<<<<<<<<<<<<<<<<<<<<<\",\n                    \"mrz_line_2\": \"PD000000<55VK1111112M1501043<<<<<<<<<<<<<<00\"\n                }\n            }\n        ]\n    },\n    \"status_code\": 200,\n    \"success\": true,\n    \"message\": null,\n    \"message_code\": \"success\"\n}"}],"_postman_id":"194e4f30-500e-4095-a196-51ee2da05692"}],"id":"1f6c8ac2-12a3-4ebb-81ed-38bfbec9ef45","event":[{"listen":"prerequest","script":{"id":"38b6c28d-0785-4947-998b-de3e51fbb8ef","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"eab85697-156c-4898-8219-0eb7026846d5","type":"text/javascript","exec":[""]}}],"_postman_id":"1f6c8ac2-12a3-4ebb-81ed-38bfbec9ef45","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}}],"id":"420ab7b7-75eb-4dd4-9740-8534caf4c757","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Types</th>\n<th>Fields</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>pan</td>\n<td>dob, father_name, full_name, pan_number</td>\n</tr>\n<tr>\n<td>aadhaar_front_bottom</td>\n<td>aadhaar_number, dob, gender, mother_name, full_name, yob</td>\n</tr>\n<tr>\n<td>aadhaar_back</td>\n<td>aadhaar_number, address, care_of, zip</td>\n</tr>\n<tr>\n<td>voterid_front</td>\n<td>full_name, epic_number, dob, gender, doc, care_of, age</td>\n</tr>\n<tr>\n<td>voterd_back</td>\n<td>epic_number, zip, address, type, gender, dob, age</td>\n</tr>\n<tr>\n<td>passport_front</td>\n<td>country_code, dob, doe, doi, gender, given_name, nationality,  passport_num, place_of_birth, place_of_issue, surname,  mrz_line_1, mrz_line_2, type_of_passport</td>\n</tr>\n<tr>\n<td>passport_back</td>\n<td>address, father, mother, file_num, old_doi, old_passport_num, old_place_of_issue, pin, spouse</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"6276c007-1737-4ae0-b3a8-2b9f22472f2c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e994cfc3-d195-4bb1-8685-fef6e3e4d893","type":"text/javascript","exec":[""]}}],"_postman_id":"420ab7b7-75eb-4dd4-9740-8534caf4c757","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"Pull KRA","item":[{"name":"Pull KRA","id":"6004fdda-5198-44da-8b95-3fc176ae6c2b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"id_number\": \"GIVEN_PAN_NUMBER\",\n\t\"dob\":\"{{dob}}\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/pull-kra/pull-kra","description":"<p><strong>Request Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id_number</td>\n<td>String</td>\n<td>PAN Number</td>\n</tr>\n<tr>\n<td>dob</td>\n<td>String</td>\n<td>DOB in yyyy-mm-dd</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>String</td>\n<td>Unique identifier of request</td>\n</tr>\n<tr>\n<td>dob</td>\n<td>String</td>\n<td>DOB in yyyy-mm-dd</td>\n</tr>\n<tr>\n<td>pan_number</td>\n<td>String</td>\n<td>PAN Number</td>\n</tr>\n<tr>\n<td>kra_authority</td>\n<td>String</td>\n<td>KRA Authority Code</td>\n</tr>\n<tr>\n<td>document_link</td>\n<td>String</td>\n<td>Links to document extracted from KRA</td>\n</tr>\n<tr>\n<td>kra_status</td>\n<td>Boolean</td>\n<td>KRA Registration Status</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","pull-kra","pull-kra"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"6004fdda-5198-44da-8b95-3fc176ae6c2b"},{"name":"Pull KRA Config","id":"3b8cfcbf-4f0d-4f6e-b7e8-75b86fd34afc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"kra_authority\": \"{{kra_authority}}\",\n\t\"kra_user\": \"{{kra_user}}\",\n\t\"kra_password\": \"{{kra_password}}\",\n\t\"kra_additional\": \"{{additional_auth}}\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/pull-kra/config","description":"<p><strong>Request Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>kra_user</td>\n<td>String</td>\n<td>Username of the KRA Portal</td>\n</tr>\n<tr>\n<td>kra_password</td>\n<td>String</td>\n<td>Password of the KRA Portal</td>\n</tr>\n<tr>\n<td>kra_authority</td>\n<td>String</td>\n<td>KRA Authority</td>\n</tr>\n<tr>\n<td>kra_additional</td>\n<td>String</td>\n<td>Additional Username of the KRA Portal</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cvl</td>\n<td>Boolean</td>\n<td>Auth Config Saved or Not</td>\n</tr>\n<tr>\n<td>ndml</td>\n<td>Boolean</td>\n<td>Auth Config Saved or Not</td>\n</tr>\n<tr>\n<td>cams</td>\n<td>Boolean</td>\n<td>Auth Config Saved or Not</td>\n</tr>\n<tr>\n<td>dotex</td>\n<td>Boolean</td>\n<td>Auth Config Saved or Not</td>\n</tr>\n<tr>\n<td>karvy</td>\n<td>Boolean</td>\n<td>Auth Config Saved or Not</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","pull-kra","config"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"3b8cfcbf-4f0d-4f6e-b7e8-75b86fd34afc"}],"id":"7d42057a-968d-4bd7-a213-1e8e8362cda9","description":"<p>Request Group for Pull KRA related requests.</p>\n<p><strong>KRA Codes</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>KRA Authority</th>\n<th>Code</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CVL KRA</td>\n<td>cvl</td>\n</tr>\n<tr>\n<td>NDML KRA</td>\n<td>ndml</td>\n</tr>\n<tr>\n<td>CAMS KRA</td>\n<td>cams</td>\n</tr>\n<tr>\n<td>DOTEX KRA</td>\n<td>dotex</td>\n</tr>\n<tr>\n<td>KARVY KRA</td>\n<td>karvy</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"10553853-6629-4537-9652-59e9a898400e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"de4645ee-7478-45bc-b10b-160ba5518df3","type":"text/javascript","exec":[""]}}],"_postman_id":"7d42057a-968d-4bd7-a213-1e8e8362cda9","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"Customer","item":[{"name":"Customer","item":[{"name":"Customer Init","event":[{"listen":"test","script":{"id":"7af95cca-e11d-49c3-8ce8-5b6922753d78","exec":["let jsonData = pm.response.json()","let token = jsonData.data.customer_id","pm.environment.set(\"customer_id\", token)","postman.setNextRequest(\"Submit Info via Text\")"],"type":"text/javascript"}}],"id":"508c81a3-a250-4bf1-9925-e2249f457422","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"full_name\": \"{{full_name}}\",\n\t\"dob\": \"{{dob}}\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/customer/","description":"<p>Endpoint to initialise Customer.</p>\n<p><strong>Request Body (Optional)</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>full_name</td>\n<td>String</td>\n<td>Full name of the customer.</td>\n</tr>\n<tr>\n<td>dob</td>\n<td>String</td>\n<td>DOB of the customer.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Body</strong></p>\n<p>Refer to <a href=\"#customer-model\">Customer Model</a> above.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","customer",""],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"508c81a3-a250-4bf1-9925-e2249f457422"},{"name":"Get Customer Details","id":"0ab39adb-3bd6-41a2-95f4-caed5c0bf077","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://kyc-api.aadhaarkyc.io/api/v1/customer/{{customer_id}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","customer","{{customer_id}}"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"0ab39adb-3bd6-41a2-95f4-caed5c0bf077"}],"id":"067f412e-69eb-4ae3-bd7d-2a51f5ccf769","_postman_id":"067f412e-69eb-4ae3-bd7d-2a51f5ccf769","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"Requests","item":[{"name":"Generate OTP v2","event":[{"listen":"test","script":{"id":"b2db57db-307e-4169-ad80-ac59fc7b5863","exec":["let jsonData = pm.response.json()","let token = jsonData.data.client_id","pm.environment.set(\"client_id\", token)","postman.setNextRequest(\"Submit Info via Text\")"],"type":"text/javascript"}}],"id":"6e7a4d05-215a-4531-ab45-abd93601aa0c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-Customer-Id","value":"{{customer_id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"id_number\": \"GIVEN_AADHAAR_NUMBER\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/aadhaar-v2/generate-otp","description":"<p>Endpoint to generate OTP from given Aadhaar Number.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Wait 20 seconds to generate OTP for same Aadhaar Number.\nStatus Code 429 is sent in case request is sent in less than the prescribed time.\n</code></pre><p><strong>Request Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id_number</td>\n<td>String</td>\n<td>ID Number of the ID to run check on.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>String</td>\n<td>An unexpected error occurred in our API</td>\n</tr>\n<tr>\n<td>otp_sent</td>\n<td>Boolean</td>\n<td>Whether OTP Sent</td>\n</tr>\n<tr>\n<td>if_number</td>\n<td>Boolean</td>\n<td>If Number exists</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","aadhaar-v2","generate-otp"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"1623a923-0621-45ec-87f6-4368964932ab","name":"Generate OTP V2 - Rate Limited","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer YOUR_TOKEN","type":"text"},{"key":"X-Customer-Id","value":"{{customer_id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"id_number\": \"GIVEN_AADHAAR_NUMBER\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/clients/aadhaar-v2/generate-otp"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": null,\n    \"status_code\": 429,\n    \"message\": \"\",\n    \"success\": false,\n    \"type\": \"aadhaar_v2_generate\"\n}"},{"id":"b1632283-2e71-427f-9b25-16de14dfd691","name":"Generate OTP V2","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer YOUR_TOKEN","type":"text"},{"key":"X-Customer-Id","value":"{{customer_id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"id_number\": \"GIVEN_AADHAAR_NUMBER\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/clients/aadhaar-v2/generate-otp"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"if_number\": true,\n        \"otp_sent\": true,\n        \"client_id\": \"takdTqhCxo\"\n    },\n    \"status_code\": 200,\n    \"message\": \"\",\n    \"success\": true,\n    \"type\": \"aadhaar_v2_generate\"\n}"},{"id":"42065946-11e4-440f-937b-bac36ce3f79e","name":"Generate OTP V2 - Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer YOUR_TOKEN","type":"text"},{"key":"X-Customer-Id","value":"{{customer_id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"id_number\": \"GIVEN_AADHAAR_NUMBER\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/clients/aadhaar-v2/generate-otp"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"if_number\": false,\n        \"otp_sent\": false,\n        \"client_id\": \"takdTqhCxo\"\n    },\n    \"status_code\": 422,\n    \"message\": \"\",\n    \"success\": false,\n    \"type\": \"aadhaar_v2_generate\"\n}"}],"_postman_id":"6e7a4d05-215a-4531-ab45-abd93601aa0c"},{"name":"Submit OTP v2","event":[{"listen":"test","script":{"id":"d57961b1-63c7-4c2a-99db-29edcf0b14da","exec":["let jsonData = pm.response.json()","let token = jsonData.data.client_id","pm.environment.set(\"client_id\", token)","postman.setNextRequest(\"Submit Info via Text\")"],"type":"text/javascript"}}],"id":"6c785671-f99b-4632-bfbf-c3c4f621c089","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-Customer-Id","value":"{{customer_id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"client_id\": \"GENERATED_CLIENT_ID\",\n\t\"otp\": \"{{otp}}\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/aadhaar-v2/submit-otp","description":"<p>Endpoint to submit OTP after successful Generate OTP Request.</p>\n<p><strong>Request Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>String</td>\n<td>ID Number of the ID to run check on.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Body</strong></p>\n<p>Refer to <a href=\"#aadhaar-v2-model\">Aadhaar v2 Object Model</a> above.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","aadhaar-v2","submit-otp"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"a396af69-f5bc-47af-93f9-a1242a03488e","name":"Submit OTP V2","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer YOUR_TOKEN","type":"text"},{"key":"X-Customer-Id","value":"{{customer_id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"client_id\": \"GENERATED_CLIENT_ID\",\n\t\"otp\": \"{{otp}}\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/aadhaar-v2/submit-otp"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"gender\": \"M\",\n        \"address\": {\n            \"loc\": \"mirzapur\",\n            \"country\": \"India\",\n            \"house\": \"tripathi haveli, mirzapur\",\n            \"subdist\": \"mirzapur\",\n            \"vtc\": \"mirzapur\",\n            \"po\": \"mirzapur\",\n            \"state\": \"uttar pradesh\",\n            \"street\": \"tripathi lane\",\n            \"dist\": \"mirzapur\"\n        },\n        \"aadhaar_number\": \"543298761234\",\n        \"dob\": \"1990-08-31\",\n        \"client_id\": \"ZGTaWjbbfv\",\n        \"zip\": \"231001\",\n        \"full_name\": \"Munna Bhaiya\"\n    },\n    \"status_code\": 200,\n    \"message\": \"\",\n    \"success\": true,\n    \"type\": \"aadhaav_v2_model\"\n}"}],"_postman_id":"6c785671-f99b-4632-bfbf-c3c4f621c089"},{"name":"PAN","event":[{"listen":"test","script":{"id":"44910c0c-e5ea-4f91-9a47-cd0cc2e05f7d","exec":["let jsonData = pm.response.json()","let token = jsonData.data.client_id","pm.environment.set(\"client_id\", token)","postman.setNextRequest(\"Submit Info via Text\")"],"type":"text/javascript"}}],"id":"ac1409ec-368f-4479-a2c9-e0c005bdf680","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"X-Customer-Id","value":"{{customer_id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"id_number\": \"GIVEN_PAN_NUMBER\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/pan/pan","description":"<p>Endpoint to get PAN details of a new client using PAN Number.</p>\n<p><strong>Request Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id_number</td>\n<td>String</td>\n<td>ID Number of the ID to run check on.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Resonpse Body</strong></p>\n<p>Refer to <a href=\"#pan-model\">PAN Object Model</a> above.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","pan","pan"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"ac1409ec-368f-4479-a2c9-e0c005bdf680"},{"name":"Voter ID","event":[{"listen":"test","script":{"id":"4a81fd21-1700-4c73-ad16-d34eb6ad2746","exec":["let jsonData = pm.response.json()","let token = jsonData.data.client_id","pm.environment.set(\"client_id\", token)","postman.setNextRequest(\"Submit Info via Text\")"],"type":"text/javascript"}}],"id":"a4a95f36-0942-4eb9-8d43-caedbdab882d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-Customer-Id","value":"{{customer_id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id_number\": \"GIVEN_EPIC_NUMBER\",\n    \"additional_details\": {\n    \t\"full_name\": \"Karan Kapoor\",\n        \"dob\": \"1996-02-29\"\n    }\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/voter-id/voter-id","description":"<p>Endpoint to get details of Voter ID as per the given ID Number.</p>\n<p><strong>Request Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id_number</td>\n<td>String</td>\n<td>ID Number of the ID to run check on.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Body</strong></p>\n<p>Refer to <a href=\"#voter-id-model\">Voter ID Object Model</a> above.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","voter-id","voter-id"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"93e4a9c5-1cd1-4ae1-8918-fe6e25c470b8","name":"Voter ID By Number","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer YOUR_TOKEN","type":"text"},{"key":"X-Customer-Id","value":"{{customer_id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"id_number\": \"{{voter_id_number}}\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/voter-id/voter-id"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 08 Feb 2019 20:50:23 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"4a60f7ceca94c83d-AMS"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"relation_type\": \"F\",\n        \"gender\": \"M\",\n        \"age\": \"29\",\n        \"epic_no\": \"NLN2089555\",\n        \"client_id\": \"bkpkzGyssQ\",\n        \"dob\": \"1990-08-31\",\n        \"relation_name\": \"KALEEN BHAIYA\",\n        \"name\": \"MUNNA BHAIYA\",\n        \"area\": \"Mirzapur\",\n        \"state\": \"Uttar Pradesh\",\n        \"house_no\": \"Tripathi Haveli\"\n    },\n    \"status_code\": 200,\n    \"message\": \"\",\n    \"success\": true\n}"}],"_postman_id":"a4a95f36-0942-4eb9-8d43-caedbdab882d"},{"name":"License","event":[{"listen":"test","script":{"id":"f3fc34df-8842-41a2-b822-9b5eb1e740b0","exec":["let jsonData = pm.response.json()","let token = jsonData.data.client_id","pm.environment.set(\"client_id\", token)","postman.setNextRequest(\"Submit Info via Text\")"],"type":"text/javascript"}}],"id":"c7994edd-3756-4046-8ddb-c8204d1250e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-Customer-Id","value":"{{customer_id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id_number\": \"GIVEN_LICENSE_NUMBER\",\n    \"additional_details\": {\n        \"full_name\": \"Amit Mittal\",\n        \"dob\": \"1996-11-23\"\n    }\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/driving-license/driving-license","description":"<p>Endpoint to get details of driving license as per the given ID Number.</p>\n<p><strong>Request Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id_number</td>\n<td>String</td>\n<td>ID Number of the ID to run check on.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Body</strong></p>\n<p>Refer to <a href=\"#license-model\">License Object Model</a> above.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","driving-license","driving-license"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"61038856-32c3-4217-85a4-cc2a35b63372","name":"License","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer YOUR_TOKEN","type":"text"},{"key":"X-Customer-Id","value":"{{customer_id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"id_number\": \"GIVEN_LICENSE_NUMBER\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/driving-license/driving-license"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"temporary_address\": \"TRIPATHI HAVELI, MIRZAPUR\",\n        \"father_or_husband_name\": \"KALEEN BHAIYA\",\n        \"doe\": \"2032-07-23\",\n        \"temporary_zip\": \"231001\",\n        \"permanent_address\": \"TRIPATHI HAVELI, MIRZAPUR\",\n        \"doi\": \"2012-07-24\",\n        \"client_id\": \"dIysSjHnIG\",\n        \"citizenship\": \"IND\",\n        \"dob\": \"1990-08-31\",\n        \"permanent_zip\": \"231001\",\n        \"gender\": \"Male\",\n        \"license_number\": \"UP20 20150000000\",\n        \"name\": \"MUNNA BHAIYA\",\n        \"state\": \"UP\",\n        \"ola_name\": \"DISTRICT TRANSPORT OFFICE, MIRZAPUR\",\n        \"ola_code\": \"UP20\"\n    },\n    \"status_code\": 200,\n    \"message\": \"\",\n    \"success\": true\n}"}],"_postman_id":"c7994edd-3756-4046-8ddb-c8204d1250e6"},{"name":"Aadhaar Validation","event":[{"listen":"test","script":{"id":"1386ad1f-c9ae-427e-888d-b71bb17d7865","exec":["let jsonData = pm.response.json()","let token = jsonData.data.client_id","pm.environment.set(\"client_id\", token)"],"type":"text/javascript"}}],"id":"42139288-5ca7-4929-9bef-a7cf389d7649","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-Customer-Id","value":"{{customer_id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"id_number\":  \"GIVEN_AADHAAR_NUMBER\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/aadhaar-validation/aadhaar-validation","description":"<p>Endpoint to validate from given Aadhaar Number.</p>\n<p><strong>Request Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id_number</td>\n<td>String</td>\n<td>ID Number of the ID to run check on.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Body</strong></p>\n<p>Refer to <a href=\"#aadhaar-validation-model\"> Aadhaar Validation Object Model</a> above.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","aadhaar-validation","aadhaar-validation"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"96b31c27-fcc1-4060-a302-4524e5a11f20","name":"Aadhaar Validation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer YOUR_TOKEN","type":"text"},{"key":"X-Customer-Id","value":"{{customer_id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"id_number\":  \"GIVEN_AADHAAR_NUMBER\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/aadhaar-validation/aadhaar-validation"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"age_range\": \"20-30\",\n        \"state\": \"UTTAR PRADESH\",\n        \"is_mobile\": true,\n        \"gender\": \"M\",\n        \"aadhaar_number\": \"543298761234\",\n        \"last_digits\": \"700\",\n        \"client_id\": \"takdTqhCxo\"\n    },\n    \"status_code\": 200,\n    \"message\": \"\",\n    \"success\": true\n}"}],"_postman_id":"42139288-5ca7-4929-9bef-a7cf389d7649"}],"id":"8331df62-d21a-403b-b2c7-dcc9b0a885f0","description":"<h2 id=\"request-header\">Request Header</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>X-Customer-Id</td>\n<td>String</td>\n<td>Customer ID generated from init request.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"8e765256-cbff-4c6f-a6f9-e014a56ff0f4","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"345de877-7ea6-4557-b834-c39608a7ec81","type":"text/javascript","exec":[""]}}],"_postman_id":"8331df62-d21a-403b-b2c7-dcc9b0a885f0","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}}],"id":"4a34733b-9a82-4b32-b051-6e06a90f6b68","description":"<p>Request Group for Customer related requests.</p>\n<p>null values denote that the verification has not been done for that data field, or the given field is not applicable for that verification type.</p>\n<h2 id=\"customer-model\">Customer Model</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>customer_id</td>\n<td>String</td>\n<td>Unique identifier of this object/ query.</td>\n</tr>\n<tr>\n<td>full_name</td>\n<td>String</td>\n<td>Full Name as per Bank Records</td>\n</tr>\n<tr>\n<td>dob</td>\n<td>String</td>\n<td>DOB of the Customer.</td>\n</tr>\n<tr>\n<td>expiry</td>\n<td>String</td>\n<td>Date and time of expiry of client.</td>\n</tr>\n<tr>\n<td>id_status</td>\n<td>Object</td>\n<td>Status of various IDs of Customer.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"id-status-model\">ID Status Model</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>aadhaar_status</td>\n<td>Object</td>\n<td>Meta details about Aadhaar verification.</td>\n</tr>\n<tr>\n<td>pan_status</td>\n<td>Object</td>\n<td>Meta details about PAN verification.</td>\n</tr>\n<tr>\n<td>license_status</td>\n<td>Object</td>\n<td>Meta details about License verification.</td>\n</tr>\n<tr>\n<td>voter_status</td>\n<td>Object</td>\n<td>Meta details about Voter verification.</td>\n</tr>\n<tr>\n<td>aadhaar_validation_status</td>\n<td>Object</td>\n<td>Meta details about Voter verification.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"individual-id-status-object\">Individual ID Status Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name_match</td>\n<td>Boolean</td>\n<td>If customer and ID name matches.</td>\n</tr>\n<tr>\n<td>name_score</td>\n<td>Float</td>\n<td>String matching score of customer and ID name</td>\n</tr>\n<tr>\n<td>dob_match</td>\n<td>Boolean</td>\n<td>DOB of the Customer matches on the ID.</td>\n</tr>\n<tr>\n<td>client_id</td>\n<td>String</td>\n<td>Client ID of the ID verification request.</td>\n</tr>\n<tr>\n<td>full_name</td>\n<td>String</td>\n<td>Full Name as per the ID.</td>\n</tr>\n<tr>\n<td>dob</td>\n<td>String</td>\n<td>DOB as per the ID</td>\n</tr>\n<tr>\n<td>usage_status</td>\n<td>Boolean</td>\n<td>Status of usage of a particular ID.</td>\n</tr>\n<tr>\n<td>id_verified</td>\n<td>Boolean</td>\n<td>Whether the ID provided was verified.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"75bd6ddc-059f-4970-a51a-d65059661954","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"6b178328-b6a1-4068-bb0d-5d5e128d713e","type":"text/javascript","exec":[""]}}],"_postman_id":"4a34733b-9a82-4b32-b051-6e06a90f6b68","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"Utils","item":[{"name":"Name Matching","item":[{"name":"Name Match","event":[{"listen":"test","script":{"id":"f3fc34df-8842-41a2-b822-9b5eb1e740b0","exec":[""],"type":"text/javascript"}}],"id":"e7057729-f549-480a-b91a-133919ec2ecc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name_1\": \"Munna Bhaiya\",\n\t\"name_2\": \"Bhaiya Munna\",\n\t\"name_type\": \"person\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/utils/name-matching/","description":"<p>Endpoint to get details of driving license as per the given ID Number.</p>\n<p><strong>Request Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id_number</td>\n<td>String</td>\n<td>ID Number of the ID to run check on.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Body</strong></p>\n<p>Refer to <a href=\"#license-model\">License Object Model</a> above.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","utils","name-matching",""],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"e7057729-f549-480a-b91a-133919ec2ecc"}],"id":"436833b2-46d7-4644-9cb7-dce2c85481f6","_postman_id":"436833b2-46d7-4644-9cb7-dce2c85481f6","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}}],"id":"5bdc554d-ed0e-4f02-b089-7d6bc7fd56e9","_postman_id":"5bdc554d-ed0e-4f02-b089-7d6bc7fd56e9","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"Usage","item":[{"name":"Usage Report","event":[{"listen":"test","script":{"id":"f3fc34df-8842-41a2-b822-9b5eb1e740b0","exec":[""],"type":"text/javascript"}}],"id":"923fd18b-0f23-44bc-9c6a-10c7da4cdb95","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n\t\"start_date\": \"2020-01-01\",\r\n\t\"end_date\": \"2020-03-06\",\r\n\t\"type\": \"pan\",\r\n\t\"recipient_email\": \"sample@example.com\"\r\n}\r\n"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/utils/usage/usage-report","description":"<p>Endpoint to get the usage report for each category.</p>\n<p>Usage Report Types -</p>\n<ol>\n<li>pan</li>\n<li>voter_id</li>\n<li>aadhaar_validation</li>\n<li>gstin</li>\n<li>license</li>\n<li>voter_ocr</li>\n<li>bank_validation</li>\n</ol>\n<p><strong>Request Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>start_date</td>\n<td>String</td>\n<td>Start Date of the report</td>\n</tr>\n<tr>\n<td>end_date</td>\n<td>String</td>\n<td>End date of the report</td>\n</tr>\n<tr>\n<td>type</td>\n<td>String</td>\n<td>Type of the report</td>\n</tr>\n<tr>\n<td>recipient_email</td>\n<td>String</td>\n<td>Email to receive the report</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","utils","usage","usage-report"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"923fd18b-0f23-44bc-9c6a-10c7da4cdb95"},{"name":"Usage Summary","event":[{"listen":"test","script":{"id":"f3fc34df-8842-41a2-b822-9b5eb1e740b0","exec":[""],"type":"text/javascript"}}],"id":"61c910ac-e835-4bd8-9db1-c195cf03d81f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n\t\"start_date\": \"2019-01-01\",\r\n\t\"end_date\": \"2020-03-06\",\r\n\t\"recipient_email\": \"sample@example.com\"\r\n}\r\n"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/utils/usage/usage-summary","description":"<p>Endpoint to get the usage summary.</p>\n<p><strong>Request Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>start_date</td>\n<td>String</td>\n<td>Start Date of the report</td>\n</tr>\n<tr>\n<td>end_date</td>\n<td>String</td>\n<td>End date of the report</td>\n</tr>\n<tr>\n<td>recipient_email</td>\n<td>String</td>\n<td>Type of the report</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","utils","usage","usage-summary"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"61c910ac-e835-4bd8-9db1-c195cf03d81f"},{"name":"Balance","id":"c95e52ee-2243-41b5-a5df-15ca169fe81f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://kyc-api.aadhaarkyc.io/api/v1/utils/usage/balance","description":"<p>Get remaining balance in the account.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","utils","usage","balance"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"c95e52ee-2243-41b5-a5df-15ca169fe81f"}],"id":"4ced8404-2b34-4178-8085-efee634429f8","description":"<p>Request group for requests related to balance check and usage check.</p>\n<p>Report are available for requests made in current year only.</p>\n","event":[{"listen":"prerequest","script":{"id":"dfa37f59-1edc-43e1-a511-9e8360ba5429","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"57696223-8a74-4586-b0ce-5d8ad17c31b8","type":"text/javascript","exec":[""]}}],"_postman_id":"4ced8404-2b34-4178-8085-efee634429f8","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"Telecom","item":[{"name":"Generate OTP v2","event":[{"listen":"test","script":{"id":"b6d539be-5fc7-418d-9a01-5547754d17a3","exec":["let jsonData = pm.response.json()","let token = jsonData.data.client_id","pm.environment.set(\"client_id\", token)","postman.setNextRequest(\"Submit Info via Text\")"],"type":"text/javascript"}}],"id":"333b1eea-d561-432e-a9ab-54df3503e6b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"id_number\": \"{{phone_number}}\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/telecom/generate-otp","description":"<p>Endpoint to generate OTP from given Mobile Number.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Wait 60 seconds to generate OTP for same Mobile Number.\nStatus Code 429 is sent in case request is sent in less than the prescribed time.\n</code></pre><p><strong>Request Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id_number</td>\n<td>String</td>\n<td>ID Number of the ID to run check on.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>String</td>\n<td>An unexpected error occurred in our API</td>\n</tr>\n<tr>\n<td>otp_sent</td>\n<td>Boolean</td>\n<td>Whether OTP Sent</td>\n</tr>\n<tr>\n<td>if_number</td>\n<td>Boolean</td>\n<td>If Number exists</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","telecom","generate-otp"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"333b1eea-d561-432e-a9ab-54df3503e6b5"},{"name":"Submit OTP v2","event":[{"listen":"test","script":{"id":"26fe3290-9a63-4395-8332-644105ab3c10","exec":["let jsonData = pm.response.json()","let token = jsonData.data.client_id","pm.environment.set(\"client_id\", token)","postman.setNextRequest(\"Submit Info via Text\")"],"type":"text/javascript"}}],"id":"b9b6997f-474e-4c9b-bf11-e7a3724793dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"client_id\": \"GENERATED_CLIENT_ID\",\n\t\"otp\": \"{{otp}}\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/telecom/submit-otp","description":"<p>Endpoint to submit OTP after successful Generate OTP Request.</p>\n<p><strong>Request Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>String</td>\n<td>ID Number of the ID to run check on.</td>\n</tr>\n<tr>\n<td>otp</td>\n<td>String</td>\n<td>OTP Received.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Body</strong></p>\n<p>Refer to <a href=\"#telecom-model\">Telecom Model</a> above.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","telecom","submit-otp"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"b9b6997f-474e-4c9b-bf11-e7a3724793dd"}],"id":"ae6cdeec-92df-4ae5-b5c5-642b2658e129","description":"<p>Request Group for Telecom related requests.</p>\n<h2 id=\"telecom-model\">Telecom Model</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>mobile_number</td>\n<td>String</td>\n<td>Mobile number of applicant.</td>\n</tr>\n<tr>\n<td>address</td>\n<td>String</td>\n<td>Address as per telecom records.</td>\n</tr>\n<tr>\n<td>full_name</td>\n<td>String</td>\n<td>Full Name as per telecom records.</td>\n</tr>\n<tr>\n<td>dob</td>\n<td>String</td>\n<td>Date of Birth of the applicant.</td>\n</tr>\n<tr>\n<td>client_id</td>\n<td>String</td>\n<td>Unique identifier of this object/ query.</td>\n</tr>\n<tr>\n<td>operator</td>\n<td>String</td>\n<td>Telecom Operator of the phone number.</td>\n</tr>\n<tr>\n<td>billing_type</td>\n<td>String</td>\n<td>Prepaid/ Postpaid.</td>\n</tr>\n<tr>\n<td>alternate_phone</td>\n<td>String</td>\n<td>Alternate Phone number.</td>\n</tr>\n<tr>\n<td>email</td>\n<td>String</td>\n<td>Email as per Operator records.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"143c149c-7f9c-4639-9c70-0118e35f3d97","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f8c49123-d1b7-456f-8dbe-63c81dd45a35","type":"text/javascript","exec":[""]}}],"_postman_id":"ae6cdeec-92df-4ae5-b5c5-642b2658e129","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"Electricity","item":[{"name":"Get State List","id":"fb31f412-2e9e-403b-a578-3f1ae177c350","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://kyc-api.aadhaarkyc.io/api/v1/utility/electricity/operator-code-list","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","utility","electricity","operator-code-list"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"fb31f412-2e9e-403b-a578-3f1ae177c350"},{"name":"Get Electricity Details","event":[{"listen":"test","script":{"id":"2c75c1d7-e89a-4db9-a3e6-e64eea8d4433","exec":["let jsonData = pm.response.json()","pm.environment.set(\"client_id\", jsonData[\"data\"][\"client_id\"])",""],"type":"text/javascript"}}],"id":"1c29423c-87c2-4f63-866d-65c34a68c3e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"id_number\": \"{{ca_number}}\",\n    \"operator_code\": \"{{operator_code}}\"\n}","options":{"raw":{"language":"json"}}},"url":"https://kyc-api.aadhaarkyc.io/api/v1/utility/electricity/","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","utility","electricity",""],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"1c29423c-87c2-4f63-866d-65c34a68c3e7"}],"id":"667fde49-ed62-43d5-b158-e1092ed52a5a","_postman_id":"667fde49-ed62-43d5-b158-e1092ed52a5a","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"Shop Establishment(SE)","item":[{"name":"Get SE State List","id":"c1b47120-0861-4833-aae4-186b579eec8d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://kyc-api.aadhaarkyc.io/api/v1/se/state-code-list","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","se","state-code-list"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"c1b47120-0861-4833-aae4-186b579eec8d"},{"name":"Get SE Details","event":[{"listen":"test","script":{"id":"a85b4545-9c1c-4072-a2b7-1c48e9db7ede","exec":["let jsonData = pm.response.json()","pm.environment.set(\"se_client_id\", jsonData[\"data\"][\"client_id\"])",""],"type":"text/javascript"}}],"id":"85936ee9-0420-40ca-b0c8-ab53aaa3b7d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"id_number\": \"2010012911\",\n    \"state_code\": \"DL\"\n}","options":{"raw":{"language":"json"}}},"url":"https://kyc-api.aadhaarkyc.io/api/v1/se/","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","se",""],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"85936ee9-0420-40ca-b0c8-ab53aaa3b7d7"}],"id":"48fd7667-dd29-4fdd-9beb-18ba19d03ea1","_postman_id":"48fd7667-dd29-4fdd-9beb-18ba19d03ea1","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"EPFO Passbook","item":[{"name":"Generate EPFO OTP","event":[{"listen":"test","script":{"id":"ff5730a9-2747-430e-bbe6-00e7ceb7929e","exec":["let jsonData = pm.response.json()","let token = jsonData.data.client_id","pm.environment.set(\"client_id\", token)","postman.setNextRequest(\"Submit Info via Text\")"],"type":"text/javascript"}}],"id":"437a56e8-ec7e-4563-b76f-02078f678e40","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"id_number\": \"{{id_number}}\"\n}","options":{"raw":{"language":"json"}}},"url":"https://kyc-api.aadhaarkyc.io/api/v1/income/epfo/passbook/generate-otp","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","income","epfo","passbook","generate-otp"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"81d64c13-fae2-431b-9c49-8ccbdaf62362","name":"Generate EPFO OTP","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"id_number\": \"101550652226\"\n}","options":{"raw":{"language":"json"}}},"url":"https://kyc-api.aadhaarkyc.io/api/v1/income/epfo/passbook/generate-otp"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Wed, 13 Jan 2021 08:52:17 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"213"},{"key":"Connection","value":"keep-alive"},{"key":"X-Client-Email","value":"admin@surepass.io"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"client_id\": \"income_epfo_passbook_zTqOxnWwQFXgbzxpaUeh\",\n        \"otp_sent\": true,\n        \"masked_mobile_number\": \"XXXXXX5699\"\n    },\n    \"status_code\": 200,\n    \"message_code\": \"success\",\n    \"message\": \"OTP Sent.\",\n    \"success\": true\n}"}],"_postman_id":"437a56e8-ec7e-4563-b76f-02078f678e40"},{"name":"Submit EPFO OTP","id":"c70c6dc7-d366-4e25-bc46-947276727eee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"client_id\": \"GENERATED_CLIENT_ID\",\n\t\"otp\": \"582430\"\n}","options":{"raw":{"language":"json"}}},"url":"https://kyc-api.aadhaarkyc.io/api/v1/income/epfo/passbook/submit-otp","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","income","epfo","passbook","submit-otp"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"0d1345fa-10b4-4474-945d-19c4a3af6c05","name":"Submit EPFO OTP","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"client_id\": \"GENERATED_CLIENT_ID\",\n\t\"otp\": \"225792\"\n}","options":{"raw":{"language":"json"}}},"url":"https://kyc-api.aadhaarkyc.io/api/v1/income/epfo/passbook/submit-otp"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Wed, 13 Jan 2021 10:30:04 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"115"},{"key":"Connection","value":"keep-alive"},{"key":"X-Client-Email","value":"admin@surepass.io"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"otp_validated\": true\n    },\n    \"status_code\": 200,\n    \"message_code\": \"success\",\n    \"message\": null,\n    \"success\": true\n}"}],"_postman_id":"c70c6dc7-d366-4e25-bc46-947276727eee"},{"name":"Get Passbook","id":"7dc11907-6e99-4d7f-89b1-f1208d05028a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"client_id\": \"GENERATED_CLIENT_ID\"\n}","options":{"raw":{"language":"json"}}},"url":"https://kyc-api.aadhaarkyc.io/api/v1/income/epfo/passbook/get-passbook","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","income","epfo","passbook","get-passbook"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"2b670968-7da4-42ea-a9d3-d9e82c0b5a83","name":"Get Passbook","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"client_id\": \"GENERATED_CLIENT_ID\"\n}","options":{"raw":{"language":"json"}}},"url":"https://kyc-api.aadhaarkyc.io/api/v1/income/epfo/passbook/get-passbook"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Wed, 13 Jan 2021 10:30:21 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"2395"},{"key":"Connection","value":"keep-alive"},{"key":"X-Client-Email","value":"admin@surepass.io"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"client_id\": \"income_epfo_passbook_oYqZxyjYGXopbobRonZs\",\n        \"pf_uan\": \"101550652226\",\n        \"full_name\": \"JOHN DOE\",\n        \"father_name\": \"JOHNY DOE\",\n        \"dob\": \"1990-01-01\",\n        \"companies\": {\n            \"RJRAJ00161550000031234\": {\n                \"passbook\": [\n                    {\n                        \"member_id\": \"RJRAJ00161550000031234\",\n                        \"employee_share\": \"0\",\n                        \"employer_share\": \"0\",\n                        \"approved_on\": \"2019-04-01\",\n                        \"year\": \"2019\",\n                        \"month\": \"04\"\n                    },\n                    {\n                        \"member_id\": \"RJRAJ00161550000031234\",\n                        \"employee_share\": \"770\",\n                        \"employer_share\": \"235\",\n                        \"approved_on\": \"2020-01-14\",\n                        \"year\": \"2020\",\n                        \"month\": \"01\"\n                    },\n                    {\n                        \"member_id\": \"RJRAJ00161550000031234\",\n                        \"employee_share\": \"1848\",\n                        \"employer_share\": \"598\",\n                        \"approved_on\": \"2020-02-13\",\n                        \"year\": \"2020\",\n                        \"month\": \"02\"\n                    },\n                    {\n                        \"member_id\": \"RJRAJ00161550000031234\",\n                        \"employee_share\": \"1427\",\n                        \"employer_share\": \"437\",\n                        \"approved_on\": \"2020-03-12\",\n                        \"year\": \"2020\",\n                        \"month\": \"03\"\n                    },\n                    {\n                        \"member_id\": \"RJRAJ00161550000031234\",\n                        \"employee_share\": \"1701\",\n                        \"employer_share\": \"520\",\n                        \"approved_on\": \"2020-04-13\",\n                        \"year\": \"2020\",\n                        \"month\": \"04\"\n                    },\n                    {\n                        \"member_id\": \"RJRAJ00161550000031234\",\n                        \"employee_share\": \"1591\",\n                        \"employer_share\": \"486\",\n                        \"approved_on\": \"2020-05-13\",\n                        \"year\": \"2020\",\n                        \"month\": \"05\"\n                    },\n                    {\n                        \"member_id\": \"RJRAJ00161550000031234\",\n                        \"employee_share\": \"1283\",\n                        \"employer_share\": \"392\",\n                        \"approved_on\": \"2020-06-12\",\n                        \"year\": \"2020\",\n                        \"month\": \"06\"\n                    },\n                    {\n                        \"member_id\": \"RJRAJ00161550000031234\",\n                        \"employee_share\": \"690\",\n                        \"employer_share\": \"211\",\n                        \"approved_on\": \"2020-07-13\",\n                        \"year\": \"2020\",\n                        \"month\": \"07\"\n                    },\n                    {\n                        \"member_id\": \"RJRAJ00161550000031234\",\n                        \"employee_share\": \"1803\",\n                        \"employer_share\": \"553\",\n                        \"approved_on\": \"2020-08-13\",\n                        \"year\": \"2020\",\n                        \"month\": \"08\"\n                    },\n                    {\n                        \"member_id\": \"RJRAJ00161550000031234\",\n                        \"employee_share\": \"1540\",\n                        \"employer_share\": \"471\",\n                        \"approved_on\": \"2020-09-14\",\n                        \"year\": \"2020\",\n                        \"month\": \"09\"\n                    },\n                    {\n                        \"member_id\": \"RJRAJ00161550000031234\",\n                        \"employee_share\": \"1485\",\n                        \"employer_share\": \"454\",\n                        \"approved_on\": \"2020-10-13\",\n                        \"year\": \"2020\",\n                        \"month\": \"10\"\n                    },\n                    {\n                        \"member_id\": \"RJRAJ00161550000031234\",\n                        \"employee_share\": \"1697\",\n                        \"employer_share\": \"519\",\n                        \"approved_on\": \"2020-11-12\",\n                        \"year\": \"2020\",\n                        \"month\": \"11\"\n                    },\n                    {\n                        \"member_id\": \"RJRAJ00161550000031234\",\n                        \"employee_share\": \"1591\",\n                        \"employer_share\": \"486\",\n                        \"approved_on\": \"2020-12-14\",\n                        \"year\": \"2020\",\n                        \"month\": \"12\"\n                    }\n                ],\n                \"company_name\": \"M/S ABC BANK LIMITED\",\n                \"establishment_id\": \"RJRAJ0016112345\"\n            }\n        }\n    },\n    \"status_code\": 200,\n    \"success\": true,\n    \"message\": null,\n    \"message_code\": \"success\"\n}"}],"_postman_id":"7dc11907-6e99-4d7f-89b1-f1208d05028a"}],"id":"e03aab87-ae5b-4807-bc65-2272522089ee","description":"<p>Request group for EPFO Passbook Related requests</p>\n","event":[{"listen":"prerequest","script":{"id":"cd5cf496-98ef-4b7b-b029-8ccb1a6ae7d4","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"2971817a-3126-4361-8b5f-50dac108889e","type":"text/javascript","exec":[""]}}],"_postman_id":"e03aab87-ae5b-4807-bc65-2272522089ee","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"Corporate OTP","item":[{"name":"GST","item":[{"name":"Init","event":[{"listen":"test","script":{"id":"d7bffe66-3fb8-4157-a3be-6244fc204cae","exec":["let jsonData = pm.response.json()\r","let token = jsonData.data.client_id\r","pm.environment.set(\"client_id\", token)\r","postman.setNextRequest(\"Submit Info via Text\")"],"type":"text/javascript"}}],"id":"6a8e2d9c-e855-4c45-9485-a3ffe39e2138","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"id_number\": \"27AAACR5055K1Z7\",\r\n    \"hsn_info_get\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"https://kyc-api.aadhaarkyc.io/api/v1/corporate-otp/gstin/init","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","corporate-otp","gstin","init"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"fbccdbb3-9997-48fa-a667-4da756b081fc","name":"Init","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"id_number\": \"27AAACR5055K1Z7\",\r\n    \"hsn_info_get\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"https://kyc-api.aadhaarkyc.io/api/v1/corporate-otp/gstin/init"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Thu, 18 Feb 2021 08:41:19 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"93049"},{"key":"Connection","value":"keep-alive"},{"key":"X-Client-Email","value":"redcarpet@aadhaarapi.io"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"client_id\": \"gst_otp_bdiWrntdxyyuNqrzVthm\",\n        \"email\": \"RIL.MHGST@ril.com\",\n        \"mobile\": \"9867147765\",\n        \"details\": {\n            \"contact_details\": {\n                \"principal\": {\n                    \"address\": \"5, 5, TTC Industrial Area, Reliance Corporate Park, Thane Belapur Road, Ghansoli, Navi Mumbai, Thane, Maharashtra, 400701\",\n                    \"email\": \"RIL.MHGST@ril.com\",\n                    \"mobile\": 9867147765,\n                    \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                },\n                \"additional\": [\n                    {\n                        \"address\": \"IV, MAKER CHAMBERS, NARIMAN POINT, MUMBAI, Mumbai City, Maharashtra, 400021\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"CHEMICAL TERMINAL BOMBAY LTD, PIRPAU INSTALLATION, NEAR BPT PUMP HOUSE, TROMBE, Mumbai City, Maharashtra, 400074\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"P B NO 102, TERRENCE FIBRES INDIA LTD, THANE BELAPUR ROAD, THANE H P O, Thane, Maharashtra, 400601\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 235 241 NH 8, PELHAR, VASAI, VASAI, Thane, Maharashtra, 401208\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 7 7 NH 8, BANDHAN, OFF SOMAIYA HOSPITAL, DHUNDALWADI, Thane, Maharashtra, 401606\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"PLOT NO S 5, COTTON CORPORATION OF INDIA LTD, WAREHOUSING COMPLEX, KALAMBOLI, Raigad, Maharashtra, 410201\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"GATR NO 161 1 2, PRIYANKA WAREHOUSING, PUNE NASHIK ROAD, KURULI, Pune, Maharashtra, 410501\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"9, GODREJ MILLENIUM BUILDING, NEAR TAJ DIAMOND, KOREGAON PARK, Pune, Maharashtra, 411001\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"NEW INDIAN CEMENT PIPE COMPANY, NEXT TO INDIAN SEEDS INDUSTRIES, PUNE BANGLORE ROAD, KHARAD, Pune, Maharashtra, 415110\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"9 34 A1 INDUSTRIAL ESTATE, VENKATESH YARN PVT LTD SAHWAS, ICHALKRANJI, KOLHAPUR, Kolhapur, Maharashtra, 416115\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"GAT NO 123, MANIYAR ESTATE, PALDHI, JALGAON, Jalgaon, Maharashtra, 425103\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SAPTAK PLAZA, ABOVE DASS JEWELLERS, NEAR SHANKAR NAGAR SQUARE, NAGPUR, Nagpur, Maharashtra, 440010\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"GAT NO 305 2 2 2 2P, DEALER LOC PETROL PUMP BEHIND VINAYA HIGHWAY CENTRE, PUNE SOLAPUR HIGHWAY, KONDI, Solapur, Maharashtra, 413255\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"GATE NO 43, OPP MAIN GATE HOTEL, AURANGABAD JALANA ROAD, SUNDERWADI, Aurangabad, Maharashtra, 431005\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"123 2 3, HONGEKAR ENGG WORKS, SHINOLI, CHANDGAD, Kolhapur, Maharashtra, 416507\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"MADHAVI COMPOUND, OPP HOLY MARY SCHOOL, RAHNAL, BHIWANDI, Thane, Maharashtra, 421302\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"THAKKAR COMPOUND, THAKKAR COMPOUND, ANJUR ROAD, BHIWANDI, Thane, Maharashtra, 421302\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"MANISH COMPOUND, MANISH COMPOUND, ANJUR PHATA, BHIWANDI, Thane, Maharashtra, 421302\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"136 A AND B, SHINDI, DEWARWADI ROAD, CHANGAD, Kolhapur, Maharashtra, 416509\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"H NO 107, SHINOLI, CHAWAT GALLI, CHANDGAD, Kolhapur, Maharashtra, 416509\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"MIDC, PATALGANGA MANUFACTURING PLANT, PATALGANGA, RAIGADH, Raigad, Maharashtra, 410220\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"D SOUZA COMPOUND, NEAR IBP PETROL PUMP, PUHA, BHIWANDI, Thane, Maharashtra, 421302\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"COURT HOUSE, DHOBI TALAO, FIRST MARINE STREET, NEAR METRO CINEMA, Mumbai City, Maharashtra, 400002\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"BATRA BROTHERS, SAKI NAKA, SAKI VIHAR ROAD, MUMBAI, Mumbai City, Maharashtra, 400076\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"PLOT NO 72, AEGIS CHEMICAL INDIA LTD, MAHUL VILLAGE, TROMBE, Mumbai City, Maharashtra, 400074\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"PARC CHEMBUR, OPP PETROL PUMP, SION TROMBAY MARG, CHEMBUR, Mumbai City, Maharashtra, 400071\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"MISTRI BLDG, GUN POWDER ROAD, DOCKYARD ROAD, MAZGAON, Mumbai City, Maharashtra, 400010\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"14, MAYUR WAREHOUSING, TANK BUNDER ROAD, OPP REAY ROAD STATION, Mumbai City, Maharashtra, 400033\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"PREM ESTATE, OPP UNION BANK, SANT SAVTA MARG, BYCULLA, Mumbai City, Maharashtra, 400027\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"WAREHOUSE OF NATIONAL TRANSPPORT COMPANY, BOMBAY MUTUAL BLDG, P M ROAD, FORT, Mumbai City, Maharashtra, 400001\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"CHAMUNDA COMPOUND, BEHHIND MAHARASHTRA WAREHOUSE, ANJUR ROAD, BHIWANDI, Thane, Maharashtra, 421302\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"DHIRUBHA AMBANI KNOWLEDGE CITY, DAKC, THANE BELAPUR ROAD, KOPAR KHAIRANE, Thane, Maharashtra, 400709\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"TD DIVISION, CENTRAL INDIA POLYSTER LTD, RAMTEK ROAD, MAUDA, Nagpur, Maharashtra, 441101\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"K MAHADEO AND COMPANY, NEXT TO BOMBAY WIRE ROPES, DATT MANDIR ROAD, BHANDUP WEST, Mumbai City, Maharashtra, 400078\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"PLOT NO 757 AND 758, JAI KUMAR GUPTA, KALAMBOLI, NAVI MUMBAI, Raigad, Maharashtra, 410218\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"PLOT NO 730 TO 733 AND 763 TO 764, BEST ROADWAYS LTD, KALAMBOLI WAREHOUSING COMPLEX, KALAMBOLI, Raigad, Maharashtra, 410218\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 95 2, BEHIND INDIRA COLLEGE HOSTEL, TATHWADE, MULASHI, Pune, Maharashtra, 411033\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"VANDAN DYEING PVT LTD, RATAN INDUSTRIAL COMPOUND, L B S MARG, SONAPUR, Mumbai City, Maharashtra, 400078\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"5 TTC IND. AREA, RELIANCE CORPORATE PARK, THANE BELAPUR ROAD, GHANSOLI, Thane, Maharashtra, 400709\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"5 TTC IND AREA, TERENE FIBRES PVT LTD, THANE BELAPUR ROAD, KOPAR KHAIRANE, Thane, Maharashtra, 400701\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"NH 3, RISHUBH WAREHOUSE OPP VPC INDUSTRIES, MUMBAI NASHIK ROAD, IGATPUR, Nashik, Maharashtra, 422403\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"C 43 1, BHAVIK FLOOR MILLS PVT  LTD MIDC AREA, OFF AMARAWATI ROAD, WADI, Nagpur, Maharashtra, 440028\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 184 2 AND 185 11, VILLCON, KALYAN BHIWANDI ROAD, KALYAN, Thane, Maharashtra, 421302\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"NH 48, NAVGHAR TERMINAL, DRONAGIRI ROAD, NAVI MUMBAI, Thane, Maharashtra, 400707\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"G BLOCK, FORTUNE 2000 BUILDING, BANDRA KURLA COMPLEX, BANDRA EAST, Mumbai City, Maharashtra, 400051\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"GAT NO 204 205A 205B 215B AND 215A, SHIVSAI FUEL PVT LTD, MUMBAI AGRA ROAD, IGATPURI, Nashik, Maharashtra, 422403\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"PLOT NO EL 104, VITAL ELECTRONICS AND MFG CO, THANE BELAPUR ROAD, MAHAPE, Thane, Maharashtra, 400710\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"HARKISANDAS HOSPITAL, NEAR CHARNI ROAD STATION, RAJA RAM MOHAN ROY ROAD, CHARNI ROAD, Mumbai City, Maharashtra, 400004\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"PLOT NO 7, SECTOR 18, BESIDE FULL STOP MALL, SANPADA, Thane, Maharashtra, 400706\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"GATE NO 20 AND 35 1, JAWAJEBUWACHI WADI, PUNE SOLAPUR HIGHWAY, YAWAT, Pune, Maharashtra, 412214\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Plot No - 7,, C,o Reliance retail outlet,, Sector - 18,Off Palm Beach Marg, Sanpada, Navi Mumbai, Thane, Maharashtra, 400706\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Survey no-86,1C,, Patel Complex, Near Bafna  OverBridge, Hingoli Road, Nanded, Nanded, Maharashtra, 431603\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Shop No1 ,2,, Transport Ngr Complex, Old Bhandara Rd,Wardhaman Nagar, Nagpur, Nagpur, Maharashtra, 440008\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Shop No.1-2,, Shee Sai Prasad Motors, Plot No. 11-12,, Nerul East, Thane, Maharashtra, 400706\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Shop no. 3, Omkar Agrovision Company ,Vardhman Plaza, Kolhapur Road, Taluka Sangli, Sangli, Maharashtra, 416416\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Sr.No.33,27, SHLETEJ Solutions , Services, Shiv Shambho Nagar, Panchwati, Katraj Kondawa Road, Katraj, Pune, Maharashtra, 411046\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Unit No. 15, Lal Sai Transport, Mahul Road, Sita Estate, Chembur, Mumbai Suburban, Maharashtra, 400074\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"1, VIMAL ASSOCIATES, Kumbar Ves, Jadbhavi Peth, Solapur, Maharashtra, 413002\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"GALA NO 19, AK Complex, Opp Kudhalkar Hospital, Shahpuri, Kolhapur, Maharashtra, 416001\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Shop No 1, Ridhi Arcade, Plot No. 857C , 857D, Kalamboli, Raigad, Maharashtra, 410218\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"1, BOKARPADA GODOWN RIL SITE OFFICE, BOMBAY POONA ROAD, PANVEL, Raigad, Maharashtra, 410206\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"H NO 106, CHAVAT GALLI, SHINOLI, CHANDGAD, Kolhapur, Maharashtra, 416507\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"B4, MIDC, MIDC AREA, PATALGANGA, Raigad, Maharashtra, 410207\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"PLOT NO 6, IMC LIMITED, JNPT TOWNSHIP, URAN, Raigad, Maharashtra, 400702\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"PLOT NO 3, RELIANCE TERMINAL, JNPT, URAN, Raigad, Maharashtra, 400702\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"GALA NO A1 TO C1, MAGICO EXPORTS AND CONSULTANT LTD, OLD MUMBAI PUNE ROAD, BOKARPADA, Raigad, Maharashtra, 410206\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"B 5, GUPTA WAREHOUSING COMPLEX, ANJUR ROAD, BHIWANDI, Thane, Maharashtra, 421302\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"VASHI TERMINAL D 99, TTC INDUSTRIAL AREA, MIDC, TURBHE, Thane, Maharashtra, 400705\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"CHAKRA PANI HOUSE NO 34, RELIANCE LIFE SCIENCE PVT LTD, VAIBHAV NAGAR, KARGAON, Parbhani, Maharashtra, 431401\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Aviation Fuelling Station, RELIANCE INDUSTRIES LTD, Aurangabad Airport, Aurangabad, Aurangabad, Maharashtra, 431201\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Aviation Fuelling Station, RELIANCE INDUSTRIES LTD, Dr Ambedkar International Airport, NAGPUR, Nagpur, Maharashtra, 440005\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Plot No 6, JNPT Terminal, Nhava Sheva, Uran, Raigad, Maharashtra, 400707\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Plot No 101, Navghar Terminal, Sector 1 NH 4B, Dronagiri, Raigad, Maharashtra, 400707\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"D-99, TTC Industrial area, MIDC, Turbhe, Thane, Maharashtra, 400705\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Survey no 58, Hissa No 2, RELIANCE INDUSTRIES LTD, Rohinjan, Panvel, Raigad, Maharashtra, 401208\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Panewadi Installation, Bharat Petroleum Corporation Ltd, Manmad Nandgaon Road, Nandgaon, Nashik, Maharashtra, 423104\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Godown No B5, Gupta Cranes , Storage, Village-Dapoda, BHIWANDI, Thane, Maharashtra, 421302\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"1, Texturising Division, Mouda Ramtek Road, NAGPUR, Nagpur, Maharashtra, 441104\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Survey No. 14 A, Mumbai Goa Highway, Bharane, Ratnagiri, Maharashtra, 415621\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"ON N H 4, PUNE BANGALORE ROAD, Village - ITKARE, Taluka -VALAVA, Sangli, Maharashtra, 416410\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"GATE NO 254, MAUJE NANDANI, SHIROLDIST, Kolhapur, Maharashtra, 416101\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Survey  NO. 182, HISSA NO. 7B, HATHKHAMBA, Ratnagiri, Maharashtra, 415639\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Survey  NO.112,1, MALAKPURTALUKA, KARAD, Satara, Maharashtra, 415110\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Survey  NO 335 , 336,1, KASABE VADGAON, N H 4, HATKANGALE, Kolhapur, Maharashtra, 416112\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"PLOT NO 7, SECTOR 18, OFF PALM BEACH MARGBESIDE FULL STOP MALL, Thane, Maharashtra, 400706\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"PLOT NO 16, MUMBAI GOA N H 17, KHALAPUR, Raigad, Maharashtra, 410220\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"PLOT NO 239,, MUMBAI GOA N H 17, PALASNEAR PETRON RESORT,  ROHA, Raigad, Maharashtra, 402106\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 235 , 241, N H 8, PELHAR, VASAI, Thane, Maharashtra, 401208\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"PLOT NO 3,, RELIANCE TERMINAL, OPP PORT BUILDING,, Raigad, Maharashtra, 400707\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"PLOT NO 3,, RELIANCE TERMINAL, OPP PORT BUILDING,, Raigad, Maharashtra, 400707\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"GHAT NO 50,2,211,, SHIRPUR, VILL UNTAWADTAL, Dhule, Maharashtra, 425405\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"CITY SURVEY NO 8,2B,, MAJOR STATEHIGHWAY NO 7,, INDIRA NAGAR, BAGLAN, Nashik, Maharashtra, 423301\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"PLOT NO 1,GAT NO155,3, OPP HOTEL CHINATOWN, DONDAICHA ROAD, KUKDELTAL SHAHADA, Nandurbar, Maharashtra, 425409\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 122,1A, GAT NUMBER 378, MOUZA MALEGOAN,, AKOLA, Washim, Maharashtra, 444505\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"GAT NO 174,2 , 175,2, NEAR HOTEL POONAM, PURMEPADA, Dhule, Maharashtra, 424001\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"NEAR ARTS,SCIENCE COLLEGE, SHIRDI ROAD, GANESH TEKADI, RAHURI, Ahmednagar, Maharashtra, 413705\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO.734,1,2,SURVEY NO.734,1,2, OASIS HOTEL, JUNNAR, Pune, Maharashtra, 410504\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"GAT NO 20,35,1,, JAUGI BAWANCHI WADI,, PUNE SOLAPUR HIGHWAY ,  DAUND,, Pune, Maharashtra, 412214\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"KHEDSHIVAPUR T SN H 4,, CHAINAGE NUMBER 813, KELAWD, Pune, Maharashtra, 412213\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"S.R.No 89 ,, NH 50,Nashik Pune Highway,, Chandanapuri, Ahmednagar, Maharashtra, 422613\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Survey  NO 528,3,, SAVLESHWAR, TQ MOHOL, Solapur, Maharashtra, 413213\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Survey  NO 58,, AKKALKOT SOLAPUR ROAD, VILL HASSAPUR, Solapur, Maharashtra, 413216\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Survey  NO 39, N H 4, OLD MUMBAI PUNE HIGHWAY, OPP HOTEL SHRE PUNJAB,  MAVAL, Pune, Maharashtra, 412106\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Suvey NO 6,2C , 6,2, NEAR YESHWANT POULTRY FARMYEOLA ROAD, KHIRDIGANESH, Ahmednagar, Maharashtra, 423601\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Survey NO 136,2,, NEAR MITRA PREM DHABHA, AT POST MIRAJGAON, Ahmednagar, Maharashtra, 414401\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Survey  NO 48,, SOUTH SOLAPURN H 13, BIJAPUR HIGHWAY, BASAVNAGARTAL, Solapur, Maharashtra, 413221\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO.27,, TALUKA-HINGANGHAT, AJANTI, Wardha, Maharashtra, 442301\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 37,1 ,9, KHED, KHED, Amravati, Maharashtra, 444805\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SY NO 9,, GATE NO 78VILL NIMBALA,, WANI YAVATMAL ROAD, TAL WANI,, Yavatmal, Maharashtra, 445305\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 623 , 624, VILL VYALA, VILL VYALA, Akola, Maharashtra, 444303\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 104,2, WARDHA ROAD, VILL BOTHLI,, Nagpur, Maharashtra, 440001\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 311,2 , 311,3, N H 6BHANDARA ROAD, WADODA, Nagpur, Maharashtra, 441002\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 53,1 , 53,2, AMRAVATI ROAD, P O VYAHADVILL PETH-GONDKHAIRITAL KALMESHWAR, Nagpur, Maharashtra, 441501\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 236,3 , 6,2, NAGPUR ROAD, NANDGAONPETH, Amravati, Maharashtra, 444901\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"OPP VILL KALMNA,, NAGPUR UMRED ROAD, NEAR 16 KM MILESTONE, Nagpur, Maharashtra, 441204\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"GAT NO.214,, NAGEWADIAURANGABAD ROAD, JALNA, Jalna, Maharashtra, 431203\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO. 323,2, OMERGA, OMERGA, Osmanabad, Maharashtra, 413606\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Survey no 139,1,, Old Nasik Highway,, Village Rehnal, Taluka Bhiwandi, Thane, Maharashtra, 421302\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"GAT NO 1638,, SY NO 379UDGAON,, SHIROLD, Kolhapur, Maharashtra, 416101\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"GUT NO 469,470, 472, GARGOTI,, Village Rehnal,  KAGAL, Kolhapur, Maharashtra, 416208\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SY NO 79,86,171, PARTVILL SONALE, N H 3, BHIWANDI BYPASs, Thane, Maharashtra, 421302\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO.184,2,185,11, KALYAN BHIWANDI ROAD, VILL KON,, Thane, Maharashtra, 421301\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Survey No. 58,2A,, Post Taloja,Tal-Panvel, Rohinjan Village,, Raigad, Maharashtra, 410208\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 2,3,2,4A,D,4C, PLOT NO 2,, BEHIND MILLAT SCHOOl, Pratap Nagar, Jalgaon, Maharashtra, 425002\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 22,2,, GUT NO 85, KARAGAONTAL, Parbhani, Maharashtra, 431301\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"PLOT NO 2,3, SURVEY NO 5893,2 , 589, DIGRAS ROAD, MAUZA PUSAD, Yavatmal, Maharashtra, 445204\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SR NO 165,5,165,6, GANGAPUR ROAD, AURANGABAD, Aurangabad, Maharashtra, 423701\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"GAT NO.5 , 6 ,, PUNE NAGAR HIGHWAY ,, TALUKA-SHIRUR, Pune, Maharashtra, 412208\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Survey No.227,P ,, Pune Nasik Highway - NH50, Nanekarwadi , ,, Pune, Maharashtra, 410501\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Survey No 11,1 and 2,, Roha,, Village Rothk, Raigad, Maharashtra, 402109\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Survey No.  92, HISSA NO 1,1 PART, GANDRE,  WADADIST, Thane, Maharashtra, 421303\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 43,1 AND 43,2, N H 3MILESTONE 300,00,, CHIKHALOHAL, MALEGAON, Nashik, Maharashtra, 422009\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO-2725,, NEAR MILESTONE -92,8, NASHIK-PUNE HIGHWAY NH50,NEAR HEMANTD, JUNNAR, Pune, Maharashtra, 412411\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO. 229P,, , NAGAR-MANMAD ROAD, NEAR SAIKRISHNA HOTEL, PIMPALS, Ahmednagar, Maharashtra, 423107\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO.367,2,, ON NH 6,BHANDRA, MUJBIASHOKNAGAR, Bhandara, Maharashtra, 441904\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Survey No 12,2,, Yavatmal Road Taluka Wani., Chaikhagoa, Yavatmal, Maharashtra, 445305\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SY NO 100,2,, VILL GHOTURLI WAIGAON,, TQ UMRED,, Nagpur, Maharashtra, 441203\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 616/2, PLOT NO 1, NEAR TARADUTTA HOSTEL, SASWAD PUNE ROAD, SASWAD, PURANDER, Pune, Maharashtra, 412301\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Works Contract\"\n                    },\n                    {\n                        \"address\": \"SHAH PETROLEUM, RELIANCE RETAIL OUTLET,SURVEY NO, 515/3, OPP. SATPURA GINNING, AND PRESSING  FACTORY AMRAVATI ROAD, Amravati, Maharashtra, 444906\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Retail Business\"\n                    },\n                    {\n                        \"address\": \"SIDHANT  PETROLIUM, RELIANCE RETAIL OUTLET, SURVEY NO.65-A/2, VILLAGE KALAMB, PARLI ROAD,DISTRICT,-OSMANANBAD, Osmanabad, Maharashtra, 413507\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Retail Business\"\n                    },\n                    {\n                        \"address\": \"Reliance Industries Limited SH-86, Petrochemical Township, Poynad Nagothane, Road, Raigad, Raigad, Maharashtra, 402125\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing\"\n                    },\n                    {\n                        \"address\": \"Only Vimal Showroom, Court House, Ground Floor, Dhobi Talao, LT Marg, Mumbai, Mumbai City, Maharashtra, 400002\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Retail Business\"\n                    },\n                    {\n                        \"address\": \"Only Vimal Showroom, Annex B, Reliance Corporate Park, 5-TTC Industrial Area, Thane-Belapur Road, Ghansoli, Mumbai Suburban, Maharashtra, 400701\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Retail Business\"\n                    },\n                    {\n                        \"address\": \"Plot No. B-1 to B-5 and A-3, Reliance Industries ltd., MIDC Industrial Area, PatalgangaTaluka Khalapur, Raigad, Maharashtra, 410220\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing\"\n                    },\n                    {\n                        \"address\": \"Plot No. D-1,Reliance Industries Ltd, MIDC Industrial Area, 0, Taluka- Daund,, Pune, Maharashtra, 413802\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing\"\n                    },\n                    {\n                        \"address\": \"Reliance Industries Limited, Nagpur Manufacturing Division, Village Dahali, Mouda Ramtek Road, Taluka Mouda, Nagpur, Maharashtra, 441104\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing\"\n                    },\n                    {\n                        \"address\": \"Reliance Industries Limited,, Nagpur Manufacturing Division, Village Rahadi, Mouda Ramtek Road, Taluka Mouda,, Nagpur, Maharashtra, 441104\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Warehouse / Depot\"\n                    },\n                    {\n                        \"address\": \"Reliance Industries Ltd Reliance Terminal, Plot No. 3, Opp.Port Users Building JNPT, 0, Sheva,Navi Mumbai, Mumbai Suburban, Maharashtra, 400707\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Warehouse / Depot\"\n                    },\n                    {\n                        \"address\": \"Magico Exports and Consultants ltd, Village- Bhokarpada, Old Mumbai-Pune Highway, Taluka - Panvel, Raigad, Maharashtra, 410207\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Warehouse / Depot\"\n                    },\n                    {\n                        \"address\": \"Reliance Industries Ltd.Lodhivali Township, Village/Post- Lodhivali, 0, Taluka-Khalapur, Raigad, Maharashtra, 410206\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Supplier of Services, Others\"\n                    },\n                    {\n                        \"address\": \"Reliance Industries Ltd.Reliance Housing ComplexPlot R-5, MIDC Residentil zone, 0, Village/Post- Mohopada, Taluka-Khalapur, Raigad, Maharashtra, 410222\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Others\"\n                    },\n                    {\n                        \"address\": \"Reliance Industries Limited, Estate Office, Petrochemical Township, 0, Nagothane, Raigad, Maharashtra, 402125\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Supplier of Services\"\n                    },\n                    {\n                        \"address\": \"Reliance Industries Limited, Family Welfare Centre, Petrochemical Township, 0, Nagothane, Raigad, Maharashtra, 402125\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Supplier of Services\"\n                    },\n                    {\n                        \"address\": \"Plot no. C 64 G Block, Reliance Industries Limited, 0, Bandra Kurla Complex Bandra E, Mumbai City, Maharashtra, 400098\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Others\"\n                    },\n                    {\n                        \"address\": \"Plot No.143/B, Near Cipla Pharma M.I.D.C Patalganga Mauje Kaire, 0, Khalapur, Raigad, Maharashtra, 410220\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Others\"\n                    },\n                    {\n                        \"address\": \"Reliance Industries Limited, Plot No. D-1, MIDC Industrial Area, Kurkumbh, Taluka - Daund, Pune, Maharashtra, 413802\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing\"\n                    },\n                    {\n                        \"address\": \"Whistling Woods International Ltd, , Filmcity Complex, Goregaon East, Mumbai Suburban, Maharashtra, 400065\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Office / Sale Office\"\n                    },\n                    {\n                        \"address\": \"Plot no RG 1A, G Block, Reliance Industries Limited, Bandra Kurla Complex, Bandra E, Mumbai City, Maharashtra, 400051\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Others\"\n                    },\n                    {\n                        \"address\": \"M/s Aradhana Emporium, , Dhuru Terrance, Kelkar Road, Dadar West, Mumbai Suburban, Maharashtra, 400028\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Retail Business\"\n                    },\n                    {\n                        \"address\": \"Plot No 185/ Part NH-69, , Nagpur - Bhopal Road, Dahegaon, Taluka - Saoner, Nagpur, Maharashtra, 440018\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Others\"\n                    },\n                    {\n                        \"address\": \"Survey No. 5, Near Cipla Pharma, M.I.D.C. Patalganga, Mauje Kaire, Taluka - Khalapur, Raigad, Maharashtra, 410220\",\n                        \"email\": \"\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Warehouse / Depot\"\n                    },\n                    {\n                        \"address\": \"Sagar Complex, Buliding No. A1,A2,O1, E1, Mumbai - Nashik Highway, Opp H.P Petrol Pump, Village Ovali, Bhiwandi, Thane, Maharashtra, 421302\",\n                        \"email\": \"\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Warehouse / Depot\"\n                    },\n                    {\n                        \"address\": \"Level 19 and 20, A/B/C Wing, ONE BKC, BKC, Bandra - E, Mumbai Suburban, Maharashtra, 400051\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Office / Sale Office\"\n                    },\n                    {\n                        \"address\": \"Survey No. 28F/16A 2, 28F/16A 3, 47/1, 47/2A 1, 47/2A 2, Gala No. 1 and 4, Village - Washivali, Taluka - Khalapur, Raigad, Maharashtra, 410220\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Warehouse / Depot, Export\"\n                    },\n                    {\n                        \"address\": \"Gat No. 123,, Godown No 1,2,3, Chimli Patha, Moi Road, Village Kuruli,Khed, Pune, Pune, Maharashtra, 410501\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Warehouse / Depot\"\n                    },\n                    {\n                        \"address\": \"Gate No. 101/1 101/2  101/3, , Vimal Goenka Warehousing Premises, 18 KM Mile Stone, Musai Bujru, Jalgaon, Maharashtra, 425001\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Warehouse / Depot\"\n                    },\n                    {\n                        \"address\": \"Survey No  41 H No 3, Paiki, Mama Compound, Mumbai Nasik By pass, Village Saravali Bhiwandi, Thane, Maharashtra, 421311\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Warehouse / Depot\"\n                    },\n                    {\n                        \"address\": \"Gut No.48 Opp.Garware Company, gate No. 2,MittheWasthi, At Naigaon,Post Waluj,Ta., Gangapur, Aurangabad, Maharashtra, 431133\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Warehouse / Depot\"\n                    },\n                    {\n                        \"address\": \"RSM 01, Gr FLR, Sr. No. 8 13, DTC Building, Near Mhatre Bridge, PUNE, Pune, Maharashtra, 411004\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Retail Business\"\n                    },\n                    {\n                        \"address\": \"SY.NO.77/2,77/3, RAIGAD OXYGEN PVT. LTD, VILL HAL BUDRUK,TALUKA KHALAPUR, Khopoli, Raigad, Maharashtra, 410203\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SY.NO.329 GAT NO.1068, SAMARTH AGENCIES, AURANGABAD ROAD, NIPHAD, Nashik, Maharashtra, 422303\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"GAT NO.158/1, KAILAS PETROLEUM, TALUK SANGAMNER, AHMED NAGAR, Ahmednagar, Maharashtra, 413738\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"GAT NO 470, SWATI PETROLEUM, TAL NEWASA, AHMED NAGAR, Ahmednagar, Maharashtra, 414501\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SY.NO.11/8, SAHYADRI PETROLEUM, AKOLE-MAISMAL ROAD SAMSERPURTAL AKOLE, AHMED NAGAR, Ahmednagar, Maharashtra, 414001\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO. 2668, M. H. PETROLEUM, DAUND -PATAS ROAD, PUNE, Pune, Maharashtra, 413801\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SY NO.207/6C/7 PLOT NO  6/7A, SHIVANJALI PETROLEUM PRODUCTS, DINDORI RD, NASHIK, Nashik, Maharashtra, 422004\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"C/O RAHUL TRACTORS, ANISH HIGHWAY SERVICES, MANMAD RD, AHMEDNAGAR, Ahmednagar, Maharashtra, 414106\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"GAT NO1819, SAI PETROLEUM AND SERVICES, MANGALWEDHA BIJAPUR RD, SOLAPUR, Solapur, Maharashtra, 413305\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO.188 PADEGAON, VIKRAM PETROLEUM, TAL KHANDALA, SATARA, Satara, Maharashtra, 415521\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"GAT NO 27/12A, DIAMOND PETROLEUM, TAL AMBEGAON, PUNE, Pune, Maharashtra, 412406\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"GAT NO.2436, V R AUTO SERVICES, OJHAR MIG, NASIK, Nashik, Maharashtra, 422206\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO-48/2/KHA, BALAJI PETROLEUM, SURAT ROAD, NANDURBAR, Nandurbar, Maharashtra, 425426\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SYNO105/1A1B-2/2A-2, KESWANI PETROLEUM AGENCY, DHULE RD, DHULE, Dhule, Maharashtra, 425408\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"PLOT NO.1, TELANG AND COMPANY, SANKESHWAR ROAD, KOLHAPUR, Kolhapur, Maharashtra, 416502\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"PLOT NO. B -31, KONARK ENTERPRISES PVT. LTD, MIDC, THANE, Thane, Maharashtra, 421501\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 33/1/A/1  2, SAI FUEL POINT, OFF GANGAPUR ROAD, NASHIK, Nashik, Maharashtra, 422010\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SY.NO.243/1, MANMANDIR PETROLEUM, VITA-KARAD ROAD, SANGLI, Sangli, Maharashtra, 415311\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SR.NO.987/10/11, SONRAJ AGENCIES, URUN-ISLAMPUR, SANGLI, Sangli, Maharashtra, 415409\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SY.NO.83/3, , NAIK TRADERS, VILL CHENDARE, RAIGAD, Raigad, Maharashtra, 402201\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"PLOT NO. 15/4, MAHAVIR PETROLEUM, KARJAT-MURBAD ROAD, RAIGAD, Raigad, Maharashtra, 410201\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"GUT NO.898, KRUSHNAI PETROLEUM, PUNE-SOLAPUR HIGHWAY, PUNE, Pune, Maharashtra, 412201\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"GAT NO -423/A, TIRUPATI PETROLEUM, KALAMBI VILLAGE, SANGLI, Sangli, Maharashtra, 416410\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 75/1  76/1, BALAJI FUEL CENTER, VILLAGE VADAKHAL, RAIGAD, Raigad, Maharashtra, 402107\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"PLOT 341/2, SHIVAM PETROLEUM, ASHTA-ISLAMPUR RD, SANGLI, Sangli, Maharashtra, 416301\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"VILL NANADGAON, B.K. AUTOMOBILES, PALASPA PHATA RD, RAIGAD, Raigad, Maharashtra, 410206\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO.1065/1/2, SHRI SHIVAJI PETROLEUM, SHIRUR, PUNE, Pune, Maharashtra, 412210\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"GHAT NO.2164B, CHRAPHALE FUELS, PETH-KARAD ROAD, SANGLI, Sangli, Maharashtra, 415407\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"GAT NO-277, SAIDEEP PETROLEUM, NAGAR-MANMAD RD, AHMEDNAGAR, Ahmednagar, Maharashtra, 414306\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SR.NO.149/68, PARULEKAR PETROLEUM, VILLAGE-SANGIRDE, SINDHUDURG, Sindhudurg, Maharashtra, 416520\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"DAHIWADI WADUJ RD, NAGESHWAR PETROLEUM, DAHIWADI WADUJ RD, SATARA, Satara, Maharashtra, 415508\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"447/1, , THAKKAR PETROLEUM, NEAR KALYANI WEIGH BRIDGE, NASHIK, Nashik, Maharashtra, 422209\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SY.NO.113, SRI SAI KAMAL SERVICES, BYPASS RD, SOLAPUR, Solapur, Maharashtra, 413203\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"POST TEMBURNI, GANESH AGENCY, VENEGAON TALUKA MADHA, SOLAPUR, Solapur, Maharashtra, 413211\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"GAT. NO.22/4, SHREE BRAMHAJYOT PETROFILLINGSTATIO, GAGANBAWADA ROAD, KOLHAPUR, Kolhapur, Maharashtra, 416010\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"AT KHANDPALE 435/436, DOSTI AUTOMOBILE, POST MANGAON, LONERA, RAIGAD, Raigad, Maharashtra, 402103\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"GHAT NO.891/A, SUYASH PETROLEUM, MIRAJ SANGLI ROAD, SANGLI, Sangli, Maharashtra, 416410\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"GHAT NO.391/3/A, ABHIJIT KHANDAGALE, KHANDALA LONAND RD, SATARA, Satara, Maharashtra, 412802\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"GAT NO 11, RAJ PETROLEUM, AT POST HANDI NIMGAON, AHMEDNAGAR, Ahmednagar, Maharashtra, 414603\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SY.NO.56/2B, , SEEMA PETROLEUM, VILL CHAMBHARKHIND, RAIGAD, Raigad, Maharashtra, 402301\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"GAT NO.- 697, KARACHIWALA FUEL STATION, A/P CHAS, AHMEDNAGAR, Ahmednagar, Maharashtra, 414005\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"71/1, SPEEDAGE PETROLEUM, AURANGABAD ROAD, AHMEDNAGAR, Ahmednagar, Maharashtra, 414003\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"GATNO.115/1/1, OM SAI PETROLEUM, NEXT TO PRABHAT DAIRY, AHMEDNAGAR, Ahmednagar, Maharashtra, 413721\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 123/2K3, GANDHI PETROLEUM, NEW SOLAPUR ROAD MECHANICAL CHOWK, SOLAPUR, Solapur, Maharashtra, 413304\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"HISSA NO. 5 SURVEY NO. 132, THREE S PETRO, URAN, RAIGAD, Raigad, Maharashtra, 400702\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"OLD S NO 365, AGRAWAL and CHOUDHARI CORPORATION, MIRA ROAD EAST NR, BHAYANDER, Thane, Maharashtra, 401101\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"PLOT NO. 3, DMK ENTERPRISES, VITHALWADI STATION ROAD, ULHASNAGAR, Thane, Maharashtra, 421003\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"A/P NANDANI, PADMASHREE AUTOMOBILES, TALUKA SHIROL, KOLHAPUR, Kolhapur, Maharashtra, 416104\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"PLOT NO.5/6/15/16, TRYAMBAK PETROLEUM, MAUZA SHIRALA, AMRAVATI, Amravati, Maharashtra, 444801\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO. 54/1, POBARU MARKETING and AGENCIES PL, YAVATMAL- NAGPUR ROAD, YAVATMAL, Yavatmal, Maharashtra, 445001\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"PLOT NO. 52, PURVA SERVICES, RUBY GINNING, IN FRONT OF TELEPHONE EXG, AKOT, Akola, Maharashtra, 444401\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"PLOT NO 1, BHAGWATI SERVICES, MOUZA SHERPURKARANJA, WASHIM, Washim, Maharashtra, 444105\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"PLOT NO65, PARALIKAR PETROLEUM, AMOUZA-MANGRULPEER TH.MANGARULPEER, WASHIM, Washim, Maharashtra, 444403\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"RELIANCE OUTLET, HAJI NOOR MOHAMMED PETROLEUM, MOUZA WARORA, CHANDRAPUR, Chandrapur, Maharashtra, 442402\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"HOLLAR TO SINGHNAPUR RD., VARMA AUTOMOBILES, HOLLAR TO SINGHNAPUR RD., AMRAVATI, Amravati, Maharashtra, 444802\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"43472, ATHARVA PETROLEUM, CHENUSHTA ROAD, AMRAWATI, Amravati, Maharashtra, 444909\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SY NO.1/2, PATNI PETROLEUM, DEOLI-PULGAON ROAD, WARDHA, Wardha, Maharashtra, 442302\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO.106/107, KHATRI PETROLEUM, MOUZA WADGAON, CHANDRAPUR, Chandrapur, Maharashtra, 442402\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 28/1, TIRUPATI PETROLEUM, AT and POST-AMBAD, JALNA, Jalna, Maharashtra, 431204\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 15, VIDYA PETROLEUM, AURANGABAD-PUNE ROAD, AURANGABAD, Aurangabad, Maharashtra, 431136\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"AURANGABAD P1 RO MHC067, SHRIRAM PETROLEUM, PUSHPANAGARI CBS ROAD, AURANGABAD, Aurangabad, Maharashtra, 431001\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"PLOT NO 1A., MATA BHAWANI ENTERPRISES, N7 SECTOR P CIDCO, AURANGABAD, Aurangabad, Maharashtra, 431003\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"S.NO.- 31, D. RAMCHANDRA and SONS, BEED AURANGABAD RD. NH 211, BEED, Beed, Maharashtra, 431122\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"PLOT NO 3/4, VEDANT PETROLEUM, BULDHANA- MALKAPUR RD, BULDHANA, Buldhana, Maharashtra, 443001\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO.179, MAHAJAN SERVICES, CHIKHLI- JALNA ROAD, BULDHANA, Buldhana, Maharashtra, 443201\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SY.NO -876, OM SHANTI PETROLEUM, NEAR KARGIL CHOWK, JALGAON, Jalgaon, Maharashtra, 425107\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"180/2, AMAN AUTOMOBILES, KANNAD-AURANGABAD ROAD, AURANGABAD, Aurangabad, Maharashtra, 431103\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SY.NO.26, GOSONS FUELS, KHAMGAON - NANDURA ROAD, BULDHANA, Buldhana, Maharashtra, 444312\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"S.NO.- 271 / A, BAJAJ PETROLEUM, TELGAON ROAD, BEED, Beed, Maharashtra, 431131\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"RELIANCE RETAIL OUTLET, MOHINDRA ENTERPRISES, TAL SILLOD, JALGAON, Jalgaon, Maharashtra, 431112\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO.50/1/2/2B, RUPESH RELIANCE SERVICES, MUMBAI-NAGPUR HIGHWAY, JALGAON, Jalgaon, Maharashtra, 424201\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"GUT NO 143/4/3, MAHURKAR PETROLEUM AGENCY, VILLAGE SAVDA, JALGAON, Jalgaon, Maharashtra, 425502\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 82/2, GUNALE SERVICES, OPP.MGM COLLEGE, LATUR, Latur, Maharashtra, 413515\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"RELIANCE PETROL PUMP, , RAJ AGENCIES, NEAR NAGAR PARISHAD GARDEN, BEED, Beed, Maharashtra, 431517\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"GUT NO.109/A1, RAMJI PETROLEUM, BASMATNAGAR-NANDED ROAD, HINGOLI, Hingoli, Maharashtra, 431512\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"GUT NO. 212, S S FUEL SERVICES, VILLAGE DHABAD, NANDED, Nanded, Maharashtra, 431704\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SH NO. 156, VIJAY PETROLEUM, KAIJ-BEED RD, BEED, Beed, Maharashtra, 431123\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO.12, S.M.BIDWE AND SONS, AUSA ROAD LATUR-1, LATUR, Latur, Maharashtra, 413512\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"VIDYA NAGAR, OMKAR HIGHWAY SERVICES, PARLI VAIJNATH, BEED, Beed, Maharashtra, 431520\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"NANDED BIDAR ROAD, SHREE PETROLEUM, NANDED BIDAR ROAD, LATUR, Latur, Maharashtra, 413517\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEYNO.185/2, RELIABLE AUTO FUELS, SAONER, NAGPUR, Nagpur, Maharashtra, 440018\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"MOUZA FULCHUR, SHRI SAI ASHISH PUBLIC WORKS, GONDIA AMGAON ROAD, GONDIA, Gondia, Maharashtra, 441601\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO.585, P.GHODE PETROLEUM, MAUZANO.32, NAGPUR, Nagpur, Maharashtra, 441302\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SHAIKH FIDA ALI, SHAIKH ABDUL HUSAIN, MOTHER TERRESA MARG, NAGPUR, Nagpur, Maharashtra, 440013\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO. 58/3, HIWARKAR PETRO MHC062, KALAMNA - KAMPTEE ROAD, NAGPUR, Nagpur, Maharashtra, 440001\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"PLOT NO. 3-4, SHARADA FILLING STATION, MANSAR-RAMTEK RAOD, NAGPUR, Nagpur, Maharashtra, 441106\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO.285/2, TUMSARE PETROLEUM, TAHSIL TUMSAR, BHANDARA, Bhandara, Maharashtra, 441912\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO.65 and 68, LODHI PETROLEUM, NAGPUR-SAONER ROAD, NAGPUR, Nagpur, Maharashtra, 441107\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO. 877, SHRI SAI SERVICE STATION, MUL ROAD, GADCHIROLI, Gadchiroli, Maharashtra, 442605\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"RELIANCE RETAIL OUTLET, SHAH PETROLEUM, AND PRESSING  FACTORY AMRAVATI ROAD, AMARAVATI, Amravati, Maharashtra, 444906\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"RELIANCE RETAIL OUTLET, SIDHANT  PETROLIUM, PARLI ROAD, OSMANABAD, Osmanabad, Maharashtra, 413507\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 11VILL BANSONDTAL BALSOD431531, PLOT NO 1-4, SURVEY NO 11 VILL BANSONDTAL, PARBHANI, Parbhani, Maharashtra, 431531\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"470, GUT NO 469, TAL KAGALDIST, KOLHAPUR, Kolhapur, Maharashtra, 416208\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"Chitrakoot, Ground Floor, Reliance Industries Limited, SRM Mills Compound, Ganpatrao Kadam Marg, Woroli, Mumbai City, Maharashtra, 400013\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Office / Sale Office\"\n                    },\n                    {\n                        \"address\": \"Survey No. 474/4/1, 474/5, 474/6,, Khatav,, Sh-69,, Village Waduj, Satara, Maharashtra, 415506\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"F.PL. NO. 125/9C/9D,, Near Hotel Yash Palace,, Ahmednagar, Chahurana Khurd,, Ahmednagar, Maharashtra, 414001\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"Gat No. 169, Baramati, Village Jalochi, Baramati, Pune, Maharashtra, 413103\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"GAT NO. 350/1,, ANKAI, ANKAI, YEOLA,, Nashik, Maharashtra, 423104\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"Gat No. 38/2A/2/4, SHEKAIWADI,, SHEKAIWADI,, Akole, Ahmednagar, Maharashtra, 422601\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"Building no C Gala no. 6 - 7, Ground floor, Mahavir Complex, Anjur Road, Village Mankoli, Thane, Maharashtra, 421302\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Warehouse / Depot\"\n                    },\n                    {\n                        \"address\": \"42-1D, Ground Floor, Dagade Farm  House, Dagade Vasti, Pisoli  ROAD, Pune, Maharashtra, 411060\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Warehouse / Depot\"\n                    },\n                    {\n                        \"address\": \"990/A/1/2, 990/2, 990/3,990/B/1,  992, 1353/5,6,7, Ground Floor, Chamunda Compound, Anjur Road, Village VAL. Bhiwandi, Thane, Maharashtra, 421302\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Warehouse / Depot\"\n                    },\n                    {\n                        \"address\": \"36/1, -, -, -, PISOLI, Pune, Maharashtra, 411028\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9967657376,\n                        \"nature_of_business\": \"Warehouse / Depot\"\n                    },\n                    {\n                        \"address\": \"Survey Nos. 61/5-71/1 to 71/8, 73/1, -, -, -, Village Vahuli, Thane, Maharashtra, 421302\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9967657376,\n                        \"nature_of_business\": \"Warehouse / Depot\"\n                    },\n                    {\n                        \"address\": \"C/O M/s Ganesh Benzoplast Ltd,, -, PLOT NO-7, BULK ROAD, JNPT NAVA SHEVA, Raigad, Maharashtra, 400707\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9967657376,\n                        \"nature_of_business\": \"Warehouse / Depot\"\n                    },\n                    {\n                        \"address\": \"Sagar Complex, F2, Gala No. 13, 14/A , 14/B, 14/C, 14/D Survey No. 11/2, Sagar Complex, Mumbai Nasik High Way Road, Village- Owali,PO Anjur Tal Bhiwandi,, Thane, Maharashtra, 421302\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9967657376,\n                        \"nature_of_business\": \"Warehouse / Depot\"\n                    },\n                    {\n                        \"address\": \"143/58, Sharma Warehouse, RELIANCE INDUSTRIES LIMITED -Hi Tech Engineering, -, At-Khaire, Patalganga MIDC , Post-Rasayani,Tal-Khalapur, Raigad, Maharashtra, 410207\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9967657376,\n                        \"nature_of_business\": \"Warehouse / Depot\"\n                    },\n                    {\n                        \"address\": \"B6A2, Indospace Industrial Park,Chakan-I,, Gat No 428, Hissa No.11-12-13-Part, Mhalunge,Taluka- Khed, Pune, Maharashtra, 410501\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9967657376,\n                        \"nature_of_business\": \"Warehouse / Depot\"\n                    }\n                ]\n            },\n            \"promoters\": [\n                \"Nikhil Rasiklal Meswani \",\n                \"Hital Rasiklal Meswani \",\n                \"Mukesh Dhirubhai Ambani \",\n                \"Pawan Kumar Kapil \",\n                \"Madhusudana Sivaprasad Panda \"\n            ],\n            \"annual_turnover\": \"Slab: Rs. 500 Cr. and above\",\n            \"annual_turnover_fy\": \"2019-2020\",\n            \"gstin\": \"27AAACR5055K1Z7\",\n            \"pan_number\": \"AAACR5055K\",\n            \"business_name\": \"RELIANCE INDUSTRIES LIMITED\",\n            \"legal_name\": \"RELIANCE INDUSTRIES LIMITED\",\n            \"center_jurisdiction\": \"Commisionerate - BELAPUR,Division - DIVISION IV,Range - RANGE-IV (Jurisdictional Office)\",\n            \"state_jurisdiction\": \"State - Maharashtra,Zone - Thane,Division - RAIGAD,Charge - URAN_701\",\n            \"date_of_registration\": \"2017-07-01\",\n            \"constitution_of_business\": \"Public Limited Company\",\n            \"taxpayer_type\": \"Regular\",\n            \"gstin_status\": \"Active\",\n            \"date_of_cancellation\": \"1800-01-01\",\n            \"field_visit_conducted\": \"No\",\n            \"filing_status\": [],\n            \"address\": null,\n            \"hsn_info\": {\n                \"goods\": [\n                    {\n                        \"description\": \"OTHER WOVEN FABRICS OF SYNTHETIC STAPLE FIBRES - OF POLYESTER STAPLE FIBRES : MIXED MAINLY OR SOLELY WITH VISCOSE RAYON STAPLE FIBRES : OTHER\",\n                        \"hsn\": \"55151190\"\n                    },\n                    {\n                        \"description\": \"OTHER ARTICLES OF PLASTICS AND ARTICLES OF OTHER MATERIALS OF HEADINGS 3901 TO 3914- OTHER : POLYPROPYLENE ARTICLES, NOT ELSEWHERE SPECIFIED OR INCLUDED\",\n                        \"hsn\": \"39269080\"\n                    },\n                    {\n                        \"description\": \"PETROLEUM GASES AND OTHER GASEOUS HYDROCARBONS - LIQUIFIED: ETHYLENE, PROPYLENE, BUTYLENE AND BUTADIENE\",\n                        \"hsn\": \"27111400\"\n                    },\n                    {\n                        \"description\": \"OTHER SYNTHETIC FILAMENT YARN (OTHER THAN SEWING THREAD), NOT PUT UP FOR RETAIL SALE, INCLUDING SYNTHETIC MONOFILAMENT OF LESS THAN 67 DECITEX OTHER YARN, SINGLE, UNTWISTED OR WITH A TWIST NOT EXCEEDING 50 TURNS PER METRE : OF POLYESTERS, PARTIALLY ORIENTED\",\n                        \"hsn\": \"54024600\"\n                    },\n                    {\n                        \"description\": \"ORGANIC SURFACE-ACTIVE AGENTS (OTHER THAN SOAP), SURFACE-ACTIVE PREPARATIONS, WASHING PREPARATIONS (INCLUDING AUXILIARY WASHING PREPARATIONS) AND CLEANING PREPARATIONS, WHETHER OR NOT CONTAINING SOAP, OTHER THAN THOSE OF HEADING 3401 OTHER: OTHER: WASHING PREPARATIONS (INCLUDING AUXILIARY WASHING PREPARATIONS) AND CLEANING PREPARATIONS, HAVING A BASIS OF SOAP OR OTHER ORGANIC SURFACE ACTIVE AGENTS\",\n                        \"hsn\": \"34029091\"\n                    }\n                ],\n                \"services\": []\n            }\n        }\n    },\n    \"status_code\": 200,\n    \"success\": true,\n    \"message\": \"Success\",\n    \"message_code\": \"success\"\n}"}],"_postman_id":"6a8e2d9c-e855-4c45-9485-a3ffe39e2138"},{"name":"Generate OTP","id":"463c872b-717e-49ee-b447-9f1ee22a3e25","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"GENERATED_CLIENT_ID\",\r\n    \"type\": \"mobile\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://kyc-api.aadhaarkyc.io/api/v1/corporate-otp/gstin/generate-otp","description":"<p>Max Generate OTP Attempts - 4</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","corporate-otp","gstin","generate-otp"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"10d041f0-813f-4710-b180-38bba909de4c","name":"Generate OTP","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"GENERATED_CLIENT_ID\",\r\n    \"type\": \"mobile\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://kyc-api.aadhaarkyc.io/api/v1/corporate-otp/gstin/generate-otp"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 04 May 2021 06:23:52 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"115"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"otp_sent\": true\n    },\n    \"status_code\": 200,\n    \"message_code\": \"success\",\n    \"message\": \"Success\",\n    \"success\": true\n}"}],"_postman_id":"463c872b-717e-49ee-b447-9f1ee22a3e25"},{"name":"Submit OTP","id":"8b67c2f4-a3a8-41c8-8203-d94b43affa4c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"GENERATED_CLIENT_ID\",\r\n    \"otp\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://kyc-api.aadhaarkyc.io/api/v1/corporate-otp/gstin/submit-otp","description":"<p>Max Submit OTP Attempts - 10</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","corporate-otp","gstin","submit-otp"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"d0f94a06-5613-4036-9415-0045c116f36b","name":"Submit OTP","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"GENERATED_CLIENT_ID\",\r\n    \"otp\": \"1234\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://kyc-api.aadhaarkyc.io/api/v1/corporate-otp/gstin/submit-otp"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 04 May 2021 06:24:12 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1568"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"verified\": true,\n        \"details\": {\n            \"contact_details\": {\n                \"principal\": {\n                    \"address\": \"5, 5, TTC Industrial Area, Reliance Corporate Park, Thane Belapur Road, Ghansoli, Navi Mumbai, Thane, Maharashtra, 400701\",\n                    \"email\": \"RIL.MHGST@ril.com\",\n                    \"mobile\": 9867147765,\n                    \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                },\n                \"additional\": [\n                    {\n                        \"address\": \"IV, MAKER CHAMBERS, NARIMAN POINT, MUMBAI, Mumbai City, Maharashtra, 400021\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"CHEMICAL TERMINAL BOMBAY LTD, PIRPAU INSTALLATION, NEAR BPT PUMP HOUSE, TROMBE, Mumbai City, Maharashtra, 400074\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"P B NO 102, TERRENCE FIBRES INDIA LTD, THANE BELAPUR ROAD, THANE H P O, Thane, Maharashtra, 400601\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 235 241 NH 8, PELHAR, VASAI, VASAI, Thane, Maharashtra, 401208\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 7 7 NH 8, BANDHAN, OFF SOMAIYA HOSPITAL, DHUNDALWADI, Thane, Maharashtra, 401606\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"PLOT NO S 5, COTTON CORPORATION OF INDIA LTD, WAREHOUSING COMPLEX, KALAMBOLI, Raigad, Maharashtra, 410201\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"GATR NO 161 1 2, PRIYANKA WAREHOUSING, PUNE NASHIK ROAD, KURULI, Pune, Maharashtra, 410501\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"9, GODREJ MILLENIUM BUILDING, NEAR TAJ DIAMOND, KOREGAON PARK, Pune, Maharashtra, 411001\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"NEW INDIAN CEMENT PIPE COMPANY, NEXT TO INDIAN SEEDS INDUSTRIES, PUNE BANGLORE ROAD, KHARAD, Pune, Maharashtra, 415110\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"9 34 A1 INDUSTRIAL ESTATE, VENKATESH YARN PVT LTD SAHWAS, ICHALKRANJI, KOLHAPUR, Kolhapur, Maharashtra, 416115\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"GAT NO 123, MANIYAR ESTATE, PALDHI, JALGAON, Jalgaon, Maharashtra, 425103\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SAPTAK PLAZA, ABOVE DASS JEWELLERS, NEAR SHANKAR NAGAR SQUARE, NAGPUR, Nagpur, Maharashtra, 440010\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"GAT NO 305 2 2 2 2P, DEALER LOC PETROL PUMP BEHIND VINAYA HIGHWAY CENTRE, PUNE SOLAPUR HIGHWAY, KONDI, Solapur, Maharashtra, 413255\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"GATE NO 43, OPP MAIN GATE HOTEL, AURANGABAD JALANA ROAD, SUNDERWADI, Aurangabad, Maharashtra, 431005\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"123 2 3, HONGEKAR ENGG WORKS, SHINOLI, CHANDGAD, Kolhapur, Maharashtra, 416507\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"MADHAVI COMPOUND, OPP HOLY MARY SCHOOL, RAHNAL, BHIWANDI, Thane, Maharashtra, 421302\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"THAKKAR COMPOUND, THAKKAR COMPOUND, ANJUR ROAD, BHIWANDI, Thane, Maharashtra, 421302\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"MANISH COMPOUND, MANISH COMPOUND, ANJUR PHATA, BHIWANDI, Thane, Maharashtra, 421302\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"136 A AND B, SHINDI, DEWARWADI ROAD, CHANGAD, Kolhapur, Maharashtra, 416509\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"H NO 107, SHINOLI, CHAWAT GALLI, CHANDGAD, Kolhapur, Maharashtra, 416509\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"MIDC, PATALGANGA MANUFACTURING PLANT, PATALGANGA, RAIGADH, Raigad, Maharashtra, 410220\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"D SOUZA COMPOUND, NEAR IBP PETROL PUMP, PUHA, BHIWANDI, Thane, Maharashtra, 421302\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"COURT HOUSE, DHOBI TALAO, FIRST MARINE STREET, NEAR METRO CINEMA, Mumbai City, Maharashtra, 400002\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"BATRA BROTHERS, SAKI NAKA, SAKI VIHAR ROAD, MUMBAI, Mumbai City, Maharashtra, 400076\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"PLOT NO 72, AEGIS CHEMICAL INDIA LTD, MAHUL VILLAGE, TROMBE, Mumbai City, Maharashtra, 400074\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"PARC CHEMBUR, OPP PETROL PUMP, SION TROMBAY MARG, CHEMBUR, Mumbai City, Maharashtra, 400071\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"MISTRI BLDG, GUN POWDER ROAD, DOCKYARD ROAD, MAZGAON, Mumbai City, Maharashtra, 400010\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"14, MAYUR WAREHOUSING, TANK BUNDER ROAD, OPP REAY ROAD STATION, Mumbai City, Maharashtra, 400033\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"PREM ESTATE, OPP UNION BANK, SANT SAVTA MARG, BYCULLA, Mumbai City, Maharashtra, 400027\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"WAREHOUSE OF NATIONAL TRANSPPORT COMPANY, BOMBAY MUTUAL BLDG, P M ROAD, FORT, Mumbai City, Maharashtra, 400001\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"CHAMUNDA COMPOUND, BEHHIND MAHARASHTRA WAREHOUSE, ANJUR ROAD, BHIWANDI, Thane, Maharashtra, 421302\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"DHIRUBHA AMBANI KNOWLEDGE CITY, DAKC, THANE BELAPUR ROAD, KOPAR KHAIRANE, Thane, Maharashtra, 400709\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"TD DIVISION, CENTRAL INDIA POLYSTER LTD, RAMTEK ROAD, MAUDA, Nagpur, Maharashtra, 441101\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"K MAHADEO AND COMPANY, NEXT TO BOMBAY WIRE ROPES, DATT MANDIR ROAD, BHANDUP WEST, Mumbai City, Maharashtra, 400078\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"PLOT NO 757 AND 758, JAI KUMAR GUPTA, KALAMBOLI, NAVI MUMBAI, Raigad, Maharashtra, 410218\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"PLOT NO 730 TO 733 AND 763 TO 764, BEST ROADWAYS LTD, KALAMBOLI WAREHOUSING COMPLEX, KALAMBOLI, Raigad, Maharashtra, 410218\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 95 2, BEHIND INDIRA COLLEGE HOSTEL, TATHWADE, MULASHI, Pune, Maharashtra, 411033\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"VANDAN DYEING PVT LTD, RATAN INDUSTRIAL COMPOUND, L B S MARG, SONAPUR, Mumbai City, Maharashtra, 400078\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"5 TTC IND. AREA, RELIANCE CORPORATE PARK, THANE BELAPUR ROAD, GHANSOLI, Thane, Maharashtra, 400709\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"5 TTC IND AREA, TERENE FIBRES PVT LTD, THANE BELAPUR ROAD, KOPAR KHAIRANE, Thane, Maharashtra, 400701\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"NH 3, RISHUBH WAREHOUSE OPP VPC INDUSTRIES, MUMBAI NASHIK ROAD, IGATPUR, Nashik, Maharashtra, 422403\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"C 43 1, BHAVIK FLOOR MILLS PVT  LTD MIDC AREA, OFF AMARAWATI ROAD, WADI, Nagpur, Maharashtra, 440028\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 184 2 AND 185 11, VILLCON, KALYAN BHIWANDI ROAD, KALYAN, Thane, Maharashtra, 421302\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"NH 48, NAVGHAR TERMINAL, DRONAGIRI ROAD, NAVI MUMBAI, Thane, Maharashtra, 400707\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"G BLOCK, FORTUNE 2000 BUILDING, BANDRA KURLA COMPLEX, BANDRA EAST, Mumbai City, Maharashtra, 400051\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"GAT NO 204 205A 205B 215B AND 215A, SHIVSAI FUEL PVT LTD, MUMBAI AGRA ROAD, IGATPURI, Nashik, Maharashtra, 422403\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"PLOT NO EL 104, VITAL ELECTRONICS AND MFG CO, THANE BELAPUR ROAD, MAHAPE, Thane, Maharashtra, 400710\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"HARKISANDAS HOSPITAL, NEAR CHARNI ROAD STATION, RAJA RAM MOHAN ROY ROAD, CHARNI ROAD, Mumbai City, Maharashtra, 400004\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"PLOT NO 7, SECTOR 18, BESIDE FULL STOP MALL, SANPADA, Thane, Maharashtra, 400706\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"GATE NO 20 AND 35 1, JAWAJEBUWACHI WADI, PUNE SOLAPUR HIGHWAY, YAWAT, Pune, Maharashtra, 412214\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Plot No - 7,, C,o Reliance retail outlet,, Sector - 18,Off Palm Beach Marg, Sanpada, Navi Mumbai, Thane, Maharashtra, 400706\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Survey no-86,1C,, Patel Complex, Near Bafna  OverBridge, Hingoli Road, Nanded, Nanded, Maharashtra, 431603\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Shop No1 ,2,, Transport Ngr Complex, Old Bhandara Rd,Wardhaman Nagar, Nagpur, Nagpur, Maharashtra, 440008\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Shop No.1-2,, Shee Sai Prasad Motors, Plot No. 11-12,, Nerul East, Thane, Maharashtra, 400706\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Shop no. 3, Omkar Agrovision Company ,Vardhman Plaza, Kolhapur Road, Taluka Sangli, Sangli, Maharashtra, 416416\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Sr.No.33,27, SHLETEJ Solutions , Services, Shiv Shambho Nagar, Panchwati, Katraj Kondawa Road, Katraj, Pune, Maharashtra, 411046\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Unit No. 15, Lal Sai Transport, Mahul Road, Sita Estate, Chembur, Mumbai Suburban, Maharashtra, 400074\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"1, VIMAL ASSOCIATES, Kumbar Ves, Jadbhavi Peth, Solapur, Maharashtra, 413002\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"GALA NO 19, AK Complex, Opp Kudhalkar Hospital, Shahpuri, Kolhapur, Maharashtra, 416001\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Shop No 1, Ridhi Arcade, Plot No. 857C , 857D, Kalamboli, Raigad, Maharashtra, 410218\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"1, BOKARPADA GODOWN RIL SITE OFFICE, BOMBAY POONA ROAD, PANVEL, Raigad, Maharashtra, 410206\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"H NO 106, CHAVAT GALLI, SHINOLI, CHANDGAD, Kolhapur, Maharashtra, 416507\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"B4, MIDC, MIDC AREA, PATALGANGA, Raigad, Maharashtra, 410207\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"PLOT NO 6, IMC LIMITED, JNPT TOWNSHIP, URAN, Raigad, Maharashtra, 400702\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"PLOT NO 3, RELIANCE TERMINAL, JNPT, URAN, Raigad, Maharashtra, 400702\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"GALA NO A1 TO C1, MAGICO EXPORTS AND CONSULTANT LTD, OLD MUMBAI PUNE ROAD, BOKARPADA, Raigad, Maharashtra, 410206\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"B 5, GUPTA WAREHOUSING COMPLEX, ANJUR ROAD, BHIWANDI, Thane, Maharashtra, 421302\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"VASHI TERMINAL D 99, TTC INDUSTRIAL AREA, MIDC, TURBHE, Thane, Maharashtra, 400705\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"CHAKRA PANI HOUSE NO 34, RELIANCE LIFE SCIENCE PVT LTD, VAIBHAV NAGAR, KARGAON, Parbhani, Maharashtra, 431401\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Aviation Fuelling Station, RELIANCE INDUSTRIES LTD, Aurangabad Airport, Aurangabad, Aurangabad, Maharashtra, 431201\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Aviation Fuelling Station, RELIANCE INDUSTRIES LTD, Dr Ambedkar International Airport, NAGPUR, Nagpur, Maharashtra, 440005\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Plot No 6, JNPT Terminal, Nhava Sheva, Uran, Raigad, Maharashtra, 400707\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Plot No 101, Navghar Terminal, Sector 1 NH 4B, Dronagiri, Raigad, Maharashtra, 400707\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"D-99, TTC Industrial area, MIDC, Turbhe, Thane, Maharashtra, 400705\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Survey no 58, Hissa No 2, RELIANCE INDUSTRIES LTD, Rohinjan, Panvel, Raigad, Maharashtra, 401208\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Panewadi Installation, Bharat Petroleum Corporation Ltd, Manmad Nandgaon Road, Nandgaon, Nashik, Maharashtra, 423104\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Godown No B5, Gupta Cranes , Storage, Village-Dapoda, BHIWANDI, Thane, Maharashtra, 421302\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"1, Texturising Division, Mouda Ramtek Road, NAGPUR, Nagpur, Maharashtra, 441104\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Survey No. 14 A, Mumbai Goa Highway, Bharane, Ratnagiri, Maharashtra, 415621\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"ON N H 4, PUNE BANGALORE ROAD, Village - ITKARE, Taluka -VALAVA, Sangli, Maharashtra, 416410\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"GATE NO 254, MAUJE NANDANI, SHIROLDIST, Kolhapur, Maharashtra, 416101\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Survey  NO. 182, HISSA NO. 7B, HATHKHAMBA, Ratnagiri, Maharashtra, 415639\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Survey  NO.112,1, MALAKPURTALUKA, KARAD, Satara, Maharashtra, 415110\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Survey  NO 335 , 336,1, KASABE VADGAON, N H 4, HATKANGALE, Kolhapur, Maharashtra, 416112\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"PLOT NO 7, SECTOR 18, OFF PALM BEACH MARGBESIDE FULL STOP MALL, Thane, Maharashtra, 400706\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"PLOT NO 16, MUMBAI GOA N H 17, KHALAPUR, Raigad, Maharashtra, 410220\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"PLOT NO 239,, MUMBAI GOA N H 17, PALASNEAR PETRON RESORT,  ROHA, Raigad, Maharashtra, 402106\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 235 , 241, N H 8, PELHAR, VASAI, Thane, Maharashtra, 401208\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"PLOT NO 3,, RELIANCE TERMINAL, OPP PORT BUILDING,, Raigad, Maharashtra, 400707\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"PLOT NO 3,, RELIANCE TERMINAL, OPP PORT BUILDING,, Raigad, Maharashtra, 400707\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"GHAT NO 50,2,211,, SHIRPUR, VILL UNTAWADTAL, Dhule, Maharashtra, 425405\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"CITY SURVEY NO 8,2B,, MAJOR STATEHIGHWAY NO 7,, INDIRA NAGAR, BAGLAN, Nashik, Maharashtra, 423301\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"PLOT NO 1,GAT NO155,3, OPP HOTEL CHINATOWN, DONDAICHA ROAD, KUKDELTAL SHAHADA, Nandurbar, Maharashtra, 425409\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 122,1A, GAT NUMBER 378, MOUZA MALEGOAN,, AKOLA, Washim, Maharashtra, 444505\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"GAT NO 174,2 , 175,2, NEAR HOTEL POONAM, PURMEPADA, Dhule, Maharashtra, 424001\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"NEAR ARTS,SCIENCE COLLEGE, SHIRDI ROAD, GANESH TEKADI, RAHURI, Ahmednagar, Maharashtra, 413705\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO.734,1,2,SURVEY NO.734,1,2, OASIS HOTEL, JUNNAR, Pune, Maharashtra, 410504\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"GAT NO 20,35,1,, JAUGI BAWANCHI WADI,, PUNE SOLAPUR HIGHWAY ,  DAUND,, Pune, Maharashtra, 412214\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"KHEDSHIVAPUR T SN H 4,, CHAINAGE NUMBER 813, KELAWD, Pune, Maharashtra, 412213\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"S.R.No 89 ,, NH 50,Nashik Pune Highway,, Chandanapuri, Ahmednagar, Maharashtra, 422613\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Survey  NO 528,3,, SAVLESHWAR, TQ MOHOL, Solapur, Maharashtra, 413213\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Survey  NO 58,, AKKALKOT SOLAPUR ROAD, VILL HASSAPUR, Solapur, Maharashtra, 413216\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Survey  NO 39, N H 4, OLD MUMBAI PUNE HIGHWAY, OPP HOTEL SHRE PUNJAB,  MAVAL, Pune, Maharashtra, 412106\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Suvey NO 6,2C , 6,2, NEAR YESHWANT POULTRY FARMYEOLA ROAD, KHIRDIGANESH, Ahmednagar, Maharashtra, 423601\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Survey NO 136,2,, NEAR MITRA PREM DHABHA, AT POST MIRAJGAON, Ahmednagar, Maharashtra, 414401\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Survey  NO 48,, SOUTH SOLAPURN H 13, BIJAPUR HIGHWAY, BASAVNAGARTAL, Solapur, Maharashtra, 413221\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO.27,, TALUKA-HINGANGHAT, AJANTI, Wardha, Maharashtra, 442301\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 37,1 ,9, KHED, KHED, Amravati, Maharashtra, 444805\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SY NO 9,, GATE NO 78VILL NIMBALA,, WANI YAVATMAL ROAD, TAL WANI,, Yavatmal, Maharashtra, 445305\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 623 , 624, VILL VYALA, VILL VYALA, Akola, Maharashtra, 444303\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 104,2, WARDHA ROAD, VILL BOTHLI,, Nagpur, Maharashtra, 440001\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 311,2 , 311,3, N H 6BHANDARA ROAD, WADODA, Nagpur, Maharashtra, 441002\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 53,1 , 53,2, AMRAVATI ROAD, P O VYAHADVILL PETH-GONDKHAIRITAL KALMESHWAR, Nagpur, Maharashtra, 441501\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 236,3 , 6,2, NAGPUR ROAD, NANDGAONPETH, Amravati, Maharashtra, 444901\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"OPP VILL KALMNA,, NAGPUR UMRED ROAD, NEAR 16 KM MILESTONE, Nagpur, Maharashtra, 441204\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"GAT NO.214,, NAGEWADIAURANGABAD ROAD, JALNA, Jalna, Maharashtra, 431203\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO. 323,2, OMERGA, OMERGA, Osmanabad, Maharashtra, 413606\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Survey no 139,1,, Old Nasik Highway,, Village Rehnal, Taluka Bhiwandi, Thane, Maharashtra, 421302\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"GAT NO 1638,, SY NO 379UDGAON,, SHIROLD, Kolhapur, Maharashtra, 416101\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"GUT NO 469,470, 472, GARGOTI,, Village Rehnal,  KAGAL, Kolhapur, Maharashtra, 416208\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SY NO 79,86,171, PARTVILL SONALE, N H 3, BHIWANDI BYPASs, Thane, Maharashtra, 421302\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO.184,2,185,11, KALYAN BHIWANDI ROAD, VILL KON,, Thane, Maharashtra, 421301\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Survey No. 58,2A,, Post Taloja,Tal-Panvel, Rohinjan Village,, Raigad, Maharashtra, 410208\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 2,3,2,4A,D,4C, PLOT NO 2,, BEHIND MILLAT SCHOOl, Pratap Nagar, Jalgaon, Maharashtra, 425002\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 22,2,, GUT NO 85, KARAGAONTAL, Parbhani, Maharashtra, 431301\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"PLOT NO 2,3, SURVEY NO 5893,2 , 589, DIGRAS ROAD, MAUZA PUSAD, Yavatmal, Maharashtra, 445204\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SR NO 165,5,165,6, GANGAPUR ROAD, AURANGABAD, Aurangabad, Maharashtra, 423701\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"GAT NO.5 , 6 ,, PUNE NAGAR HIGHWAY ,, TALUKA-SHIRUR, Pune, Maharashtra, 412208\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Survey No.227,P ,, Pune Nasik Highway - NH50, Nanekarwadi , ,, Pune, Maharashtra, 410501\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Survey No 11,1 and 2,, Roha,, Village Rothk, Raigad, Maharashtra, 402109\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Survey No.  92, HISSA NO 1,1 PART, GANDRE,  WADADIST, Thane, Maharashtra, 421303\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 43,1 AND 43,2, N H 3MILESTONE 300,00,, CHIKHALOHAL, MALEGAON, Nashik, Maharashtra, 422009\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO-2725,, NEAR MILESTONE -92,8, NASHIK-PUNE HIGHWAY NH50,NEAR HEMANTD, JUNNAR, Pune, Maharashtra, 412411\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO. 229P,, , NAGAR-MANMAD ROAD, NEAR SAIKRISHNA HOTEL, PIMPALS, Ahmednagar, Maharashtra, 423107\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO.367,2,, ON NH 6,BHANDRA, MUJBIASHOKNAGAR, Bhandara, Maharashtra, 441904\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"Survey No 12,2,, Yavatmal Road Taluka Wani., Chaikhagoa, Yavatmal, Maharashtra, 445305\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SY NO 100,2,, VILL GHOTURLI WAIGAON,, TQ UMRED,, Nagpur, Maharashtra, 441203\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing, Retail Business, Input Service Distributor (ISD), Bonded Warehouse, SEZ, Works Contract, Warehouse / Depot, Service Provision, Leasing Business, Office / Sale Office, Recipient of Goods or Services, Wholesale Business, EOU / STP / EHTP\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 616/2, PLOT NO 1, NEAR TARADUTTA HOSTEL, SASWAD PUNE ROAD, SASWAD, PURANDER, Pune, Maharashtra, 412301\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Works Contract\"\n                    },\n                    {\n                        \"address\": \"SHAH PETROLEUM, RELIANCE RETAIL OUTLET,SURVEY NO, 515/3, OPP. SATPURA GINNING, AND PRESSING  FACTORY AMRAVATI ROAD, Amravati, Maharashtra, 444906\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Retail Business\"\n                    },\n                    {\n                        \"address\": \"SIDHANT  PETROLIUM, RELIANCE RETAIL OUTLET, SURVEY NO.65-A/2, VILLAGE KALAMB, PARLI ROAD,DISTRICT,-OSMANANBAD, Osmanabad, Maharashtra, 413507\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Retail Business\"\n                    },\n                    {\n                        \"address\": \"Reliance Industries Limited SH-86, Petrochemical Township, Poynad Nagothane, Road, Raigad, Raigad, Maharashtra, 402125\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing\"\n                    },\n                    {\n                        \"address\": \"Only Vimal Showroom, Court House, Ground Floor, Dhobi Talao, LT Marg, Mumbai, Mumbai City, Maharashtra, 400002\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Retail Business\"\n                    },\n                    {\n                        \"address\": \"Only Vimal Showroom, Annex B, Reliance Corporate Park, 5-TTC Industrial Area, Thane-Belapur Road, Ghansoli, Mumbai Suburban, Maharashtra, 400701\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Retail Business\"\n                    },\n                    {\n                        \"address\": \"Plot No. B-1 to B-5 and A-3, Reliance Industries ltd., MIDC Industrial Area, PatalgangaTaluka Khalapur, Raigad, Maharashtra, 410220\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing\"\n                    },\n                    {\n                        \"address\": \"Plot No. D-1,Reliance Industries Ltd, MIDC Industrial Area, 0, Taluka- Daund,, Pune, Maharashtra, 413802\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing\"\n                    },\n                    {\n                        \"address\": \"Reliance Industries Limited, Nagpur Manufacturing Division, Village Dahali, Mouda Ramtek Road, Taluka Mouda, Nagpur, Maharashtra, 441104\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing\"\n                    },\n                    {\n                        \"address\": \"Reliance Industries Limited,, Nagpur Manufacturing Division, Village Rahadi, Mouda Ramtek Road, Taluka Mouda,, Nagpur, Maharashtra, 441104\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Warehouse / Depot\"\n                    },\n                    {\n                        \"address\": \"Reliance Industries Ltd Reliance Terminal, Plot No. 3, Opp.Port Users Building JNPT, 0, Sheva,Navi Mumbai, Mumbai Suburban, Maharashtra, 400707\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Warehouse / Depot\"\n                    },\n                    {\n                        \"address\": \"Magico Exports and Consultants ltd, Village- Bhokarpada, Old Mumbai-Pune Highway, Taluka - Panvel, Raigad, Maharashtra, 410207\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Warehouse / Depot\"\n                    },\n                    {\n                        \"address\": \"Reliance Industries Ltd.Lodhivali Township, Village/Post- Lodhivali, 0, Taluka-Khalapur, Raigad, Maharashtra, 410206\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Supplier of Services, Others\"\n                    },\n                    {\n                        \"address\": \"Reliance Industries Ltd.Reliance Housing ComplexPlot R-5, MIDC Residentil zone, 0, Village/Post- Mohopada, Taluka-Khalapur, Raigad, Maharashtra, 410222\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Others\"\n                    },\n                    {\n                        \"address\": \"Reliance Industries Limited, Estate Office, Petrochemical Township, 0, Nagothane, Raigad, Maharashtra, 402125\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Supplier of Services\"\n                    },\n                    {\n                        \"address\": \"Reliance Industries Limited, Family Welfare Centre, Petrochemical Township, 0, Nagothane, Raigad, Maharashtra, 402125\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Supplier of Services\"\n                    },\n                    {\n                        \"address\": \"Plot no. C 64 G Block, Reliance Industries Limited, 0, Bandra Kurla Complex Bandra E, Mumbai City, Maharashtra, 400098\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Others\"\n                    },\n                    {\n                        \"address\": \"Plot No.143/B, Near Cipla Pharma M.I.D.C Patalganga Mauje Kaire, 0, Khalapur, Raigad, Maharashtra, 410220\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Others\"\n                    },\n                    {\n                        \"address\": \"Reliance Industries Limited, Plot No. D-1, MIDC Industrial Area, Kurkumbh, Taluka - Daund, Pune, Maharashtra, 413802\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Factory / Manufacturing\"\n                    },\n                    {\n                        \"address\": \"Whistling Woods International Ltd, , Filmcity Complex, Goregaon East, Mumbai Suburban, Maharashtra, 400065\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Office / Sale Office\"\n                    },\n                    {\n                        \"address\": \"Plot no RG 1A, G Block, Reliance Industries Limited, Bandra Kurla Complex, Bandra E, Mumbai City, Maharashtra, 400051\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Others\"\n                    },\n                    {\n                        \"address\": \"M/s Aradhana Emporium, , Dhuru Terrance, Kelkar Road, Dadar West, Mumbai Suburban, Maharashtra, 400028\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Retail Business\"\n                    },\n                    {\n                        \"address\": \"Plot No 185/ Part NH-69, , Nagpur - Bhopal Road, Dahegaon, Taluka - Saoner, Nagpur, Maharashtra, 440018\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Others\"\n                    },\n                    {\n                        \"address\": \"Survey No. 5, Near Cipla Pharma, M.I.D.C. Patalganga, Mauje Kaire, Taluka - Khalapur, Raigad, Maharashtra, 410220\",\n                        \"email\": \"\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Warehouse / Depot\"\n                    },\n                    {\n                        \"address\": \"Sagar Complex, Buliding No. A1,A2,O1, E1, Mumbai - Nashik Highway, Opp H.P Petrol Pump, Village Ovali, Bhiwandi, Thane, Maharashtra, 421302\",\n                        \"email\": \"\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Warehouse / Depot\"\n                    },\n                    {\n                        \"address\": \"Level 19 and 20, A/B/C Wing, ONE BKC, BKC, Bandra - E, Mumbai Suburban, Maharashtra, 400051\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Office / Sale Office\"\n                    },\n                    {\n                        \"address\": \"Survey No. 28F/16A 2, 28F/16A 3, 47/1, 47/2A 1, 47/2A 2, Gala No. 1 and 4, Village - Washivali, Taluka - Khalapur, Raigad, Maharashtra, 410220\",\n                        \"email\": \"NA\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Warehouse / Depot, Export\"\n                    },\n                    {\n                        \"address\": \"Gat No. 123,, Godown No 1,2,3, Chimli Patha, Moi Road, Village Kuruli,Khed, Pune, Pune, Maharashtra, 410501\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Warehouse / Depot\"\n                    },\n                    {\n                        \"address\": \"Gate No. 101/1 101/2  101/3, , Vimal Goenka Warehousing Premises, 18 KM Mile Stone, Musai Bujru, Jalgaon, Maharashtra, 425001\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Warehouse / Depot\"\n                    },\n                    {\n                        \"address\": \"Survey No  41 H No 3, Paiki, Mama Compound, Mumbai Nasik By pass, Village Saravali Bhiwandi, Thane, Maharashtra, 421311\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Warehouse / Depot\"\n                    },\n                    {\n                        \"address\": \"Gut No.48 Opp.Garware Company, gate No. 2,MittheWasthi, At Naigaon,Post Waluj,Ta., Gangapur, Aurangabad, Maharashtra, 431133\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Warehouse / Depot\"\n                    },\n                    {\n                        \"address\": \"RSM 01, Gr FLR, Sr. No. 8 13, DTC Building, Near Mhatre Bridge, PUNE, Pune, Maharashtra, 411004\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Retail Business\"\n                    },\n                    {\n                        \"address\": \"SY.NO.77/2,77/3, RAIGAD OXYGEN PVT. LTD, VILL HAL BUDRUK,TALUKA KHALAPUR, Khopoli, Raigad, Maharashtra, 410203\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SY.NO.329 GAT NO.1068, SAMARTH AGENCIES, AURANGABAD ROAD, NIPHAD, Nashik, Maharashtra, 422303\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"GAT NO.158/1, KAILAS PETROLEUM, TALUK SANGAMNER, AHMED NAGAR, Ahmednagar, Maharashtra, 413738\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"GAT NO 470, SWATI PETROLEUM, TAL NEWASA, AHMED NAGAR, Ahmednagar, Maharashtra, 414501\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SY.NO.11/8, SAHYADRI PETROLEUM, AKOLE-MAISMAL ROAD SAMSERPURTAL AKOLE, AHMED NAGAR, Ahmednagar, Maharashtra, 414001\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO. 2668, M. H. PETROLEUM, DAUND -PATAS ROAD, PUNE, Pune, Maharashtra, 413801\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SY NO.207/6C/7 PLOT NO  6/7A, SHIVANJALI PETROLEUM PRODUCTS, DINDORI RD, NASHIK, Nashik, Maharashtra, 422004\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"C/O RAHUL TRACTORS, ANISH HIGHWAY SERVICES, MANMAD RD, AHMEDNAGAR, Ahmednagar, Maharashtra, 414106\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"GAT NO1819, SAI PETROLEUM AND SERVICES, MANGALWEDHA BIJAPUR RD, SOLAPUR, Solapur, Maharashtra, 413305\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO.188 PADEGAON, VIKRAM PETROLEUM, TAL KHANDALA, SATARA, Satara, Maharashtra, 415521\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"GAT NO 27/12A, DIAMOND PETROLEUM, TAL AMBEGAON, PUNE, Pune, Maharashtra, 412406\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"GAT NO.2436, V R AUTO SERVICES, OJHAR MIG, NASIK, Nashik, Maharashtra, 422206\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO-48/2/KHA, BALAJI PETROLEUM, SURAT ROAD, NANDURBAR, Nandurbar, Maharashtra, 425426\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SYNO105/1A1B-2/2A-2, KESWANI PETROLEUM AGENCY, DHULE RD, DHULE, Dhule, Maharashtra, 425408\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"PLOT NO.1, TELANG AND COMPANY, SANKESHWAR ROAD, KOLHAPUR, Kolhapur, Maharashtra, 416502\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"PLOT NO. B -31, KONARK ENTERPRISES PVT. LTD, MIDC, THANE, Thane, Maharashtra, 421501\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 33/1/A/1  2, SAI FUEL POINT, OFF GANGAPUR ROAD, NASHIK, Nashik, Maharashtra, 422010\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SY.NO.243/1, MANMANDIR PETROLEUM, VITA-KARAD ROAD, SANGLI, Sangli, Maharashtra, 415311\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SR.NO.987/10/11, SONRAJ AGENCIES, URUN-ISLAMPUR, SANGLI, Sangli, Maharashtra, 415409\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SY.NO.83/3, , NAIK TRADERS, VILL CHENDARE, RAIGAD, Raigad, Maharashtra, 402201\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"PLOT NO. 15/4, MAHAVIR PETROLEUM, KARJAT-MURBAD ROAD, RAIGAD, Raigad, Maharashtra, 410201\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"GUT NO.898, KRUSHNAI PETROLEUM, PUNE-SOLAPUR HIGHWAY, PUNE, Pune, Maharashtra, 412201\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"GAT NO -423/A, TIRUPATI PETROLEUM, KALAMBI VILLAGE, SANGLI, Sangli, Maharashtra, 416410\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 75/1  76/1, BALAJI FUEL CENTER, VILLAGE VADAKHAL, RAIGAD, Raigad, Maharashtra, 402107\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"PLOT 341/2, SHIVAM PETROLEUM, ASHTA-ISLAMPUR RD, SANGLI, Sangli, Maharashtra, 416301\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"VILL NANADGAON, B.K. AUTOMOBILES, PALASPA PHATA RD, RAIGAD, Raigad, Maharashtra, 410206\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO.1065/1/2, SHRI SHIVAJI PETROLEUM, SHIRUR, PUNE, Pune, Maharashtra, 412210\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"GHAT NO.2164B, CHRAPHALE FUELS, PETH-KARAD ROAD, SANGLI, Sangli, Maharashtra, 415407\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"GAT NO-277, SAIDEEP PETROLEUM, NAGAR-MANMAD RD, AHMEDNAGAR, Ahmednagar, Maharashtra, 414306\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SR.NO.149/68, PARULEKAR PETROLEUM, VILLAGE-SANGIRDE, SINDHUDURG, Sindhudurg, Maharashtra, 416520\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"DAHIWADI WADUJ RD, NAGESHWAR PETROLEUM, DAHIWADI WADUJ RD, SATARA, Satara, Maharashtra, 415508\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"447/1, , THAKKAR PETROLEUM, NEAR KALYANI WEIGH BRIDGE, NASHIK, Nashik, Maharashtra, 422209\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SY.NO.113, SRI SAI KAMAL SERVICES, BYPASS RD, SOLAPUR, Solapur, Maharashtra, 413203\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"POST TEMBURNI, GANESH AGENCY, VENEGAON TALUKA MADHA, SOLAPUR, Solapur, Maharashtra, 413211\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"GAT. NO.22/4, SHREE BRAMHAJYOT PETROFILLINGSTATIO, GAGANBAWADA ROAD, KOLHAPUR, Kolhapur, Maharashtra, 416010\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"AT KHANDPALE 435/436, DOSTI AUTOMOBILE, POST MANGAON, LONERA, RAIGAD, Raigad, Maharashtra, 402103\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"GHAT NO.891/A, SUYASH PETROLEUM, MIRAJ SANGLI ROAD, SANGLI, Sangli, Maharashtra, 416410\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"GHAT NO.391/3/A, ABHIJIT KHANDAGALE, KHANDALA LONAND RD, SATARA, Satara, Maharashtra, 412802\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"GAT NO 11, RAJ PETROLEUM, AT POST HANDI NIMGAON, AHMEDNAGAR, Ahmednagar, Maharashtra, 414603\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SY.NO.56/2B, , SEEMA PETROLEUM, VILL CHAMBHARKHIND, RAIGAD, Raigad, Maharashtra, 402301\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"GAT NO.- 697, KARACHIWALA FUEL STATION, A/P CHAS, AHMEDNAGAR, Ahmednagar, Maharashtra, 414005\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"71/1, SPEEDAGE PETROLEUM, AURANGABAD ROAD, AHMEDNAGAR, Ahmednagar, Maharashtra, 414003\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"GATNO.115/1/1, OM SAI PETROLEUM, NEXT TO PRABHAT DAIRY, AHMEDNAGAR, Ahmednagar, Maharashtra, 413721\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 123/2K3, GANDHI PETROLEUM, NEW SOLAPUR ROAD MECHANICAL CHOWK, SOLAPUR, Solapur, Maharashtra, 413304\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"HISSA NO. 5 SURVEY NO. 132, THREE S PETRO, URAN, RAIGAD, Raigad, Maharashtra, 400702\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"OLD S NO 365, AGRAWAL and CHOUDHARI CORPORATION, MIRA ROAD EAST NR, BHAYANDER, Thane, Maharashtra, 401101\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"PLOT NO. 3, DMK ENTERPRISES, VITHALWADI STATION ROAD, ULHASNAGAR, Thane, Maharashtra, 421003\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"A/P NANDANI, PADMASHREE AUTOMOBILES, TALUKA SHIROL, KOLHAPUR, Kolhapur, Maharashtra, 416104\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"PLOT NO.5/6/15/16, TRYAMBAK PETROLEUM, MAUZA SHIRALA, AMRAVATI, Amravati, Maharashtra, 444801\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO. 54/1, POBARU MARKETING and AGENCIES PL, YAVATMAL- NAGPUR ROAD, YAVATMAL, Yavatmal, Maharashtra, 445001\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"PLOT NO. 52, PURVA SERVICES, RUBY GINNING, IN FRONT OF TELEPHONE EXG, AKOT, Akola, Maharashtra, 444401\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"PLOT NO 1, BHAGWATI SERVICES, MOUZA SHERPURKARANJA, WASHIM, Washim, Maharashtra, 444105\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"PLOT NO65, PARALIKAR PETROLEUM, AMOUZA-MANGRULPEER TH.MANGARULPEER, WASHIM, Washim, Maharashtra, 444403\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"RELIANCE OUTLET, HAJI NOOR MOHAMMED PETROLEUM, MOUZA WARORA, CHANDRAPUR, Chandrapur, Maharashtra, 442402\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"HOLLAR TO SINGHNAPUR RD., VARMA AUTOMOBILES, HOLLAR TO SINGHNAPUR RD., AMRAVATI, Amravati, Maharashtra, 444802\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"43472, ATHARVA PETROLEUM, CHENUSHTA ROAD, AMRAWATI, Amravati, Maharashtra, 444909\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SY NO.1/2, PATNI PETROLEUM, DEOLI-PULGAON ROAD, WARDHA, Wardha, Maharashtra, 442302\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO.106/107, KHATRI PETROLEUM, MOUZA WADGAON, CHANDRAPUR, Chandrapur, Maharashtra, 442402\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 28/1, TIRUPATI PETROLEUM, AT and POST-AMBAD, JALNA, Jalna, Maharashtra, 431204\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 15, VIDYA PETROLEUM, AURANGABAD-PUNE ROAD, AURANGABAD, Aurangabad, Maharashtra, 431136\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"AURANGABAD P1 RO MHC067, SHRIRAM PETROLEUM, PUSHPANAGARI CBS ROAD, AURANGABAD, Aurangabad, Maharashtra, 431001\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"PLOT NO 1A., MATA BHAWANI ENTERPRISES, N7 SECTOR P CIDCO, AURANGABAD, Aurangabad, Maharashtra, 431003\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"S.NO.- 31, D. RAMCHANDRA and SONS, BEED AURANGABAD RD. NH 211, BEED, Beed, Maharashtra, 431122\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"PLOT NO 3/4, VEDANT PETROLEUM, BULDHANA- MALKAPUR RD, BULDHANA, Buldhana, Maharashtra, 443001\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO.179, MAHAJAN SERVICES, CHIKHLI- JALNA ROAD, BULDHANA, Buldhana, Maharashtra, 443201\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SY.NO -876, OM SHANTI PETROLEUM, NEAR KARGIL CHOWK, JALGAON, Jalgaon, Maharashtra, 425107\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"180/2, AMAN AUTOMOBILES, KANNAD-AURANGABAD ROAD, AURANGABAD, Aurangabad, Maharashtra, 431103\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SY.NO.26, GOSONS FUELS, KHAMGAON - NANDURA ROAD, BULDHANA, Buldhana, Maharashtra, 444312\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"S.NO.- 271 / A, BAJAJ PETROLEUM, TELGAON ROAD, BEED, Beed, Maharashtra, 431131\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"RELIANCE RETAIL OUTLET, MOHINDRA ENTERPRISES, TAL SILLOD, JALGAON, Jalgaon, Maharashtra, 431112\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO.50/1/2/2B, RUPESH RELIANCE SERVICES, MUMBAI-NAGPUR HIGHWAY, JALGAON, Jalgaon, Maharashtra, 424201\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"GUT NO 143/4/3, MAHURKAR PETROLEUM AGENCY, VILLAGE SAVDA, JALGAON, Jalgaon, Maharashtra, 425502\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 82/2, GUNALE SERVICES, OPP.MGM COLLEGE, LATUR, Latur, Maharashtra, 413515\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"RELIANCE PETROL PUMP, , RAJ AGENCIES, NEAR NAGAR PARISHAD GARDEN, BEED, Beed, Maharashtra, 431517\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"GUT NO.109/A1, RAMJI PETROLEUM, BASMATNAGAR-NANDED ROAD, HINGOLI, Hingoli, Maharashtra, 431512\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"GUT NO. 212, S S FUEL SERVICES, VILLAGE DHABAD, NANDED, Nanded, Maharashtra, 431704\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SH NO. 156, VIJAY PETROLEUM, KAIJ-BEED RD, BEED, Beed, Maharashtra, 431123\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO.12, S.M.BIDWE AND SONS, AUSA ROAD LATUR-1, LATUR, Latur, Maharashtra, 413512\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"VIDYA NAGAR, OMKAR HIGHWAY SERVICES, PARLI VAIJNATH, BEED, Beed, Maharashtra, 431520\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"NANDED BIDAR ROAD, SHREE PETROLEUM, NANDED BIDAR ROAD, LATUR, Latur, Maharashtra, 413517\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEYNO.185/2, RELIABLE AUTO FUELS, SAONER, NAGPUR, Nagpur, Maharashtra, 440018\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"MOUZA FULCHUR, SHRI SAI ASHISH PUBLIC WORKS, GONDIA AMGAON ROAD, GONDIA, Gondia, Maharashtra, 441601\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO.585, P.GHODE PETROLEUM, MAUZANO.32, NAGPUR, Nagpur, Maharashtra, 441302\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SHAIKH FIDA ALI, SHAIKH ABDUL HUSAIN, MOTHER TERRESA MARG, NAGPUR, Nagpur, Maharashtra, 440013\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO. 58/3, HIWARKAR PETRO MHC062, KALAMNA - KAMPTEE ROAD, NAGPUR, Nagpur, Maharashtra, 440001\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"PLOT NO. 3-4, SHARADA FILLING STATION, MANSAR-RAMTEK RAOD, NAGPUR, Nagpur, Maharashtra, 441106\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO.285/2, TUMSARE PETROLEUM, TAHSIL TUMSAR, BHANDARA, Bhandara, Maharashtra, 441912\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO.65 and 68, LODHI PETROLEUM, NAGPUR-SAONER ROAD, NAGPUR, Nagpur, Maharashtra, 441107\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO. 877, SHRI SAI SERVICE STATION, MUL ROAD, GADCHIROLI, Gadchiroli, Maharashtra, 442605\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"RELIANCE RETAIL OUTLET, SHAH PETROLEUM, AND PRESSING  FACTORY AMRAVATI ROAD, AMARAVATI, Amravati, Maharashtra, 444906\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"RELIANCE RETAIL OUTLET, SIDHANT  PETROLIUM, PARLI ROAD, OSMANABAD, Osmanabad, Maharashtra, 413507\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"SURVEY NO 11VILL BANSONDTAL BALSOD431531, PLOT NO 1-4, SURVEY NO 11 VILL BANSONDTAL, PARBHANI, Parbhani, Maharashtra, 431531\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"470, GUT NO 469, TAL KAGALDIST, KOLHAPUR, Kolhapur, Maharashtra, 416208\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"Chitrakoot, Ground Floor, Reliance Industries Limited, SRM Mills Compound, Ganpatrao Kadam Marg, Woroli, Mumbai City, Maharashtra, 400013\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Office / Sale Office\"\n                    },\n                    {\n                        \"address\": \"Survey No. 474/4/1, 474/5, 474/6,, Khatav,, Sh-69,, Village Waduj, Satara, Maharashtra, 415506\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"F.PL. NO. 125/9C/9D,, Near Hotel Yash Palace,, Ahmednagar, Chahurana Khurd,, Ahmednagar, Maharashtra, 414001\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"Gat No. 169, Baramati, Village Jalochi, Baramati, Pune, Maharashtra, 413103\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"GAT NO. 350/1,, ANKAI, ANKAI, YEOLA,, Nashik, Maharashtra, 423104\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"Gat No. 38/2A/2/4, SHEKAIWADI,, SHEKAIWADI,, Akole, Ahmednagar, Maharashtra, 422601\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Leasing Business\"\n                    },\n                    {\n                        \"address\": \"Building no C Gala no. 6 - 7, Ground floor, Mahavir Complex, Anjur Road, Village Mankoli, Thane, Maharashtra, 421302\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Warehouse / Depot\"\n                    },\n                    {\n                        \"address\": \"42-1D, Ground Floor, Dagade Farm  House, Dagade Vasti, Pisoli  ROAD, Pune, Maharashtra, 411060\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867611922,\n                        \"nature_of_business\": \"Warehouse / Depot\"\n                    },\n                    {\n                        \"address\": \"990/A/1/2, 990/2, 990/3,990/B/1,  992, 1353/5,6,7, Ground Floor, Chamunda Compound, Anjur Road, Village VAL. Bhiwandi, Thane, Maharashtra, 421302\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9867147765,\n                        \"nature_of_business\": \"Warehouse / Depot\"\n                    },\n                    {\n                        \"address\": \"36/1, -, -, -, PISOLI, Pune, Maharashtra, 411028\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9967657376,\n                        \"nature_of_business\": \"Warehouse / Depot\"\n                    },\n                    {\n                        \"address\": \"Survey Nos. 61/5-71/1 to 71/8, 73/1, -, -, -, Village Vahuli, Thane, Maharashtra, 421302\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9967657376,\n                        \"nature_of_business\": \"Warehouse / Depot\"\n                    },\n                    {\n                        \"address\": \"C/O M/s Ganesh Benzoplast Ltd,, -, PLOT NO-7, BULK ROAD, JNPT NAVA SHEVA, Raigad, Maharashtra, 400707\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9967657376,\n                        \"nature_of_business\": \"Warehouse / Depot\"\n                    },\n                    {\n                        \"address\": \"Sagar Complex, F2, Gala No. 13, 14/A , 14/B, 14/C, 14/D Survey No. 11/2, Sagar Complex, Mumbai Nasik High Way Road, Village- Owali,PO Anjur Tal Bhiwandi,, Thane, Maharashtra, 421302\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9967657376,\n                        \"nature_of_business\": \"Warehouse / Depot\"\n                    },\n                    {\n                        \"address\": \"143/58, Sharma Warehouse, RELIANCE INDUSTRIES LIMITED -Hi Tech Engineering, -, At-Khaire, Patalganga MIDC , Post-Rasayani,Tal-Khalapur, Raigad, Maharashtra, 410207\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9967657376,\n                        \"nature_of_business\": \"Warehouse / Depot\"\n                    },\n                    {\n                        \"address\": \"B6A2, Indospace Industrial Park,Chakan-I,, Gat No 428, Hissa No.11-12-13-Part, Mhalunge,Taluka- Khed, Pune, Maharashtra, 410501\",\n                        \"email\": \"RIL.MHGST@ril.com\",\n                        \"mobile\": 9967657376,\n                        \"nature_of_business\": \"Warehouse / Depot\"\n                    }\n                ]\n            },\n            \"promoters\": [\n                \"Nikhil Rasiklal Meswani \",\n                \"Hital Rasiklal Meswani \",\n                \"Mukesh Dhirubhai Ambani \",\n                \"Pawan Kumar Kapil \",\n                \"Madhusudana Sivaprasad Panda \"\n            ],\n            \"annual_turnover\": \"Slab: Rs. 500 Cr. and above\",\n            \"annual_turnover_fy\": \"2019-2020\",\n            \"gstin\": \"27AAACR5055K1Z7\",\n            \"pan_number\": \"AAACR5055K\",\n            \"business_name\": \"RELIANCE INDUSTRIES LIMITED\",\n            \"legal_name\": \"RELIANCE INDUSTRIES LIMITED\",\n            \"center_jurisdiction\": \"Commisionerate - BELAPUR,Division - DIVISION IV,Range - RANGE-IV (Jurisdictional Office)\",\n            \"state_jurisdiction\": \"State - Maharashtra,Zone - Thane,Division - RAIGAD,Charge - URAN_701\",\n            \"date_of_registration\": \"2017-07-01\",\n            \"constitution_of_business\": \"Public Limited Company\",\n            \"taxpayer_type\": \"Regular\",\n            \"gstin_status\": \"Active\",\n            \"date_of_cancellation\": \"1800-01-01\",\n            \"field_visit_conducted\": \"No\",\n            \"filing_status\": [],\n            \"address\": null,\n            \"hsn_info\": {\n                \"goods\": [\n                    {\n                        \"description\": \"OTHER WOVEN FABRICS OF SYNTHETIC STAPLE FIBRES - OF POLYESTER STAPLE FIBRES : MIXED MAINLY OR SOLELY WITH VISCOSE RAYON STAPLE FIBRES : OTHER\",\n                        \"hsn\": \"55151190\"\n                    },\n                    {\n                        \"description\": \"OTHER ARTICLES OF PLASTICS AND ARTICLES OF OTHER MATERIALS OF HEADINGS 3901 TO 3914- OTHER : POLYPROPYLENE ARTICLES, NOT ELSEWHERE SPECIFIED OR INCLUDED\",\n                        \"hsn\": \"39269080\"\n                    },\n                    {\n                        \"description\": \"PETROLEUM GASES AND OTHER GASEOUS HYDROCARBONS - LIQUIFIED: ETHYLENE, PROPYLENE, BUTYLENE AND BUTADIENE\",\n                        \"hsn\": \"27111400\"\n                    },\n                    {\n                        \"description\": \"OTHER SYNTHETIC FILAMENT YARN (OTHER THAN SEWING THREAD), NOT PUT UP FOR RETAIL SALE, INCLUDING SYNTHETIC MONOFILAMENT OF LESS THAN 67 DECITEX OTHER YARN, SINGLE, UNTWISTED OR WITH A TWIST NOT EXCEEDING 50 TURNS PER METRE : OF POLYESTERS, PARTIALLY ORIENTED\",\n                        \"hsn\": \"54024600\"\n                    },\n                    {\n                        \"description\": \"ORGANIC SURFACE-ACTIVE AGENTS (OTHER THAN SOAP), SURFACE-ACTIVE PREPARATIONS, WASHING PREPARATIONS (INCLUDING AUXILIARY WASHING PREPARATIONS) AND CLEANING PREPARATIONS, WHETHER OR NOT CONTAINING SOAP, OTHER THAN THOSE OF HEADING 3401 OTHER: OTHER: WASHING PREPARATIONS (INCLUDING AUXILIARY WASHING PREPARATIONS) AND CLEANING PREPARATIONS, HAVING A BASIS OF SOAP OR OTHER ORGANIC SURFACE ACTIVE AGENTS\",\n                        \"hsn\": \"34029091\"\n                    }\n                ],\n                \"services\": []\n            }\n        }\n    },\n    \"status_code\": 200,\n    \"message_code\": \"success\",\n    \"message\": \"Success\",\n    \"success\": true\n}"}],"_postman_id":"8b67c2f4-a3a8-41c8-8203-d94b43affa4c"}],"id":"79bef86c-b24e-4ae7-9269-ad2b6fff1d15","_postman_id":"79bef86c-b24e-4ae7-9269-ad2b6fff1d15","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}}],"id":"4c5f2f45-8c4f-4bf3-8979-f6149abee942","_postman_id":"4c5f2f45-8c4f-4bf3-8979-f6149abee942","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"Async APIs","item":[{"name":"Submit Request ","event":[{"listen":"test","script":{"id":"6f853e92-aba5-4993-ac2c-befcee4f8cd2","exec":["let jsonData = pm.response.json()\r","let token = jsonData.data.client_id\r","pm.environment.set(\"client_id\", token)\r","postman.setNextRequest(\"Submit Info via Text\")"],"type":"text/javascript"}}],"id":"a0551258-d6e9-4fc6-a74c-cf908139b45f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"aadhaar_validation\",\n    \"body\": {\n        \"id_number\":  \"GIVEN_AADHAAR_NUMBER\"\n    },\n    \"webhook_url\": \"{{webhook_url}}\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/async/submit","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","async","submit"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"0eaeb1f0-9a8e-4a3c-a2e7-74db3263193e","name":"Submit Request without Webhook","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"aadhaar_validation\",\n    \"body\": {\n        \"id_number\":  \"GIVEN_AADHAAR_NUMBER\"\n    },\n    \"webhook_url\": \"{{webhook_url}}\"\n}","options":{"raw":{"language":"json"}}},"url":"https://kyc-api.aadhaarkyc.io/api/v1/async/submit"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 07 May 2021 10:20:20 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"179"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"client_id\": \"aadhaar_validation_asfdshSJnOkrzMD\",\n        \"status\": \"pending\",\n        \"api_resp\": null\n    },\n    \"status_code\": 200,\n    \"success\": true,\n    \"message\": \"Success\",\n    \"message_code\": \"success\"\n}"}],"_postman_id":"a0551258-d6e9-4fc6-a74c-cf908139b45f"},{"name":"Submit Request without Webhook","event":[{"listen":"test","script":{"id":"35c8805b-0fd7-4ec8-b4e8-3336a49a245b","exec":["let jsonData = pm.response.json()\r","let token = jsonData.data.client_id\r","pm.environment.set(\"client_id\", token)\r","postman.setNextRequest(\"Submit Info via Text\")"],"type":"text/javascript"}}],"id":"deebf91b-045e-41a9-991c-633a5005ce9d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"aadhaar_validation\",\n    \"body\": {\n        \"id_number\":  \"GIVEN_AADHAAR_NUMBER\"\n    }\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/async/submit","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","async","submit"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"cebd1ec7-479b-4c18-bc12-fc7a246be419","name":"Submit Request without Webhook","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"aadhaar_validation\",\n    \"body\": {\n        \"id_number\":  \"GIVEN_AADHAAR_NUMBER\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://kyc-api.aadhaarkyc.io/api/v1/async/submit"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 07 May 2021 10:20:20 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"179"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"client_id\": \"aadhaar_validation_asfdshSJnOkrzMD\",\n        \"status\": \"pending\",\n        \"api_resp\": null\n    },\n    \"status_code\": 200,\n    \"success\": true,\n    \"message\": \"Success\",\n    \"message_code\": \"success\"\n}"}],"_postman_id":"deebf91b-045e-41a9-991c-633a5005ce9d"},{"name":"Get Status","id":"9f1f10af-69e1-4e16-b6ff-4066f92debda","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://kyc-api.aadhaarkyc.io/api/v1/async/status/GENERATED_CLIENT_ID","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","async","status","GENERATED_CLIENT_ID"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"182afa05-6f1d-443c-ad69-2ce8107efedf","name":"Get Status","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://kyc-api.aadhaarkyc.io/api/v1/async/status/GENERATED_CLIENT_ID"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 07 May 2021 10:21:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"472"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"client_id\": \"async_zyHraBgkBKOyyYciilNx\",\n        \"status\": \"success\",\n        \"api_resp\": {\n            \"data\": {\n                \"client_id\": \"aadhaar_validation_asfdshSJnOkrzMD\",\n                \"age_range\": \"20-30\",\n                \"aadhaar_number\": \"123456789010\",\n                \"state\": \"Delhi\",\n                \"gender\": \"M\",\n                \"last_digits\": \"123\",\n                \"is_mobile\": true,\n                \"less_info\": false\n            },\n            \"status_code\": 200,\n            \"success\": true,\n            \"message\": null,\n            \"message_code\": \"success\"\n        }\n    },\n    \"status_code\": 200,\n    \"success\": true,\n    \"message\": \"Success\",\n    \"message_code\": \"success\"\n}"}],"_postman_id":"9f1f10af-69e1-4e16-b6ff-4066f92debda"}],"id":"8e29475c-3fba-4bbe-a5b9-74d379988429","_postman_id":"8e29475c-3fba-4bbe-a5b9-74d379988429","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"WB Certificate","item":[{"name":"WB Certificate","event":[{"listen":"test","script":{"id":"7ed96f3b-acf8-4db2-8659-4d64abe44b95","exec":["let jsonData = pm.response.json()","let token = jsonData.data.client_id","pm.environment.set(\"client_id\", token)","postman.setNextRequest(\"Submit Info via Text\")"],"type":"text/javascript"}}],"id":"b7c7a92c-84ff-4d03-b58d-97a74db84134","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"certificate_number\": \"WB0702OBC201916320\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/wb-certificate/","description":"<p>Endpoint to get PAN details of a new client using PAN Number.</p>\n<p><strong>Request Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id_number</td>\n<td>String</td>\n<td>ID Number of the ID to run check on.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Resonpse Body</strong></p>\n<p>Refer to <a href=\"#pan-model\">PAN Object Model</a> above.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","wb-certificate",""],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"10567cb3-6bf4-41bd-b6fb-2e816628fadf","name":"WB Certificate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"certificate_number\": \"WB0702OBC201916320\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/wb-certificate/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 26 May 2021 14:44:40 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"428"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"client_id\": \"wb_certificate_dyRAjARxXRsguHnsNYjl\",\n        \"certificate_number\": \"WB0702OBC201916320\",\n        \"issued_by\": null,\n        \"date_of_issue\": \"2019-11-11\",\n        \"full_name\": \"SAIMUDDIN SK\",\n        \"address\": \"CHANDRAPARA, PO : PURAPARA, PS : SUTI, Murshidabad, WEST BENGAL\",\n        \"father_name\": \"RABIUL\",\n        \"gender\": \"Male\",\n        \"caste\": \"OBC-A ( SHERSHABADIA )\"\n    },\n    \"status_code\": 200,\n    \"success\": true,\n    \"message\": \"Success\",\n    \"message_code\": \"success\"\n}"}],"_postman_id":"b7c7a92c-84ff-4d03-b58d-97a74db84134"}],"id":"a641db6d-0536-4520-b75e-a7d037612bce","description":"<p>Request Group for TAN related requests.</p>\n","event":[{"listen":"prerequest","script":{"id":"460c562b-62bb-48c6-9f45-02cd187f9664","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d13c0482-42b8-4537-bc99-079fc3e8f4bb","type":"text/javascript","exec":[""]}}],"_postman_id":"a641db6d-0536-4520-b75e-a7d037612bce","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"Disability","item":[{"name":"Disability Certificate","event":[{"listen":"test","script":{"id":"50f825f3-e78a-4eea-a765-78d2df151f53","exec":["let jsonData = pm.response.json()","let token = jsonData.data.client_id","pm.environment.set(\"client_id\", token)","postman.setNextRequest(\"Submit Info via Text\")"],"type":"text/javascript"}}],"id":"f3821968-3488-4d48-8a02-e15a870d72da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"disability_udid\": \"MP1710619720001711\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/disability/","description":"<p>Endpoint to get PAN details of a new client using PAN Number.</p>\n<p><strong>Request Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id_number</td>\n<td>String</td>\n<td>ID Number of the ID to run check on.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Resonpse Body</strong></p>\n<p>Refer to <a href=\"#pan-model\">PAN Object Model</a> above.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","disability",""],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"20ade088-cd97-477c-b853-b2414011c6ce","name":"Disability Certificate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"disability_udid\": \"MP1710619720001711\"\n}","options":{"raw":{"language":"json"}}},"url":"https://kyc-api.aadhaarkyc.io/api/v1/disability/"},"status":"Success","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Wed, 26 May 2021 15:06:07 GMT"},{"key":"Content-Type","value":"text/html"},{"key":"Content-Length","value":"192"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"data\": {\r\n        \"client_id\": \"disability_id_dyRAjARxXRsguHnsNYjl\",\r\n        \"personal_details\": {\r\n            \"udid_number\": \"MP1710619720001711\",\r\n            \"enrolment_no :\": \"2317/00000/1609/5494111\",\r\n            \"name_of_applicant\": \"Sanjay  Chouhan\",\r\n            \"applicant_father_name\": \"Atmaram chouhan\",\r\n            \"applicant_mother_name\": \"Santosh bai chouhan\",\r\n            \"date_of_birth\": \"05/06/1972\",\r\n            \"gender\": \"Male\",\r\n            \"mark_of_identification\": \"Right leg disabled\",\r\n            \"category\": \"SC\",\r\n            \"blood_group\": \"O+\",\r\n            \"marital_status\": \"Married\",\r\n            \"relation_with_pwd\": \"\",\r\n            \"contact_no_guardian\": \"\",\r\n            \"application_status\": \"UDID Card Dispatched to PwD\",\r\n            \"age\": \"44 Year(s)\",\r\n            \"email_id\": \"\",\r\n            \"mobile_number \": \"9926018177\",\r\n            \"spouse_name\": \"Anita chouhan\",\r\n            \"name_of_guardian\": \"\",\r\n            \"caste_certificate\": \"image_base_64/ file_base_64\"\r\n        },\r\n        \"correspondance_addr\": {\r\n            \"address_line_1 \": \"House no. -18\",\r\n            \"Address_line_2\": \"Ward no. - 1\",\r\n            \"Address_line_3\": \"Pramilaganj\",\r\n            \"state\": \"Madhya Pradesh\",\r\n            \"city\": \"Alot\",\r\n            \"pincode\": \"457114\",\r\n            \"district\": \"Ratlam\",\r\n            \"village\": \"\",\r\n            \"nature_of_document_for_address_proof\": \"Aadhaar card\",\r\n            \"proof_of_corrospondance_addr\": \"image_base_64/ file_base_64\"\r\n        },\r\n        \"permanent_addr\": {\r\n            \"address_line_1 \": \"House no. -18\",\r\n            \"address_line_2\": \"Ward no. - 1\",\r\n            \"address_line_3\": \"Pramilaganj\",\r\n            \"state\": \"Madhya Pradesh\",\r\n            \"city\": \"Alot\",\r\n            \"district\": \"Ratlam\",\r\n            \"village\": \"\",\r\n            \"pincode\": \"457114\"\r\n        },\r\n        \"education_detail\": {\r\n            \"highest_qualification\": \"Higher Secondary\"\r\n        },\r\n        \"disability_details\": {\r\n            \"Do_you_have_disability_certificate\": \"No\",\r\n            \"disability_area\": \"\",\r\n            \"pension_card_number\": \"\",\r\n            \"disability_since\": \"1972\",\r\n            \"hospital\": \"\",\r\n            \"disability_type  \": \" Locomotor Disability\",\r\n            \"hospital_treating_disability\": \"\",\r\n            \"disability_due_to\": \"Accident\"\r\n        },\r\n        \"employment_details\": {\r\n            \"employed_or_unemployed \": \"Employed\",\r\n            \"bpl_apl\": \"APL\",\r\n            \"spouse_income\": \"Below 10000\",\r\n            \"occupation\": \"Private Jobs\",\r\n            \"personal_income\": \"From 10000 To 100000\"\r\n        },\r\n        \"identity_details\": {\r\n            \"identity_proof \": \"Aadhaar Card\",\r\n            \"tin\": \"\",\r\n            \"any_other_state\": \"Samagra State ID\",\r\n            \"identity_proof\": \"image_base_64/ file_base_64\",\r\n            \"adhaar_no\": \"406422732332\",\r\n        }\r\n    },\r\n    \"status_code\": 200,\r\n    \"success\": true,\r\n    \"message\": \"Success\",\r\n    \"message_code\": \"success\"\r\n}"}],"_postman_id":"f3821968-3488-4d48-8a02-e15a870d72da"}],"id":"94846ee9-065c-4023-8864-8d1573116eca","description":"<p>Request Group for TAN related requests.</p>\n","event":[{"listen":"prerequest","script":{"id":"069e3977-fe5e-450d-9d62-0b81d5665821","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"729bf10d-efff-4cfb-b69d-3dfcc8f5b3c9","type":"text/javascript","exec":[""]}}],"_postman_id":"94846ee9-065c-4023-8864-8d1573116eca","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"eSign","item":[{"name":"Initialize NSDL","event":[{"listen":"test","script":{"id":"52890bb8-99c9-41b1-b3f3-49db766653a8","exec":["let jsonData = pm.response.json()\r","let token = jsonData.data.client_id\r","pm.environment.set(\"client_id\", token)\r","pm.environment.set(\"esign_token\", jsonData.data.token)\r","postman.setNextRequest(\"Submit Info via Text\")"],"type":"text/javascript"}}],"id":"0cb9b2e3-5906-4114-8c97-3dc4ed6b5113","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"pdf_pre_uploaded\": false,\r\n    \"config\": {\r\n        \"accept_selfie\": true,\r\n        \"allow_selfie_upload\": true,\r\n        \"accept_virtual_sign\": true,\r\n        \"track_location\": true,\r\n        \"auth_mode\": \"1\",\r\n        \"reason\": \"Contract\",\r\n        \"positions\": {\r\n            \"1\": [\r\n                {\r\n                    \"x\": 10,\r\n                    \"y\": 20\r\n                }\r\n            ]\r\n            \r\n        }\r\n    },\r\n    \"prefill_options\": {\r\n        \"full_name\": \"Munna Bhaiya\",\r\n        \"mobile_number\": \"9876543210\",\r\n        \"user_email\": \"karankapoor229@gmail.com\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://kyc-api.aadhaarkyc.io/api/v1/esign/initialize","description":"<p>Request Body</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>pdf_pre_uploaded*</td>\n<td>Boolean</td>\n<td>If PDF is being uploaded by merchant.</td>\n</tr>\n<tr>\n<td>callback_url*</td>\n<td>String</td>\n<td>Callback URL after eSign is complete.</td>\n</tr>\n<tr>\n<td>config</td>\n<td>Object</td>\n<td>Config for eSign (see example).</td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li>Optional Field</li>\n</ul>\n<p>Auth Mode 1 - For Aadhaar OTP based eSign<br />Auth Mode 2 - For fingerprint based eSign</p>\n<p>Response Body</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>String</td>\n<td>Unique identifier of this object/ query.</td>\n</tr>\n<tr>\n<td>token</td>\n<td>String</td>\n<td>Token generated for use by SDK</td>\n</tr>\n<tr>\n<td>url</td>\n<td>String</td>\n<td>URL generated for use by SDK/ Customer.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","esign","initialize"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"7cf77248-0c00-4b54-927c-8725d34ac227","name":"Initialize","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"pdf_pre_uploaded\": false,\r\n    \"config\": {\r\n        \"auth_mode\": \"1\",\r\n        \"reason\": \"Contract\",\r\n        \"positions\": {\r\n            \"1\": [\r\n                {\r\n                    \"x\": 10,\r\n                    \"y\": 20\r\n                }\r\n            ],\r\n            \"2\": [\r\n                {\r\n                    \"x\": 0,\r\n                    \"y\": 0\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    \"prefill_options\": {\r\n        \"full_name\": \"Munna Bhaiya\",\r\n        \"mobile_number\": \"9876543210\",\r\n        \"user_email\": \"munna@gmail.com\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://kyc-api.aadhaarkyc.io/api/v1/esign/initialize"},"code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.ababtjtjnbaesergrtjnnfeW32rfWAFF1tgWs.UtugjhGuy567hjJHFGyi-m3JJn4-o\",\n        \"client_id\": \"esign_HLiwHZZxuUjZLqylzzvU\",\n        \"url\": \"https://esign-client.aadhaarkyc.io/?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.ababtjtjnbaesergrtjnnfeW32rfWAFF1tgWs.UtugjhGuy567hjJHFGyi-m3JJn4-o\"\n    },\n    \"message_code\": \"success\",\n    \"success\": true,\n    \"message\": \"User initialized successfully\",\n    \"status_code\": 200\n}"}],"_postman_id":"0cb9b2e3-5906-4114-8c97-3dc4ed6b5113"},{"name":"Initialize SureSign","event":[{"listen":"test","script":{"id":"7fffc983-98d7-467e-9109-7d87c51c0cb5","exec":["let jsonData = pm.response.json()\r","let token = jsonData.data.client_id\r","pm.environment.set(\"client_id\", token)\r","pm.environment.set(\"esign_token\", jsonData.data.token)\r","postman.setNextRequest(\"Submit Info via Text\")"],"type":"text/javascript"}}],"id":"44ede01b-9237-450b-9bd7-13c7826169cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"pdf_pre_uploaded\": false,\r\n    \"sign_type\": \"suresign\",\r\n    \"config\": {\r\n        \"auth_mode\": \"1\",\r\n        \"reason\": \"General- Agreement\"\r\n    },\r\n    \"prefill_options\": {\r\n        \"full_name\": \"Munna Bhaiya\",\r\n        \"mobile_number\": \"9876543210\",\r\n        \"user_email\": \"abc@gmail.com\"\r\n    },\r\n            \"positions\": {\r\n            \"1\": [\r\n                {\r\n                    \"x\": 10,\r\n                    \"y\": 20\r\n                }\r\n            ],\r\n            \"2\": [\r\n                {\r\n                    \"x\": 0,\r\n                    \"y\": 0\r\n                }\r\n            ]\r\n        }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://kyc-api.aadhaarkyc.io/api/v1/esign/initialize","description":"<p>Request Body</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>pdf_pre_uploaded*</td>\n<td>Boolean</td>\n<td>If PDF is being uploaded by merchant.</td>\n</tr>\n<tr>\n<td>callback_url*</td>\n<td>String</td>\n<td>Callback URL after eSign is complete.</td>\n</tr>\n<tr>\n<td>config</td>\n<td>Object</td>\n<td>Config for eSign (see example).</td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li>Optional Field</li>\n</ul>\n<p>Auth Mode 1 - For Aadhaar OTP based eSign\nAuth Mode 2 - For fingerprint based eSign</p>\n<p>Response Body</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>String</td>\n<td>Unique identifier of this object/ query.</td>\n</tr>\n<tr>\n<td>token</td>\n<td>String</td>\n<td>Token generated for use by SDK</td>\n</tr>\n<tr>\n<td>url</td>\n<td>String</td>\n<td>URL generated for use by SDK/ Customer.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","esign","initialize"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"f4b1cb71-6e71-4b50-8f1f-6f3d4e7d9f4d","name":"Initialize","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"pdf_pre_uploaded\": false,\r\n    \"sign_type\": \"suresign\",\r\n    \"config\": {\r\n        \"auth_mode\": \"1\",\r\n        \"reason\": \"General- Agreement\"\r\n    },\r\n    \"prefill_options\": {\r\n        \"full_name\": \"Munna Bhaiya\",\r\n        \"mobile_number\": \"9876543210\",\r\n        \"user_email\": \"abc@gmail.com\"\r\n    },\r\n            \"positions\": {\r\n            \"1\": [\r\n                {\r\n                    \"x\": 10,\r\n                    \"y\": 20\r\n                }\r\n            ],\r\n            \"2\": [\r\n                {\r\n                    \"x\": 0,\r\n                    \"y\": 0\r\n                }\r\n            ]\r\n        }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://kyc-api.aadhaarkyc.io/api/v1/esign/initialize"},"code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.ababtjtjnbaesergrtjnnfeW32rfWAFF1tgWs.UtugjhGuy567hjJHFGyi-m3JJn4-o\",\n        \"client_id\": \"esign_HLiwHZZxuUjZLqylzzvU\",\n        \"url\": \"https://esign-client.aadhaarkyc.io/?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.ababtjtjnbaesergrtjnnfeW32rfWAFF1tgWs.UtugjhGuy567hjJHFGyi-m3JJn4-o\"\n    },\n    \"message_code\": \"success\",\n    \"success\": true,\n    \"message\": \"User initialized successfully\",\n    \"status_code\": 200\n}"}],"_postman_id":"44ede01b-9237-450b-9bd7-13c7826169cf"},{"name":"Initialize HSM","event":[{"listen":"test","script":{"id":"5bad8f27-b4a1-4225-80d2-b349a3bf6860","exec":["let jsonData = pm.response.json()\r","let token = jsonData.data.client_id\r","pm.environment.set(\"client_id\", token)\r","pm.environment.set(\"esign_token\", jsonData.data.token)\r","postman.setNextRequest(\"Submit Info via Text\")"],"type":"text/javascript"}}],"id":"1a53d6dc-fac7-44d3-9259-bedd8733844f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"pdf_pre_uploaded\": false,\r\n    \"sign_type\": \"hsm\",\r\n    \"config\": {\r\n        \"auth_mode\": \"1\",\r\n        \"reason\": \"Contract\",\r\n        \"positions\": {\r\n            \"1\": [\r\n                {\r\n                    \"x\": 10,\r\n                    \"y\": 20\r\n                }\r\n            ],\r\n            \"2\": [\r\n                {\r\n                    \"x\": 0,\r\n                    \"y\": 0\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    \"prefill_options\": {\r\n        \"full_name\": \"Munna Bhaiya\",\r\n        \"mobile_number\": \"9876543210\",\r\n        \"user_email\": \"abc@gmail.com\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://kyc-api.aadhaarkyc.io/api/v1/esign/initialize","description":"<p>Request Body</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>pdf_pre_uploaded*</td>\n<td>Boolean</td>\n<td>If PDF is being uploaded by merchant.</td>\n</tr>\n<tr>\n<td>callback_url*</td>\n<td>String</td>\n<td>Callback URL after eSign is complete.</td>\n</tr>\n<tr>\n<td>config</td>\n<td>Object</td>\n<td>Config for eSign (see example).</td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li>Optional Field</li>\n</ul>\n<p>Auth Mode 1 - For Aadhaar OTP based eSign\nAuth Mode 2 - For fingerprint based eSign</p>\n<p>Response Body</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>String</td>\n<td>Unique identifier of this object/ query.</td>\n</tr>\n<tr>\n<td>token</td>\n<td>String</td>\n<td>Token generated for use by SDK</td>\n</tr>\n<tr>\n<td>url</td>\n<td>String</td>\n<td>URL generated for use by SDK/ Customer.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","esign","initialize"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"994fc66f-ea18-4b00-ba2e-7d80a640120d","name":"Initialize","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"pdf_pre_uploaded\": false,\r\n    \"sign_type\": \"hsm\",\r\n    \"config\": {\r\n        \"auth_mode\": \"1\",\r\n        \"reason\": \"Contract\",\r\n        \"positions\": {\r\n            \"1\": [\r\n                {\r\n                    \"x\": 10,\r\n                    \"y\": 20\r\n                }\r\n            ],\r\n            \"2\": [\r\n                {\r\n                    \"x\": 0,\r\n                    \"y\": 0\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    \"prefill_options\": {\r\n        \"full_name\": \"Munna Bhaiya\",\r\n        \"mobile_number\": \"9876543210\",\r\n        \"user_email\": \"abc@gmail.com\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://kyc-api.aadhaarkyc.io/api/v1/esign/initialize"},"code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.ababtjtjnbaesergrtjnnfeW32rfWAFF1tgWs.UtugjhGuy567hjJHFGyi-m3JJn4-o\",\n        \"client_id\": \"esign_HLiwHZZxuUjZLqylzzvU\",\n        \"url\": \"https://esign-client.aadhaarkyc.io/?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.ababtjtjnbaesergrtjnnfeW32rfWAFF1tgWs.UtugjhGuy567hjJHFGyi-m3JJn4-o\"\n    },\n    \"message_code\": \"success\",\n    \"success\": true,\n    \"message\": \"User initialized successfully\",\n    \"status_code\": 200\n}"}],"_postman_id":"1a53d6dc-fac7-44d3-9259-bedd8733844f"},{"name":"Get Upload Link","event":[{"listen":"test","script":{"id":"b7ea747c-b4c4-4b33-a238-3cb51c31d966","exec":["let jsonData = pm.response.json()\r","let fields = jsonData.data.fields\r","pm.environment.set(\"upload_url\", jsonData.data[\"url\"])\r","pm.environment.set(\"signature\", fields[\"x-amz-signature\"])\r","pm.environment.set(\"date\", fields[\"x-amz-date\"])\r","pm.environment.set(\"credentials\", fields[\"x-amz-credential\"])\r","pm.environment.set(\"policy\", fields[\"policy\"])\r","pm.environment.set(\"upload_key\", fields[\"key\"])\r","pm.environment.set(\"algorithm\", fields['x-amz-algorithm'])"],"type":"text/javascript"}}],"id":"c808ab25-bde3-4f97-b3cd-820efc728149","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"client_id\": \"GENERATED_CLIENT_ID\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://kyc-api.aadhaarkyc.io/api/v1/esign/get-upload-link","description":"<p>Endpoint to get eSign details of a client using client_id.</p>\n<p><strong>Request URL Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>String</td>\n<td>ID Number of the ID to run check on.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>link_generated</td>\n<td>Boolean</td>\n<td>Whether link has been generated or Not</td>\n</tr>\n<tr>\n<td>url</td>\n<td>String</td>\n<td>AWS URL to upload PDF</td>\n</tr>\n<tr>\n<td>fields</td>\n<td>Dict</td>\n<td>AWS S3 Download Settings</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","esign","get-upload-link"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"69b502bb-bf92-41a1-b4bd-ca6226769880","name":"Get Upload Link","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"client_id\": \"GENERATED_CLIENT_ID\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://kyc-api.aadhaarkyc.io/api/v1/esign/get-upload-link"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 13 Sep 2021 13:12:34 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"920"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"link_generated\": true,\n        \"url\": \"https://esign.s3.amazonaws.com/\",\n        \"fields\": {\n            \"key\": \"esign_axyXXyJxaohmpadfsadsfadsfadsga754.40323.pdf\",\n            \"x-amz-algorithm\": \"AWS4-HMAC-SHA256\",\n            \"x-amz-credential\": \"AKIAY5K3Qadfadsfadsgadsgadguest\",\n            \"x-amz-date\": \"20210913T131234Z\",\n            \"policy\": \"eyJleHBpcmF0aW9uIjogadsfasdfadsgadgaeyJ4LWFtei1kYXRladsfadsfaNFoifV19\",\n            \"x-amz-signature\": \"9fea3bf7bbc17dadsgshadhadgasdgadsf7321b1af27bd1392dfc08\"\n        }\n    },\n    \"status_code\": 200,\n    \"message_code\": \"success\",\n    \"message\": \"Link generated successfully\",\n    \"success\": true\n}"}],"_postman_id":"c808ab25-bde3-4f97-b3cd-820efc728149"},{"name":"Set Branding","event":[{"listen":"test","script":{"id":"62edc0ed-c3d0-4eb0-a704-1fcfbd5d56c5","exec":["let jsonData = pm.response.json()","let token = jsonData.data.client_id","pm.environment.set(\"client_id\", token)","pm.environment.set(\"esign_token\", jsonData.data.token)","postman.setNextRequest(\"Submit Info via Text\")"],"type":"text/javascript"}}],"id":"2b29c8b3-83a3-4ba6-aa48-62f52783cd66","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"brand_image_url\": \"https://random.io/wp-content/uploads/2019/09/2-layers@2x.png\",\r\n    \"brand_name\": \"Random\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://kyc-api.aadhaarkyc.io/api/v1/esign/set-branding","description":"<p>Request Body</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>pdf_pre_uploaded*</td>\n<td>Boolean</td>\n<td>If PDF is being uploaded by merchant.</td>\n</tr>\n<tr>\n<td>callback_url*</td>\n<td>String</td>\n<td>Callback URL after eSign is complete.</td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li>Optional Field</li>\n</ul>\n<p>Response Body</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>String</td>\n<td>Unique identifier of this object/ query.</td>\n</tr>\n<tr>\n<td>token</td>\n<td>String</td>\n<td>Token generated for use by SDK</td>\n</tr>\n<tr>\n<td>url</td>\n<td>String</td>\n<td>URL generated for use by SDK/ Customer.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","esign","set-branding"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"e3a69dda-5701-448f-b64a-1ab20dd9e7b8","name":"Set Branding","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"brand_image_url\": \"https://random.io/wp-content/uploads/2019/09/2-layers@2x.png\",\r\n    \"brand_name\": \"Random\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://kyc-api.aadhaarkyc.io/api/v1/esign/set-branding"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 13 Sep 2021 13:13:11 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"94"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {},\n    \"status_code\": 200,\n    \"message_code\": \"success\",\n    \"message\": null,\n    \"success\": true\n}"}],"_postman_id":"2b29c8b3-83a3-4ba6-aa48-62f52783cd66"},{"name":"Upload PDF","id":"bf76f360-fcd3-4426-9a9e-62366217e1eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"x-amz-signature","value":"{{signature}}","type":"text"},{"key":"x-amz-date","value":"{{date}}","type":"text"},{"key":"x-amz-credential","value":"{{credentials}}","type":"text"},{"key":"key","value":"{{upload_key}}","type":"text"},{"key":"policy","value":"{{policy}}","type":"text"},{"key":"x-amz-algorithm","value":"{{algorithm}}","type":"text"},{"key":"file","type":"file","src":"/C:/Users/karan/Desktop/ASP Audit Checklist v1.2.pdf"}]},"url":"{{upload_url}}","description":"<p>Pass the parameters as received in previous Get Upload Link Response</p>\n","urlObject":{"host":["{{upload_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bf76f360-fcd3-4426-9a9e-62366217e1eb"},{"name":"Get Signed Document","id":"e1c17704-2fd1-4b13-9687-50a8c52190b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://kyc-api.aadhaarkyc.io/api/v1/esign/get-signed-document/GENERATED_CLIENT_ID","description":"<p>Endpoint to get eSign details of a client using client_id.</p>\n<p><strong>Request URL Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>String</td>\n<td>ID Number of the ID to run check on.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>url</td>\n<td>String</td>\n<td>Get Signed Document download link.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","esign","get-signed-document","GENERATED_CLIENT_ID"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"72097f2c-f212-4711-82c6-a7eff150900b","name":"Get Signed Document","originalRequest":{"method":"GET","header":[],"url":"https://kyc-api.aadhaarkyc.io/api/v1/esign/get-signed-document/GENERATED_CLIENT_ID"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 13 Sep 2021 13:10:40 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"533"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"url\": \"https://esign.s3.amazonaws.com/esign_Cdtsfgsfdgsfbsfnsfnsfnsfbsf\"\n    },\n    \"status_code\": 200,\n    \"message_code\": \"success\",\n    \"message\": \"Download link generated successfully\",\n    \"success\": true\n}"}],"_postman_id":"e1c17704-2fd1-4b13-9687-50a8c52190b9"},{"name":"Get Audit Trail","id":"a6ec1f79-e32f-440b-bc74-0b5fc5dc9096","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://kyc-api.aadhaarkyc.io/api/v1/esign/audit-trail/GENERATED_CLIENT_ID","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","esign","audit-trail","GENERATED_CLIENT_ID"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"47c7b866-7239-4316-8645-39fb41f62b52","name":"Get Audit Trail","originalRequest":{"method":"GET","header":[],"url":"https://kyc-api.aadhaarkyc.io/api/v1/esign/audit-trail/GENERATED_CLIENT_ID"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 13 Sep 2021 13:11:28 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"524"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"url\": \"https://esign.s3.amazonaws.com/adsadbfdanafdbfdbfdsbfdsbsfdb\"\n    },\n    \"status_code\": 200,\n    \"message_code\": \"success\",\n    \"message\": \"Success\",\n    \"success\": true\n}"}],"_postman_id":"a6ec1f79-e32f-440b-bc74-0b5fc5dc9096"},{"name":"Get Status","id":"5446a249-1ffc-4d8f-8b17-ce8ba0def206","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://kyc-api.aadhaarkyc.io/api/v1/esign/status/GENERATED_CLIENT_ID","description":"<p>Possible Values for Status -</p>\n<ol>\n<li>client_intiated</li>\n<li>otp_sent</li>\n<li>otp_verified</li>\n<li>esign_started</li>\n<li>esign_completed</li>\n<li>esign_failed</li>\n</ol>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","esign","status","GENERATED_CLIENT_ID"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"e7b62df1-4620-4d24-938d-f0a05649bb02","name":"Get Status","originalRequest":{"method":"GET","header":[],"url":"https://kyc-api.aadhaarkyc.io/api/v1/esign/status/GENERATED_CLIENT_ID"},"code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"data\": {\r\n        \"client_id\": \"esign_HwEwRYRYjexlRMwvolkS\",\r\n        \"status\": \"esign_completed\"\r\n    },\r\n    \"status_code\": 200,\r\n    \"success\": true,\r\n    \"message\": \"Success\",\r\n    \"message_code\": \"success\"\r\n}"}],"_postman_id":"5446a249-1ffc-4d8f-8b17-ce8ba0def206"},{"name":"Get Report","id":"0370a628-85a8-43c1-bc10-2df009f51b2d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"categories\": [\"name_match\"]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://kyc-api.aadhaarkyc.io/api/v1/esign/report/GENERATED_CLIENT_ID","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","esign","report","GENERATED_CLIENT_ID"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"d14310a5-0a62-4553-98b2-eea9bef3a4f4","name":"Get Report","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"categories\": [\"name_match\"]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://kyc-api.aadhaarkyc.io/api/v1/esign/report"},"code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"client_id\": \"esign_HwEwRYRYjexlRMwvolkS\",\n        \"reports\": {\n            \"name_match\": {\n                \"name\": \"Harish\",\n                \"name_matched\": true,\n                \"name_match_score\": \"64\",\n                \"certificate_details\": {\n                    \"name\": \"Harish Singh\",\n                    \"country\": \"IN\",\n                    \"state\": \"Delhi\",\n                    \"pin_code\": \"110088\",\n                    \"aaadhar_last_four_digits\": \"1857\"\n                }\n            }\n        }\n    },\n    \"status_code\": 200,\n    \"success\": true,\n    \"message\": \"Success\",\n    \"message_code\": \"success\"\n}"}],"_postman_id":"0370a628-85a8-43c1-bc10-2df009f51b2d"}],"id":"d926b11b-972c-4a00-9e84-6475b7667356","description":"<ol>\n<li>Client initializes the SDK with the token</li>\n<li>After initializing, the user enters his name, email and mobile number</li>\n<li>An OTP is sent to the mobile number, which the user verifies in the next step</li>\n<li>After the OTP is verified, user uploads the document to be signed</li>\n<li>Then user is redirected to NSDL's webpage, where he enters his aadhaar number and verifies aadhaar OTP</li>\n<li>Then the user is redirected to the final page where he can download the signed document.</li>\n</ol>\n<p>Alternate Flow</p>\n<p>Pre requisite - Here the client has pre-uploaded the document which has be signed</p>\n<ol>\n<li>Client initializes the SDK with the token</li>\n<li>After initializing, the user enters his name, email and mobile number</li>\n<li>An OTP is sent to the mobile number, which the user verifies in the next step</li>\n<li>After the OTP is verified, the user is presented with the document, which he is going to sign.</li>\n<li>Then user is redirected to NSDL's webpage, where he enters his aadhaar number and verifies aadhaar OTP</li>\n<li>Then the user is redirected to the final page where he can download the signed document.</li>\n</ol>\n<p>Link to Android SDK Documentation - <a href=\"https://github.com/surepassio/aadhaar-esign-android-sdk-sample-app\">https://github.com/surepassio/aadhaar-esign-android-sdk-sample-app</a></p>\n<p>Link to Web SDK Documentation\n<a href=\"https://github.com/surepassio/aadhaar-esign-web-sdk\">https://github.com/surepassio/aadhaar-esign-web-sdk</a></p>\n","event":[{"listen":"prerequest","script":{"id":"6f596aaa-cf36-4ffc-8137-be62a9f9fdc8","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e653a5d6-32f0-4dbc-8dc8-5494ee13268c","type":"text/javascript","exec":[""]}}],"_postman_id":"d926b11b-972c-4a00-9e84-6475b7667356","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"Digilocker","item":[{"name":"Server Side","item":[{"name":"Meta API","item":[{"name":"Issuers List","id":"f35c2097-aebc-49cc-837e-ec192b4b9b72","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{domain}}/api/v1/digilocker/pull/issuers","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","digilocker","pull","issuers"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f35c2097-aebc-49cc-837e-ec192b4b9b72"},{"name":"Documents List","id":"f10fd036-2b0c-4215-ac33-50229644ca7f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{domain}}/api/v1/digilocker/pull/docs/{{org_id}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","digilocker","pull","docs","{{org_id}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f10fd036-2b0c-4215-ac33-50229644ca7f"},{"name":"Get parameter List","id":"b0bfb90b-f38b-4d79-a146-df3a448a9269","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{domain}}/api/v1/digilocker/pull/parameters/{{org_id}}/{{doc_type}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","digilocker","pull","parameters","{{org_id}}","{{doc_type}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b0bfb90b-f38b-4d79-a146-df3a448a9269"}],"id":"457c1d48-2caa-48ce-8ccc-9a8abc1113d5","_postman_id":"457c1d48-2caa-48ce-8ccc-9a8abc1113d5","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"Initialize","event":[{"listen":"test","script":{"id":"261e5576-a9d1-4355-abed-9d6678b70753","exec":["let jsonData = pm.response.json()","let token = jsonData.data.token","","let variables = pm.collectionVariables;","","variables.set(\"client_token\", token)","variables.set(\"digilocker_client_id\", jsonData.data.client_id)",""],"type":"text/javascript"}}],"id":"c92ee29c-c82d-4f13-88bb-cca9eeb1a788","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n   \"data\": {\n        \"prefill_options\": {\n            \"full_name\": \"Munna Bhaiya\",\n            \"mobile_number\": \"9876543210\",\n            \"user_email\": \"karankapoor229@gmail.com\"\n        },\n        \"verify_phone\": false,\n        \"verify_email\": true,\n        \"allow_selection\": false,\n        \"redirect_url\": \"https://digilocker-dot-neopt-capture.el.r.appspot.com/verified\",\n        \"documents_required\": [\n            {\n                \"type_of_document\": \"pan\",\n                \"must_have\": true\n            },\n            {\n                \"type_of_document\": \"aadhaar\",\n                \"must_have\": false\n            },\n            {\n                \"type_of_document\": \"rc\",\n                \"must_have\": false\n            },\n            {\n                \"type_of_document\": \"license\",\n                \"must_have\": false\n            }\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{domain}}/api/v1/digilocker/initialize","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","digilocker","initialize"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c92ee29c-c82d-4f13-88bb-cca9eeb1a788"},{"name":"Get Status","id":"476dc807-ca94-4e4f-b848-6ccfa2618638","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{domain}}/api/v1/digilocker/status/{{digilocker_client_id}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","digilocker","status","{{digilocker_client_id}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"476dc807-ca94-4e4f-b848-6ccfa2618638"},{"name":"Download Document","id":"91b43c48-8096-4318-b91e-5a15440e4f0b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{domain}}/api/v1/digilocker/download-document/{{digilocker_client_id}}/{{digi_file_id_0}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","digilocker","download-document","{{digilocker_client_id}}","{{digi_file_id_0}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"91b43c48-8096-4318-b91e-5a15440e4f0b"}],"id":"ad138bc7-07a1-474a-8114-137b0d603be6","event":[{"listen":"prerequest","script":{"id":"975e5d84-2ccd-419c-8338-f64c25ff0e2d","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"8b1d82a7-e917-4588-9267-6ff526a91833","type":"text/javascript","exec":[""]}}],"_postman_id":"ad138bc7-07a1-474a-8114-137b0d603be6","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}}],"id":"f60f102c-c9c4-4229-a30d-0d4abda52db2","_postman_id":"f60f102c-c9c4-4229-a30d-0d4abda52db2","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"Liveness SDK","item":[{"name":"Init","event":[{"listen":"test","script":{"id":"fc8c7744-24dc-4f07-8d65-9c8d77e578e7","exec":["let jsonData = pm.response.json()\r","let token = jsonData.data.client_id\r","let auth_token = jsonData.data.token\r","pm.environment.set(\"client_id\", token)\r","pm.environment.set(\"liveness_token\", auth_token)"],"type":"text/javascript"}}],"id":"f5507026-e482-4456-a208-291b92d6d510","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"eye_blink\": true,\r\n    \"head_movement_attempts\": 4,\r\n    \"frame_size\": \"medium\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://kyc-api.aadhaarkyc.io/api/v1/liveness-sdk/init","description":"<p><em>Input Parameters</em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eye_blink</td>\n<td>Boolean</td>\n<td>Eye blink check to be done or not. Default-False</td>\n</tr>\n<tr>\n<td>assist_voice</td>\n<td>Boolean</td>\n<td>Voice assistance on or not. Default-False</td>\n</tr>\n<tr>\n<td>head_movement_attempts</td>\n<td>Int</td>\n<td>Number of attempts to be allowed for head movement. Default-4</td>\n</tr>\n<tr>\n<td>frame_size</td>\n<td>Enum</td>\n<td>Possible values - small, medium, large. Default-medium</td>\n</tr>\n<tr>\n<td>reference_id</td>\n<td>String</td>\n<td>Reference ID. Default is empty string.</td>\n</tr>\n<tr>\n<td>token_expiry</td>\n<td>Int</td>\n<td>Token expiry in minutes. Default is 15</td>\n</tr>\n<tr>\n<td>step_duration</td>\n<td>Int</td>\n<td>Step duration in milliseconds. Default is 15000</td>\n</tr>\n<tr>\n<td>video_link_expiry</td>\n<td>Int</td>\n<td>Video link expiry in seconds. Default is 900</td>\n</tr>\n<tr>\n<td>disable_audio</td>\n<td>Boolean</td>\n<td>Flag to disable audio recording. Default-False</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","liveness-sdk","init"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"1c308277-30a8-4052-aa80-60b75a0883b7","name":"Init","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"eye_blink\": true,\r\n    \"assist_voice\": true,\r\n    \"head_movement_attempts\": 4,\r\n    \"frame_size\": \"medium\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://kyc-api.aadhaarkyc.io/api/v1/liveness-sdk/init"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 26 Jul 2021 15:28:51 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"580"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"client_id\": \"liveness_sdk_onadfasvadbnadtUbTANnMbBxZ\",\n        \"token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJmcmVzaCI6ZmFsc2UsImlhdCI6MTadfasdfadsgsadcadsgasvsagahrnyfjsfbdfdbavarvaS_M\"\n    },\n    \"status_code\": 200,\n    \"success\": true,\n    \"message\": null,\n    \"message_code\": \"success\"\n}"}],"_postman_id":"f5507026-e482-4456-a208-291b92d6d510"},{"name":"Get Report","event":[{"listen":"test","script":{"id":"4db87d00-d231-45c4-b757-4684ce7d5c62","exec":[""],"type":"text/javascript"}}],"id":"ae897207-d213-4b3d-b2f6-c865006b2740","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"GENERATED_CLIENT_ID\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://kyc-api.aadhaarkyc.io/api/v1/liveness-sdk/get-report","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","liveness-sdk","get-report"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"f9d6b560-ffcf-4c90-8810-224a45b156e8","name":"Get Report","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"GENERATED_CLIENT_ID\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://kyc-api.aadhaarkyc.io/api/v1/liveness-sdk/get-report"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 26 Jul 2021 15:29:34 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"895"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"client_id\": \"liveness_sdk_onCIadgagadsNnMbBxZ\",\n        \"video_link\": \"https://link-to-video.com\",\n        \"verification_status\": \"completed\",\n        \"video_start_time\": \"1623934721\",\n        \"eye_blink_status\": true,\n        \"latitude\": \"\",\n        \"movement_detection_time\": \"1623934725\",\n        \"movement_detection_status\": true,\n        \"eye_blink_time\": \"1623934728\",\n        \"face_detection_status\": true,\n        \"face_detection_time\": \"1623934721\",\n        \"video_end_time\": \"1623934737\",\n        \"longitude\": \"\"\n    },\n    \"status_code\": 200,\n    \"success\": true,\n    \"message\": null,\n    \"message_code\": \"success\"\n}"}],"_postman_id":"ae897207-d213-4b3d-b2f6-c865006b2740"}],"id":"d79a940f-7017-4a3a-ba52-c6acefe8b698","_postman_id":"d79a940f-7017-4a3a-ba52-c6acefe8b698","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"TAN","item":[{"name":"TAN","event":[{"listen":"test","script":{"id":"647ae930-a35f-4798-9042-537d55218d39","exec":["let jsonData = pm.response.json()","let token = jsonData.data.client_id","pm.environment.set(\"client_id\", token)","postman.setNextRequest(\"Submit Info via Text\")"],"type":"text/javascript"}}],"id":"1aad49a4-e48b-4d94-8d11-ae8482ba0308","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"id_number\": \"DELS77893E\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/tan/","description":"<p>Endpoint to get PAN details of a new client using PAN Number.</p>\n<p><strong>Request Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id_number</td>\n<td>String</td>\n<td>ID Number of the ID to run check on.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Resonpse Body</strong></p>\n<p>Refer to <a href=\"#pan-model\">PAN Object Model</a> above.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","tan",""],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"d151c3c5-ce79-46a0-a39b-af57e367b5af","name":"TAN","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"id_number\": \"DELS77893E\"\n}","options":{"raw":{"language":"json"}}},"url":"https://kyc-api.aadhaarkyc.io/api/v1/tan/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 02 Aug 2021 08:20:31 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"203"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"client_id\": \"tan_jfybDnLzVSyIOmnDebYe\",\n        \"tan\": \"DELS12343E\",\n        \"name\": \"TECHNOLOGIES PRIVATE LIMITED\"\n    },\n    \"status_code\": 200,\n    \"success\": true,\n    \"message\": null,\n    \"message_code\": \"success\"\n}"}],"_postman_id":"1aad49a4-e48b-4d94-8d11-ae8482ba0308"}],"id":"2506878f-e066-4e19-b3a3-a6ae4d80d860","description":"<p>Request Group for TAN related requests.</p>\n","event":[{"listen":"prerequest","script":{"id":"d5aa45aa-02d6-4eea-bf9b-ac9f1ef34590","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"5a745655-6fa8-4ab9-902b-01254ee513e3","type":"text/javascript","exec":[""]}}],"_postman_id":"2506878f-e066-4e19-b3a3-a6ae4d80d860","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"ITR Compliance Check","item":[{"name":"ITR Compliance Check","event":[{"listen":"prerequest","script":{"id":"7ad624ea-7e9e-43fb-a36c-184575d7dda8","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"d056bb09-e500-41e0-b89f-7ece3327cde9","exec":["let jsonData = pm.response.json()\r","let token = jsonData.data.client_id\r","pm.environment.set(\"client_id\", token)\r","postman.setNextRequest(\"Submit Info via Text\")"],"type":"text/javascript"}}],"id":"b3b9d83d-7c73-42b3-9807-ee2d944e0e5a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"pan_number\": \"GIVEN_PAN_NUMBER\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://kyc-api.aadhaarkyc.io/api/v1/itr/itr-compliance-check","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","itr","itr-compliance-check"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"b104d413-7242-4229-a355-99ad829f8f39","name":"ITR Compliance Check","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"pan_number\": \"AAAAA1111A\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://kyc-api.aadhaarkyc.io/api/v1/itr/itr-compliance-check"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 06 Aug 2021 07:44:45 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"315"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"client_id\": \"itr_compliance_tAcpybVYMhurqhBrTSvt\",\n        \"pan_number\": \"AAAAA1111A\",\n        \"compliant\": true,\n        \"pan_allotment_date\": \"1900-01-01\",\n        \"masked_name\": \"AKXXXA AXXXXA\",\n        \"pan_aadhaar_linked\": \"linked\",\n        \"valid_pan\": true\n    },\n    \"status_code\": 200,\n    \"success\": true,\n    \"message\": \"Success\",\n    \"message_code\": \"success\"\n}"}],"_postman_id":"b3b9d83d-7c73-42b3-9807-ee2d944e0e5a"}],"id":"567fd093-febc-41f6-85c3-a1a5eafb94f6","event":[{"listen":"prerequest","script":{"id":"65781e06-093e-4aaa-bf75-405179d0a68a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"3ff64a09-f888-4486-ac41-780e25a2aed0","type":"text/javascript","exec":[""]}}],"_postman_id":"567fd093-febc-41f6-85c3-a1a5eafb94f6","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"Credit Score","item":[{"name":"Generate OTP","id":"fabcb036-a9cc-487d-a487-ce91ab6c89ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"mobile\": \"9999999999\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/credit-report/send-otp","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","credit-report","send-otp"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"fabcb036-a9cc-487d-a487-ce91ab6c89ba"},{"name":"Fetch Report","id":"31ea9c78-c68a-4bde-bffe-013ff855a26a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"client_id\": \"{{credit_report_client_id}}\",\n    \"full_name\": \"Honey Singh\",\n    \"pan\": \"ABCDE1234F\",\n    \"otp\": \"1425\",\n    \"dob\": \"1998-09-25\",\n    \"pin_code\": \"110099\",\n    \"address_line_1\": \"\",\n    \"address_line_2\": \"\",\n    \"city\": \"\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/credit-report/report","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","credit-report","report"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"31ea9c78-c68a-4bde-bffe-013ff855a26a"}],"id":"0dbe7b29-bfdf-4555-adae-994bfc609377","_postman_id":"0dbe7b29-bfdf-4555-adae-994bfc609377","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}},{"name":"MCA Download Doc","item":[{"name":"Create Order","id":"f1790c04-d46d-4d11-b7cc-1839285dfb9f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"entity_id\": \"U72900MH2017PTC294100\"\n}"},"url":"https://kyc-api.aadhaarkyc.io/api/v1/mca-api/create-order","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","mca-api","create-order"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"69ce3d8c-fae7-4a2e-9754-6b038b11393d","name":"Create Order","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"entity_id\": \"U72900MH2017PTC294100\"\n}","options":{"raw":{"language":"json"}}},"url":"https://kyc-api.aadhaarkyc.io/api/v1/mca-api/create-order"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Thu, 30 Sep 2021 10:56:53 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"149"},{"key":"Connection","value":"keep-alive"},{"key":"X-Client-Email","value":"admin@surepass.io"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"client_id\": \"mca_ampKghRzCzyrLnamvfSn\",\n        \"entity_id\": \"U72900MH2017PTC294100\",\n        \"entity_type\": \"company\"\n    },\n    \"status_code\": 200,\n    \"success\": true,\n    \"message\": \"Success\",\n    \"message_code\": \"success\"\n}"}],"_postman_id":"f1790c04-d46d-4d11-b7cc-1839285dfb9f"},{"name":"Get Status","id":"47a74d3d-d5a7-4c80-82b5-0993ec8f8e99","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://kyc-api.aadhaarkyc.io/api/v1/mca-api/status/mca_KHwqgnnunXmghCqcTmbY","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","mca-api","status","mca_KHwqgnnunXmghCqcTmbY"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"885cca2d-3704-41d7-87b9-f12a2446517a","name":"Get Status","originalRequest":{"method":"GET","header":[],"url":"https://kyc-api.aadhaarkyc.io/api/v1/mca-api/status/mca_KHwqgnnunXmghCqcTmbY"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 27 Sep 2021 07:01:06 GMT"},{"key":"Content-Type","value":"text/html"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"client_id\": \"mca_ampKghRzCzyrLnamvfSn\",\n        \"entity_id\": \"U72900MH2017PT123456\",\n        \"entity_type\": \"company\",\n        \"entity_name\": \"TECH SOLUTIONS PRIVATE LIMITED\",\n        \"credentials_provided\": false,\n        \"status\": \"completed\",\n        \"error\": null,\n        \"error_description\": null,\n        \"mca_payment\": true,\n        \"documents\": [\n            {\n                \"document_id\": \"edcefcd7-b26e-4bda-9374-0fbef0758a34\",\n                \"document_name\": \"2017/04/20 CERTIFICATE OF INCORPORATION-20170420\",\n                \"category\": \"Certificates\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Certificates/%5B20-04-2017%5D_CERTIFICATE_OF_INCORPORATION-20170420_0.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=fcf754f5805106f15ca67fab2b131790ae3b203861b3c8ca9a38b499654de6ff\"\n            },\n            {\n                \"document_id\": \"c41c67d9-e430-4747-a7a8-e1b95d1a7a49\",\n                \"document_name\": \"2019/04/29 Declaration of the appointee director, Managing director, in Form No. DIR-2;-29042019\",\n                \"category\": \"Change in Directors\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Change%20in%20Directors/%5B29-04-2019%5D_Declaration_of_the_appointee_director%2C_Managing_director%2C_in_Form_No._DIR-2%3B-29042019_0.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=a7c560983379d687750b26630c093b34fa7536141c8905f153a552c44213cd16\"\n            },\n            {\n                \"document_id\": \"79927e0d-a2d1-4d09-b7dd-b444f3c2d48b\",\n                \"document_name\": \"2019/04/29 Form DIR-12-29042019_signed\",\n                \"category\": \"Change in Directors\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Change%20in%20Directors/%5B29-04-2019%5D_Form_DIR-12-29042019_signed_1.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=4878d2d871b27b74d1100668fa92dd54c3b74ac053cf3d6ca02ebd9ac7b243f2\"\n            },\n            {\n                \"document_id\": \"f66398ef-e641-40eb-beba-98c026b1f236\",\n                \"document_name\": \"2019/04/29 Form DIR-12-29042019_signed\",\n                \"category\": \"Change in Directors\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Change%20in%20Directors/%5B29-04-2019%5D_Form_DIR-12-29042019_signed_2.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=c0e5e8e9288f9e6f3467d08b00e82d150980fad8586aafaa5b1dfd1b66a28a44\"\n            },\n            {\n                \"document_id\": \"5c532b67-0b14-47fa-a92f-f6cee58c3db8\",\n                \"document_name\": \"2019/04/29 Interest in other entities;-29042019\",\n                \"category\": \"Change in Directors\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Change%20in%20Directors/%5B29-04-2019%5D_Interest_in_other_entities%3B-29042019_3.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=ed7a4be6b390bad155f6553b40248782051f9ccbbc863c97c728f2489a14e434\"\n            },\n            {\n                \"document_id\": \"9b475a1a-5e34-4d75-8724-02e0752c24b1\",\n                \"document_name\": \"2019/04/29 Optional Attachment-(1)-29042019\",\n                \"category\": \"Change in Directors\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Change%20in%20Directors/%5B29-04-2019%5D_Optional_Attachment-%281%29-29042019_4.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=9d49689f4f96010b488275a23d3fe3141c08df0950be5179574495ae99abe46b\"\n            },\n            {\n                \"document_id\": \"5ec40b7f-2e52-4b66-a105-24d88bc7b2f2\",\n                \"document_name\": \"2019/04/29 Optional Attachment-(1)-29042019\",\n                \"category\": \"Change in Directors\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Change%20in%20Directors/%5B29-04-2019%5D_Optional_Attachment-%281%29-29042019_5.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=4d558415eb5541525440485c0c9eb284e16a27acaff25a390d2acf3e2ad5b073\"\n            },\n            {\n                \"document_id\": \"f6a3036a-5a90-42d6-8058-ef0596a39033\",\n                \"document_name\": \"2019/04/29 Optional Attachment-(2)-29042019\",\n                \"category\": \"Change in Directors\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Change%20in%20Directors/%5B29-04-2019%5D_Optional_Attachment-%282%29-29042019_6.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=1adfdac0abb037a0908746116704524a554448af3fde52d539df22f0ebe43e83\"\n            },\n            {\n                \"document_id\": \"6eacba99-e8e2-4b32-b786-a0766688783c\",\n                \"document_name\": \"2018/11/27 Form DIR-12-27112018_signed\",\n                \"category\": \"Change in Directors\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Change%20in%20Directors/%5B27-11-2018%5D_Form_DIR-12-27112018_signed_7.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=79398e401a7703c624ccc7fa05d7ed321f2caacc7c516dbdb34c7c15171a15bc\"\n            },\n            {\n                \"document_id\": \"efd00afc-24ee-41a8-a2d1-e284d6ba45ab\",\n                \"document_name\": \"2018/11/27 Optional Attachment-(1)-27112018\",\n                \"category\": \"Change in Directors\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Change%20in%20Directors/%5B27-11-2018%5D_Optional_Attachment-%281%29-27112018_8.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=f4ca76d4e3463c0206e2b21cf9e77753fd58927335b46cc17f512a418417e10c\"\n            },\n            {\n                \"document_id\": \"6380be12-432b-41c9-a153-af91a6afcb3d\",\n                \"document_name\": \"2018/10/27 Declaration of the appointee director, Managing director, in Form No. DIR-2;-27102018\",\n                \"category\": \"Change in Directors\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Change%20in%20Directors/%5B27-10-2018%5D_Declaration_of_the_appointee_director%2C_Managing_director%2C_in_Form_No._DIR-2%3B-27102018_9.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=46e3d13bc71937720c42891be8a5628161ddba5a9d80658a611a1a92d436dc6d\"\n            },\n            {\n                \"document_id\": \"724a1d14-67d6-4a0c-a6c0-e8047d0176ac\",\n                \"document_name\": \"2018/10/27 Evidence of cessation;-27102018\",\n                \"category\": \"Change in Directors\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Change%20in%20Directors/%5B27-10-2018%5D_Evidence_of_cessation%3B-27102018_10.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=a8f25ed2b3cab0af38af4afe6d96d0c73cfd520e397d1dc8ebbd400b46b4f85d\"\n            },\n            {\n                \"document_id\": \"03851437-267d-4ef9-b4ca-e88e735795cf\",\n                \"document_name\": \"2018/10/27 Form DIR-12-27102018_signed\",\n                \"category\": \"Change in Directors\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Change%20in%20Directors/%5B27-10-2018%5D_Form_DIR-12-27102018_signed_11.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=aac646ac1f12ff37f6c6ab097c970064cc364ee44097cc07995b90dcf9b269a0\"\n            },\n            {\n                \"document_id\": \"a5674ff4-ed27-46e7-a7ba-840970779450\",\n                \"document_name\": \"2018/10/27 Form DIR-12-27102018_signed\",\n                \"category\": \"Change in Directors\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Change%20in%20Directors/%5B27-10-2018%5D_Form_DIR-12-27102018_signed_12.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=04b173aaf4931760824fbc2cbe2cfc7362698c3a40ce0bf1ecd16961209289af\"\n            },\n            {\n                \"document_id\": \"d5be1160-7769-4be7-9abe-da561ea8f94e\",\n                \"document_name\": \"2018/10/27 Notice of resignation;-27102018\",\n                \"category\": \"Change in Directors\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Change%20in%20Directors/%5B27-10-2018%5D_Notice_of_resignation%3B-27102018_13.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=b24884900aa8463e7bc3e61ed967f8456312d716388978514f968983a6867a2b\"\n            },\n            {\n                \"document_id\": \"55287565-88b9-4f94-aee2-a37a107fa250\",\n                \"document_name\": \"2018/10/27 Optional Attachment-(1)-27102018\",\n                \"category\": \"Change in Directors\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Change%20in%20Directors/%5B27-10-2018%5D_Optional_Attachment-%281%29-27102018_14.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=2b0413dba413df0f8d5cbb51833c3714a78db7c5137f0bddab95d0f1181cb060\"\n            },\n            {\n                \"document_id\": \"071711fe-8232-4e9c-8c22-a803b485dff3\",\n                \"document_name\": \"2018/10/27 Optional Attachment-(1)-27102018\",\n                \"category\": \"Change in Directors\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Change%20in%20Directors/%5B27-10-2018%5D_Optional_Attachment-%281%29-27102018_15.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=d10e30b5a5539b33aaa2daaefcae46d538a033344c292561f00b8fef73fa2a52\"\n            },\n            {\n                \"document_id\": \"9d081db0-224a-49ce-9019-d80d0a6da15d\",\n                \"document_name\": \"2018/10/27 Optional Attachment-(2)-27102018\",\n                \"category\": \"Change in Directors\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Change%20in%20Directors/%5B27-10-2018%5D_Optional_Attachment-%282%29-27102018_16.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=0eafab604b61c7d2327cf1cbd6bbc8c373db5c197ccee029002c7b969b0c71cd\"\n            },\n            {\n                \"document_id\": \"01b2a1e3-c3a4-4642-96b0-423f77f1d6c5\",\n                \"document_name\": \"2017/04/20 Form SPICe AOA (INC-34)-20042017\",\n                \"category\": \"Incorporation Documents\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Incorporation%20Documents/%5B20-04-2017%5D_Form_SPICe_AOA_%28INC-34%29-20042017_0.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=0ee93bc6753f2906f140df04ca5e515732ae06a1b03421aea472aca3a094d81e\"\n            },\n            {\n                \"document_id\": \"26d6de8a-dc49-4357-bc2f-1e2c9ec8051c\",\n                \"document_name\": \"2017/04/20 Form SPICe MOA (INC-33)-20042017\",\n                \"category\": \"Incorporation Documents\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Incorporation%20Documents/%5B20-04-2017%5D_Form_SPICe_MOA_%28INC-33%29-20042017_1.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=9ff10f0952ba1dff655b295017c937f5f4bd7dc3dac29eb57b213b4bfcd08767\"\n            },\n            {\n                \"document_id\": \"28620bad-d772-4e74-b30e-7b874b4fd9d6\",\n                \"document_name\": \"2017/04/12 Form SPICe AOA (INC-34)-12042017\",\n                \"category\": \"Incorporation Documents\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Incorporation%20Documents/%5B12-04-2017%5D_Form_SPICe_AOA_%28INC-34%29-12042017_2.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=ff38afdc70e752ad96e986c8a2dd6763759c376b7f7a14db14b35202faada5fa\"\n            },\n            {\n                \"document_id\": \"9cfc70bf-c993-406c-b8c0-7a196bd6d073\",\n                \"document_name\": \"2017/04/12 Form SPICe MOA (INC-33)-12042017\",\n                \"category\": \"Incorporation Documents\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Incorporation%20Documents/%5B12-04-2017%5D_Form_SPICe_MOA_%28INC-33%29-12042017_3.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=fc4da838562c40df312cf396bdf12a95cbbedda9dce82d4426c4213df339c524\"\n            },\n            {\n                \"document_id\": \"f3cc36df-a688-4a6a-a502-80133bb6051f\",\n                \"document_name\": \"2017/04/01 Form SPICe AOA (INC-34)-01042017\",\n                \"category\": \"Incorporation Documents\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Incorporation%20Documents/%5B01-04-2017%5D_Form_SPICe_AOA_%28INC-34%29-01042017_4.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=0a2c182604750fb495ee0a28d064071acdb83f523f4e67b053dd38afe15a4a57\"\n            },\n            {\n                \"document_id\": \"372a9026-fa86-4c3f-b072-a3bcdcec3806\",\n                \"document_name\": \"2017/04/01 Form SPICe MOA (INC-33)-01042017\",\n                \"category\": \"Incorporation Documents\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Incorporation%20Documents/%5B01-04-2017%5D_Form_SPICe_MOA_%28INC-33%29-01042017_5.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=f04f58b265417a4c1c84c1fc779e64f65ed506dbb340a2c4356dba9cb0cf4692\"\n            },\n            {\n                \"document_id\": \"3238f5d5-7a28-4be2-b714-7a2e63e2e1f5\",\n                \"document_name\": \"2017/03/31 Form SPICe AOA (INC-34)-31032017\",\n                \"category\": \"Incorporation Documents\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Incorporation%20Documents/%5B31-03-2017%5D_Form_SPICe_AOA_%28INC-34%29-31032017_6.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=938fd30c22639219e0711474f1f846896a86dc2e4344141b8245733a902d2558\"\n            },\n            {\n                \"document_id\": \"533a4961-f6af-4e3b-9d82-c4ea1efdd3d6\",\n                \"document_name\": \"2017/03/31 Form SPICe MOA (INC-33)-31032017\",\n                \"category\": \"Incorporation Documents\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Incorporation%20Documents/%5B31-03-2017%5D_Form_SPICe_MOA_%28INC-33%29-31032017_7.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=cc0ace282c986d9f0d4baf9c817089af19bb5514d5abfdda65ebc6bc86fd546c\"\n            },\n            {\n                \"document_id\": \"af189052-c0c3-4ebd-ba66-233e807103f8\",\n                \"document_name\": \"2020/10/30 Form AOC-4-30102020_signed\",\n                \"category\": \"Annual Returns and Balance Sheet eForms\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Annual%20Returns%20and%20Balance%20Sheet%20eForms/%5B30-10-2020%5D_Form_AOC-4-30102020_signed_0.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=69350366c74e8d7fdc306b322b29813f37a26569f1027f9e7a79ca8357cc9b85\"\n            },\n            {\n                \"document_id\": \"5b33b944-068f-410d-9764-244f1f533cd0\",\n                \"document_name\": \"2020/10/30 Form MGT-7-30102020_signed\",\n                \"category\": \"Annual Returns and Balance Sheet eForms\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Annual%20Returns%20and%20Balance%20Sheet%20eForms/%5B30-10-2020%5D_Form_MGT-7-30102020_signed_1.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=4e3021a24a4864203ffc1225212492d62488ad7fd49a81925a4f5832d753e606\"\n            },\n            {\n                \"document_id\": \"080b942c-57d4-428c-a7e7-d1954979d731\",\n                \"document_name\": \"2020/01/05 Form MGT-7-05012020_signed\",\n                \"category\": \"Annual Returns and Balance Sheet eForms\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Annual%20Returns%20and%20Balance%20Sheet%20eForms/%5B05-01-2020%5D_Form_MGT-7-05012020_signed_2.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=cd8631702ef46a531dc37b892d54979bf46ba749c697969811c21fda3d1af99c\"\n            },\n            {\n                \"document_id\": \"84d91dc9-c3bf-480e-baee-4ad5165a96dc\",\n                \"document_name\": \"2019/12/10 Form AOC-4-10122019_signed\",\n                \"category\": \"Annual Returns and Balance Sheet eForms\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Annual%20Returns%20and%20Balance%20Sheet%20eForms/%5B10-12-2019%5D_Form_AOC-4-10122019_signed_3.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=6bc512be511ec3b40ca2c7cf98219a39ac915e2aa03c1a08fbf28acad0ab9d45\"\n            },\n            {\n                \"document_id\": \"19948874-d55f-4f72-8fd0-fe2ee0102350\",\n                \"document_name\": \"2019/01/18 Form AOC-4-18012019_signed\",\n                \"category\": \"Annual Returns and Balance Sheet eForms\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Annual%20Returns%20and%20Balance%20Sheet%20eForms/%5B18-01-2019%5D_Form_AOC-4-18012019_signed_4.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=b3aeb84df2597781080b5c88c8a0876b4d5354c7b67f6f5eaea23d9aa2ceb0cc\"\n            },\n            {\n                \"document_id\": \"d65ba0d6-8c56-466d-a0d3-a667573d80df\",\n                \"document_name\": \"2019/01/18 Form MGT-7-18012019_signed\",\n                \"category\": \"Annual Returns and Balance Sheet eForms\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Annual%20Returns%20and%20Balance%20Sheet%20eForms/%5B18-01-2019%5D_Form_MGT-7-18012019_signed_5.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=86153cfe44178f4586402b19e7442053ad4d2be631fb96a4d9ab912471204524\"\n            },\n            {\n                \"document_id\": \"8c93c261-75f7-46b1-9bad-6a2eec96d8e8\",\n                \"document_name\": \"2020/12/09 Form ADT-1-09122020_signed\",\n                \"category\": \"Other eForm Documents\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Other%20eForm%20Documents/%5B09-12-2020%5D_Form_ADT-1-09122020_signed_0.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=de2ff16ebe3eaa36e46562b292f5a288be79fce10993633ff0987480de036d5d\"\n            },\n            {\n                \"document_id\": \"9d6c9355-2753-4130-896f-4d17840ca307\",\n                \"document_name\": \"2020/08/21 Form ADT-1-21082020_signed\",\n                \"category\": \"Other eForm Documents\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Other%20eForm%20Documents/%5B21-08-2020%5D_Form_ADT-1-21082020_signed_1.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=d7ffe1ae3c5e4055c6e5b856b8ac45ccdab0ece59aeab304f44af86e3935fa4a\"\n            },\n            {\n                \"document_id\": \"9f09651b-a21e-4602-94b2-6ddf6a933c87\",\n                \"document_name\": \"2020/08/06 Form ADT-3-06082020_signed\",\n                \"category\": \"Other eForm Documents\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Other%20eForm%20Documents/%5B06-08-2020%5D_Form_ADT-3-06082020_signed_2.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=406a0131759fd1386b05ea47d2e4473f932d04a10f7a48e6e0f5e4b84b60b1ca\"\n            },\n            {\n                \"document_id\": \"d60e1313-90b5-4eb9-a893-c96157b50ca1\",\n                \"document_name\": \"2019/12/30 Form ADT-1-30122019_signed\",\n                \"category\": \"Other eForm Documents\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Other%20eForm%20Documents/%5B30-12-2019%5D_Form_ADT-1-30122019_signed_3.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=7186aa615b541f150bda9087f0cdfd405dbb2708dd55b09eec4b0460a0948042\"\n            },\n            {\n                \"document_id\": \"1460225e-5321-410d-b554-4f2d1a7924bd\",\n                \"document_name\": \"2019/05/02 Form MGT-14-02052019-signed\",\n                \"category\": \"Other eForm Documents\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Other%20eForm%20Documents/%5B02-05-2019%5D_Form_MGT-14-02052019-signed_4.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=e02d1b97910b68a611ad7d37af06a7da8aabe0d4e87e8324241af1a500842dd6\"\n            },\n            {\n                \"document_id\": \"2d85a4f1-bd54-4fb8-93b4-0587f3a8471c\",\n                \"document_name\": \"2019/04/29 Form PAS-3-29042019_signed\",\n                \"category\": \"Other eForm Documents\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Other%20eForm%20Documents/%5B29-04-2019%5D_Form_PAS-3-29042019_signed_5.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=2be439a9af2663e3a7f4a60c7b0099766f4a5874323c3b2e5f116bc2f9fe903f\"\n            },\n            {\n                \"document_id\": \"673f7700-8ca6-4463-ae90-64fcf2d0f7c4\",\n                \"document_name\": \"2019/04/25 Form SH-7-25042019-signed\",\n                \"category\": \"Other eForm Documents\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Other%20eForm%20Documents/%5B25-04-2019%5D_Form_SH-7-25042019-signed_6.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=b1e8d4751eff190e3f9ded7d867dba6c75503b03256bf90bae968f83cacc7e42\"\n            },\n            {\n                \"document_id\": \"99e74377-1223-4885-9309-ffd46a04f5be\",\n                \"document_name\": \"2019/04/24 Form MGT-14-24042019-signed\",\n                \"category\": \"Other eForm Documents\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Other%20eForm%20Documents/%5B24-04-2019%5D_Form_MGT-14-24042019-signed_7.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=ab4f34517848a53baf34fee3af87b6f0bc0570cd1410ffb96fa857b0081c28e5\"\n            },\n            {\n                \"document_id\": \"d351cc6e-ea36-406a-b714-6f0549da2696\",\n                \"document_name\": \"2019/04/09 Form GNL-3-09042019_signed\",\n                \"category\": \"Other eForm Documents\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Other%20eForm%20Documents/%5B09-04-2019%5D_Form_GNL-3-09042019_signed_8.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=e3f7bec2342247a1ba17544f681c75fe658bd821e3e0458076617dc89901107f\"\n            },\n            {\n                \"document_id\": \"732b8fbe-1895-4177-962a-c99e5ba8c90a\",\n                \"document_name\": \"2019/03/01 Form SH-7-01032019-signed\",\n                \"category\": \"Other eForm Documents\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Other%20eForm%20Documents/%5B01-03-2019%5D_Form_SH-7-01032019-signed_9.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=88c4c4dd5e2da195e1174cc80ce352581ae75b5c10bef64b807dd36483677c8d\"\n            },\n            {\n                \"document_id\": \"4b1a7348-2541-4422-9481-4487d77eac4c\",\n                \"document_name\": \"2019/01/11 Form ADT-1-11012019_signed\",\n                \"category\": \"Other eForm Documents\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Other%20eForm%20Documents/%5B11-01-2019%5D_Form_ADT-1-11012019_signed_10.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=7269680e6d4e240e10e544c9c49da55357fde386d7d2f7f201c9e2681a02a7f5\"\n            },\n            {\n                \"document_id\": \"d948f193-3e0d-47cd-8473-0137602af5fc\",\n                \"document_name\": \"2018/11/03 Form MGT-14-03112018-signed\",\n                \"category\": \"Other eForm Documents\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Other%20eForm%20Documents/%5B03-11-2018%5D_Form_MGT-14-03112018-signed_11.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=23dd18a63dd220f9c49e7e692a036f7d6212528248bb10bc21fc1b21a9f33858\"\n            },\n            {\n                \"document_id\": \"1d17c3b6-3c6c-487f-a99d-7496eecc7be6\",\n                \"document_name\": \"2018/10/27 Form GNL-2-27102018-signed\",\n                \"category\": \"Other eForm Documents\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Other%20eForm%20Documents/%5B27-10-2018%5D_Form_GNL-2-27102018-signed_12.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=0f2cf7edd26b952aabb13388a897a1ff43a55f9ceddcdc3cd8afce40dcb0bc0e\"\n            },\n            {\n                \"document_id\": \"4302f7d3-a8d7-4500-826a-e92e01660304\",\n                \"document_name\": \"2018/10/25 Form PAS-3-25102018_signed\",\n                \"category\": \"Other eForm Documents\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Other%20eForm%20Documents/%5B25-10-2018%5D_Form_PAS-3-25102018_signed_13.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=e8c5329628e008dd15198321767639cb6e8aed024fe148ecf36296cdbfa34c6b\"\n            },\n            {\n                \"document_id\": \"1cfa4646-c3fa-4a87-a8bf-efedba27d48c\",\n                \"document_name\": \"2018/10/23 Form MGT-14-23102018-signed\",\n                \"category\": \"Other eForm Documents\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Other%20eForm%20Documents/%5B23-10-2018%5D_Form_MGT-14-23102018-signed_14.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=7dca96f138a8381aba3ee09c05aa633e5de906fac20bdf8b8d3be0758154b046\"\n            },\n            {\n                \"document_id\": \"16a0a145-79b9-4992-b18f-9c490ba1f3fa\",\n                \"document_name\": \"2018/09/27 Form SH-7-27092018-signed\",\n                \"category\": \"Other eForm Documents\",\n                \"status\": \"completed\",\n                \"document_url\": \"https://mca-test-bucket.s3.amazonaws.com/mca_documents/mca_ampKghRzCzyrLnamvfSn/Other%20eForm%20Documents/%5B27-09-2018%5D_Form_SH-7-27092018-signed_15.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWE3LGOMHK2UPET5N%2F20210927%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20210927T070608Z&X-Amz-Expires=1800&X-Amz-SignedHeaders=host&X-Amz-Signature=51e1bbcfdddf569b43cedbad41277c4c8c743052d537ff77db1e50b128bd7604\"\n            }\n        ]\n    },\n    \"status_code\": 200,\n    \"success\": true,\n    \"message\": \"Success\",\n    \"message_code\": \"success\"\n}"}],"_postman_id":"47a74d3d-d5a7-4c80-82b5-0993ec8f8e99"},{"name":"Order List","id":"a63a2d77-83a1-42e7-b991-dcf666db7e36","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://kyc-api.aadhaarkyc.io/api/v1/mca-api/order-list","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}},"urlObject":{"path":["api","v1","mca-api","order-list"],"host":["https://kyc-api.aadhaarkyc.io"],"query":[],"variable":[]}},"response":[{"id":"5046535c-4253-4da9-b128-2f9cb529a011","name":"Order List","originalRequest":{"method":"GET","header":[],"url":"https://kyc-api.aadhaarkyc.io/api/v1/mca-api/order-list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Wed, 20 Oct 2021 13:17:12 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"386"},{"key":"Connection","value":"keep-alive"},{"key":"X-Client-Email","value":"admin@surepass.io"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"client_id\": \"mca_ydAMZojxmiDpoookCjKm\",\n            \"entity_id\": \"U72900MH2007PTC179997\",\n            \"entity_type\": \"company\",\n            \"entity_name\": null,\n            \"credentials_provided\": false,\n            \"status\": \"pending\",\n            \"error\": null,\n            \"error_description\": null,\n            \"mca_payment\": null,\n            \"payment_reversal\": false,\n            \"auto_reversal\": false\n        }\n    ],\n    \"status_code\": 200,\n    \"success\": true,\n    \"message\": null,\n    \"message_code\": \"success\"\n}"}],"_postman_id":"a63a2d77-83a1-42e7-b991-dcf666db7e36"}],"id":"a726304c-a649-4fc9-b0c5-3156f23f4cbd","description":"<h1 id=\"mca-api\">MCA API</h1>\n<h3 id=\"mca-response-object\">MCA Response Object</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>String</td>\n<td>Unique Client ID</td>\n</tr>\n<tr>\n<td>entity_type</td>\n<td>String</td>\n<td>\"company\" or \"llp\"</td>\n</tr>\n<tr>\n<td>entity_name</td>\n<td>String</td>\n<td>Name of the company</td>\n</tr>\n<tr>\n<td>status</td>\n<td>String</td>\n<td>\"pending\" or \"failed\" or \"paused\" or \"partially_completed\" or \"completed\"</td>\n</tr>\n<tr>\n<td>mca_payment</td>\n<td>Boolean</td>\n<td>Whether payment was made for this particular order</td>\n</tr>\n<tr>\n<td>mca_srn</td>\n<td>String</td>\n<td>MCA SRN number</td>\n</tr>\n<tr>\n<td>fetch_only</td>\n<td>Boolean</td>\n<td>Fetch only mode or not</td>\n</tr>\n<tr>\n<td>fetched</td>\n<td>Boolean</td>\n<td>Documents list fetched or not. Applicable only in \"fetch only\" mode</td>\n</tr>\n<tr>\n<td>documents</td>\n<td>Array of Objects</td>\n<td><a href=\"#documents-object\">Documents Object</a></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"documents-object\">Documents Object</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>document_id</td>\n<td>String</td>\n<td>Unique ID for this document</td>\n</tr>\n<tr>\n<td>document_name</td>\n<td>String</td>\n<td>Name of the document</td>\n</tr>\n<tr>\n<td>category</td>\n<td>String</td>\n<td>Category of the document</td>\n</tr>\n<tr>\n<td>status</td>\n<td>String</td>\n<td>\"pending\" or \"completed\" or \"failed\"</td>\n</tr>\n<tr>\n<td>document_url</td>\n<td>String</td>\n<td>URL to download the document</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"create-order\">Create Order</h3>\n<p>Create an MCA order.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>entity_id*</td>\n<td>String</td>\n<td>CIN or LLPIN of the company the documents are required</td>\n</tr>\n<tr>\n<td>mca_username</td>\n<td>String</td>\n<td>Username of MCA account</td>\n</tr>\n<tr>\n<td>mca_password</td>\n<td>String</td>\n<td>Password of MCA account</td>\n</tr>\n<tr>\n<td>fetch_only</td>\n<td>Boolean</td>\n<td>Lazy download of MCA docs. Default <code>false</code></td>\n</tr>\n<tr>\n<td>webhook_url</td>\n<td>String(URL)</td>\n<td>Webhook URL</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p>(*) Required Field</p>\n</blockquote>\n<p>Notes:</p>\n<ul>\n<li>By default we use our own MCA account to download documents. You can provide <code>mca_username</code> and <code>mca_password</code> if you want us to use your account.</li>\n<li>For testing in sandbox envrionment only the following <code>entity_id</code> are valid<ul>\n<li><code>U72900MH2007PTC179997</code>: For status \"pending\"</li>\n<li><code>U72900MH2007PTC179998</code>: For status \"failed\"</li>\n<li><code>U72900MH2007PTC179999</code>: For status \"completed\"</li>\n</ul>\n</li>\n<li>Webhook secret must be set via API before using <code>webhook_url</code>.</li>\n</ul>\n<h3 id=\"lazy-fetching-of-documents\">Lazy fetching of Documents</h3>\n<p>If you want pre-fetch the list of MCA documents, and lazily download only a select set of documents you can use the \"<strong>fetch only</strong>\" mode, by setting the <code>fetch_only</code> param to <code>true</code> in the API request.</p>\n<p>In this mode we will create an order in <code>paused</code> state and fetch list of available documents from MCA. Then using the <a href=\"#register-fetched-order\">Register feteched order API</a> you can provide the list of document IDs which you want to download.</p>\n<h3 id=\"register-fetched-order\">Register Fetched Order</h3>\n<p>Download selected documents from order in <code>paused</code> state.</p>\n<h4 id=\"request-body-1\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>String</td>\n<td>Unique Client ID</td>\n</tr>\n<tr>\n<td>documents</td>\n<td>Array of String</td>\n<td>List of <code>document_id</code> to download</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"get-status\">Get Status</h3>\n<p>To get the staus of MCA order.</p>\n<h4 id=\"response-body\">Response Body</h4>\n<p><a href=\"#mca-response-object\">MCA Response Object</a></p>\n<p>Notes:</p>\n<ul>\n<li><code>status</code> can be one of \"pending\", \"paused\", \"partial\", \"failed\" or \"completed\", denoting the status if the order.</li>\n<li><code>mca_payment</code> indicates the status whether the payment was made to MCA or not.</li>\n</ul>\n<h3 id=\"mca-webhook\">MCA Webhook</h3>\n<p>If you want to receieve webhook after the list of documents if fetched or the order is completed, you can pass a <code>webhook_url</code> in the request body. Make sure you have the webhook secret to validate the incoming webhook.</p>\n<p>There are two types of MCA webhook events, <code>MCA_FETCH_DOCS</code> and <code>MCA_ORDER</code>. <code>MCA_FETCH_DOCS</code> is sent when we have fetched the list of available documents in \"fetch only\" mode. <code>MCA_ORDER</code> is sent when the order is completed, that is, we have downloaded the documents.</p>\n<h4 id=\"webhook-object\">Webhook Object</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Format</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>event</td>\n<td>String Enum</td>\n<td>Type of event. One of <code>MCA_ORDER</code> or <code>MCA_FETCH_DOCS</code></td>\n</tr>\n<tr>\n<td>data</td>\n<td>Object</td>\n<td><a href=\"#mca-response-object\">MCA Response Object</a></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"a726304c-a649-4fc9-b0c5-3156f23f4cbd","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","id":"1ce98d2b-f0db-4d1f-aca6-a569ff5c0ba0","name":"AadhaarKYC API","type":"collection"}}}],"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]}},"event":[{"listen":"prerequest","script":{"id":"41cef7e7-225f-4fcb-8730-1f1665c5afc9","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"dc5e0406-dceb-4f6b-bd82-d33e8def55e5","type":"text/javascript","exec":[""]}}],"variable":[{"key":"era_domain","value":"https://sandbox.aadhaarkyc.io"},{"key":"auth_token","value":"Bearer YOUR_TOKEN"}]}