{"info":{"_postman_id":"000df74c-41d3-4f28-a182-342a6ce21028","name":"Zoop eStamp SDK Documentation","description":"<html><head></head><body><p>The Estamp API empowers developers to seamlessly integrate electronic stamping capabilities into their applications, facilitating the authentication and validation of digital documents. Electronic stamping, often referred to as estamping, ensures the integrity and legal validity of documents in digital form.</p>\n<p>Zoop Estamp API supports 3 different flows</p>\n<ul>\n<li><p>Procure eStamps of Different States</p>\n</li>\n<li><p>Procure eStamp and attach to document</p>\n</li>\n<li><p>Procure eStamp And Use it in Esign Flow</p>\n</li>\n</ul>\n<h3 id=\"url\"><strong>URL</strong></h3>\n<p>{{eStampSDKBaseUrl}} baseUrl for estamp service</p>\n<p>where eStampSDKBaseUrl can be</p>\n<ul>\n<li><p><a href=\"https://live.zoop.plus/contract/esign\">https://live.zoop.plus/contract/estamp</a>( for production)</p>\n</li>\n<li><p><a href=\"https://live.zoop.plus/contract/esign\">https://test.zoop.plus/contract/estamp</a>( for testing)</p>\n</li>\n</ul>\n<h3 id=\"header\"><strong>HEADER</strong></h3>\n<p>In order to authenticate you need to pass the following headers:</p>\n<ul>\n<li><p>app-id - Identifier of your organisation which is created in client dashboard</p>\n</li>\n<li><p>api-key – API key generated for the respective app</p>\n</li>\n</ul>\n<h3 id=\"authentication-error\">Authentication Error</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>HTTP Code</th>\n<th>Message</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>401</code></td>\n<td>app not found</td>\n</tr>\n<tr>\n<td><code>401</code></td>\n<td>api key is invalid or disabled</td>\n</tr>\n<tr>\n<td><code>401</code></td>\n<td>You don't have permission to access this resource.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"estamp-procurement-journey\">Estamp Procurement Journey</h3>\n<ul>\n<li><p>Create Estamp Order</p>\n<ul>\n<li><p>An Estamp Order can be created by calling the /init API, with all the details required for the transaction i.e, first party name, second party name, stamp duty paid by,consideration price,article id,stamp duty value,branch id etc.You also need to pass a field called <strong>procure</strong> with its value as <strong>true</strong> for estamp procurement journey</p>\n</li>\n<li><p>A Unique Order ID is generated for your estamp order.</p>\n</li>\n<li><p><strong>Parameters to Note:</strong></p>\n<ul>\n<li><p><code>stampType</code>:</p>\n<ul>\n<li><p><code>\"ESTAMP\"</code> for digital eStamps (available for immediate download or webhook notification)</p>\n</li>\n<li><p><code>\"TRADITIONAL\"</code> for physical/traditional stamp papers (delivered to a registered address)</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p>Estamp Order Status</p>\n<ul>\n<li>Once the order is fulfilled, the estamp will be generated and added to the inventory to consume.</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"estamp-consumption-journey\">Estamp Consumption Journey</h3>\n<h4 id=\"1-allocate-e-stamp\">1. Allocate E-Stamp</h4>\n<p><strong>Endpoint</strong></p>\n<p><code>POST {{eStampSDKBaseUrl}}/v2/estamps/allocate</code></p>\n<p><strong>Description</strong></p>\n<p>This API is used to <strong>reserve (allocate)</strong> an e-stamp from the inventory against a transaction.</p>\n<p>Allocation is useful when you want to <strong>block</strong> an e-stamp before final consumption.</p>\n<p><strong>Request Body Example</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"firstPartyName\": \"Test\",          \n  \"secondPartyName\": \"Test1\",        \n  \"stampDutyPaidBy\": \"SECOND_PARTY\", \n  \"purpose\": \"Loan\",                 \n  \"stateCode\": \"AN\",                 \n  \"articleId\": 1081,                 \n  \"stampDutyAmount\": 200,            \n  \"referenceId\": \"TEST12345\"         \n}\n\n</code></pre><p><strong>Request Body Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>firstPartyName</code></td>\n<td>String</td>\n<td>✅ Yes</td>\n<td>Name of the first party in the agreement.</td>\n</tr>\n<tr>\n<td><code>secondPartyName</code></td>\n<td>String</td>\n<td>✅ Yes</td>\n<td>Name of the second party in the agreement.</td>\n</tr>\n<tr>\n<td><code>stampDutyPaidBy</code></td>\n<td>String</td>\n<td>✅ Yes</td>\n<td>Who is paying the stamp duty. Allowed values:  <br>• <code>FIRST_PARTY</code>  <br>• <code>SECOND_PARTY</code></td>\n</tr>\n<tr>\n<td><code>purpose</code></td>\n<td>String</td>\n<td>✅ Yes</td>\n<td>Purpose of the transaction (e.g., Loan, Sale Deed, Rental Agreement).</td>\n</tr>\n<tr>\n<td><code>stateCode</code></td>\n<td>String</td>\n<td>✅ Yes</td>\n<td>State code where the e-stamp is applicable. Example: <code>\"AN\"</code> for Andaman.</td>\n</tr>\n<tr>\n<td><code>articleId</code></td>\n<td>Integer</td>\n<td>✅ Yes</td>\n<td>Article ID mapped to state and purpose.</td>\n</tr>\n<tr>\n<td><code>stampDutyAmount</code></td>\n<td>Number</td>\n<td>✅ Yes</td>\n<td>Amount of stamp duty (in INR) to be allocated.</td>\n</tr>\n<tr>\n<td><code>referenceId</code></td>\n<td>String</td>\n<td>✅ Yes</td>\n<td>Unique identifier provided by the client for request tracking.</td>\n</tr>\n</tbody>\n</table>\n</div><hr>\n<h4 id=\"2-consume--release-e-stamp\">2. Consume / Release E-Stamp</h4>\n<p><strong>Endpoint</strong></p>\n<p><code>POST {{eStampSDKBaseUrl}}/v2/estamps/consume</code></p>\n<p><strong>Description</strong></p>\n<p>This API is used to <strong>mark an e-stamp as consumed</strong> (final usage) or <strong>release</strong> it (cancel the allocation).</p>\n<ul>\n<li><p>If you are <strong>sure of consumption</strong>, you can directly call this API (allocation not required).</p>\n</li>\n<li><p>If you need a <strong>cancellable flow</strong>, first call <strong>Allocate API</strong>, and then use this API to either:</p>\n<ul>\n<li><p><code>CONSUME</code> → mark it as consumed</p>\n</li>\n<li><p><code>RELEASE</code> → cancel the allocation</p>\n</li>\n</ul>\n</li>\n</ul>\n<p>⚠️ Once consumed, the e-stamp <strong>cannot be released</strong>.</p>\n<p><strong>Request Body Example</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"firstPartyName\": \"Souraj\",\n  \"secondPartyName\": \"Sarkar\",\n  \"stampDutyPaidBy\": \"SECOND_PARTY\",\n  \"purpose\": \"Loan\",\n  \"stateCode\": \"AP\",\n  \"articleId\": 1001,\n  \"stampDutyAmount\": 100,\n  \"referenceId\": \"TEST12345\",\n  \"action\": \"CONSUME\"\n}\n\n</code></pre><p>You have <strong>two options</strong> for consuming a stamp:</p>\n<hr>\n<p><strong>Option 1 — Pass Stamp Usage Details</strong></p>\n<p>If you <strong>do not already know the estampId</strong>, you can provide the stamp usage details.<br>The system will <strong>search for a matching available e-Stamp</strong>, allocate it, and <strong>mark it as consumed</strong>.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"firstPartyName\": \"Zoop\",      // Name of the first party mentioned on the stamp\n  \"secondPartyName\": \"Test\",     // Name of the second party mentioned on the stamp\n  \"stampDutyPaidBy\": \"SECOND_PARTY\", // Who will bear stamp duty (FIRST_PARTY / SECOND_PARTY / SHARED)\n  \"purpose\": \"Loan\",               // Purpose for which the stamp is being used\n  \"stateCode\": \"AP\",               // State in which the stamp is issued (State code)\n  \"articleId\": 1001,               // Article/Instrument type ID as per stamp rules\n  \"stampDutyAmount\": 100,          // Denomination / stamp value required\n  \"referenceId\": \"TEST12345\",      // Unique reference from client to track the transaction\n  \"action\": \"CONSUME\"              // Action to perform: CONSUME or RELEASE\n}\n\n</code></pre><p><strong>When to use this:</strong></p>\n<ul>\n<li><p>You want the system to <strong>pick the appropriate stamp</strong> automatically.</p>\n</li>\n<li><p>You <strong>do not know the estampId</strong> beforehand.</p>\n</li>\n</ul>\n<hr>\n<p><strong>Option 2 — Pass an Existing</strong> <strong><code>estampId</code></strong></p>\n<p>If you <strong>already know which stamp to consume</strong>, you can send only the <code>estampId</code>.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"estampId\": \"cm8r5ckkb00020t9oej21d9iz\"\n}\n\n</code></pre><p><strong>When to use this:</strong></p>\n<ul>\n<li><p>The stamp is already reserved or previously allocated to you.</p>\n</li>\n<li><p>You want to <strong>directly mark that specific stamp as consumed</strong>.</p>\n</li>\n</ul>\n<p><strong>Request Body Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>firstPartyName</code></td>\n<td>String</td>\n<td>✅ Yes  <br>[when need to consume stamp directly]</td>\n<td>Name of the first party in the agreement.</td>\n</tr>\n<tr>\n<td><code>secondPartyName</code></td>\n<td>String</td>\n<td>✅ Yes  <br>[when need to consume stamp directly]</td>\n<td>Name of the second party in the agreement.</td>\n</tr>\n<tr>\n<td><code>stampDutyPaidBy</code></td>\n<td>String</td>\n<td>✅ Yes  <br>[when need to consume stamp directly]</td>\n<td>Who is paying the stamp duty. Allowed values:  <br>• <code>FIRST_PARTY</code>  <br>• <code>SECOND_PARTY</code></td>\n</tr>\n<tr>\n<td><code>purpose</code></td>\n<td>String</td>\n<td>✅ Yes  <br>[when need to consume stamp directly]</td>\n<td>Purpose of the transaction.</td>\n</tr>\n<tr>\n<td><code>stateCode</code></td>\n<td>String</td>\n<td>✅ Yes  <br>[when need to consume stamp directly]</td>\n<td>State code where the e-stamp is applicable.</td>\n</tr>\n<tr>\n<td><code>articleId</code></td>\n<td>Integer</td>\n<td>✅ Yes  <br>[when need to consume stamp directly]</td>\n<td>Article ID mapped to the state and purpose.</td>\n</tr>\n<tr>\n<td><code>stampDutyAmount</code></td>\n<td>Number</td>\n<td>✅ Yes  <br>[when need to consume stamp directly]</td>\n<td>Amount of stamp duty (in INR) to be consumed or released.</td>\n</tr>\n<tr>\n<td><code>referenceId</code></td>\n<td>String</td>\n<td>✅ Yes</td>\n<td>Unique identifier provided by the client for request tracking.</td>\n</tr>\n<tr>\n<td><code>action</code></td>\n<td>String</td>\n<td>✅ Yes</td>\n<td>Action to be performed:  <br>• <code>CONSUME</code> → Mark as consumed  <br>• <code>RELEASE</code> → Cancel allocation</td>\n</tr>\n</tbody>\n</table>\n</div><hr>\n<h4 id=\"🔄-api-usage-approach\">🔄 API Usage Approach</h4>\n<p>There are <strong>two approaches</strong> for using these APIs depending on your use case:</p>\n<h5 id=\"1-direct-consume-approach\"><strong>1. Direct Consume Approach</strong></h5>\n<ul>\n<li><p>Use this when you are <strong>sure</strong> that the stamp will be consumed.</p>\n</li>\n<li><p>Call only <code>POST /v2/estamps/consume</code> with <code>\"action\": \"CONSUME\"</code>.</p>\n</li>\n<li><p>⚠️ Once consumed, the stamp <strong>cannot</strong> be released.</p>\n</li>\n</ul>\n<h5 id=\"2-safe-funnel-allocate-→-consumerelease\">2. <strong>Safe Funnel (Allocate → Consume/Release)</strong></h5>\n<ul>\n<li><p>Use this when the transaction <strong>may be cancelled</strong> or requires <strong>confirmation</strong> before consuming.</p>\n</li>\n<li><p>Call <code>POST /v2/estamps/allocate</code> to block the stamp.</p>\n</li>\n<li><p>Then call <code>POST /v2/estamps/consume</code> with:</p>\n<ul>\n<li><p><code>\"action\": \"CONSUME\"</code> → Finalize consumption</p>\n</li>\n<li><p><code>\"action\": \"RELEASE\"</code> → Cancel allocation and return to inventory</p>\n</li>\n</ul>\n</li>\n</ul>\n<hr>\n<h4 id=\"🔗-api-sequence\">🔗 API Sequence</h4>\n<h5 id=\"direct-consumption-no-allocation\">Direct Consumption (No Allocation)</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Client → /v2/estamps/consume (action=CONSUME) → E-Stamp Consumed\n\n</code></pre><h5 id=\"safe-funnel-allocatable-flow\">Safe Funnel (Allocatable Flow)</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Client → /v2/estamps/allocate → E-Stamp Allocated\n       → /v2/estamps/consume (action=CONSUME) → E-Stamp Consumed\n       OR\n       → /v2/estamps/consume (action=RELEASE) → E-Stamp Released\n\n</code></pre><h3 id=\"estamp-and-esign-journey\">Estamp And Esign Journey</h3>\n<ul>\n<li><p>Procure eStamp Using <strong>Estamp Procurement Journey</strong></p>\n<ul>\n<li><p>Place an eStamp Order using /init api</p>\n</li>\n<li><p>Place an Bulk eStamp Order using /bulk/init api</p>\n</li>\n<li><p>Place an eStamp Order with document attachment or webhook using /contract/init api</p>\n</li>\n</ul>\n</li>\n<li><p>Pass <strong>eStamp id</strong> in <strong>eSign init api</strong></p>\n<ul>\n<li>Once estamp Order has been fulfilled, you need to pass <strong>request_id</strong> obtained from <strong>eStamp init api</strong> as <strong>estamp_id</strong> to <strong>eSign init api.</strong> You also need to pass an additional field called <strong>estamp_required</strong> with its value set to <strong>true</strong>.</li>\n</ul>\n</li>\n</ul>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"29380795","collectionId":"000df74c-41d3-4f28-a182-342a6ce21028","publishedId":"2sB2cYcg1s","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2025-04-11T11:09:22.000Z"},"item":[{"name":"Estamp Consumption Journey","item":[{"name":"Estamp Allocation API","id":"863ec44e-06fa-4f5d-8f75-f7a360ea67ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"app-id","value":"{{app-id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"firstPartyName\": \"Test\",  // for estamp searching\n  \"secondPartyName\": \"Test1\",\n  \"stampDutyPaidBy\": \"SECOND_PARTY\",\n  \"purpose\": \"Loan\", \n  \"stateCode\": \"AN\",\n  \"articleId\": 1081,\n  \"stampDutyAmount\": 200,\n  \"referenceId\": \"TEST12345\"  // unique identifier from client\n  \n}","options":{"raw":{"language":"json"}}},"url":"{{eStampSDKBaseUrl}}/v2/estamps/allocate","description":"<p>The <strong>Allocate API</strong> is used to <strong>block (reserve) an e-stamp</strong> from Zoop’s inventory against the details of a transaction.</p>\n<p>This ensures that a specific stamp duty amount is reserved and linked to the given parties, purpose, and reference ID.</p>\n<p>👉 Allocation is <strong>not final consumption</strong>. It provides a <strong>temporary lock</strong> on the stamp until you decide to:</p>\n<ul>\n<li><p><strong>Consume</strong> it → finalize usage in the transaction.</p>\n</li>\n<li><p><strong>Release</strong> it → cancel and return the stamp back to the inventory.</p>\n</li>\n</ul>\n<p>This approach is recommended when there is a possibility of <strong>cancellation</strong> or the transaction needs <strong>additional confirmation</strong> before final stamping.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-key"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"000df74c-41d3-4f28-a182-342a6ce21028","id":"000df74c-41d3-4f28-a182-342a6ce21028","name":"Zoop eStamp SDK Documentation","type":"collection"}},"urlObject":{"path":["v2","estamps","allocate"],"host":["{{eStampSDKBaseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"fad4634b-6d01-443a-908f-9795117ead97","name":"Success - Estamp Allocation API","originalRequest":{"method":"POST","header":[{"key":"app-id","value":"{{app-id}}","type":"text"},{"key":"api-key","value":"{{api-key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"firstPartyName\": \"Test\",  // for estamp searching\n  \"secondPartyName\": \"Test1\",\n  \"stampDutyPaidBy\": \"SECOND_PARTY\",\n  \"purpose\": \"Loan\", \n  \"stateCode\": \"AN\",\n  \"articleId\": 1081,\n  \"referenceId\": \"TEST12345\",  // unique identifier from client\n  \"stampDutyAmount\": 100\n}","options":{"raw":{"language":"json"}}},"url":"{{eStampSDKBaseUrl}}/v2/estamps/allocate"},"status":"Bad Request","code":200,"_postman_previewlanguage":"","header":[{"key":"x-powered-by","value":"Express"},{"key":"vary","value":"Origin, Accept-Encoding"},{"key":"access-control-allow-credentials","value":"true"},{"key":"access-control-expose-headers","value":"Upload-Offset,Location,Upload-Length,Tus-Version,Tus-Resumable,Tus-Max-Size,Tus-Extension,Upload-Metadata,Upload-Id,Upload-Type"},{"key":"content-security-policy","value":"default-src 'none';script-src 'self';style-src 'self';img-src 'self' data:;font-src 'self';connect-src 'self';form-action 'self';frame-ancestors 'none';object-src 'none';base-uri 'self';script-src-attr 'none';upgrade-insecure-requests"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"origin-agent-cluster","value":"?1"},{"key":"referrer-policy","value":"same-origin"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-download-options","value":"noopen"},{"key":"x-frame-options","value":"DENY"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"74"},{"key":"etag","value":"W/\"4a-/hVhuAvtvrdLR3mpSIQ0n96DrtE\""},{"key":"date","value":"Tue, 09 Sep 2025 08:44:05 GMT"},{"key":"x-envoy-upstream-service-time","value":"25"},{"key":"server","value":"istio-envoy"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Estamps are allocated successfully.\",\n    \"data\": {\n        \"stamps\": [\n            {\n                \"eStampId\": \"cmewlsmu3000b8z0t8plklf7j\",\n                \"denomination\": 100\n            },\n            {\n                \"eStampId\": \"cmewldr4f00070t8z3w9p3ljl\",\n                \"denomination\": 100\n            }\n        ],\n        \"referenceId\": \"TEST12345\",\n        \"url\": \"https://storage.googleapis.com/zsp-kaio-dev/66757c9e749f46002866dfaf/inventory/TEST12345/merged_estamps.pdf?GoogleAccessId=zsp-kaio-service-dev%40zoop-one-development.iam.gserviceaccount.com&Expires=1757408899&Signature=ar5Ca6A5Qm8%2BSP9KkmO2Y1ymuEJVQOa0YUDYESK%2BefibZRn4uVzBRg9D%2FFPxp7J2Xr9JzfwJnxKuddkk3NohlgNdcM2KU8Q4drw6CTVxCQVHtsIqXwmyqR%2FfAo%2BSdAO%2BM%2FPHIOGtzPK0vj0ND5iuXI1T30rYgkpuWy8peSBqSJ97w%2BJrvkuxipCjUYVdvPVbAMLLRRuxoEN5SaLsccFv5Wg8OyDs2NZ7U%2FYXwMiDB3yfJ6WB7T7PPXrefEhzOgNArhUViXYC4FtUUUDGN%2FAR9Je1F8LoU4s7HZXHPNRgAtgfznEZ%2B7vzSctFgNlyj6%2FeNplZO7ERIKNJagANha%2FcPw%3D%3D\"\n    }\n}"},{"id":"b3f784cb-f034-444e-991c-9533026e05a5","name":"Error - Insufficient stamps in inventory","originalRequest":{"method":"POST","header":[{"key":"app-id","value":"{{app-id}}","type":"text"},{"key":"api-key","value":"{{api-key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"firstPartyName\": \"Test\",  // for estamp searching\n  \"secondPartyName\": \"Test1\",\n  \"stampDutyPaidBy\": \"SECOND_PARTY\",\n  \"purpose\": \"Loan\", \n  \"stateCode\": \"AN\",\n  \"articleId\": 1081,\n  \"referenceId\": \"TEST12345\",  // unique identifier from client\n  \"stampDutyAmount\": 100\n}","options":{"raw":{"language":"json"}}},"url":"{{eStampSDKBaseUrl}}/v2/estamps/allocate"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":[{"key":"x-powered-by","value":"Express"},{"key":"vary","value":"Origin, Accept-Encoding"},{"key":"access-control-allow-credentials","value":"true"},{"key":"access-control-expose-headers","value":"Upload-Offset,Location,Upload-Length,Tus-Version,Tus-Resumable,Tus-Max-Size,Tus-Extension,Upload-Metadata,Upload-Id,Upload-Type"},{"key":"content-security-policy","value":"default-src 'none';script-src 'self';style-src 'self';img-src 'self' data:;font-src 'self';connect-src 'self';form-action 'self';frame-ancestors 'none';object-src 'none';base-uri 'self';script-src-attr 'none';upgrade-insecure-requests"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"origin-agent-cluster","value":"?1"},{"key":"referrer-policy","value":"same-origin"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-download-options","value":"noopen"},{"key":"x-frame-options","value":"DENY"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"74"},{"key":"etag","value":"W/\"4a-/hVhuAvtvrdLR3mpSIQ0n96DrtE\""},{"key":"date","value":"Tue, 09 Sep 2025 08:09:11 GMT"},{"key":"x-envoy-upstream-service-time","value":"142"},{"key":"server","value":"istio-envoy"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"message\": \"Insufficient stamps to allocate in inventory\"\n}"}],"_postman_id":"863ec44e-06fa-4f5d-8f75-f7a360ea67ef"},{"name":"Estamp Consume/Release API","id":"202ca255-f870-41f4-898d-354a154daeea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":false},"method":"POST","header":[{"key":"app-id","value":"{{app-id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  // Option 1\n  \"firstPartyName\": \"Souraj\",  // for searching a estamps\n  \"secondPartyName\": \"Sarkar\",\n  \"stampDutyPaidBy\": \"SECOND_PARTY\",\n  \"purpose\": \"Loan\", \n  \"stateCode\": \"AP\",\n  \"articleId\": 1001,\n  \"stampDutyAmount\": 100, \n  \"referenceId\": \"TEST12345\",  // unique identifier from client\n  \"action\": \"CONSUME\", // CONSUME, RELEASE\n\n  // Option 2\n  \"estampId\": \"cm8r5ckkb00020t9oej21d9iz\"\n}","options":{"raw":{"language":"json"}}},"url":"{{eStampSDKBaseUrl}}/v2/estamps/consume","description":"<p>The <strong>Consume API</strong> is used to <strong>finalize</strong> or <strong>cancel</strong> an e-stamp allocation.  </p>\n<p>It works in two modes based on the <code>action</code> field:</p>\n<ol>\n<li><p><strong>CONSUME</strong> → Marks the allocated e-stamp as <strong>permanently used</strong> for the given transaction.</p>\n<ul>\n<li><p>Once consumed, the stamp cannot be released or reused.</p>\n</li>\n<li><p>Use this when you are sure the transaction is completed and stamping is required.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>RELEASE</strong> → Cancels a previously allocated e-stamp and returns it back to the inventory.</p>\n<ul>\n<li><p>Use this when the transaction is cancelled or no longer requires stamping.</p>\n</li>\n<li><p>This is only possible if the e-stamp was <strong>allocated but not consumed</strong>.</p>\n</li>\n</ul>\n</li>\n</ol>\n<p>👉 If you are confident that the stamp will be consumed, you may <strong>skip allocation</strong> and directly call the <strong>Consume API</strong> with <code>\"action\": \"CONSUME\"</code>.</p>\n","urlObject":{"path":["v2","estamps","consume"],"host":["{{eStampSDKBaseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"3ad16b09-9411-49c4-94db-17598bca57a5","name":"Success - Consume Response","originalRequest":{"method":"POST","header":[{"key":"app-id","value":"{{app-id}}","type":"text"},{"key":"api-key","value":"{{api-key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"firstPartyName\": \"Souraj\",  // for searching a estamps\n  \"secondPartyName\": \"Sarkar\",\n  \"stampDutyPaidBy\": \"SECOND_PARTY\",\n  \"purpose\": \"Loan\", \n  \"stateCode\": \"AP\",\n  \"articleId\": 1001,\n  \"stampDutyAmount\": 100, \n  \"referenceId\": \"TEST12345\",  // unique identifier from client\n  \"action\": \"CONSUME\" // CONSUME, RELEASE\n}","options":{"raw":{"language":"json"}}},"url":"{{eStampSDKBaseUrl}}/v2/estamps/consume"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"x-powered-by","value":"Express"},{"key":"vary","value":"Origin, Accept-Encoding"},{"key":"access-control-allow-credentials","value":"true"},{"key":"access-control-expose-headers","value":"Upload-Offset,Location,Upload-Length,Tus-Version,Tus-Resumable,Tus-Max-Size,Tus-Extension,Upload-Metadata,Upload-Id,Upload-Type"},{"key":"content-security-policy","value":"default-src 'none';script-src 'self';style-src 'self';img-src 'self' data:;font-src 'self';connect-src 'self';form-action 'self';frame-ancestors 'none';object-src 'none';base-uri 'self';script-src-attr 'none';upgrade-insecure-requests"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"origin-agent-cluster","value":"?1"},{"key":"referrer-policy","value":"same-origin"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-download-options","value":"noopen"},{"key":"x-frame-options","value":"DENY"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"825"},{"key":"etag","value":"W/\"339-jrRh3oLsWVBqfa96nGPyE1d69uw\""},{"key":"date","value":"Tue, 09 Sep 2025 08:47:41 GMT"},{"key":"x-envoy-upstream-service-time","value":"402"},{"key":"server","value":"istio-envoy"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"EStamps consumed successfully\",\n    \"data\": {\n        \"stamps\": [\n            {\n                \"eStampId\": \"cmewldr4f00070t8z3w9p3ljl\",\n                \"denomination\": \"100\"\n            },\n            {\n                \"eStampId\": \"cmewlsmu3000b8z0t8plklf7j\",\n                \"denomination\": \"100\"\n            }\n        ],\n        \"referenceId\": \"TEST12345\",\n        \"url\": \"https://storage.googleapis.com/zsp-kaio-dev/66757c9e749f46002866dfaf/inventory/TEST12345/merged_estamps.pdf?GoogleAccessId=zsp-kaio-service-dev%40zoop-one-development.iam.gserviceaccount.com&Expires=1757409102&Signature=jaEbqduPa2qzbgw632tF8cRe53fTvIyyvIjfdyVRCR3%2FaVPU%2FFKtUrTew%2FxfG5oCh6VMYd2y3Sgp%2FygzvOlEFgpa97ePsOlwg0iTAsZVVpk%2FNVO8pNoAw2DjnU1AmYqcDpbK6LYoJMpW%2FNqmGJdwL77TnjRNGB5fd2CVw5HZWiSniyM6DPtgMDKrN3cirEhsCVQS0eeKGNj8vECLSnmorkXKQO42fNpXRL5A0Ree5GUhbd8vEFcQFBmRvq15JnCyVCx39%2BVn1ovDEZQtszziNRod6H3s6ACEL87P%2BsDMQWq9aE8cQGa8pEhVmauZuCp%2BtP3%2BC4VA1q7f4Jhd67bGAg%3D%3D\"\n    }\n}"},{"id":"26942f1a-7ea8-482b-b1c3-0751feb5b072","name":"Success - Release Response","originalRequest":{"method":"POST","header":[{"key":"app-id","value":"{{app-id}}","type":"text"},{"key":"api-key","value":"{{api-key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"referenceId\": \"TEST12345\",  // unique identifier from client\n  \"action\": \"RELEASE\" \n}","options":{"raw":{"language":"json"}}},"url":"{{eStampSDKBaseUrl}}/v2/estamps/consume"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"x-powered-by","value":"Express"},{"key":"vary","value":"Origin, Accept-Encoding"},{"key":"access-control-allow-credentials","value":"true"},{"key":"access-control-expose-headers","value":"Upload-Offset,Location,Upload-Length,Tus-Version,Tus-Resumable,Tus-Max-Size,Tus-Extension,Upload-Metadata,Upload-Id,Upload-Type"},{"key":"content-security-policy","value":"default-src 'none';script-src 'self';style-src 'self';img-src 'self' data:;font-src 'self';connect-src 'self';form-action 'self';frame-ancestors 'none';object-src 'none';base-uri 'self';script-src-attr 'none';upgrade-insecure-requests"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"origin-agent-cluster","value":"?1"},{"key":"referrer-policy","value":"same-origin"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-download-options","value":"noopen"},{"key":"x-frame-options","value":"DENY"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"825"},{"key":"etag","value":"W/\"339-jrRh3oLsWVBqfa96nGPyE1d69uw\""},{"key":"date","value":"Tue, 09 Sep 2025 08:47:41 GMT"},{"key":"x-envoy-upstream-service-time","value":"402"},{"key":"server","value":"istio-envoy"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"EStamps released successfully\",\n    \"data\": {\n        \"stamps\": [\n            {\n                \"eStampId\": \"cmf3wx2730007af0tvbtzpfna\",\n                \"denomination\": \"100\"\n            }\n        ],\n        \"referenceId\": \"TEST12345\"\n    }\n}"},{"id":"11ae399e-1f9c-4ee4-b68b-ea0a86457105","name":"Error - Release Response","originalRequest":{"method":"POST","header":[{"key":"app-id","value":"{{app-id}}","type":"text"},{"key":"api-key","value":"{{api-key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"referenceId\": \"TEST12345\",  // unique identifier from client\n  \"action\": \"RELEASE\" \n}","options":{"raw":{"language":"json"}}},"url":"{{eStampSDKBaseUrl}}/v2/estamps/consume"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":[{"key":"x-powered-by","value":"Express"},{"key":"vary","value":"Origin, Accept-Encoding"},{"key":"access-control-allow-credentials","value":"true"},{"key":"access-control-expose-headers","value":"Upload-Offset,Location,Upload-Length,Tus-Version,Tus-Resumable,Tus-Max-Size,Tus-Extension,Upload-Metadata,Upload-Id,Upload-Type"},{"key":"content-security-policy","value":"default-src 'none';script-src 'self';style-src 'self';img-src 'self' data:;font-src 'self';connect-src 'self';form-action 'self';frame-ancestors 'none';object-src 'none';base-uri 'self';script-src-attr 'none';upgrade-insecure-requests"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"origin-agent-cluster","value":"?1"},{"key":"referrer-policy","value":"same-origin"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-download-options","value":"noopen"},{"key":"x-frame-options","value":"DENY"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"825"},{"key":"etag","value":"W/\"339-jrRh3oLsWVBqfa96nGPyE1d69uw\""},{"key":"date","value":"Tue, 09 Sep 2025 08:47:41 GMT"},{"key":"x-envoy-upstream-service-time","value":"402"},{"key":"server","value":"istio-envoy"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"message\": \"Stamps already consumed, cannot cancel\"\n}"}],"_postman_id":"202ca255-f870-41f4-898d-354a154daeea"}],"id":"9803c403-15e7-44fc-844d-bec435bee597","description":"<h3 id=\"e-stamp-consume-api\"><strong>e-Stamp Consume API</strong></h3>\n<p>This API is used to <strong>mark an e-Stamp as</strong> <em><strong>consumed</strong></em>. You have <strong>two options</strong> for consuming a stamp:</p>\n<hr />\n<h4 id=\"option-1--pass-stamp-usage-details\"><strong>Option 1 — Pass Stamp Usage Details</strong></h4>\n<p>If you <strong>do not already know the estampId</strong>, you can provide the stamp usage details.<br />The system will <strong>search for a matching available e-Stamp</strong>, allocate it, and <strong>mark it as consumed</strong>.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"firstPartyName\": \"Zoop\",      // Name of the first party mentioned on the stamp\n  \"secondPartyName\": \"Test\",     // Name of the second party mentioned on the stamp\n  \"stampDutyPaidBy\": \"SECOND_PARTY\", // Who will bear stamp duty (FIRST_PARTY / SECOND_PARTY / SHARED)\n  \"purpose\": \"Loan\",               // Purpose for which the stamp is being used\n  \"stateCode\": \"AP\",               // State in which the stamp is issued (State code)\n  \"articleId\": 1001,               // Article/Instrument type ID as per stamp rules\n  \"stampDutyAmount\": 100,          // Denomination / stamp value required\n  \"referenceId\": \"TEST12345\",      // Unique reference from client to track the transaction\n  \"action\": \"CONSUME\"              // Action to perform: CONSUME or RELEASE\n}\n\n</code></pre><p><strong>When to use this:</strong></p>\n<ul>\n<li><p>You want the system to <strong>pick the appropriate stamp</strong> automatically.</p>\n</li>\n<li><p>You <strong>do not know the estampId</strong> beforehand.</p>\n</li>\n</ul>\n<hr />\n<h4 id=\"option-2--pass-an-existing-estampid\"><strong>Option 2 — Pass an Existing</strong> <strong><code>estampId</code></strong></h4>\n<p>If you <strong>already know which stamp to consume</strong>, you can send only the <code>estampId</code>.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"estampId\": \"cm8r5ckkb00020t9oej21d9iz\"\n}\n\n</code></pre><p><strong>When to use this:</strong></p>\n<ul>\n<li><p>The stamp is already reserved or previously allocated to you.</p>\n</li>\n<li><p>You want to <strong>directly mark that specific stamp as consumed</strong>.</p>\n</li>\n</ul>\n","_postman_id":"9803c403-15e7-44fc-844d-bec435bee597","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-key"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"000df74c-41d3-4f28-a182-342a6ce21028","id":"000df74c-41d3-4f28-a182-342a6ce21028","name":"Zoop eStamp SDK Documentation","type":"collection"}}},{"name":"Create eStamp Order","id":"a6b02f77-78ec-4163-95be-cee156ea968a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"app-id","value":"{{app-id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"stateCode\": \"MH\",\n    \"firstPartyName\": \"<firstPartyName>\",\n    \"secondPartyName\": \"<secondPartyName>\",\n    \"stampDutyPaidBy\": \"SECOND_PARTY\",\n    \"refId\": \"<refID>\", // Example : LanNo\n    \"series\": [\n        {\n            \"stampDutyAmount\": 10,\n            \"stampType\": \"ESTAMP\",\n            \"articleId\": 2,\n            \"purpose\": \".\",\n            \"considerationPrice\": 1000\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{eStampSDKBaseUrl}}/v2/init","description":"<h2 id=\"estamp-init-api-v2init\"><strong>Estamp Init Api (/v2/init)</strong></h2>\n<p>The eStamp Intialisation Api will take in all the details required for the transaction i.e, first party name, second party name, stamp duty paid by,consideration price,article id,stamp duty value,branch id etc.You also need to pass a field called procure with its value as true for estamp procurement journey</p>\n<p><strong>URL</strong></p>\n<p>{{eStampSDKBaseUrl}}/v2/init</p>\n<p>where eStampSDKBaseUrl can be</p>\n<ul>\n<li><p><a href=\"https://live.zoop.plus/contract/esign\">https://live.zoop.plus/contract/estamp</a>( for production)</p>\n</li>\n<li><p><a href=\"https://live.zoop.plus/contract/esign\">https://test.zoop.plus/contract/estamp</a>( for testing)</p>\n</li>\n</ul>\n<p><strong>HEADER</strong></p>\n<p>In order to authenticate you need to pass the following headers:</p>\n<ul>\n<li><p>app-id - Identifier of your organisation which is created in client dashboard</p>\n</li>\n<li><p>api-key – API key generated for the respective app</p>\n</li>\n</ul>\n<h1 id=\"possible-errors\">POSSIBLE ERRORS</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>HTTP Code</th>\n<th>Message</th>\n<th>Scenario</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>422</code></td>\n<td>Req body is required</td>\n<td>Request body is missing or empty</td>\n</tr>\n<tr>\n<td><code>422</code></td>\n<td>State Code is required</td>\n<td><code>stateCode</code> field is missing</td>\n</tr>\n<tr>\n<td><code>422</code></td>\n<td>State Code char range must be between 2 and 2</td>\n<td><code>stateCode</code> is not exactly 2 characters</td>\n</tr>\n<tr>\n<td><code>422</code></td>\n<td>Series is required</td>\n<td><code>series</code> field is missing</td>\n</tr>\n<tr>\n<td><code>422</code></td>\n<td>Series must contain at least 1 items</td>\n<td><code>series</code> array is empty</td>\n</tr>\n<tr>\n<td><code>422</code></td>\n<td>Stamp Type is required</td>\n<td><code>series[].stampType</code> is missing</td>\n</tr>\n<tr>\n<td><code>422</code></td>\n<td>Stamp Duty Amount is required</td>\n<td><code>series[].stampDutyAmount</code> is missing</td>\n</tr>\n<tr>\n<td><code>422</code></td>\n<td>Stamp Duty Amount must be greater than or equal to 10</td>\n<td><code>series[].stampDutyAmount</code> is below minimum</td>\n</tr>\n<tr>\n<td><code>422</code></td>\n<td>Article ID is required</td>\n<td><code>series[].articleId</code> is missing</td>\n</tr>\n<tr>\n<td><code>422</code></td>\n<td>Consideration Price is required</td>\n<td><code>series[].considerationPrice</code> is missing</td>\n</tr>\n<tr>\n<td><code>422</code></td>\n<td>Consideration Price must be greater than or equal to 0</td>\n<td><code>series[].considerationPrice</code> is negative</td>\n</tr>\n<tr>\n<td><code>422</code></td>\n<td>Purpose is required</td>\n<td><code>series[].purpose</code> is missing</td>\n</tr>\n<tr>\n<td><code>422</code></td>\n<td>Purpose char range must be between 1 and 150</td>\n<td><code>series[].purpose</code> exceeds length limit</td>\n</tr>\n<tr>\n<td><code>422</code></td>\n<td>First Party Name is required</td>\n<td><code>firstPartyName</code> is missing</td>\n</tr>\n<tr>\n<td><code>422</code></td>\n<td>First Party Name char range must be between 2 and 250</td>\n<td><code>firstPartyName</code> length is invalid</td>\n</tr>\n<tr>\n<td><code>422</code></td>\n<td>Second Party Name is required</td>\n<td><code>secondPartyName</code> is missing</td>\n</tr>\n<tr>\n<td><code>422</code></td>\n<td>Second Party Name contains an invalid value</td>\n<td><code>secondPartyName</code> matches <code>firstPartyName</code></td>\n</tr>\n<tr>\n<td><code>422</code></td>\n<td>Stamp Duty Paid By is required</td>\n<td><code>stampDutyPaidBy</code> is missing</td>\n</tr>\n<tr>\n<td><code>422</code></td>\n<td>Stamp Duty Paid By must be one of [FIRST_PARTY, SECOND_PARTY]</td>\n<td><code>stampDutyPaidBy</code> has invalid value</td>\n</tr>\n<tr>\n<td><code>422</code></td>\n<td>First Party PAN</td>\n<td><code>firstPartyPan</code> format is invalid — must match <code>ABCDE1234F</code></td>\n</tr>\n<tr>\n<td><code>422</code></td>\n<td>Second Party PAN</td>\n<td><code>secondPartyPan</code> format is invalid — must match <code>ABCDE1234F</code></td>\n</tr>\n<tr>\n<td><code>422</code></td>\n<td>First Party Phone Number</td>\n<td><code>firstPartyPhoneNumber</code> is not exactly 10 digits</td>\n</tr>\n<tr>\n<td><code>422</code></td>\n<td>Second Party Phone Number</td>\n<td><code>secondPartyPhoneNumber</code> is not exactly 10 digits</td>\n</tr>\n<tr>\n<td><code>422</code></td>\n<td>Invalid state code.</td>\n<td>State code does not exist in the database or is soft-deleted</td>\n</tr>\n<tr>\n<td><code>422</code></td>\n<td>Invalid article ID.</td>\n<td>One or more article IDs are not valid for the given state code</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-key"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"000df74c-41d3-4f28-a182-342a6ce21028","id":"000df74c-41d3-4f28-a182-342a6ce21028","name":"Zoop eStamp SDK Documentation","type":"collection"}},"urlObject":{"path":["v2","init"],"host":["{{eStampSDKBaseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"d35c64c5-2327-4b53-894f-c6572994c5e2","name":"Success Response","originalRequest":{"method":"POST","header":[{"key":"app-id","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"stateCode\": \"MH\",\n    \"firstPartyName\": \"<firstPartyName>\",\n    \"secondPartyName\": \"<secondPartyName>\",\n    \"stampDutyPaidBy\": \"SECOND_PARTY\",\n    \"refId\": \"<refID>\",\n    \"series\": [\n        {\n            \"stampDutyAmount\": 100,\n            \"stampType\": \"ESTAMP\",\n            \"articleId\": 1001,\n            \"purpose\": \".\",\n            \"considerationPrice\": 1000\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://live.zoop.one/contract/estamp/v2/init"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"vary","value":"Origin, Accept-Encoding"},{"key":"access-control-allow-credentials","value":"true"},{"key":"access-control-expose-headers","value":"Upload-Offset,Location,Upload-Length,Tus-Version,Tus-Resumable,Tus-Max-Size,Tus-Extension,Upload-Metadata,Upload-Id"},{"key":"content-security-policy","value":"script-src 'self';style-src 'self';default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src-attr 'none';upgrade-insecure-requests"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"origin-agent-cluster","value":"?1"},{"key":"referrer-policy","value":"same-origin"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-download-options","value":"noopen"},{"key":"x-frame-options","value":"DENY"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"127"},{"key":"etag","value":"W/\"7f-D0StPwGhc5B+GHo5jK4mcTGQEBE\""},{"key":"date","value":"Mon, 07 Apr 2025 07:32:56 GMT"},{"key":"x-envoy-upstream-service-time","value":"340"},{"key":"server","value":"istio-envoy"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"E-stamp order created successfully.\",\n    \"data\": {\n        \"orderId\": \"SABCD000083\"\n    }\n}"},{"id":"c7630757-1e22-4422-83ed-510f96ca8b31","name":"Invalid Data","originalRequest":{"method":"POST","header":[{"key":"app-id","value":"{{app-id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"stateCode\": \"MH\",\n    \"firstPartyName\": \"<firstPartyName>\",\n    \"secondPartyName\": \"<secondPartyName>\",\n    \"stampDutyPaidBy\": \"SECOND_PARTY\",\n    \"refId\": \"<refID>\",\n    \"series\": [\n        {\n            \"stampDutyAmount\": 100,\n            \"stampType\": \"ESTAMP\",\n            \"articleId\": 1001,\n            \"purpose\": \".\",\n            \"considerationPrice\": 1000\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{eStampSDKBaseUrl}}/v2/init"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"message\": \"RefId already exists for order - SABCD000083.\"\n}"}],"_postman_id":"a6b02f77-78ec-4163-95be-cee156ea968a"},{"name":"Cancel eStamp Order","id":"1da27c61-32b5-4444-9c67-10ac21c1ef8f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"app-id","value":"{{app-id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"orderIds\": [\"<OrderId1>\"],\n    \"reason\": \"reason\" // eg. \"Wrong Stamp Type\"\n}","options":{"raw":{"language":"json"}}},"url":"{{eStampSDKBaseUrl}}/v2/orders/cancel","description":"<h2 id=\"estamp-init-api-v2init\"><strong>Estamp Init Api (/v2/init)</strong></h2>\n<p>The eStamp Intialisation Api will take in all the details required for the transaction i.e, first party name, second party name, stamp duty paid by,consideration price,article id,stamp duty value,branch id etc.You also need to pass a field called procure with its value as true for estamp procurement journey</p>\n<p><strong>URL</strong></p>\n<p>{{eStampSDKBaseUrl}}/v2/init</p>\n<p>where eStampSDKBaseUrl can be</p>\n<ul>\n<li><p><a href=\"https://live.zoop.plus/contract/esign\">https://live.zoop.plus/contract/estamp</a>( for production)</p>\n</li>\n<li><p><a href=\"https://live.zoop.plus/contract/esign\">https://test.zoop.plus/contract/estamp</a>( for testing)</p>\n</li>\n</ul>\n<p><strong>HEADER</strong></p>\n<p>In order to authenticate you need to pass the following headers:</p>\n<ul>\n<li><p>app-id - Identifier of your organisation which is created in client dashboard</p>\n</li>\n<li><p>api-key – API key generated for the respective app</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-key"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"000df74c-41d3-4f28-a182-342a6ce21028","id":"000df74c-41d3-4f28-a182-342a6ce21028","name":"Zoop eStamp SDK Documentation","type":"collection"}},"urlObject":{"path":["v2","orders","cancel"],"host":["{{eStampSDKBaseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"6832b2f8-5d69-44c6-9439-93d28df16b5b","name":"Cancel eStamp Order","originalRequest":{"method":"DELETE","header":[{"key":"app-id","value":"{{app-id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"orderIds\": [\"<OrderId1>\"],\n    \"reason\": \"reason\" // eg. \"Wrong Stamp Type\"\n}","options":{"raw":{"language":"json"}}},"url":"{{eStampSDKBaseUrl}}/v2/orders/cancel"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"  {\n    \"success\": true,\n    \"message\": \"All E-stamp orders cancelled successfully.\",\n    \"data\": {\n      \"cancelled\": [\n        { \"orderId\": \"ORD001\", \"status\": \"cancelled\" },\n        { \"orderId\": \"ORD002\", \"status\": \"cancelled\" },\n        { \"orderId\": \"ORD003\", \"status\": \"cancelled\" }\n      ],\n      \"failed\": [],\n      \"summary\": {\n        \"total\": 3,\n        \"cancelled\": 3,\n        \"failed\": 0\n      }\n    }\n  }\n"},{"id":"45273374-3673-44f7-a432-7d3e6c7170f1","name":"All invalid orderIds","originalRequest":{"method":"DELETE","header":[{"key":"app-id","value":"{{app-id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"orderIds\": [\"<OrderId1>\"],\n    \"reason\": \"reason\" // eg. \"Wrong Stamp Type\"\n}","options":{"raw":{"language":"json"}}},"url":"{{eStampSDKBaseUrl}}/v2/orders/cancel"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"  {\n    \"success\": true,\n    \"message\": \"2 order(s) cancelled, 1 order(s) failed.\",\n    \"data\": {\n      \"cancelled\": [\n        { \"orderId\": \"ORD001\", \"status\": \"cancelled\" },\n        { \"orderId\": \"ORD002\", \"status\": \"cancelled\" }\n      ],\n      \"failed\": [\n        {\n          \"orderId\": \"ORD003\",\n          \"status\": \"failed\",\n          \"reason\": \"Invalid order ID for cancellation\",\n          \"errorCode\": \"INVALID_ORDER_ID\"\n        }\n      ],\n      \"summary\": {\n        \"total\": 3,\n        \"cancelled\": 2,\n        \"failed\": 1\n      }\n    }\n  }\n"},{"id":"8af93dc0-f78e-40ed-a173-be3de7cb47fd","name":"All Failed","originalRequest":{"method":"DELETE","header":[{"key":"app-id","value":"{{app-id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"orderIds\": [\"<OrderId1>\"],\n    \"reason\": \"reason\" // eg. \"Wrong Stamp Type\"\n}","options":{"raw":{"language":"json"}}},"url":"{{eStampSDKBaseUrl}}/v2/orders/cancel"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"  {\n    \"success\": true,\n    \"message\": \"Failed to cancel any E-stamp orders.\",\n    \"data\": {\n      \"cancelled\": [],\n      \"failed\": [\n        {\n          \"orderId\": \"ORD001\",\n          \"status\": \"failed\",\n          \"reason\": \"Invalid order ID for cancellation\",\n          \"errorCode\": \"INVALID_ORDER_ID\"\n        },\n        {\n          \"orderId\": \"ORD002\",\n          \"status\": \"failed\",\n          \"reason\": \"Cancellation failed during transaction\",\n          \"errorCode\": \"CANCELLATION_FAILED\"\n        }\n      ],\n      \"summary\": {\n        \"total\": 2,\n        \"cancelled\": 0,\n        \"failed\": 2\n      }\n    }\n  }"},{"id":"6befad81-4566-4093-86b3-62593a167b2b","name":"Partial Success with Allotment Warning","originalRequest":{"method":"DELETE","header":[{"key":"app-id","value":"{{app-id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"orderIds\": [\"<OrderId1>\"],\n    \"reason\": \"reason\" // eg. \"Wrong Stamp Type\"\n}","options":{"raw":{"language":"json"}}},"url":"{{eStampSDKBaseUrl}}/v2/orders/cancel"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"  {\n    \"success\": true,\n    \"message\": \"2 order(s) cancelled, 1 order(s) failed.\",\n    \"data\": {\n      \"cancelled\": [\n        { \"orderId\": \"ORD001\", \"status\": \"cancelled\" },\n        { \"orderId\": \"ORD002\", \"status\": \"cancelled\" }\n      ],\n      \"failed\": [\n        {\n          \"orderId\": \"ORD003\",\n          \"status\": \"failed\",\n          \"reason\": \"Invalid order ID for cancellation\",\n          \"errorCode\": \"INVALID_ORDER_ID\"\n        }\n      ],\n      \"summary\": {\n        \"total\": 3,\n        \"cancelled\": 2,\n        \"failed\": 1\n      }\n    }\n  }\n"},{"id":"77629ed1-7f08-4b25-a42b-28fa7d6c6980","name":"Validation Errors","originalRequest":{"method":"DELETE","header":[{"key":"app-id","value":"{{app-id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"orderIds\": [\"<OrderId1>\"],\n    \"reason\": \"reason\" // eg. \"Wrong Stamp Type\"\n}","options":{"raw":{"language":"json"}}},"url":"{{eStampSDKBaseUrl}}/v2/orders/cancel"},"status":"Unprocessable Content","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"  {\n    \"success\": false,\n    \"errors\": [\n      {\n        \"field\": \"orderIds\",\n        \"message\": \"Order Ids must contain between 1 and 100 items\"\n      },\n      {\n        \"field\": \"reason\",\n        \"message\": \"Reason is required\"\n      }\n    ]\n  }"}],"_postman_id":"1da27c61-32b5-4444-9c67-10ac21c1ef8f"},{"name":"Create a bulk estamp order","id":"55f81276-3f91-416f-8884-3afb757fa76d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"app-id","value":"{{app-id}}","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"stateCode\": \"MH\",\n        \"firstPartyName\": \"<firstPartyName>\",\n        \"secondPartyName\": \"<secondPartyName>\",\n        \"stampDutyPaidBy\": \"SECOND_PARTY\", // [\"SECOND_PARTY\", \"FIRST_PARTY\"]\n        \"series\": [\n            {\n                \"stampDutyAmount\": 10,\n                \"stampType\": \"ESTAMP\",\n                \"articleId\": 1001,\n                \"purpose\": \"Loan Agreement\",\n                \"considerationPrice\": 1000,\n                \"quantity\": 1\n            },\n            {\n                \"stampDutyAmount\": 10,\n                \"stampType\": \"ESTAMP\",\n                \"articleId\": 1002,\n                \"purpose\": \"Loan Agreement\",\n                \"considerationPrice\": 1000,\n                \"quantity\": 1\n            }\n        ]\n    },\n    {\n        \"stateCode\": \"UP\",\n        \"firstPartyName\": \"<firstPartyName>\",\n        \"secondPartyName\": \"<secondPartyName>\",\n        \"stampDutyPaidBy\": \"SECOND_PARTY\", // [\"SECOND_PARTY\", \"FIRST_PARTY\"]\n        \"series\": [\n            {\n                \"stampDutyAmount\": 10,\n                \"stampType\": \"ESTAMP\",\n                \"articleId\": 1010,\n                \"purpose\": \"Loan Agreement\",\n                \"considerationPrice\": 1000,\n                \"quantity\": 1\n            },\n            {\n                \"stampDutyAmount\": 10,\n                \"stampType\": \"ESTAMP\",\n                \"articleId\": 1011,\n                \"purpose\": \"Loan Agreement\",\n                \"considerationPrice\": 1000,\n                \"quantity\": 1\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{eStampSDKBaseUrl}}/v2/bulk/init","description":"<h2 id=\"estamp-init-api-v2bulkinit\"><strong>Estamp Init Api (/v2/bulk/init)</strong></h2>\n<p>Initializes an eStamp transaction with necessary details for single or bulk procurement.</p>\n<p><strong>URL</strong></p>\n<p>{{eStampSDKBaseUrl}}/v2/init</p>\n<p>where eStampSDKBaseUrl can be</p>\n<ul>\n<li><p><a href=\"https://live.zoop.plus/contract/esign\">https://live.zoop.plus/contract/estamp</a>( for production)</p>\n</li>\n<li><p><a href=\"https://live.zoop.plus/contract/esign\">https://test.zoop.plus/contract/estamp</a>( for testing)</p>\n</li>\n</ul>\n<p><strong>REQUEST BODY</strong></p>\n<ul>\n<li><p><strong><code>stateCode</code></strong> → The state where the stamp is being procured (e.g., <code>\"MH\"</code> for Maharashtra).</p>\n</li>\n<li><p><strong><code>firstPartyName</code></strong> → Full legal name of the first party (e.g., borrower, buyer).</p>\n</li>\n<li><p><strong><code>secondPartyName</code></strong> → Full legal name of the second party (e.g., lender, seller).</p>\n</li>\n<li><p><strong><code>stampDutyPaidBy</code></strong> → Specifies who bears the stamp duty cost (<code>\"FIRST_PARTY\"</code> or <code>\"SECOND_PARTY\"</code>).</p>\n</li>\n<li><p><strong><code>series</code></strong> → Array of stamp papers being procured, each with:</p>\n<ul>\n<li><p><strong><code>stampDutyAmount</code></strong> → Duty value (e.g., <code>10</code> INR).</p>\n</li>\n<li><p><strong><code>stampType</code></strong> → Type of stamp (<code>\"ESTAMP\"</code> for electronic).</p>\n</li>\n<li><p><strong><code>articleId</code></strong> → Legal article ID (e.g., <code>1001</code> for Loan Agreement).</p>\n</li>\n<li><p><strong><code>purpose</code></strong> → Transaction purpose (e.g., <code>\"Loan Agreement\"</code>).</p>\n</li>\n<li><p><strong><code>considerationPrice</code></strong> → Transaction value (e.g., <code>1000</code> INR).</p>\n</li>\n<li><p><strong><code>quantity</code></strong> → Number of stamps (default: <code>1</code>).</p>\n</li>\n</ul>\n</li>\n</ul>\n<p><strong>HEADER</strong></p>\n<p>In order to authenticate you need to pass the following headers:</p>\n<ul>\n<li><p>app-id - Identifier of your organisation which is created in client dashboard</p>\n</li>\n<li><p>api-key – API key generated for the respective app</p>\n</li>\n</ul>\n<h1 id=\"possible-errors\">POSSIBLE ERRORS</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>HTTP Code</th>\n<th><strong>Fields</strong></th>\n<th>Message</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>422</code></td>\n<td>root</td>\n<td>Req body is required</td>\n</tr>\n<tr>\n<td><code>422</code></td>\n<td>root</td>\n<td>Req body must contain at least 1 items</td>\n</tr>\n<tr>\n<td><code>422</code></td>\n<td>stateCode</td>\n<td>State Code is required  <br />State Code char range must be 2 digit</td>\n</tr>\n<tr>\n<td><code>422</code></td>\n<td>series</td>\n<td>Series is required  <br />Series must contain at least 1 items</td>\n</tr>\n<tr>\n<td><code>422</code></td>\n<td>stampType</td>\n<td>Stamp Type is required  <br />Stamp Type must be one of [TRADITIONAL, ESTAMP, REVENUE]</td>\n</tr>\n<tr>\n<td><code>422</code></td>\n<td>stampDutyAmount</td>\n<td>Stamp Duty Amount is required  <br />Stamp Duty Amount must be greater than or equal to 10</td>\n</tr>\n<tr>\n<td><code>422</code></td>\n<td>articleId</td>\n<td>Article ID is required  <br />Article ID must be greater than or equal to 1</td>\n</tr>\n<tr>\n<td><code>422</code></td>\n<td>considerationPrice</td>\n<td>Consideration Price is required  <br />Number. [10, 99999999.99] (non‑revenue).  <br />[1, 99999999.99] for revenue stamps.</td>\n</tr>\n<tr>\n<td><code>422</code></td>\n<td>purpose</td>\n<td>Purpose is required, min 1 and max 150</td>\n</tr>\n<tr>\n<td><code>422</code></td>\n<td>firstPartyName</td>\n<td>First Party Name is required</td>\n</tr>\n<tr>\n<td><code>422</code></td>\n<td>secondPartyName</td>\n<td>Second Party Name is required</td>\n</tr>\n<tr>\n<td><code>422</code></td>\n<td>stampDutyPaidBy</td>\n<td>Stamp Duty Paid By is required  <br />Stamp Duty Paid By must be one of [FIRST_PARTY, SECOND_PARTY]</td>\n</tr>\n<tr>\n<td><code>422</code></td>\n<td>quantity</td>\n<td>Quantity must be greater than or equal to 1</td>\n</tr>\n<tr>\n<td><code>500</code></td>\n<td></td>\n<td>Something went wrong</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-key"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"000df74c-41d3-4f28-a182-342a6ce21028","id":"000df74c-41d3-4f28-a182-342a6ce21028","name":"Zoop eStamp SDK Documentation","type":"collection"}},"urlObject":{"path":["v2","bulk","init"],"host":["{{eStampSDKBaseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"05dc87e0-4363-4a92-b10b-2d23dc27a610","name":"Success Response","originalRequest":{"method":"POST","header":[{"key":"app-id","value":"{{app-id}}","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"stateCode\": \"MH\",\n        \"firstPartyName\": \"<firstPartyName>\",\n        \"secondPartyName\": \"<secondPartyName>\",\n        \"stampDutyPaidBy\": \"SECOND_PARTY\", // [\"SECOND_PARTY\", \"FIRST_PARTY\"]\n        \"series\": [\n            {\n                \"stampDutyAmount\": 10,\n                \"stampType\": \"ESTAMP\",\n                \"articleId\": 1001,\n                \"purpose\": \"Loan Agreement\",\n                \"considerationPrice\": 1000,\n                \"quantity\": 1\n            },\n            {\n                \"stampDutyAmount\": 10,\n                \"stampType\": \"ESTAMP\",\n                \"articleId\": 1002,\n                \"purpose\": \"Loan Agreement\",\n                \"considerationPrice\": 1000,\n                \"quantity\": 1\n            }\n        ]\n    },\n    {\n        \"stateCode\": \"UP\",\n        \"firstPartyName\": \"<firstPartyName>\",\n        \"secondPartyName\": \"<secondPartyName>\",\n        \"stampDutyPaidBy\": \"SECOND_PARTY\", // [\"SECOND_PARTY\", \"FIRST_PARTY\"]\n        \"series\": [\n            {\n                \"stampDutyAmount\": 10,\n                \"stampType\": \"ESTAMP\",\n                \"articleId\": 1010,\n                \"purpose\": \"Loan Agreement\",\n                \"considerationPrice\": 1000,\n                \"quantity\": 1\n            },\n            {\n                \"stampDutyAmount\": 10,\n                \"stampType\": \"ESTAMP\",\n                \"articleId\": 1011,\n                \"purpose\": \"Loan Agreement\",\n                \"considerationPrice\": 1000,\n                \"quantity\": 1\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{eStampSDKBaseUrl}}/v2/bulk/init"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"vary","value":"Origin, Accept-Encoding"},{"key":"access-control-allow-credentials","value":"true"},{"key":"access-control-expose-headers","value":"Upload-Offset,Location,Upload-Length,Tus-Version,Tus-Resumable,Tus-Max-Size,Tus-Extension,Upload-Metadata,Upload-Id"},{"key":"content-security-policy","value":"script-src 'self';style-src 'self';default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src-attr 'none';upgrade-insecure-requests"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"origin-agent-cluster","value":"?1"},{"key":"referrer-policy","value":"same-origin"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-download-options","value":"noopen"},{"key":"x-frame-options","value":"DENY"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"127"},{"key":"etag","value":"W/\"7f-D0StPwGhc5B+GHo5jK4mcTGQEBE\""},{"key":"date","value":"Mon, 07 Apr 2025 07:32:56 GMT"},{"key":"x-envoy-upstream-service-time","value":"340"},{"key":"server","value":"istio-envoy"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"E-stamp bulk order created successfully.\",\n    \"data\": {\n        \"orderId\": \"BABCD000083\"\n    }\n}"},{"id":"024357e6-dd06-451d-aeaf-2b9a2f504836","name":"Invalid Data","originalRequest":{"method":"POST","header":[{"key":"app-id","value":"{{app-id}}","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"stateCode\": \"MH\",\n        \"firstPartyName\": \"<firstPartyName>\",\n        \"secondPartyName\": \"<secondPartyName>\",\n        \"stampDutyPaidBy\": \"SECOND_PARTY\", // [\"SECOND_PARTY\", \"FIRST_PARTY\"]\n        \"series\": [\n            {\n                \"stampDutyAmount\": 10,\n                \"stampType\": \"ESTAMP\",\n                \"articleId\": 1001,\n                \"purpose\": \"Loan Agreement\",\n                \"considerationPrice\": 1000,\n                \"quantity\": 1\n            },\n            {\n                \"stampDutyAmount\": 10,\n                \"stampType\": \"ESTAMP\",\n                \"articleId\": 1002,\n                \"purpose\": \"Loan Agreement\",\n                \"considerationPrice\": 1000,\n                \"quantity\": 1\n            }\n        ]\n    },\n    {\n        \"stateCode\": \"UP\",\n        \"firstPartyName\": \"<firstPartyName>\",\n        \"secondPartyName\": \"<secondPartyName>\",\n        \"stampDutyPaidBy\": \"SECOND_PARTY\", // [\"SECOND_PARTY\", \"FIRST_PARTY\"]\n        \"series\": [\n            {\n                \"stampDutyAmount\": 10,\n                \"stampType\": \"ESTAMP\",\n                \"articleId\": 1010,\n                \"purpose\": \"Loan Agreement\",\n                \"considerationPrice\": 1000,\n                \"quantity\": 1\n            },\n            {\n                \"stampDutyAmount\": 10,\n                \"stampType\": \"ESTAMP\",\n                \"articleId\": 1011,\n                \"purpose\": \"Loan Agreement\",\n                \"considerationPrice\": 1000,\n                \"quantity\": 1\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{eStampSDKBaseUrl}}/v2/init"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"message\": \"RefId already exists for order - BABCD000083.\"\n}"}],"_postman_id":"55f81276-3f91-416f-8884-3afb757fa76d"},{"name":"List all orders","id":"f529e272-2719-4941-82e5-0b97281fa2dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"app-id","value":"{{app-id}}","type":"text"}],"url":"{{eStampSDKBaseUrl}}/v2/fetch/request","description":"<p><strong>Get Estamp Orders</strong></p>\n<p>This API is used to retrieve a list of all e-Stamp orders.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-key"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"000df74c-41d3-4f28-a182-342a6ce21028","id":"000df74c-41d3-4f28-a182-342a6ce21028","name":"Zoop eStamp SDK Documentation","type":"collection"}},"urlObject":{"path":["v2","fetch","request"],"host":["{{eStampSDKBaseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"0566ff8a-84d5-47ea-b45c-5bb49b8d0567","name":"Success Response","originalRequest":{"method":"GET","header":[{"key":"app-id","value":"","type":"text"}],"url":"{{eStampSDKBaseUrl}}/v2/fetch/request"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"vary","value":"Origin, Accept-Encoding"},{"key":"access-control-allow-credentials","value":"true"},{"key":"access-control-expose-headers","value":"Upload-Offset,Location,Upload-Length,Tus-Version,Tus-Resumable,Tus-Max-Size,Tus-Extension,Upload-Metadata,Upload-Id"},{"key":"content-security-policy","value":"script-src 'self';style-src 'self';default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src-attr 'none';upgrade-insecure-requests"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"origin-agent-cluster","value":"?1"},{"key":"referrer-policy","value":"same-origin"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-download-options","value":"noopen"},{"key":"x-frame-options","value":"DENY"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"W/\"2d00-s3J9VJWIbvhpOm87aHeHiZAM15I\""},{"key":"content-encoding","value":"gzip"},{"key":"date","value":"Mon, 07 Apr 2025 07:42:24 GMT"},{"key":"x-envoy-upstream-service-time","value":"155"},{"key":"server","value":"istio-envoy"},{"key":"transfer-encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"E-stamp orders get successfully.\",\n    \"data\": [\n        {\n            \"id\": \"cm96r842p0001a30tmx3bw7wx\",\n            \"type\": \"BULK\",\n            \"orderId\": \"dd1eece8-b3c0-47ea-a9d2-22bd0b5c87e2\",\n            \"status\": \"PENDING\",\n            \"totalAmount\": \"100\",\n            \"totalQuantity\": 1,\n            \"paymentStatus\": \"PENDING\",\n            \"paymentRefId\": null,\n            \"test\": false,\n            \"cancelledAt\": null,\n            \"cancelledReason\": null,\n            \"cancelledBy\": null,\n            \"createdAt\": \"2025-04-07T07:32:56.354Z\",\n            \"updatedAt\": \"2025-04-07T07:32:56.354Z\",\n            \"entityIdentifierId\": \"cm7vrjrj000018t0tysd3pm7p\",\n            \"orderItems\": [\n                {\n                    \"id\": \"cm96r843l0002a30ttk5lcicx\",\n                    \"orderId\": \"dd1eece8-b3c0-47ea-a9d2-22bd0b5c87e2\",\n                    \"partyId\": \"c56615bc36715a7d5ac1bda43659cdf47e124337\",\n                    \"seriesId\": \"cm96r842n00000ta3hn3hg69x\",\n                    \"quantity\": 1,\n                    \"amount\": \"100\",\n                    \"status\": \"PENDING\",\n                    \"entityIdentifierId\": \"cm7vrjrj000018t0tysd3pm7p\",\n                    \"cancelledAt\": null,\n                    \"cancelledReason\": null,\n                    \"cancelledBy\": null,\n                    \"createdAt\": \"2025-04-07T07:32:56.386Z\",\n                    \"updatedAt\": \"2025-04-07T07:32:56.386Z\",\n                    \"series\": {\n                        \"stateCode\": \"MH\",\n                        \"stampDutyAmount\": \"100\",\n                        \"stampType\": \"ESTAMP\",\n                        \"considerationPrice\": \"1000\",\n                        \"purpose\": \".\",\n                        \"article\": {\n                            \"number\": \"Article 3\"\n                        }\n                    },\n                    \"parties\": {\n                        \"firstParty\": \"Zoopsign Pvt Ltd\",\n                        \"secondParty\": \"jenisha\"\n                    }\n                }\n            ],\n            \"entityIdentifier\": {\n                \"organizationId\": \"60d5f3672aa697001d7e2cf1\"\n            }\n        },\n        {\n            \"id\": \"cm8sj77e600049o0thmdxf6cb\",\n            \"type\": \"BULK\",\n            \"orderId\": \"4cbae51f-eb5c-4cbe-ba90-d02f8fc535da\",\n            \"status\": \"PENDING\",\n            \"totalAmount\": \"100\",\n            \"totalQuantity\": 1,\n            \"paymentStatus\": \"PENDING\",\n            \"paymentRefId\": null,\n            \"test\": false,\n            \"cancelledAt\": null,\n            \"cancelledReason\": null,\n            \"cancelledBy\": null,\n            \"createdAt\": \"2025-03-28T08:39:30.606Z\",\n            \"updatedAt\": \"2025-03-28T08:39:30.606Z\",\n            \"entityIdentifierId\": \"cm7vrjrj000018t0tysd3pm7p\",\n            \"orderItems\": [\n                {\n                    \"id\": \"cm8sj77fn00059o0tpd5k2ngf\",\n                    \"orderId\": \"4cbae51f-eb5c-4cbe-ba90-d02f8fc535da\",\n                    \"partyId\": \"c56615bc36715a7d5ac1bda43659cdf47e124337\",\n                    \"seriesId\": \"cm8sj77e5000e0t9oeh2ohnts\",\n                    \"quantity\": 1,\n                    \"amount\": \"100\",\n                    \"status\": \"PENDING\",\n                    \"entityIdentifierId\": \"cm7vrjrj000018t0tysd3pm7p\",\n                    \"cancelledAt\": null,\n                    \"cancelledReason\": null,\n                    \"cancelledBy\": null,\n                    \"createdAt\": \"2025-03-28T08:39:30.659Z\",\n                    \"updatedAt\": \"2025-03-28T08:39:30.659Z\",\n                    \"series\": {\n                        \"stateCode\": \"MH\",\n                        \"stampDutyAmount\": \"100\",\n                        \"stampType\": \"ESTAMP\",\n                        \"considerationPrice\": \"1000\",\n                        \"purpose\": \".\",\n                        \"article\": {\n                            \"number\": \"Article 3\"\n                        }\n                    },\n                    \"parties\": {\n                        \"firstParty\": \"Zoopsign Pvt Ltd\",\n                        \"secondParty\": \"jenisha\"\n                    }\n                }\n            ],\n            \"entityIdentifier\": {\n                \"organizationId\": \"60d5f3672aa697001d7e2cf1\"\n            }\n        },\n        {\n            \"id\": \"cm8sf6nyb00029o0t6o1s8kbi\",\n            \"type\": \"BULK\",\n            \"orderId\": \"068ccee7-6ad8-434c-8203-7e9737504d0f\",\n            \"status\": \"PENDING\",\n            \"totalAmount\": \"100\",\n            \"totalQuantity\": 1,\n            \"paymentStatus\": \"PENDING\",\n            \"paymentRefId\": null,\n            \"test\": false,\n            \"cancelledAt\": null,\n            \"cancelledReason\": null,\n            \"cancelledBy\": null,\n            \"createdAt\": \"2025-03-28T06:47:06.947Z\",\n            \"updatedAt\": \"2025-03-28T06:47:06.947Z\",\n            \"entityIdentifierId\": \"cm7vrjrj000018t0tysd3pm7p\",\n            \"orderItems\": [\n                {\n                    \"id\": \"cm8sf6nz800039o0tfz5uom0r\",\n                    \"orderId\": \"068ccee7-6ad8-434c-8203-7e9737504d0f\",\n                    \"partyId\": \"c56615bc36715a7d5ac1bda43659cdf47e124337\",\n                    \"seriesId\": \"cm8sf6nya000d0t9obvme33rk\",\n                    \"quantity\": 1,\n                    \"amount\": \"100\",\n                    \"status\": \"PENDING\",\n                    \"entityIdentifierId\": \"cm7vrjrj000018t0tysd3pm7p\",\n                    \"cancelledAt\": null,\n                    \"cancelledReason\": null,\n                    \"cancelledBy\": null,\n                    \"createdAt\": \"2025-03-28T06:47:06.981Z\",\n                    \"updatedAt\": \"2025-03-28T06:47:06.981Z\",\n                    \"series\": {\n                        \"stateCode\": \"MH\",\n                        \"stampDutyAmount\": \"100\",\n                        \"stampType\": \"ESTAMP\",\n                        \"considerationPrice\": \"1000\",\n                        \"purpose\": \".\",\n                        \"article\": {\n                            \"number\": \"Article 3\"\n                        }\n                    },\n                    \"parties\": {\n                        \"firstParty\": \"Zoopsign Pvt Ltd\",\n                        \"secondParty\": \"jenisha\"\n                    }\n                }\n            ],\n            \"entityIdentifier\": {\n                \"organizationId\": \"60d5f3672aa697001d7e2cf1\"\n            }\n        },\n        {\n            \"id\": \"cm8seih3z00009o0tuv6wwam5\",\n            \"type\": \"BULK\",\n            \"orderId\": \"58fe78c1-aee4-481c-a090-65d4250a0046\",\n            \"status\": \"FULFILLED\",\n            \"totalAmount\": \"100\",\n            \"totalQuantity\": 1,\n            \"paymentStatus\": \"PENDING\",\n            \"paymentRefId\": null,\n            \"test\": false,\n            \"cancelledAt\": null,\n            \"cancelledReason\": null,\n            \"cancelledBy\": null,\n            \"createdAt\": \"2025-03-28T06:28:18.335Z\",\n            \"updatedAt\": \"2025-03-28T06:29:48.638Z\",\n            \"entityIdentifierId\": \"cm7vrjrj000018t0tysd3pm7p\",\n            \"orderItems\": [\n                {\n                    \"id\": \"cm8seih5h00019o0t0m4maove\",\n                    \"orderId\": \"58fe78c1-aee4-481c-a090-65d4250a0046\",\n                    \"partyId\": \"c56615bc36715a7d5ac1bda43659cdf47e124337\",\n                    \"seriesId\": \"cm8seih3x00040t9o569l1uu3\",\n                    \"quantity\": 1,\n                    \"amount\": \"100\",\n                    \"status\": \"FULFILLED\",\n                    \"entityIdentifierId\": \"cm7vrjrj000018t0tysd3pm7p\",\n                    \"cancelledAt\": null,\n                    \"cancelledReason\": null,\n                    \"cancelledBy\": null,\n                    \"createdAt\": \"2025-03-28T06:28:18.390Z\",\n                    \"updatedAt\": \"2025-03-28T06:29:48.627Z\",\n                    \"series\": {\n                        \"stateCode\": \"MH\",\n                        \"stampDutyAmount\": \"100\",\n                        \"stampType\": \"ESTAMP\",\n                        \"considerationPrice\": \"1000\",\n                        \"purpose\": \".\",\n                        \"article\": {\n                            \"number\": \"Article 3\"\n                        }\n                    },\n                    \"parties\": {\n                        \"firstParty\": \"Zoopsign Pvt Ltd\",\n                        \"secondParty\": \"jenisha\"\n                    }\n                }\n            ],\n            \"entityIdentifier\": {\n                \"organizationId\": \"60d5f3672aa697001d7e2cf1\"\n            }\n        },\n        {\n            \"id\": \"cm8r3xi7z000ed80tlzctz8ok\",\n            \"type\": \"BULK\",\n            \"orderId\": \"d67a9848-534f-46c9-a3f7-b22981f2efb6\",\n            \"status\": \"FULFILLED\",\n            \"totalAmount\": \"100\",\n            \"totalQuantity\": 1,\n            \"paymentStatus\": \"PENDING\",\n            \"paymentRefId\": null,\n            \"test\": false,\n            \"cancelledAt\": null,\n            \"cancelledReason\": null,\n            \"cancelledBy\": null,\n            \"createdAt\": \"2025-03-27T08:44:17.664Z\",\n            \"updatedAt\": \"2025-03-27T09:24:00.351Z\",\n            \"entityIdentifierId\": \"cm7vrjrj000018t0tysd3pm7p\",\n            \"orderItems\": [\n                {\n                    \"id\": \"cm8r3xi9c000fd80tx772iukr\",\n                    \"orderId\": \"d67a9848-534f-46c9-a3f7-b22981f2efb6\",\n                    \"partyId\": \"c56615bc36715a7d5ac1bda43659cdf47e124337\",\n                    \"seriesId\": \"cm8r3xi7z00040td867zdgkk4\",\n                    \"quantity\": 1,\n                    \"amount\": \"100\",\n                    \"status\": \"FULFILLED\",\n                    \"entityIdentifierId\": \"cm7vrjrj000018t0tysd3pm7p\",\n                    \"cancelledAt\": null,\n                    \"cancelledReason\": null,\n                    \"cancelledBy\": null,\n                    \"createdAt\": \"2025-03-27T08:44:17.712Z\",\n                    \"updatedAt\": \"2025-03-27T09:24:00.341Z\",\n                    \"series\": {\n                        \"stateCode\": \"MH\",\n                        \"stampDutyAmount\": \"100\",\n                        \"stampType\": \"ESTAMP\",\n                        \"considerationPrice\": \"1000\",\n                        \"purpose\": \".\",\n                        \"article\": {\n                            \"number\": \"Article 3\"\n                        }\n                    },\n                    \"parties\": {\n                        \"firstParty\": \"Zoopsign Pvt Ltd\",\n                        \"secondParty\": \"jenisha\"\n                    }\n                }\n            ],\n            \"entityIdentifier\": {\n                \"organizationId\": \"60d5f3672aa697001d7e2cf1\"\n            }\n        },\n        {\n            \"id\": \"cm8iet35i000ad80tepx8fo8i\",\n            \"type\": \"BULK\",\n            \"orderId\": \"b18d3387-e488-43bc-a82f-893e4acdb9f5\",\n            \"status\": \"INITIATED\",\n            \"totalAmount\": \"100\",\n            \"totalQuantity\": 1,\n            \"paymentStatus\": \"PENDING\",\n            \"paymentRefId\": null,\n            \"test\": false,\n            \"cancelledAt\": null,\n            \"cancelledReason\": null,\n            \"cancelledBy\": null,\n            \"createdAt\": \"2025-03-21T06:38:51.703Z\",\n            \"updatedAt\": \"2025-03-21T06:38:59.927Z\",\n            \"entityIdentifierId\": \"cm7vrjrj000018t0tysd3pm7p\",\n            \"orderItems\": [\n                {\n                    \"id\": \"cm8iet36i000bd80tfybbpe8i\",\n                    \"orderId\": \"b18d3387-e488-43bc-a82f-893e4acdb9f5\",\n                    \"partyId\": \"c56615bc36715a7d5ac1bda43659cdf47e124337\",\n                    \"seriesId\": \"cm8iet35h00030td85zu5fgh1\",\n                    \"quantity\": 1,\n                    \"amount\": \"100\",\n                    \"status\": \"INITIATED\",\n                    \"entityIdentifierId\": \"cm7vrjrj000018t0tysd3pm7p\",\n                    \"cancelledAt\": null,\n                    \"cancelledReason\": null,\n                    \"cancelledBy\": null,\n                    \"createdAt\": \"2025-03-21T06:38:51.738Z\",\n                    \"updatedAt\": \"2025-03-21T06:38:59.927Z\",\n                    \"series\": {\n                        \"stateCode\": \"MH\",\n                        \"stampDutyAmount\": \"100\",\n                        \"stampType\": \"ESTAMP\",\n                        \"considerationPrice\": \"1000\",\n                        \"purpose\": \".\",\n                        \"article\": {\n                            \"number\": \"Article 3\"\n                        }\n                    },\n                    \"parties\": {\n                        \"firstParty\": \"Zoopsign Pvt Ltd\",\n                        \"secondParty\": \"jenisha\"\n                    }\n                }\n            ],\n            \"entityIdentifier\": {\n                \"organizationId\": \"60d5f3672aa697001d7e2cf1\"\n            }\n        },\n        {\n            \"id\": \"cm8hsv64n0004d80ty27mp6zq\",\n            \"type\": \"BULK\",\n            \"orderId\": \"fd66ec3d-078e-4587-8646-b2217048770b\",\n            \"status\": \"INITIATED\",\n            \"totalAmount\": \"100\",\n            \"totalQuantity\": 1,\n            \"paymentStatus\": \"PENDING\",\n            \"paymentRefId\": null,\n            \"test\": false,\n            \"cancelledAt\": null,\n            \"cancelledReason\": null,\n            \"cancelledBy\": null,\n            \"createdAt\": \"2025-03-20T20:24:37.320Z\",\n            \"updatedAt\": \"2025-03-20T20:37:49.926Z\",\n            \"entityIdentifierId\": \"cm7vrjrj000018t0tysd3pm7p\",\n            \"orderItems\": [\n                {\n                    \"id\": \"cm8hsv65i0005d80thu0x9ilj\",\n                    \"orderId\": \"fd66ec3d-078e-4587-8646-b2217048770b\",\n                    \"partyId\": \"c56615bc36715a7d5ac1bda43659cdf47e124337\",\n                    \"seriesId\": \"cm8hsv64m00010td81shv8fj2\",\n                    \"quantity\": 1,\n                    \"amount\": \"100\",\n                    \"status\": \"INITIATED\",\n                    \"entityIdentifierId\": \"cm7vrjrj000018t0tysd3pm7p\",\n                    \"cancelledAt\": null,\n                    \"cancelledReason\": null,\n                    \"cancelledBy\": null,\n                    \"createdAt\": \"2025-03-20T20:24:37.350Z\",\n                    \"updatedAt\": \"2025-03-20T20:37:49.926Z\",\n                    \"series\": {\n                        \"stateCode\": \"MH\",\n                        \"stampDutyAmount\": \"100\",\n                        \"stampType\": \"ESTAMP\",\n                        \"considerationPrice\": \"1000\",\n                        \"purpose\": \".\",\n                        \"article\": {\n                            \"number\": \"Article 3\"\n                        }\n                    },\n                    \"parties\": {\n                        \"firstParty\": \"Zoopsign Pvt Ltd\",\n                        \"secondParty\": \"jenisha\"\n                    }\n                }\n            ],\n            \"entityIdentifier\": {\n                \"organizationId\": \"60d5f3672aa697001d7e2cf1\"\n            }\n        },\n        {\n            \"id\": \"cm8hsvs880006d80tj8kjashi\",\n            \"type\": \"BULK\",\n            \"orderId\": \"c964f799-55ca-4184-9244-2fb3bb645a51\",\n            \"status\": \"INITIATED\",\n            \"totalAmount\": \"100\",\n            \"totalQuantity\": 1,\n            \"paymentStatus\": \"PENDING\",\n            \"paymentRefId\": null,\n            \"test\": false,\n            \"cancelledAt\": null,\n            \"cancelledReason\": null,\n            \"cancelledBy\": null,\n            \"createdAt\": \"2025-03-20T20:25:05.961Z\",\n            \"updatedAt\": \"2025-03-20T20:29:56.813Z\",\n            \"entityIdentifierId\": \"cm7vrjrj000018t0tysd3pm7p\",\n            \"orderItems\": [\n                {\n                    \"id\": \"cm8hsvs910007d80tfjbxt0e7\",\n                    \"orderId\": \"c964f799-55ca-4184-9244-2fb3bb645a51\",\n                    \"partyId\": \"c56615bc36715a7d5ac1bda43659cdf47e124337\",\n                    \"seriesId\": \"cm8hsvs8800020td83oxlevi6\",\n                    \"quantity\": 1,\n                    \"amount\": \"100\",\n                    \"status\": \"INITIATED\",\n                    \"entityIdentifierId\": \"cm7vrjrj000018t0tysd3pm7p\",\n                    \"cancelledAt\": null,\n                    \"cancelledReason\": null,\n                    \"cancelledBy\": null,\n                    \"createdAt\": \"2025-03-20T20:25:05.989Z\",\n                    \"updatedAt\": \"2025-03-20T20:29:56.813Z\",\n                    \"series\": {\n                        \"stateCode\": \"MH\",\n                        \"stampDutyAmount\": \"100\",\n                        \"stampType\": \"ESTAMP\",\n                        \"considerationPrice\": \"1000\",\n                        \"purpose\": \".\",\n                        \"article\": {\n                            \"number\": \"Article 3\"\n                        }\n                    },\n                    \"parties\": {\n                        \"firstParty\": \"Zoopsign Pvt Ltd\",\n                        \"secondParty\": \"jenisha\"\n                    }\n                }\n            ],\n            \"entityIdentifier\": {\n                \"organizationId\": \"60d5f3672aa697001d7e2cf1\"\n            }\n        },\n        {\n            \"id\": \"cm8eds7a70000fc0tlmj8zcw3\",\n            \"type\": \"BULK\",\n            \"orderId\": \"6858c467-5d92-4fbb-8d36-84998312f48d\",\n            \"status\": \"CANCELLED\",\n            \"totalAmount\": \"100\",\n            \"totalQuantity\": 1,\n            \"paymentStatus\": \"PENDING\",\n            \"paymentRefId\": null,\n            \"test\": false,\n            \"cancelledAt\": \"2025-03-20T20:21:38.822Z\",\n            \"cancelledReason\": \"Test Order\",\n            \"cancelledBy\": \"cm7vrepd500008t0tex43osut\",\n            \"createdAt\": \"2025-03-18T10:59:06.080Z\",\n            \"updatedAt\": \"2025-03-20T20:21:38.823Z\",\n            \"entityIdentifierId\": \"cm7vrjrj000018t0tysd3pm7p\",\n            \"orderItems\": [\n                {\n                    \"id\": \"cm8eds7cc0001fc0t9oaoksqa\",\n                    \"orderId\": \"6858c467-5d92-4fbb-8d36-84998312f48d\",\n                    \"partyId\": \"c56615bc36715a7d5ac1bda43659cdf47e124337\",\n                    \"seriesId\": \"cm8eds7a600000tfc6dd8cxto\",\n                    \"quantity\": 1,\n                    \"amount\": \"100\",\n                    \"status\": \"CANCELLED\",\n                    \"entityIdentifierId\": \"cm7vrjrj000018t0tysd3pm7p\",\n                    \"cancelledAt\": null,\n                    \"cancelledReason\": null,\n                    \"cancelledBy\": null,\n                    \"createdAt\": \"2025-03-18T10:59:06.156Z\",\n                    \"updatedAt\": \"2025-03-20T20:21:38.823Z\",\n                    \"series\": {\n                        \"stateCode\": \"MH\",\n                        \"stampDutyAmount\": \"100\",\n                        \"stampType\": \"ESTAMP\",\n                        \"considerationPrice\": \"1000\",\n                        \"purpose\": \".\",\n                        \"article\": {\n                            \"number\": \"Article 3\"\n                        }\n                    },\n                    \"parties\": {\n                        \"firstParty\": \"Zoopsign Pvt Ltd\",\n                        \"secondParty\": \"jenisha\"\n                    }\n                }\n            ],\n            \"entityIdentifier\": {\n                \"organizationId\": \"60d5f3672aa697001d7e2cf1\"\n            }\n        },\n        {\n            \"id\": \"cm8efhsng0002fc0tjcy27uzy\",\n            \"type\": \"BULK\",\n            \"orderId\": \"08c6b4f0-72e3-41a5-ab1f-32eb64fad03c\",\n            \"status\": \"CANCELLED\",\n            \"totalAmount\": \"100\",\n            \"totalQuantity\": 1,\n            \"paymentStatus\": \"PENDING\",\n            \"paymentRefId\": null,\n            \"test\": false,\n            \"cancelledAt\": \"2025-03-20T20:21:30.568Z\",\n            \"cancelledReason\": \"Test Order\",\n            \"cancelledBy\": \"cm7vrepd500008t0tex43osut\",\n            \"createdAt\": \"2025-03-18T11:46:59.789Z\",\n            \"updatedAt\": \"2025-03-20T20:21:30.569Z\",\n            \"entityIdentifierId\": \"cm7vrjrj000018t0tysd3pm7p\",\n            \"orderItems\": [\n                {\n                    \"id\": \"cm8efhsp80003fc0tt42xrrsl\",\n                    \"orderId\": \"08c6b4f0-72e3-41a5-ab1f-32eb64fad03c\",\n                    \"partyId\": \"c56615bc36715a7d5ac1bda43659cdf47e124337\",\n                    \"seriesId\": \"cm8efhsnf00010tfc41i5bafr\",\n                    \"quantity\": 1,\n                    \"amount\": \"100\",\n                    \"status\": \"CANCELLED\",\n                    \"entityIdentifierId\": \"cm7vrjrj000018t0tysd3pm7p\",\n                    \"cancelledAt\": null,\n                    \"cancelledReason\": null,\n                    \"cancelledBy\": null,\n                    \"createdAt\": \"2025-03-18T11:46:59.853Z\",\n                    \"updatedAt\": \"2025-03-20T20:21:30.569Z\",\n                    \"series\": {\n                        \"stateCode\": \"MH\",\n                        \"stampDutyAmount\": \"100\",\n                        \"stampType\": \"ESTAMP\",\n                        \"considerationPrice\": \"1000\",\n                        \"purpose\": \".\",\n                        \"article\": {\n                            \"number\": \"Article 3\"\n                        }\n                    },\n                    \"parties\": {\n                        \"firstParty\": \"Zoopsign Pvt Ltd\",\n                        \"secondParty\": \"jenisha\"\n                    }\n                }\n            ],\n            \"entityIdentifier\": {\n                \"organizationId\": \"60d5f3672aa697001d7e2cf1\"\n            }\n        }\n    ],\n    \"filters\": [\n        {\n            \"_count\": 4,\n            \"status\": \"CANCELLED\"\n        },\n        {\n            \"_count\": 3,\n            \"status\": \"PENDING\"\n        },\n        {\n            \"_count\": 3,\n            \"status\": \"INITIATED\"\n        },\n        {\n            \"_count\": 3,\n            \"status\": \"FULFILLED\"\n        }\n    ],\n    \"pages\": {\n        \"count\": 13,\n        \"pageSize\": 10,\n        \"pages\": 2,\n        \"hasMore\": true,\n        \"hasPrevious\": false\n    }\n}"}],"_postman_id":"f529e272-2719-4941-82e5-0b97281fa2dd"},{"name":"Get Order details","id":"1a42facd-2334-4647-8748-612cdb7303a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"app-id","value":"{{app-id}}","type":"text"}],"url":"{{eStampSDKBaseUrl}}/v2/fetch/request/:requestId","description":"<p><strong>Get All Estamps Details Api</strong></p>\n<p>This API allows you to retrieve detailed information for all estamp order details.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-key"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"000df74c-41d3-4f28-a182-342a6ce21028","id":"000df74c-41d3-4f28-a182-342a6ce21028","name":"Zoop eStamp SDK Documentation","type":"collection"}},"urlObject":{"path":["v2","fetch","request",":requestId"],"host":["{{eStampSDKBaseUrl}}"],"query":[],"variable":[{"description":{"content":"<p>Order ID</p>\n","type":"text/plain"},"type":"any","value":"STEST000007","key":"requestId"}]}},"response":[{"id":"88cfe570-dab8-4ae0-a0b2-a5c5fff5de14","name":"Success Response","originalRequest":{"method":"GET","header":[{"key":"app-id","value":"","type":"text"}],"url":{"raw":"{{eStampSDKBaseUrl}}/v2/fetch/request/:requestId","host":["{{eStampSDKBaseUrl}}"],"path":["v2","fetch","request",":requestId"],"variable":[{"key":"requestId","value":"SZOOP000250","description":"Order ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"vary","value":"Origin, Accept-Encoding"},{"key":"access-control-allow-credentials","value":"true"},{"key":"access-control-expose-headers","value":"Upload-Offset,Location,Upload-Length,Tus-Version,Tus-Resumable,Tus-Max-Size,Tus-Extension,Upload-Metadata,Upload-Id"},{"key":"content-security-policy","value":"script-src 'self';style-src 'self';default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src-attr 'none';upgrade-insecure-requests"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"origin-agent-cluster","value":"?1"},{"key":"referrer-policy","value":"same-origin"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-download-options","value":"noopen"},{"key":"x-frame-options","value":"DENY"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"W/\"4a4-VvPvt6on9v7E17YJQy6XWgJeszI\""},{"key":"content-encoding","value":"gzip"},{"key":"date","value":"Mon, 07 Apr 2025 07:43:16 GMT"},{"key":"x-envoy-upstream-service-time","value":"137"},{"key":"server","value":"istio-envoy"},{"key":"transfer-encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"E-stamp order details fetched successfully.\",\n    \"data\": {\n        \"id\": \"cmaxw4sen001j7r0tiq90myru\",\n        \"type\": \"SINGLE\",\n        \"orderId\": \"SZOOP000250\",\n        \"status\": \"FULFILLED\",\n        \"totalAmount\": 100,\n        \"totalQuantity\": 1,\n        \"transactionFee\": 55,\n        \"documentUrl\": null,\n        \"callbackUrl\": null,\n        \"refId\": \"rasdjlkasdfjlas\",\n        \"createdAt\": \"2025-05-21T11:59:48.431Z\",\n        \"updatedAt\": \"2025-05-21T11:59:48.939Z\",\n        \"stampCertificateUrl\": \"<url>\",\n        \"eStampId\": \"cmaxw4shq003i0t7r32v84ora\",\n        \"orderItems\": [\n            {\n                \"id\": \"cmaxw4sey001k7r0tvnuaz3ym\",\n                \"orderId\": \"SZOOP000250\",\n                \"quantity\": 1,\n                \"amount\": \"100\",\n                \"status\": \"FULFILLED\",\n                \"refId\": \"rasdjlkasdfjlas\",\n                \"createdAt\": \"2025-05-21T11:59:48.442Z\",\n                \"updatedAt\": \"2025-05-21T11:59:48.937Z\",\n                \"firstParty\": \"Zoopsign Pvt Ltd\",\n                \"secondParty\": \"jenisha\",\n                \"firstPartyPan\": null,\n                \"secondPartyPan\": null,\n                \"firstPartyPhoneNumber\": null,\n                \"secondPartyPhoneNumber\": null,\n                \"stampDutyPaidBy\": \"SECOND_PARTY\",\n                \"firstPartyAddress\": null,\n                \"secondPartyAddress\": null,\n                \"stateCode\": \"AP\",\n                \"stampDutyAmount\": 100,\n                \"stampType\": \"ESTAMP\",\n                \"considerationPrice\": 1000,\n                \"purpose\": \".\",\n                \"taxCharges\": 0,\n                \"article\": \"Article 3\",\n                \"stampCertificateUrl\": \"<url>\",\n                \"eStampId\": \"cmaxw4shq003i0t7r32v84ora\"\n            }\n        ]\n    }\n}"}],"_postman_id":"1a42facd-2334-4647-8748-612cdb7303a5"},{"name":"List of eStamps by Order ID","id":"c5cb58ab-91be-439a-8605-9d98b2ca45a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"app-id","value":"{{app-id}}","type":"text"}],"url":"{{eStampSDKBaseUrl}}/v2/fetch/request/:orderId/estamps","description":"<p><strong>Get Estamp Orders</strong></p>\n<p>This API retrieved the list of eStamp against an order.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-key"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"000df74c-41d3-4f28-a182-342a6ce21028","id":"000df74c-41d3-4f28-a182-342a6ce21028","name":"Zoop eStamp SDK Documentation","type":"collection"}},"urlObject":{"path":["v2","fetch","request",":orderId","estamps"],"host":["{{eStampSDKBaseUrl}}"],"query":[],"variable":[{"type":"any","value":"dd1eece8-b3c0-47ea-a9d2-22bd0b5c87e2","key":"orderId"}]}},"response":[{"id":"ec9b514b-b4f7-4652-9724-5d0011bf6258","name":"Success Response","originalRequest":{"method":"GET","header":[{"key":"app-id","value":"","type":"text"}],"url":{"raw":"{{eStampSDKBaseUrl}}/v2/fetch/request/:orderId/estamps","host":["{{eStampSDKBaseUrl}}"],"path":["v2","fetch","request",":orderId","estamps"],"variable":[{"key":"orderId","value":"dd1eece8-b3c0-47ea-a9d2-22bd0b5c87e2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"vary","value":"Origin, Accept-Encoding"},{"key":"access-control-allow-credentials","value":"true"},{"key":"access-control-expose-headers","value":"Upload-Offset,Location,Upload-Length,Tus-Version,Tus-Resumable,Tus-Max-Size,Tus-Extension,Upload-Metadata,Upload-Id"},{"key":"content-security-policy","value":"script-src 'self';style-src 'self';default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src-attr 'none';upgrade-insecure-requests"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"origin-agent-cluster","value":"?1"},{"key":"referrer-policy","value":"same-origin"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-download-options","value":"noopen"},{"key":"x-frame-options","value":"DENY"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"W/\"45f-mAp+bTKeYb1ZmDCQdrgvOCIdysk\""},{"key":"content-encoding","value":"gzip"},{"key":"date","value":"Fri, 11 Apr 2025 10:43:01 GMT"},{"key":"x-envoy-upstream-service-time","value":"128"},{"key":"server","value":"istio-envoy"},{"key":"transfer-encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Order estamps fetched successfully.\",\n    \"data\": [\n        {\n            \"id\": \"cm96rs3z300070ta33sdn2kqp\",\n            \"status\": \"CONSUMED\",\n            \"consumedAt\": \"2025-04-07T07:49:05.644Z\",\n            \"createdAt\": \"2025-04-07T07:48:29.374Z\",\n            \"updatedAt\": \"2025-04-07T07:49:05.645Z\",\n            \"orderId\": \"dd1eece8-b3c0-47ea-a9d2-22bd0b5c87e2\",\n            \"entityIdentifierId\": \"cm7vrjrj000018t0tysd3pm7p\",\n            \"eStamps\": [\n                {\n                    \"id\": \"cm96rs3z300080ta34d3h21ln\",\n                    \"issuedAt\": \"2025-04-07T07:48:29.346Z\",\n                    \"expiresAt\": \"2025-05-07T07:48:29.346Z\",\n                    \"uniDocRefNo\": \"714792\",\n                    \"certificateNo\": \"6892Y444\",\n                    \"accountReferenceId\": \"12345\",\n                    \"file\": \"<url>\",\n                    \"parties\": {\n                        \"firstParty\": \"Zoopsign Pvt Ltd\",\n                        \"secondParty\": \"jenisha\",\n                        \"stampDutyPaidBy\": \"SECOND_PARTY\",\n                        \"firstPartyPan\": null,\n                        \"secondPartyPan\": null,\n                        \"firstPartyPhoneNumber\": null,\n                        \"secondPartyPhoneNumber\": null\n                    },\n                    \"series\": {\n                        \"stateCode\": \"MH\",\n                        \"stampDutyAmount\": \"100\",\n                        \"stampType\": \"ESTAMP\",\n                        \"considerationPrice\": \"1000\",\n                        \"purpose\": \".\",\n                        \"article\": {\n                            \"number\": \"Article 3\"\n                        }\n                    }\n                }\n            ]\n        }\n    ],\n    \"stats\": [\n        {\n            \"_count\": 4,\n            \"status\": \"CONSUMED\"\n        }\n    ],\n    \"pages\": {\n        \"count\": 1,\n        \"pageSize\": 10,\n        \"pages\": 1,\n        \"hasMore\": false,\n        \"hasPrevious\": false\n    }\n}"}],"_postman_id":"c5cb58ab-91be-439a-8605-9d98b2ca45a7"},{"name":"List of eStamps","id":"ca53cff2-5761-43a6-86a6-c82e1049330d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"app-id","value":"{{app-id}}","type":"text"}],"url":"{{eStampSDKBaseUrl}}/v2/fetch/estamps","description":"<p><strong>Get Estamps Inventory Api</strong></p>\n<p>This API is used to retrieve the available e-Stamp inventory</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-key"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"000df74c-41d3-4f28-a182-342a6ce21028","id":"000df74c-41d3-4f28-a182-342a6ce21028","name":"Zoop eStamp SDK Documentation","type":"collection"}},"urlObject":{"path":["v2","fetch","estamps"],"host":["{{eStampSDKBaseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"6e329f74-e932-415e-8b77-689863b91da1","name":"Success Response","originalRequest":{"method":"GET","header":[{"key":"app-id","value":"","type":"text"},{"key":"api-key","value":"","type":"text"}],"url":"{{eStampSDKBaseUrl}}/v2/fetch/estamps"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"vary","value":"Origin, Accept-Encoding"},{"key":"access-control-allow-credentials","value":"true"},{"key":"access-control-expose-headers","value":"Upload-Offset,Location,Upload-Length,Tus-Version,Tus-Resumable,Tus-Max-Size,Tus-Extension,Upload-Metadata,Upload-Id"},{"key":"content-security-policy","value":"script-src 'self';style-src 'self';default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src-attr 'none';upgrade-insecure-requests"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"origin-agent-cluster","value":"?1"},{"key":"referrer-policy","value":"same-origin"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-download-options","value":"noopen"},{"key":"x-frame-options","value":"DENY"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"W/\"b92-Vu38l0kgfpE/cKf667NJ5nCzF/o\""},{"key":"content-encoding","value":"gzip"},{"key":"date","value":"Mon, 07 Apr 2025 07:42:41 GMT"},{"key":"x-envoy-upstream-service-time","value":"135"},{"key":"server","value":"istio-envoy"},{"key":"transfer-encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"E-stamps fetched successfully.\",\n    \"data\": [\n        {\n            \"id\": \"cm8r5ckkb00020t9oej21d9iz\",\n            \"status\": \"CONSUMED\",\n            \"consumedAt\": \"2025-03-28T06:50:26.166Z\",\n            \"createdAt\": \"2025-03-27T09:24:00.316Z\",\n            \"updatedAt\": \"2025-03-28T06:50:26.167Z\",\n            \"orderId\": \"d67a9848-534f-46c9-a3f7-b22981f2efb6\",\n            \"entityIdentifierId\": \"cm7vrjrj000018t0tysd3pm7p\",\n            \"eStamps\": [\n                {\n                    \"id\": \"cm8r5ckkb00030t9o8hnocrzm\",\n                    \"issuedAt\": \"2025-03-27T09:24:00.193Z\",\n                    \"expiresAt\": \"2025-04-27T09:24:00.192Z\",\n                    \"uniDocRefNo\": \"714792\",\n                    \"certificateNo\": \"6892Y028\",\n                    \"accountReferenceId\": \"12345\",\n                    \"file\": \"60d5f3672aa697001d7e2cf1/estamps/cm8r5ckkb00020t9oej21d9iz/cm8r5ckkb00030t9o8hnocrzm.pdf\",\n                    \"parties\": {\n                        \"firstParty\": \"Zoopsign Pvt Ltd\",\n                        \"secondParty\": \"jenisha\",\n                        \"stampDutyPaidBy\": \"SECOND_PARTY\",\n                        \"firstPartyPan\": null,\n                        \"secondPartyPan\": null,\n                        \"firstPartyPhoneNumber\": null,\n                        \"secondPartyPhoneNumber\": null\n                    },\n                    \"series\": {\n                        \"stateCode\": \"MH\",\n                        \"stampDutyAmount\": \"100\",\n                        \"stampType\": \"ESTAMP\",\n                        \"considerationPrice\": \"1000\",\n                        \"purpose\": \".\",\n                        \"article\": {\n                            \"number\": \"Article 3\"\n                        }\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"cm8sekeqs000b0t9o4gj9g4wp\",\n            \"status\": \"CONSUMED\",\n            \"consumedAt\": \"2025-03-28T06:30:26.592Z\",\n            \"createdAt\": \"2025-03-28T06:29:48.605Z\",\n            \"updatedAt\": \"2025-03-28T06:30:26.593Z\",\n            \"orderId\": \"58fe78c1-aee4-481c-a090-65d4250a0046\",\n            \"entityIdentifierId\": \"cm7vrjrj000018t0tysd3pm7p\",\n            \"eStamps\": [\n                {\n                    \"id\": \"cm8sekeqs000c0t9o95mag70x\",\n                    \"issuedAt\": \"2025-03-28T06:29:48.584Z\",\n                    \"expiresAt\": \"2025-04-28T06:29:48.584Z\",\n                    \"uniDocRefNo\": \"714792\",\n                    \"certificateNo\": \"6892Y054\",\n                    \"accountReferenceId\": \"12345\",\n                    \"file\": \"60d5f3672aa697001d7e2cf1/estamps/cm8sekeqs000b0t9o4gj9g4wp/cm8sekeqs000c0t9o95mag70x.pdf\",\n                    \"parties\": {\n                        \"firstParty\": \"Zoopsign Pvt Ltd\",\n                        \"secondParty\": \"jenisha\",\n                        \"stampDutyPaidBy\": \"SECOND_PARTY\",\n                        \"firstPartyPan\": null,\n                        \"secondPartyPan\": null,\n                        \"firstPartyPhoneNumber\": null,\n                        \"secondPartyPhoneNumber\": null\n                    },\n                    \"series\": {\n                        \"stateCode\": \"MH\",\n                        \"stampDutyAmount\": \"100\",\n                        \"stampType\": \"ESTAMP\",\n                        \"considerationPrice\": \"1000\",\n                        \"purpose\": \".\",\n                        \"article\": {\n                            \"number\": \"Article 3\"\n                        }\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"cm7vrqclz00040t8t4zsdcy0t\",\n            \"status\": \"CONSUMED\",\n            \"consumedAt\": \"2025-03-27T08:52:21.404Z\",\n            \"createdAt\": \"2025-03-05T10:21:57.675Z\",\n            \"updatedAt\": \"2025-03-27T08:52:21.405Z\",\n            \"orderId\": \"524a920f-e234-480c-b154-db39a53d48d5\",\n            \"entityIdentifierId\": \"cm7vrjrj000018t0tysd3pm7p\",\n            \"eStamps\": [\n                {\n                    \"id\": \"cm7vrqclz00050t8tccnm6tqm\",\n                    \"issuedAt\": \"2025-03-05T10:21:56.979Z\",\n                    \"expiresAt\": \"2025-04-05T10:21:56.978Z\",\n                    \"uniDocRefNo\": \"714792\",\n                    \"certificateNo\": \"6892Y281\",\n                    \"accountReferenceId\": \"12345\",\n                    \"file\": \"60d5f3672aa697001d7e2cf1/estamps/cm7vrqclz00040t8t4zsdcy0t/cm7vrqclz00050t8tccnm6tqm.pdf\",\n                    \"parties\": {\n                        \"firstParty\": \"Zoopsign Pvt Ltd\",\n                        \"secondParty\": \"jenisha\",\n                        \"stampDutyPaidBy\": \"SECOND_PARTY\",\n                        \"firstPartyPan\": null,\n                        \"secondPartyPan\": null,\n                        \"firstPartyPhoneNumber\": null,\n                        \"secondPartyPhoneNumber\": null\n                    },\n                    \"series\": {\n                        \"stateCode\": \"MH\",\n                        \"stampDutyAmount\": \"100\",\n                        \"stampType\": \"ESTAMP\",\n                        \"considerationPrice\": \"1000\",\n                        \"purpose\": \".\",\n                        \"article\": {\n                            \"number\": \"Article 3\"\n                        }\n                    }\n                }\n            ]\n        }\n    ],\n    \"filters\": [\n        {\n            \"_count\": 3,\n            \"status\": \"CONSUMED\"\n        }\n    ],\n    \"pages\": {\n        \"count\": 3,\n        \"pageSize\": 10,\n        \"pages\": 1,\n        \"hasMore\": false,\n        \"hasPrevious\": false\n    }\n}"}],"_postman_id":"ca53cff2-5761-43a6-86a6-c82e1049330d"},{"name":"Fetch eStamp Details","id":"a2fd3afb-5221-4127-92e5-bd196bb8a48c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"app-id","value":"{{app-id}}","type":"text"}],"url":"{{eStampSDKBaseUrl}}/v2/fetch/estamps/:estampId","description":"<p><strong>Get Estamp Details Api</strong></p>\n<p>Estamp Details can be retrieved using get eStamp Details Api</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-key"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"000df74c-41d3-4f28-a182-342a6ce21028","id":"000df74c-41d3-4f28-a182-342a6ce21028","name":"Zoop eStamp SDK Documentation","type":"collection"}},"urlObject":{"path":["v2","fetch","estamps",":estampId"],"host":["{{eStampSDKBaseUrl}}"],"query":[],"variable":[{"description":{"content":"<p>ID of the eStamps</p>\n","type":"text/plain"},"type":"any","value":"cm8r5ckkb00020t9oej21d9iz","key":"estampId"}]}},"response":[{"id":"17ea7f14-6a52-4b47-b944-f3884eea9c8b","name":"Success Response","originalRequest":{"method":"GET","header":[{"key":"app-id","value":"","type":"text"}],"url":{"raw":"{{eStampSDKBaseUrl}}/v2/fetch/estamps/:estampId","host":["{{eStampSDKBaseUrl}}"],"path":["v2","fetch","estamps",":estampId"],"variable":[{"key":"estampId","value":"cm7vrqclz00040t8t4zsdcy0t","description":"ID of the eStamps"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"vary","value":"Origin, Accept-Encoding"},{"key":"access-control-allow-credentials","value":"true"},{"key":"access-control-expose-headers","value":"Upload-Offset,Location,Upload-Length,Tus-Version,Tus-Resumable,Tus-Max-Size,Tus-Extension,Upload-Metadata,Upload-Id"},{"key":"content-security-policy","value":"script-src 'self';style-src 'self';default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src-attr 'none';upgrade-insecure-requests"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"origin-agent-cluster","value":"?1"},{"key":"referrer-policy","value":"same-origin"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-download-options","value":"noopen"},{"key":"x-frame-options","value":"DENY"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"W/\"5f0-qurQsNK2jxfloIBTTGAcCoyGLfs\""},{"key":"content-encoding","value":"gzip"},{"key":"date","value":"Thu, 27 Mar 2025 08:54:29 GMT"},{"key":"x-envoy-upstream-service-time","value":"140"},{"key":"server","value":"istio-envoy"},{"key":"transfer-encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"E-stamp fetched successfully.\",\n    \"data\": {\n        \"id\": \"cm7vrqclz00040t8t4zsdcy0t\",\n        \"createdAt\": \"2025-03-05T10:21:57.675Z\",\n        \"updatedAt\": \"2025-03-27T08:52:21.405Z\",\n        \"status\": \"CONSUMED\",\n        \"consumedAt\": \"2025-03-27T08:52:21.404Z\",\n        \"certificates\": [\n            {\n                \"id\": \"cm7vrqclz00050t8tccnm6tqm\",\n                \"issuedAt\": \"2025-03-05T10:21:56.979Z\",\n                \"expiresAt\": \"2025-04-05T10:21:56.978Z\",\n                \"uniDocRefNo\": \"714792\",\n                \"certificateNo\": \"6892Y281\",\n                \"accountReferenceId\": \"12345\",\n                \"file\": \"60d5f3672aa697001d7e2cf1/estamps/cm7vrqclz00040t8t4zsdcy0t/cm7vrqclz00050t8tccnm6tqm.pdf\",\n                \"parties\": {\n                    \"firstParty\": \"Zoopsign Pvt Ltd\",\n                    \"secondParty\": \"jenisha\",\n                    \"stampDutyPaidBy\": \"SECOND_PARTY\",\n                    \"firstPartyPan\": null,\n                    \"secondPartyPan\": null,\n                    \"firstPartyPhoneNumber\": null,\n                    \"secondPartyPhoneNumber\": null\n                },\n                \"series\": {\n                    \"stateCode\": \"MH\",\n                    \"stampDutyAmount\": \"100\",\n                    \"stampType\": \"ESTAMP\",\n                    \"considerationPrice\": \"1000\",\n                    \"purpose\": \".\",\n                    \"article\": {\n                        \"number\": \"Article 3\"\n                    }\n                },\n                \"url\": \"https://storage.googleapis.com/zsp-kaio-prod/60d5f3672aa697001d7e2cf1/estamps/cm7vrqclz00040t8t4zsdcy0t/cm7vrqclz00050t8tccnm6tqm.pdf?GoogleAccessId=zsp-kaio-service-uat%40zoop-one-development.iam.gserviceaccount.com&Expires=1743067110&Signature=I8wlgKOAnCT%2FMRfb1fHmUSX4LW%2BBZWQUD1MOrrUWI93oA0dnF%2BUYzSsMUQpGs1kxUj7xn%2F%2B9fhuKKU2rbqo%2FN0SWSiNgSZa8SqV2GEhV029bCzjBf11IL0tZSBg1nXzLwaIQf4ezs0i0quxU3xw8p7qDv2qlyvOu2kPBi95RXiEC4tGwMJRH%2FB7f8gqAoFHc0JbZK6zHjz7qLslrEsycQGHsOW3TbHlo1C4FaQeOH9z6p3TnLG1lRsfOFj6u8P0ZG3%2FdZjqRy9iuVRPE6GwA9DT5KTYuficrmWcaZ12cQw0%2BXmy%2BQcm%2FPTEk5DEOrC3RKPVhMA28XYMVfzReFOROjg%3D%3D\"\n            }\n        ]\n    }\n}"}],"_postman_id":"a2fd3afb-5221-4127-92e5-bd196bb8a48c"},{"name":"Get Articles","id":"8fcac9db-5419-4b85-b4a4-90e62e734aa5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"app-id","value":"{{app-id}}","type":"text"}],"url":"{{eStampSDKBaseUrl}}/v2/fetch/articles","description":"<p><strong>Get Articles Api</strong></p>\n<p>Article Id and Article Details for Each State or Branch can be retrieved using get articles api</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-key"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"000df74c-41d3-4f28-a182-342a6ce21028","id":"000df74c-41d3-4f28-a182-342a6ce21028","name":"Zoop eStamp SDK Documentation","type":"collection"}},"urlObject":{"path":["v2","fetch","articles"],"host":["{{eStampSDKBaseUrl}}"],"query":[{"disabled":true,"key":"stateCode[0]","value":"AN"}],"variable":[]}},"response":[{"id":"20be4b31-364d-4c2d-8c37-1ef0d91c0fd3","name":"Success Response","originalRequest":{"method":"GET","header":[{"key":"app-id","value":"","type":"text"}],"url":{"raw":"{{eStampSDKBaseUrl}}/v2/fetch/articles","host":["{{eStampSDKBaseUrl}}"],"path":["v2","fetch","articles"],"query":[{"key":"stateCode[0]","value":"AN","description":"Filter by state code","disabled":true},{"key":"q","value":null,"description":"Search by a keyword","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"vary","value":"Origin, Accept-Encoding"},{"key":"access-control-allow-credentials","value":"true"},{"key":"access-control-expose-headers","value":"Upload-Offset,Location,Upload-Length,Tus-Version,Tus-Resumable,Tus-Max-Size,Tus-Extension,Upload-Metadata,Upload-Id"},{"key":"content-security-policy","value":"script-src 'self';style-src 'self';default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src-attr 'none';upgrade-insecure-requests"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"origin-agent-cluster","value":"?1"},{"key":"referrer-policy","value":"same-origin"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-download-options","value":"noopen"},{"key":"x-frame-options","value":"DENY"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"cache-control","value":"public, max-age=900"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"W/\"2595a-+knNxoCQQifHEM4LztdR5nFvwxQ\""},{"key":"content-encoding","value":"gzip"},{"key":"date","value":"Mon, 07 Apr 2025 07:41:59 GMT"},{"key":"x-envoy-upstream-service-time","value":"205"},{"key":"server","value":"istio-envoy"},{"key":"transfer-encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Articles fetched successfully.\",\n    \"data\": [\n        {\n            \"id\": 1001,\n            \"number\": \"Article 3\",\n            \"description\": \"Adoption Deed\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1002,\n            \"number\": \"Article 4\",\n            \"description\": \"Affidavit\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1003,\n            \"number\": \"Article 6\",\n            \"description\": \"Agreement\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1004,\n            \"number\": \"Article 6(A)\",\n            \"description\": \"Where the value\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1005,\n            \"number\": \"Article 6(A)(i)\",\n            \"description\": \"Does not exceed Rs.5,000\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1006,\n            \"number\": \"Article 6(A)(ii)\",\n            \"description\": \"Exceeds Rs.5,000/- but does not exceed Rs. 20,000/-\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1007,\n            \"number\": \"Article 6(A)(iii)\",\n            \"description\": \"Exceeds Rs.20,000/- but does not exceed Rs. 50,000/-\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1008,\n            \"number\": \"Article 6(A)(iv)\",\n            \"description\": \"Exceeds Rs.50,000/-\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1009,\n            \"number\": \"Article 6(B)\",\n            \"description\": \"Relating to construction of house / flat or development or sale of immovable property\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1010,\n            \"number\": \"Article 6(C)\",\n            \"description\": \"In any other case\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1011,\n            \"number\": \"Article 6-A\",\n            \"description\": \"Pari-Passu Agreement\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1012,\n            \"number\": \"Article 7\",\n            \"description\": \"Agreement\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1013,\n            \"number\": \"Article 7(i)\",\n            \"description\": \"Relating to Deposit of title deeds\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1014,\n            \"number\": \"Article 7(ii)\",\n            \"description\": \"Relating to pawn or pledge or 0.5% (subject to a hypothecation of movables)\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1015,\n            \"number\": \"Article 8\",\n            \"description\": \"Appointment in execution of power\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1016,\n            \"number\": \"Article 11\",\n            \"description\": \"Articles of Association of Company\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1017,\n            \"number\": \"Article 11(a)\",\n            \"description\": \"if there is no share capital\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1018,\n            \"number\": \"Article 11(b)\",\n            \"description\": \"If there is share capital\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1019,\n            \"number\": \"Article 12\",\n            \"description\": \"Award\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1020,\n            \"number\": \"Article 15\",\n            \"description\": \"Cancellation Deed\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1021,\n            \"number\": \"Article 16\",\n            \"description\": \"Certificate of Sale\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1022,\n            \"number\": \"Article 20\",\n            \"description\": \"Conveyance\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1023,\n            \"number\": \"Article 20(d)\",\n            \"description\": \"Amalgamation or merger of companies\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1024,\n            \"number\": \"Article 25\",\n            \"description\": \"Divorce Deed\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1025,\n            \"number\": \"Article 27\",\n            \"description\": \"Exchange\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1026,\n            \"number\": \"Article 28\",\n            \"description\": \"Further charges\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1027,\n            \"number\": \"Article 28(i)\",\n            \"description\": \"With possession of property\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1028,\n            \"number\": \"Article 28(ii)\",\n            \"description\": \"Without possession\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1029,\n            \"number\": \"Article 29\",\n            \"description\": \"Gift\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1030,\n            \"number\": \"Article 29(i)\",\n            \"description\": \"In favour of relatives as defined u/s. 56(2) of I.T. Act, 1961 and Govt./Local bodies/ U.D.As.\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1031,\n            \"number\": \"Article 29(ii)\",\n            \"description\": \"In other cases\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1032,\n            \"number\": \"Article 30\",\n            \"description\": \"Indeminity Bond\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1033,\n            \"number\": \"Article 31\",\n            \"description\": \"Lease\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1034,\n            \"number\": \"Article 31(a)(i)\",\n            \"description\": \"for less than 1 year\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1035,\n            \"number\": \"Article 31(ii)\",\n            \"description\": \"for 1-5 years\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1036,\n            \"number\": \"Article 31(a)\",\n            \"description\": \"for 1-5 years - residential properties\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1037,\n            \"number\": \"Article 31(b)\",\n            \"description\": \"for 1-5 years - In other cases\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1038,\n            \"number\": \"Article 31(iii)\",\n            \"description\": \"for 5-10 years\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1039,\n            \"number\": \"Article 31(iv)\",\n            \"description\": \"for 10-20 years\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1040,\n            \"number\": \"Article 31(v)\",\n            \"description\": \"for 20-30 years\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1041,\n            \"number\": \"Article 31(vi)\",\n            \"description\": \"for more the 30 years or in perpetuity\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1042,\n            \"number\": \"Article 31(c)\",\n            \"description\": \"for fine,premium or money advanced in addition to rent\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1043,\n            \"number\": \"Article 31(d)\",\n            \"description\": \"involving improvements, to be made over to lessor at the end\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1044,\n            \"number\": \"Article 34\",\n            \"description\": \"Memorandum of Association of a company\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1045,\n            \"number\": \"Article 34(a)\",\n            \"description\": \"if accompanied by Articles of Association\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1046,\n            \"number\": \"Article 34(b)\",\n            \"description\": \"if not so accompanied\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1047,\n            \"number\": \"Article 35\",\n            \"description\": \"Mortgage\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1048,\n            \"number\": \"Article 35(a)\",\n            \"description\": \"with possession\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1049,\n            \"number\": \"Article 35(b)\",\n            \"description\": \"without possession\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1050,\n            \"number\": \"Article 40\",\n            \"description\": \"Partition\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1051,\n            \"number\": \"Article 40(a)\",\n            \"description\": \"Among family members\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1052,\n            \"number\": \"Article 40(b)\",\n            \"description\": \"Among others\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1053,\n            \"number\": \"Article 41\",\n            \"description\": \"Partnership\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1054,\n            \"number\": \"Article 41(A)(a)\",\n            \"description\": \"where capital does not exceed Rs. 5000/-\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1055,\n            \"number\": \"Article 41(A)(b)\",\n            \"description\": \"in any other case\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1056,\n            \"number\": \"Article 41(B)(a)\",\n            \"description\": \"if immovable property contributed by outgoing partner(s) remains with the firm on re-constitution\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1057,\n            \"number\": \"Article 41(B)(b)\",\n            \"description\": \"in any other case of re-constitution\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1058,\n            \"number\": \"Article 41(C)(a)\",\n            \"description\": \"if immovable property brought in by a partner goes to another on dissolution property\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1059,\n            \"number\": \"Article 41(C)(b)\",\n            \"description\": \"in any other case\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1060,\n            \"number\": \"Article 42\",\n            \"description\": \"Power of Attorney\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1061,\n            \"number\": \"Article 42(i)\",\n            \"description\": \"when given for construction/ development or sale or transfer in any manner, of immovable property\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1062,\n            \"number\": \"Article 42(a)\",\n            \"description\": \"to any of family members\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1063,\n            \"number\": \"Article 42(b)\",\n            \"description\": \"to other than family members\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1064,\n            \"number\": \"Article 42(ii)\",\n            \"description\": \"when given for other purpose\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1065,\n            \"number\": \"Article 42(iii)\",\n            \"description\": \"when given for consideration\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1066,\n            \"number\": \"Article 45(b)\",\n            \"description\": \"Reconveyance of Mortgaged Property\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1067,\n            \"number\": \"Article 46\",\n            \"description\": \"Release\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1068,\n            \"number\": \"Article 46(A)\",\n            \"description\": \"of a claim against specified property\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1069,\n            \"number\": \"Article 46(B)\",\n            \"description\": \"of benami right\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1070,\n            \"number\": \"Article 46(C)\",\n            \"description\": \"of a right of redemption of M.W.P or of a right to obtain reconveyance\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1071,\n            \"number\": \"Article 47-A\",\n            \"description\": \"Sale of immovable property\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1072,\n            \"number\": \"Article 49\",\n            \"description\": \"Settlements\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1073,\n            \"number\": \"Article 49(a)\",\n            \"description\": \"in favour of family members\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1074,\n            \"number\": \"Article 49(b)\",\n            \"description\": \"in favour of others\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1075,\n            \"number\": \"Article 49-B\",\n            \"description\": \"Cancellation/ Revocation of Settlement\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1076,\n            \"number\": \"Article 52\",\n            \"description\": \"Surrender of Lease\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1077,\n            \"number\": \"Article 53\",\n            \"description\": \"Release of Deposit of Title Deeds\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1078,\n            \"number\": \"Article 55\",\n            \"description\": \"Trust\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1079,\n            \"number\": \"Article 55(I)\",\n            \"description\": \"Declaration of\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1080,\n            \"number\": \"Article 55(ii)\",\n            \"description\": \"Revocation of\",\n            \"stateCode\": \"AP\"\n        },\n        {\n            \"id\": 1081,\n            \"number\": \"Article 1\",\n            \"description\": \"Sale/Gift/Will deed of land\",\n            \"stateCode\": \"AN\"\n        },\n        {\n            \"id\": 1082,\n            \"number\": \"Article 2\",\n            \"description\": \"Adoption Deed\",\n            \"stateCode\": \"AN\"\n        },\n        {\n            \"id\": 1083,\n            \"number\": \"Article 3\",\n            \"description\": \"Partnership Deed\",\n            \"stateCode\": \"AN\"\n        },\n        {\n            \"id\": 1084,\n            \"number\": \"Article 4\",\n            \"description\": \"Trust Deed\",\n            \"stateCode\": \"AN\"\n        },\n        {\n            \"id\": 1085,\n            \"number\": \"Article 5\",\n            \"description\": \"Release Deed\",\n            \"stateCode\": \"AN\"\n        },\n        {\n            \"id\": 1086,\n            \"number\": \"Article 6\",\n            \"description\": \"Power of Attorney\",\n            \"stateCode\": \"AN\"\n        },\n        {\n            \"id\": 1087,\n            \"number\": \"Article 7\",\n            \"description\": \"Rectification Deed\",\n            \"stateCode\": \"AN\"\n        },\n        {\n            \"id\": 1088,\n            \"number\": \"Article 8\",\n            \"description\": \"Cancellation Deed\",\n            \"stateCode\": \"AN\"\n        },\n        {\n            \"id\": 1089,\n            \"number\": \"Article 9\",\n            \"description\": \"Re-Conveyance Deed\",\n            \"stateCode\": \"AN\"\n        },\n        {\n            \"id\": 1090,\n            \"number\": \"Article 10\",\n            \"description\": \"Family Settlement Deed\",\n            \"stateCode\": \"AN\"\n        },\n        {\n            \"id\": 1091,\n            \"number\": \"Article 11\",\n            \"description\": \"Relinquish Deed\",\n            \"stateCode\": \"AN\"\n        },\n        {\n            \"id\": 1092,\n            \"number\": \"Article 12\",\n            \"description\": \"Others\",\n            \"stateCode\": \"AN\"\n        },\n        {\n            \"id\": 1093,\n            \"number\": \"Article 1\",\n            \"description\": \"Acknowledgement\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1094,\n            \"number\": \"Article 3\",\n            \"description\": \"Adoption Deed\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1095,\n            \"number\": \"Article 5\",\n            \"description\": \"Agreement or memorandum of an Agreement\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1096,\n            \"number\": \"Article 6\",\n            \"description\": \"Agreement relating to deposit of title deeds, pawn or pledge or hypothecation\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1097,\n            \"number\": \"Article 10\",\n            \"description\": \"Article of Association of a Company\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1098,\n            \"number\": \"Article 12\",\n            \"description\": \"Award\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1099,\n            \"number\": \"Article 15\",\n            \"description\": \"Bond\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1100,\n            \"number\": \"Article 17\",\n            \"description\": \"Cancellation\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1101,\n            \"number\": \"Article 18\",\n            \"description\": \"Certificate of Sale\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1102,\n            \"number\": \"Article 23\",\n            \"description\": \"Conveyance\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1103,\n            \"number\": \"Article 25\",\n            \"description\": \"Counterpart or Duplicate\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1104,\n            \"number\": \"Article 26\",\n            \"description\": \"Customs Bond\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1105,\n            \"number\": \"Article 27\",\n            \"description\": \"Debenture\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1106,\n            \"number\": \"Article 29\",\n            \"description\": \"Divorce\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1107,\n            \"number\": \"Article 31\",\n            \"description\": \"Exchange of Property\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1108,\n            \"number\": \"Article 32\",\n            \"description\": \"Instrument of Further Charge\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1109,\n            \"number\": \"Article 33\",\n            \"description\": \"Gift Instrument\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1110,\n            \"number\": \"Article 35\",\n            \"description\": \"Lease\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1111,\n            \"number\": \"Article 38\",\n            \"description\": \"Letter of License\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1112,\n            \"number\": \"Article 39\",\n            \"description\": \"Memorandum of Association of a Company\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1113,\n            \"number\": \"Article 40\",\n            \"description\": \"Mortgage Deed\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1114,\n            \"number\": \"Article 45\",\n            \"description\": \"Partition\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1115,\n            \"number\": \"Article 46\",\n            \"description\": \"Partnership\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1116,\n            \"number\": \"Article 48\",\n            \"description\": \"Power of Attorney\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1117,\n            \"number\": \"Article 54\",\n            \"description\": \"Re-conveyance of mortgage property\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1118,\n            \"number\": \"Article 55\",\n            \"description\": \"Release\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1119,\n            \"number\": \"Article 57\",\n            \"description\": \"Security bond or mortgage deed\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1120,\n            \"number\": \"Article 58\",\n            \"description\": \"Settlement\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1121,\n            \"number\": \"Article 61\",\n            \"description\": \"Surrender of lease\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1122,\n            \"number\": \"Article 62\",\n            \"description\": \"Transfer\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1123,\n            \"number\": \"Article 63\",\n            \"description\": \"Transfer of Lease\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1124,\n            \"number\": \"Article 64\",\n            \"description\": \"Trust\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1125,\n            \"number\": \"Article 2\",\n            \"description\": \"Administration Bond\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1126,\n            \"number\": \"Article 4\",\n            \"description\": \"Affidavit\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1127,\n            \"number\": \"Article 7\",\n            \"description\": \"Appointment for the purpose of execution of any power\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1128,\n            \"number\": \"Article 8\",\n            \"description\": \"Appraisement or valuation\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1129,\n            \"number\": \"Article 9\",\n            \"description\": \"Apprenticeship deed\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1130,\n            \"number\": \"Article 20\",\n            \"description\": \"Charter Party\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1131,\n            \"number\": \"Article 22\",\n            \"description\": \"Composition Deed\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1132,\n            \"number\": \"Article 24\",\n            \"description\": \"Copy or extract\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1133,\n            \"number\": \"Article 30\",\n            \"description\": \"Entry as an advocate, or attorney on the roll of any High Court\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1134,\n            \"number\": \"Article 34\",\n            \"description\": \"Indemnity Bond\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1135,\n            \"number\": \"Article 41\",\n            \"description\": \"Mortgage of a crop\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1136,\n            \"number\": \"Article 42\",\n            \"description\": \"Notarial Act\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1137,\n            \"number\": \"Article 43\",\n            \"description\": \"Note or Memorandum\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1138,\n            \"number\": \"Article 44\",\n            \"description\": \"Note of protest by the master of ship\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1139,\n            \"number\": \"Article 50\",\n            \"description\": \"Protest of Bill or Note\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1140,\n            \"number\": \"Article 51\",\n            \"description\": \"Protest by the master of a ship\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1141,\n            \"number\": \"Article 56\",\n            \"description\": \"Respondentia Bond\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1142,\n            \"number\": \"Article 59\",\n            \"description\": \"Share Warrants\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1143,\n            \"number\": \"Article 65\",\n            \"description\": \"Warrants for goods\",\n            \"stateCode\": \"BR\"\n        },\n        {\n            \"id\": 1144,\n            \"number\": \"Article 5\",\n            \"description\": \"Agreement to Sale (Without possession)\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1145,\n            \"number\": \"Article 12\",\n            \"description\": \"Award\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1146,\n            \"number\": \"Article 15\",\n            \"description\": \"Bond\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1147,\n            \"number\": \"Article 17\",\n            \"description\": \"Cancellation\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1148,\n            \"number\": \"Article 23(1)\",\n            \"description\": \"Conveyance (Sale)\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1149,\n            \"number\": \"Article 23(2)\",\n            \"description\": \"Agreement to Sale with possession\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1150,\n            \"number\": \"Article 25\",\n            \"description\": \"Counterpart or Duplicate\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1151,\n            \"number\": \"Article 31\",\n            \"description\": \"Exchange of Property\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1152,\n            \"number\": \"Article 32\",\n            \"description\": \"Further Charge\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1153,\n            \"number\": \"Article 33\",\n            \"description\": \"Gift\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1154,\n            \"number\": \"Article 35\",\n            \"description\": \"Lease (For a period of one year or more)\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1155,\n            \"number\": \"Article 40\",\n            \"description\": \"Mortgage\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1156,\n            \"number\": \"Article 45\",\n            \"description\": \"Partition\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1157,\n            \"number\": \"Article 48\",\n            \"description\": \"Power of Attorney\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1158,\n            \"number\": \"Article 54\",\n            \"description\": \"Reconveyance of Mortgaged Property\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1159,\n            \"number\": \"Article 55\",\n            \"description\": \"Release\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1160,\n            \"number\": \"Article 57\",\n            \"description\": \"Security Bond\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1161,\n            \"number\": \"Article 58\",\n            \"description\": \"Settlement\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1162,\n            \"number\": \"Article 61\",\n            \"description\": \"Surrender of lease\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1163,\n            \"number\": \"Article 62\",\n            \"description\": \"Transfer\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1164,\n            \"number\": \"Article 63\",\n            \"description\": \"Transfer of lease- By way of assignment and not by way of under lease\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1165,\n            \"number\": \"Article 1\",\n            \"description\": \"Acknowledgement\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1166,\n            \"number\": \"Article 2\",\n            \"description\": \"Administration – Bond\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1167,\n            \"number\": \"Article 3\",\n            \"description\": \"Adoption Deed\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1168,\n            \"number\": \"Article 4\",\n            \"description\": \"Affidavit\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1169,\n            \"number\": \"Article 6\",\n            \"description\": \"Agreement relating to deposit of title deed, pawn or pledge\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1170,\n            \"number\": \"Article 7\",\n            \"description\": \"Appointment in execution of power\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1171,\n            \"number\": \"Article 8\",\n            \"description\": \"Appraisement or valuation\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1172,\n            \"number\": \"Article 9\",\n            \"description\": \"Apprenticeship deed\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1173,\n            \"number\": \"Article 10\",\n            \"description\": \"Articles of association of a company\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1174,\n            \"number\": \"Article 11\",\n            \"description\": \"Articles of clerkship\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1175,\n            \"number\": \"Article 13\",\n            \"description\": \"Bill of Exchange\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1176,\n            \"number\": \"Article 14\",\n            \"description\": \"Bill of Landing\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1177,\n            \"number\": \"Article 16\",\n            \"description\": \"Bottomry Bond\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1178,\n            \"number\": \"Article 17-A\",\n            \"description\": \"Certificate of enrolment\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1179,\n            \"number\": \"Article 17-B\",\n            \"description\": \"Certificate to practice as notary\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1180,\n            \"number\": \"Article 18\",\n            \"description\": \"Certificate of Sale\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1181,\n            \"number\": \"Article 19\",\n            \"description\": \"Certificate or other document\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1182,\n            \"number\": \"Article 20\",\n            \"description\": \"Charter Party\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1183,\n            \"number\": \"Article 22\",\n            \"description\": \"Composition deed\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1184,\n            \"number\": \"Article 24\",\n            \"description\": \"Copy or Extract\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1185,\n            \"number\": \"Article 26\",\n            \"description\": \"Customs Bond\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1186,\n            \"number\": \"Article 27\",\n            \"description\": \"Debenture\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1187,\n            \"number\": \"Article 28\",\n            \"description\": \"Delivery order in respect of goods\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1188,\n            \"number\": \"Article 29\",\n            \"description\": \"Divorce\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1189,\n            \"number\": \"Article 34\",\n            \"description\": \"Indemnity Bond\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1190,\n            \"number\": \"Article 36\",\n            \"description\": \"Letter of allotment of shares\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1191,\n            \"number\": \"Article 37\",\n            \"description\": \"Letter of Credit\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1192,\n            \"number\": \"Article 38\",\n            \"description\": \"Letter of Licence\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1193,\n            \"number\": \"Article 39\",\n            \"description\": \"Memorandum of Association of a company\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1194,\n            \"number\": \"Article 41\",\n            \"description\": \"Mortgage of a Crop\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1195,\n            \"number\": \"Article 42\",\n            \"description\": \"Notarial Act\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1196,\n            \"number\": \"Article 43\",\n            \"description\": \"Note or Memorandum\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1197,\n            \"number\": \"Article 44\",\n            \"description\": \"Note of Protest by the Master of a ship\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1198,\n            \"number\": \"Article 46\",\n            \"description\": \"Partnership\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1199,\n            \"number\": \"Article 47\",\n            \"description\": \"Policy of Insurance\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1200,\n            \"number\": \"Article 49\",\n            \"description\": \"Promissory Note\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1201,\n            \"number\": \"Article 50\",\n            \"description\": \"Protest of Bill or Note\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1202,\n            \"number\": \"Article 51\",\n            \"description\": \"Protest by the Master of a ship\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1203,\n            \"number\": \"Article 52\",\n            \"description\": \"Proxy\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1204,\n            \"number\": \"Article 53\",\n            \"description\": \"Receipt\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1205,\n            \"number\": \"Article 56\",\n            \"description\": \"Respondentia Bond\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1206,\n            \"number\": \"Article 59\",\n            \"description\": \"Share Warrants\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1207,\n            \"number\": \"Article 60\",\n            \"description\": \"Shipping order\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1208,\n            \"number\": \"Article 64\",\n            \"description\": \"Trust\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1209,\n            \"number\": \"Article 65\",\n            \"description\": \"Warrant for Goods\",\n            \"stateCode\": \"CG\"\n        },\n        {\n            \"id\": 1210,\n            \"number\": \"Article 1\",\n            \"description\": \"Acknowledgement of a debt\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1211,\n            \"number\": \"Article 2\",\n            \"description\": \"Administration Bond\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1212,\n            \"number\": \"Article 3\",\n            \"description\": \"Adoption-Deed\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1213,\n            \"number\": \"Article 4\",\n            \"description\": \"Affidavit\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1214,\n            \"number\": \"Article 5\",\n            \"description\": \"Agreement or Memorandum of an Agreement\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1215,\n            \"number\": \"Article 6\",\n            \"description\": \"Agreement relating to Deposit of Title- Deeds, Pawn or Pledge\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1216,\n            \"number\": \"Article 7\",\n            \"description\": \"Appointment in Execution of a Power\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1217,\n            \"number\": \"Article 8\",\n            \"description\": \"Appraisement or Valuation\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1218,\n            \"number\": \"Article 9\",\n            \"description\": \"Apprenticeship-Deed\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1219,\n            \"number\": \"Article 10\",\n            \"description\": \"Articles of Association of a Company\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1220,\n            \"number\": \"Article 11\",\n            \"description\": \"Articles of Clerkship\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1221,\n            \"number\": \"Article 12\",\n            \"description\": \"Award\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1222,\n            \"number\": \"Article 13\",\n            \"description\": \"Bill of Exchange\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1223,\n            \"number\": \"Article 14\",\n            \"description\": \"Bill of Lading (including a through bill of lading)\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1224,\n            \"number\": \"Article 15\",\n            \"description\": \"Bond\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1225,\n            \"number\": \"Article 16\",\n            \"description\": \"Bottomary Bond\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1226,\n            \"number\": \"Article 17\",\n            \"description\": \"Cancellation\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1227,\n            \"number\": \"Article 18\",\n            \"description\": \"Certificate of Sale\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1228,\n            \"number\": \"Article 19\",\n            \"description\": \"Certificate of other Document\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1229,\n            \"number\": \"Article 20\",\n            \"description\": \"Charter Party\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1230,\n            \"number\": \"Article 22\",\n            \"description\": \"Composition-Deed\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1231,\n            \"number\": \"Article 23\",\n            \"description\": \"Conveyance\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1232,\n            \"number\": \"Article 24\",\n            \"description\": \"Copy or Extract\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1233,\n            \"number\": \"Article 25\",\n            \"description\": \"Counterpart or Duplicate\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1234,\n            \"number\": \"Article 26\",\n            \"description\": \"Customs-Bonds\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1235,\n            \"number\": \"Article 27\",\n            \"description\": \"Debenture\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1236,\n            \"number\": \"Article 28\",\n            \"description\": \"Delivery order in respect of goods, deposit of title deeds\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1237,\n            \"number\": \"Article 29\",\n            \"description\": \"Divorce\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1238,\n            \"number\": \"Article 30\",\n            \"description\": \"Entry as an Advocate, Vakil or Attorney on the roll of the High Court\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1239,\n            \"number\": \"Article 31\",\n            \"description\": \"Exchange of Property\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1240,\n            \"number\": \"Article 32\",\n            \"description\": \"Further Charge\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1241,\n            \"number\": \"Article 33\",\n            \"description\": \"Gift\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1242,\n            \"number\": \"Article 34\",\n            \"description\": \"Indemnity Bond\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1243,\n            \"number\": \"Article 35\",\n            \"description\": \"Lease\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1244,\n            \"number\": \"Article 36\",\n            \"description\": \"Letter of Allotment of Shares\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1245,\n            \"number\": \"Article 37\",\n            \"description\": \"Letter of Credit\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1246,\n            \"number\": \"Article 38\",\n            \"description\": \"Letter of License\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1247,\n            \"number\": \"Article 39\",\n            \"description\": \"Memorandum of Association of a Company\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1248,\n            \"number\": \"Article 40\",\n            \"description\": \"Mortgage Deed\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1249,\n            \"number\": \"Article 41\",\n            \"description\": \"Mortgage of a Crop\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1250,\n            \"number\": \"Article 42\",\n            \"description\": \"Notarial Act\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1251,\n            \"number\": \"Article 43\",\n            \"description\": \"Note or Memorandum\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1252,\n            \"number\": \"Article 44\",\n            \"description\": \"Note of Protest by the Master of a Ship\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1253,\n            \"number\": \"Article 45\",\n            \"description\": \"Partition\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1254,\n            \"number\": \"Article 46\",\n            \"description\": \"Partnership\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1255,\n            \"number\": \"Article 47\",\n            \"description\": \"Policy of Insurance\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1256,\n            \"number\": \"Article 48\",\n            \"description\": \"Power of Attorney\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1257,\n            \"number\": \"Article 49\",\n            \"description\": \"Promissory Note\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1258,\n            \"number\": \"Article 50\",\n            \"description\": \"Protest of Bill or Note\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1259,\n            \"number\": \"Article 51\",\n            \"description\": \"Protest by the Master of a Ship\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1260,\n            \"number\": \"Article 52\",\n            \"description\": \"Proxy\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1261,\n            \"number\": \"Article 53\",\n            \"description\": \"Receipt\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1262,\n            \"number\": \"Article 54\",\n            \"description\": \"Reconveyance of Mortgaged Property\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1263,\n            \"number\": \"Article 55\",\n            \"description\": \"Release\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1264,\n            \"number\": \"Article 56\",\n            \"description\": \"Respondentia Bond\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1265,\n            \"number\": \"Article 57\",\n            \"description\": \"Security-Bond or Mortgage Deed\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1266,\n            \"number\": \"Article 58\",\n            \"description\": \"Settlement\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1267,\n            \"number\": \"Article 59\",\n            \"description\": \"Share Warrants\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1268,\n            \"number\": \"Article 60\",\n            \"description\": \"Shipping Order\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1269,\n            \"number\": \"Article 61\",\n            \"description\": \"Surrender of Lease\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1270,\n            \"number\": \"Article 62\",\n            \"description\": \"Transfer\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1271,\n            \"number\": \"Article 63\",\n            \"description\": \"Transfer of Lease\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1272,\n            \"number\": \"Article 64\",\n            \"description\": \"Trust\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1273,\n            \"number\": \"Article 65\",\n            \"description\": \"Warrant for Goods\",\n            \"stateCode\": \"CH\"\n        },\n        {\n            \"id\": 1274,\n            \"number\": \"Article 1\",\n            \"description\": \"Acknowledgement of a debt\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1275,\n            \"number\": \"Article 3\",\n            \"description\": \"Adoption\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1276,\n            \"number\": \"Article 4\",\n            \"description\": \"Declaration\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1277,\n            \"number\": \"Article 5\",\n            \"description\": \"General Agreement\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1278,\n            \"number\": \"Article 5(c)\",\n            \"description\": \"Rectification Deed- Movable\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1279,\n            \"number\": \"Article 11\",\n            \"description\": \"Authority to Adopt\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1280,\n            \"number\": \"Article 12\",\n            \"description\": \"Award – Movable\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1281,\n            \"number\": \"Article 13\",\n            \"description\": \"Bill of Exchange\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1282,\n            \"number\": \"Article 15\",\n            \"description\": \"Bonds\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1283,\n            \"number\": \"Article 17\",\n            \"description\": \"Cancellation of Agreement\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1284,\n            \"number\": \"Article 19\",\n            \"description\": \"Certificate or other document (Shares)\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1285,\n            \"number\": \"Article 23\",\n            \"description\": \"Conveyance (M&A of Companies under Amalgamation Scheme)\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1286,\n            \"number\": \"Article 26\",\n            \"description\": \"Customs-Bonds\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1287,\n            \"number\": \"Article 27\",\n            \"description\": \"Debenture\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1288,\n            \"number\": \"Article 29\",\n            \"description\": \"Divorce\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1289,\n            \"number\": \"Article 34\",\n            \"description\": \"Indemnity Bond\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1290,\n            \"number\": \"Article 46\",\n            \"description\": \"Partnership\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1291,\n            \"number\": \"Article 47\",\n            \"description\": \"Policy of Insurance\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1292,\n            \"number\": \"Article 48\",\n            \"description\": \"Power of attorney –SPA\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1293,\n            \"number\": \"Article 48(c)\",\n            \"description\": \"Power of attorney – GPA\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1294,\n            \"number\": \"Article 48(d)\",\n            \"description\": \"Power of attorney – GPA more than five persons jointly and severly\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1295,\n            \"number\": \"Article 48(e)\",\n            \"description\": \"Power of attorney – GPA more than five persons but less than ten persons\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1296,\n            \"number\": \"Article 48(f)\",\n            \"description\": \"Power of attorney– GPA with consideration\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1297,\n            \"number\": \"Article 48(g)\",\n            \"description\": \"Power of attorney – Authenticated GPA\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1298,\n            \"number\": \"Article 53\",\n            \"description\": \"Receipt\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1299,\n            \"number\": \"Article 55\",\n            \"description\": \"Disclaimer\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1300,\n            \"number\": \"Article 56\",\n            \"description\": \"Respondentia Bond\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1301,\n            \"number\": \"Article 59\",\n            \"description\": \"Share Warrants\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1302,\n            \"number\": \"Article 62\",\n            \"description\": \"Transfer (with or without consideration for Debentures & Company Shares)\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1303,\n            \"number\": \"Article 64(b)\",\n            \"description\": \"Revocation of Trust\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1304,\n            \"number\": \"Article 6(2)(a)\",\n            \"description\": \"Agreement relating to deposit of title deed\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1305,\n            \"number\": \"Article 6(2)(b).\",\n            \"description\": \"Agreement relating to deposit of title deed\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1306,\n            \"number\": \"Article 11(Sch-1A)\",\n            \"description\": \"Assignment of Debt\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1307,\n            \"number\": \"Article 18\",\n            \"description\": \"Certificate of Sale\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1308,\n            \"number\": \"Article 23-A\",\n            \"description\": \"Sale Agreement\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1309,\n            \"number\": \"Article 25\",\n            \"description\": \"Additional Copy of document\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1310,\n            \"number\": \"Article 31\",\n            \"description\": \"Exchange of property\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1311,\n            \"number\": \"Article 32(a)\",\n            \"description\": \"Further Charge\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1312,\n            \"number\": \"Article 32(b)(i)\",\n            \"description\": \"Further Charge\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1313,\n            \"number\": \"Article 32(b)(ii)\",\n            \"description\": \"Further Charge\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1314,\n            \"number\": \"Article 33\",\n            \"description\": \"Gift\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1315,\n            \"number\": \"Article 35\",\n            \"description\": \"Perpetual\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1316,\n            \"number\": \"Article 35(i)\",\n            \"description\": \"Lease- Rent deed less than 1 year\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1317,\n            \"number\": \"Article 35(ii)\",\n            \"description\": \"Lease upto 5 years\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1318,\n            \"number\": \"Article 35(iii)\",\n            \"description\": \"Lease upto 10 years\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1319,\n            \"number\": \"Article 35(iv)\",\n            \"description\": \"Lease upto 20 years\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1320,\n            \"number\": \"Article 35(v)\",\n            \"description\": \"Lease upto 30 years\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1321,\n            \"number\": \"Article 35(vi)\",\n            \"description\": \"Lease upto 100 years\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1322,\n            \"number\": \"Article 35(vii)\",\n            \"description\": \"Lease upto 200 years\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1323,\n            \"number\": \"Article 40\",\n            \"description\": \"Mortgage\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1324,\n            \"number\": \"Article 40(c)\",\n            \"description\": \"Mortgage Collateral\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1325,\n            \"number\": \"Article 41\",\n            \"description\": \"Mortgage of a Crop\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1326,\n            \"number\": \"Article 45\",\n            \"description\": \"Partition\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1327,\n            \"number\": \"Article 54\",\n            \"description\": \"Re-conveyance\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1328,\n            \"number\": \"Article 54A\",\n            \"description\": \"Record of Transaction (Electronics or Otherwise) effected by a trading member (Broker Note)\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1329,\n            \"number\": \"Article 57\",\n            \"description\": \"Security Bond\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1330,\n            \"number\": \"Article 58\",\n            \"description\": \"Settlement\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1331,\n            \"number\": \"Article 61\",\n            \"description\": \"Surrender of Lease\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1332,\n            \"number\": \"Article 63\",\n            \"description\": \"Transfer of Lease\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1333,\n            \"number\": \"Article 64\",\n            \"description\": \"Trust\",\n            \"stateCode\": \"DL\"\n        },\n        {\n            \"id\": 1334,\n            \"number\": \"Article 3\",\n            \"description\": \"Adoption - Deed\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1335,\n            \"number\": \"Article 5(h)\",\n            \"description\": \"Agreement to Sale\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1336,\n            \"number\": \"Article 16\",\n            \"description\": \"Cancellation\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1337,\n            \"number\": \"Article 17\",\n            \"description\": \"Certificate of Sale\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1338,\n            \"number\": \"Article 20(a)\",\n            \"description\": \"Conveyance - Immovable Property\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1339,\n            \"number\": \"Article 20(b)\",\n            \"description\": \"Conveyance - Property of Co-Op Soc.\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1340,\n            \"number\": \"Article 20(c)\",\n            \"description\": \"Conveyance - Property of N.T.C, G.H.B., G.O.F.A.\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1341,\n            \"number\": \"Article 20(d)\",\n            \"description\": \"Conveyance Amalgamation / Reconstruction of Company\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1342,\n            \"number\": \"Article 6(1)\",\n            \"description\": \"Deposit of Title Deeds\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1343,\n            \"number\": \"Article 26\",\n            \"description\": \"Exchange of Property\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1344,\n            \"number\": \"Article 27(a)\",\n            \"description\": \"Further Charge - With Possession\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1345,\n            \"number\": \"Article 27(b)\",\n            \"description\": \"Further Charge - Without Possession\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1346,\n            \"number\": \"Article 28\",\n            \"description\": \"Gift\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1347,\n            \"number\": \"Article 30(b)\",\n            \"description\": \"Lease - (Imm. Property) - Premium or Money Adv.\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1348,\n            \"number\": \"Article 30(c)\",\n            \"description\": \"Lease - (Imm. Property) - Rent + Premium or Money Adv.\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1349,\n            \"number\": \"Article 30(a)\",\n            \"description\": \"Lease - (Immovable Property) - Rent\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1350,\n            \"number\": \"Article 30 A\",\n            \"description\": \"Leave and License Agreement\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1351,\n            \"number\": \"Article 36(a)\",\n            \"description\": \"Mortgage Deed - With Possession\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1352,\n            \"number\": \"Article 36(b)\",\n            \"description\": \"Mortgage Deed - Without Possession\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1353,\n            \"number\": \"Article 43\",\n            \"description\": \"Partitioned\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1354,\n            \"number\": \"Article 44(3)(a)\",\n            \"description\": \"Partnership - Dissolution\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1355,\n            \"number\": \"Article 6(2)\",\n            \"description\": \"Pledge, Loan or Hypothecation - Movable Property\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1356,\n            \"number\": \"Article 45(f)\",\n            \"description\": \"Power of Attorney - For Consideration - Sale of Imm. Property\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1357,\n            \"number\": \"Article 45(e)\",\n            \"description\": \"Power of Attorney - More than 5 persons\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1358,\n            \"number\": \"Article 45(c)\",\n            \"description\": \"Power of Attorney - Other than Article 45 (a)\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1359,\n            \"number\": \"Article 45(a)\",\n            \"description\": \"Power of Attorney - Registration of Document - Single Transaction\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1360,\n            \"number\": \"Article 45(b)\",\n            \"description\": \"Power of Attorney - Suits - Small Cause Courts Act.\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1361,\n            \"number\": \"Article 45(d)\",\n            \"description\": \"Power of Attorney -Not More than 5 persons\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1362,\n            \"number\": \"Article 45(g)\",\n            \"description\": \"Power of Attorney (Development)\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1363,\n            \"number\": \"Article 45(h)\",\n            \"description\": \"Power of Attorney (in any other case)\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1364,\n            \"number\": \"Article 48\",\n            \"description\": \"Reconveyance of Mortgaged Property\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1365,\n            \"number\": \"Article 49\",\n            \"description\": \"Release\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1366,\n            \"number\": \"Article 52A(ii)\",\n            \"description\": \"Settlement - Other Case\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1367,\n            \"number\": \"Article 52A(i)\",\n            \"description\": \"Settlement - Religious or Charitable purpose\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1368,\n            \"number\": \"Article 52B(ii)\",\n            \"description\": \"Settlement - Revocation - Other Case\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1369,\n            \"number\": \"Article 52B(i)\",\n            \"description\": \"Settlement - Revocation - Religious or Charitable\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1370,\n            \"number\": \"Article 55\",\n            \"description\": \"Surrender of Lease\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1371,\n            \"number\": \"Article 56(d)\",\n            \"description\": \"Transfer - Trustees or Beneficiary (Without - Consideration)\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1372,\n            \"number\": \"Article 56(b)\",\n            \"description\": \"Transfer - Interest Secured by Bond\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1373,\n            \"number\": \"Article 56(c)\",\n            \"description\": \"Transfer - Under the Administrators Gen. Act 1963, Sec. 22\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1374,\n            \"number\": \"Article 57\",\n            \"description\": \"Transfer of Lease\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1375,\n            \"number\": \"Article 58(b)\",\n            \"description\": \"Trust - Revocation\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1376,\n            \"number\": \"Article 58(a)\",\n            \"description\": \"Trust - Declaration\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1377,\n            \"number\": \"Article 2\",\n            \"description\": \"Administration Bond\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1378,\n            \"number\": \"Article 4\",\n            \"description\": \"Affidavit\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1379,\n            \"number\": \"Article 5(g-a)\",\n            \"description\": \"Agreement - Construction / Development / Sale / Transfer (Imm. Property)\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1380,\n            \"number\": \"Article 5(gb)\",\n            \"description\": \"Agreement - Media Advertisement - Other than Newspapers\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1381,\n            \"number\": \"Article 5(e)\",\n            \"description\": \"Agreement - Purchase or Sale of Bullion, Spice\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1382,\n            \"number\": \"Article 5(d)\",\n            \"description\": \"Agreement - Purchase or Sale of Cotton\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1383,\n            \"number\": \"Article 5(b)\",\n            \"description\": \"Agreement - Purchase or Sale of Govt. Sec.\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1384,\n            \"number\": \"Article 5(f)\",\n            \"description\": \"Agreement - Purchase or Sale of Oil Seeds\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1385,\n            \"number\": \"Article 5(c)\",\n            \"description\": \"Agreement - Purchase or Sale of Share, Deb.\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1386,\n            \"number\": \"Article 5(g)\",\n            \"description\": \"Agreement - Purchase or Sale of Yarn\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1387,\n            \"number\": \"Article 5(a)\",\n            \"description\": \"Agreement - Sale of Bill of Exchange\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1388,\n            \"number\": \"Article 7\",\n            \"description\": \"Alteration - Article of Association of a Company\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1389,\n            \"number\": \"Article 8\",\n            \"description\": \"Alteration - Memorandum of Association of a Company\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1390,\n            \"number\": \"Article 9(b)\",\n            \"description\": \"Appointment in Execution of Power - Movable / Immovable\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1391,\n            \"number\": \"Article 9(a)\",\n            \"description\": \"Appointment in Execution of Power - Trustees\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1392,\n            \"number\": \"Article 10\",\n            \"description\": \"Appraisement or Valuation\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1393,\n            \"number\": \"Article 11\",\n            \"description\": \"Apprenticeship Deed\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1394,\n            \"number\": \"Article 12\",\n            \"description\": \"Article of Association of Company\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1395,\n            \"number\": \"Article 13\",\n            \"description\": \"Award\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1396,\n            \"number\": \"Article 14\",\n            \"description\": \"Bond\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1397,\n            \"number\": \"Article 15\",\n            \"description\": \"Bottomry Bond\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1398,\n            \"number\": \"Article 18\",\n            \"description\": \"Certificate or Other Document\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1399,\n            \"number\": \"Article 18C\",\n            \"description\": \"Clearance List - Bullion or Species\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1400,\n            \"number\": \"Article 18B\",\n            \"description\": \"Clearance List - Cotton\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1401,\n            \"number\": \"Article 18A(1)\",\n            \"description\": \"Clearance List - Govt. Sec.\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1402,\n            \"number\": \"Article 18D\",\n            \"description\": \"Clearance List - Oil Seeds\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1403,\n            \"number\": \"Article 18A(2)\",\n            \"description\": \"Clearance List - Shares, Debentures\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1404,\n            \"number\": \"Article 18 E\",\n            \"description\": \"Clearance List - Yarn\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1405,\n            \"number\": \"Article 19\",\n            \"description\": \"Composition Deed\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1406,\n            \"number\": \"Article 20(aa)\",\n            \"description\": \"Conveyance - Movable Property\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1407,\n            \"number\": \"Article 21\",\n            \"description\": \"Copy or Extract\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1408,\n            \"number\": \"Article 22\",\n            \"description\": \"Counter Part or Duplicate\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1409,\n            \"number\": \"Article 23\",\n            \"description\": \"Customs Bond or Excise Bond\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1410,\n            \"number\": \"Article 24\",\n            \"description\": \"Delivery Order in respect of Goods\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1411,\n            \"number\": \"Article 25\",\n            \"description\": \"Divorce\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1412,\n            \"number\": \"Article 29\",\n            \"description\": \"Indemnity Bond\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1413,\n            \"number\": \"Article 30D\",\n            \"description\": \"Lease - Movable Property\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1414,\n            \"number\": \"Article 31\",\n            \"description\": \"Letter of Allotment or Renunciation of Shares\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1415,\n            \"number\": \"Article 32\",\n            \"description\": \"Letter of Guarantee\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1416,\n            \"number\": \"Article 33\",\n            \"description\": \"Letter of License\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1417,\n            \"number\": \"Article 34\",\n            \"description\": \"Marriage Registration\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1418,\n            \"number\": \"Article 35\",\n            \"description\": \"Memorandum of Association of Company\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1419,\n            \"number\": \"Article 37(b)\",\n            \"description\": \"Mortgage of Crop\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1420,\n            \"number\": \"Article 37(a)\",\n            \"description\": \"Mortgage of Crop - Not more than 3 months\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1421,\n            \"number\": \"Article 38\",\n            \"description\": \"Notarial Act\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1422,\n            \"number\": \"Article 41\",\n            \"description\": \"Note of Protest by the Master of a Ship\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1423,\n            \"number\": \"Article 40\",\n            \"description\": \"Note or Entry or Letter Written by Creditor\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1424,\n            \"number\": \"Article 39(b)\",\n            \"description\": \"Note or Memorandum - Bullion / Specie\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1425,\n            \"number\": \"Article 39(a)\",\n            \"description\": \"Note or Memorandum - Cotton\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1426,\n            \"number\": \"Article 39(e)\",\n            \"description\": \"Note or Memorandum - Goods (other than Article 39 a,b,c,d)\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1427,\n            \"number\": \"Article 39(g)\",\n            \"description\": \"Note or Memorandum - Govt. Security\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1428,\n            \"number\": \"Article 39(c)\",\n            \"description\": \"Note or Memorandum - Oil Seeds\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1429,\n            \"number\": \"Article 39(f)\",\n            \"description\": \"Note or Memorandum - Stocks / Debenture\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1430,\n            \"number\": \"Article 39(d)\",\n            \"description\": \"Note or Memorandum - Yarn / Non Mineral Oils\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1431,\n            \"number\": \"Article 42(b)\",\n            \"description\": \"Order for the Payment of Money - More than 1 year\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1432,\n            \"number\": \"Article 42(a)\",\n            \"description\": \"Order for the Payment of Money - Not more than 1 year\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1433,\n            \"number\": \"Article 44\",\n            \"description\": \"Partnership\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1434,\n            \"number\": \"Article 47\",\n            \"description\": \"Protest by the Master of a Ship\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1435,\n            \"number\": \"Article 46\",\n            \"description\": \"Protest of Bill or Note\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1436,\n            \"number\": \"Article 50\",\n            \"description\": \"Respondentia Bond\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1437,\n            \"number\": \"Article 51\",\n            \"description\": \"Security Bond or Mortgage - Deed\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1438,\n            \"number\": \"Article 53\",\n            \"description\": \"Share Warrants\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1439,\n            \"number\": \"Article 56(a)\",\n            \"description\": \"Transfer of Debenture\",\n            \"stateCode\": \"GJ\"\n        },\n        {\n            \"id\": 1440,\n            \"number\": \"Article 3\",\n            \"description\": \"Adoption-Deed\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1441,\n            \"number\": \"Article 12\",\n            \"description\": \"Award\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1442,\n            \"number\": \"Article 17\",\n            \"description\": \"Cancellation\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1443,\n            \"number\": \"Article 18\",\n            \"description\": \"Certificate of Sale\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1444,\n            \"number\": \"Article 23\",\n            \"description\": \"Conveyance\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1445,\n            \"number\": \"Article 32\",\n            \"description\": \"Instrument of Further Charge\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1446,\n            \"number\": \"Article 33\",\n            \"description\": \"Instrument of Gift\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1447,\n            \"number\": \"Article 35\",\n            \"description\": \"Lease\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1448,\n            \"number\": \"Article 40\",\n            \"description\": \"Mortgage-Deed\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1449,\n            \"number\": \"Article 48\",\n            \"description\": \"Power of Attorney\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1450,\n            \"number\": \"Article 54\",\n            \"description\": \"Re-Conveyance of Mortgaged Property\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1451,\n            \"number\": \"Article 55\",\n            \"description\": \"Release\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1452,\n            \"number\": \"Article 57\",\n            \"description\": \"Security-Bond or Mortgage Deed\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1453,\n            \"number\": \"Article 58\",\n            \"description\": \"Instrument of Settlement\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1454,\n            \"number\": \"Article 61\",\n            \"description\": \"Surrender of Lease\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1455,\n            \"number\": \"Article 63\",\n            \"description\": \"Transfer of Lease\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1456,\n            \"number\": \"Article 64\",\n            \"description\": \"Trust\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1457,\n            \"number\": \"Article 1\",\n            \"description\": \"Acknowledgement of a debt\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1458,\n            \"number\": \"Article 2\",\n            \"description\": \"Administration Bond\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1459,\n            \"number\": \"Article 4\",\n            \"description\": \"Affidavit\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1460,\n            \"number\": \"Article 5\",\n            \"description\": \"Agreement or Memorandum of an Agreement\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1461,\n            \"number\": \"Article 6\",\n            \"description\": \"Agreement relating to Deposit of Title- Deeds, Pawn or Pledge\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1462,\n            \"number\": \"Article 7\",\n            \"description\": \"Appointment in execution of a Power\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1463,\n            \"number\": \"Article 8\",\n            \"description\": \"Appraisement or Valuation\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1464,\n            \"number\": \"Article 9\",\n            \"description\": \"Apprenticeship-Deed\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1465,\n            \"number\": \"Article 10\",\n            \"description\": \"Articles of Association of a Company\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1466,\n            \"number\": \"Article 11\",\n            \"description\": \"Articles of Clerkship\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1467,\n            \"number\": \"Article 13\",\n            \"description\": \"Bill of Exchange\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1468,\n            \"number\": \"Article 14\",\n            \"description\": \"Bill of Lading (including a through bill of lading)\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1469,\n            \"number\": \"Article 15\",\n            \"description\": \"Bond\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1470,\n            \"number\": \"Article 16\",\n            \"description\": \"Bottomry Bond\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1471,\n            \"number\": \"Article 19\",\n            \"description\": \"Certificate or other Document\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1472,\n            \"number\": \"Article 20\",\n            \"description\": \"Charter Party\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1473,\n            \"number\": \"Article 22\",\n            \"description\": \"Composition-Deed\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1474,\n            \"number\": \"Article 23(A)\",\n            \"description\": \"Conveyance in the Nature of Part Performance\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1475,\n            \"number\": \"Article 24\",\n            \"description\": \"Copy or Extract\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1476,\n            \"number\": \"Article 25\",\n            \"description\": \"Counterpart or Duplicate\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1477,\n            \"number\": \"Article 26\",\n            \"description\": \"Customs-Bonds\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1478,\n            \"number\": \"Article 27\",\n            \"description\": \"Debenture\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1479,\n            \"number\": \"Article 28\",\n            \"description\": \"Delivery Order in respect of Goods, Deposit of Title -Deeds\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1480,\n            \"number\": \"Article 29\",\n            \"description\": \"Instrument of Divorce\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1481,\n            \"number\": \"Article 30\",\n            \"description\": \"Entry as an Advocate, Vakil or Attorney on the Roll of the High Court\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1482,\n            \"number\": \"Article 31\",\n            \"description\": \"Instrument of Exchange of Property\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1483,\n            \"number\": \"Article 34\",\n            \"description\": \"Indemnity Bond\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1484,\n            \"number\": \"Article 36\",\n            \"description\": \"Letter of Allotment of Shares\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1485,\n            \"number\": \"Article 37\",\n            \"description\": \"Letter of Credit\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1486,\n            \"number\": \"Article 38\",\n            \"description\": \"Letter of License\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1487,\n            \"number\": \"Article 39\",\n            \"description\": \"Memorandum of Association of a Company\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1488,\n            \"number\": \"Article 41\",\n            \"description\": \"Mortgage of a Crop\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1489,\n            \"number\": \"Article 42\",\n            \"description\": \"Notarial Act\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1490,\n            \"number\": \"Article 43\",\n            \"description\": \"Note or Memorandum\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1491,\n            \"number\": \"Article 44\",\n            \"description\": \"Note of Protest by the Master of a Ship\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1492,\n            \"number\": \"Article 45\",\n            \"description\": \"Partition\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1493,\n            \"number\": \"Article 46\",\n            \"description\": \"Partnership\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1494,\n            \"number\": \"Article 47\",\n            \"description\": \"Policy of Insurance\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1495,\n            \"number\": \"Article 49\",\n            \"description\": \"Promissory Note\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1496,\n            \"number\": \"Article 50\",\n            \"description\": \"Protest of Bill or Note\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1497,\n            \"number\": \"Article 51\",\n            \"description\": \"Protest by the Master of a Ship\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1498,\n            \"number\": \"Article 52\",\n            \"description\": \"Proxy\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1499,\n            \"number\": \"Article 53\",\n            \"description\": \"Receipt\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1500,\n            \"number\": \"Article 56\",\n            \"description\": \"Respondentia Bond\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1501,\n            \"number\": \"Article 59\",\n            \"description\": \"Share Warrants\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1502,\n            \"number\": \"Article 60\",\n            \"description\": \"Shipping Order\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1503,\n            \"number\": \"Article 62\",\n            \"description\": \"Transfer\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1504,\n            \"number\": \"Article 65\",\n            \"description\": \"Warrant for Goods\",\n            \"stateCode\": \"HP\"\n        },\n        {\n            \"id\": 1505,\n            \"number\": \"Article 3\",\n            \"description\": \"Adoption Deed\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1506,\n            \"number\": \"Article 6\",\n            \"description\": \"Agreement relating to deposit of title deeds,pawn,pledge or hypothecation\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1507,\n            \"number\": \"Article 11\",\n            \"description\": \"Award\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1508,\n            \"number\": \"Article 14\",\n            \"description\": \"Cancellation of Instrument\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1509,\n            \"number\": \"Article 15\",\n            \"description\": \"Certificate of Sale\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1510,\n            \"number\": \"Article 18\",\n            \"description\": \"Conveyance\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1511,\n            \"number\": \"Article 25\",\n            \"description\": \"Exchange of Property\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1512,\n            \"number\": \"Article 26\",\n            \"description\": \"Further Charge\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1513,\n            \"number\": \"Article 27\",\n            \"description\": \"Gift Deed\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1514,\n            \"number\": \"Article 29(a)(i)\",\n            \"description\": \"Lease exceeding one year\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1515,\n            \"number\": \"Article 35\",\n            \"description\": \"Mortgage deed\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1516,\n            \"number\": \"Article 36\",\n            \"description\": \"Mortgage of a Crop\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1517,\n            \"number\": \"Article 39\",\n            \"description\": \"Partition\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1518,\n            \"number\": \"Article 40\",\n            \"description\": \"Partnership\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1519,\n            \"number\": \"Article 42(c)&(d)\",\n            \"description\": \"Power of Attorney authorizing sale\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1520,\n            \"number\": \"Article 47\",\n            \"description\": \"Re-conveyance\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1521,\n            \"number\": \"Article 48\",\n            \"description\": \"Release\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1522,\n            \"number\": \"Article 49\",\n            \"description\": \"Security Bond\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1523,\n            \"number\": \"Article 50\",\n            \"description\": \"Settlement\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1524,\n            \"number\": \"Article 53\",\n            \"description\": \"Surrender of Lease\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1525,\n            \"number\": \"Article 55\",\n            \"description\": \"Transfer of Lease\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1526,\n            \"number\": \"Article 56\",\n            \"description\": \"Trust-declaration or revocation\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1527,\n            \"number\": \"Article 1\",\n            \"description\": \"Acknowledgement\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1528,\n            \"number\": \"Article 2\",\n            \"description\": \"Administration Bond\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1529,\n            \"number\": \"Article 4\",\n            \"description\": \"Affidavit\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1530,\n            \"number\": \"Article 5\",\n            \"description\": \"Agreement or Memorandum of an Agreement\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1531,\n            \"number\": \"Article 7\",\n            \"description\": \"Appointment in execution of a power\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1532,\n            \"number\": \"Article 8\",\n            \"description\": \"Appraisement or Valuation\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1533,\n            \"number\": \"Article 9\",\n            \"description\": \"Apprenticeship deed\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1534,\n            \"number\": \"Article 10\",\n            \"description\": \"Articles of Association of a Company\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1535,\n            \"number\": \"Article 12\",\n            \"description\": \"Bill of Exchange\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1536,\n            \"number\": \"Article 13\",\n            \"description\": \"Bond\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1537,\n            \"number\": \"Article 16\",\n            \"description\": \"Certificate or other document(Shares)\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1538,\n            \"number\": \"Article 17\",\n            \"description\": \"Composition deed\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1539,\n            \"number\": \"Article 19\",\n            \"description\": \"Copy or extract\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1540,\n            \"number\": \"Article 20\",\n            \"description\": \"Counterpart or duplicate\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1541,\n            \"number\": \"Article 21\",\n            \"description\": \"Customs Bond or Excise Bond\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1542,\n            \"number\": \"Article 22\",\n            \"description\": \"Debenture\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1543,\n            \"number\": \"Article 23\",\n            \"description\": \"Delivery order in respect of goods\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1544,\n            \"number\": \"Article 24\",\n            \"description\": \"Divorce\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1545,\n            \"number\": \"Article 28\",\n            \"description\": \"Indemnity Bond\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1546,\n            \"number\": \"Article 29\",\n            \"description\": \"Lease below one year\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1547,\n            \"number\": \"Article 30\",\n            \"description\": \"Letter of allotment of Shares\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1548,\n            \"number\": \"Article 31\",\n            \"description\": \"Letter of Credit\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1549,\n            \"number\": \"Article 32\",\n            \"description\": \"Letter of Guarantee\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1550,\n            \"number\": \"Article 33\",\n            \"description\": \"Letter of Licence\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1551,\n            \"number\": \"Article 34\",\n            \"description\": \"Memorandum of Association of a Company\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1552,\n            \"number\": \"Article 37\",\n            \"description\": \"Notarial Act\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1553,\n            \"number\": \"Article 38\",\n            \"description\": \"Note or Memorandum\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1554,\n            \"number\": \"Article 41\",\n            \"description\": \"Policy of Insurance\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1555,\n            \"number\": \"Article 42(a),(b)& (c)\",\n            \"description\": \"Power of Attorney without authorizing sale\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1556,\n            \"number\": \"Article 43\",\n            \"description\": \"Promissory Note\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1557,\n            \"number\": \"Article 44\",\n            \"description\": \"Protest of Bill or Note\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1558,\n            \"number\": \"Article 45\",\n            \"description\": \"Proxy\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1559,\n            \"number\": \"Article 46\",\n            \"description\": \"Receipt\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1560,\n            \"number\": \"Article 51\",\n            \"description\": \"Share Warrants\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1561,\n            \"number\": \"Article 52\",\n            \"description\": \"Shipping Order\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1562,\n            \"number\": \"Article 54(a)\",\n            \"description\": \"Transfer of shares\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1563,\n            \"number\": \"Article 54(b)\",\n            \"description\": \"Transfer of Debentures\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1564,\n            \"number\": \"Article 54(c)\",\n            \"description\": \"Transfer of interest secured by bond, mortgage deed or policy of insurance\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1565,\n            \"number\": \"Article 57\",\n            \"description\": \"Warrant of Goods\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1566,\n            \"number\": \"Article 58\",\n            \"description\": \"Entry as an Advocate of the High Court\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1567,\n            \"number\": \"Article 39(c)\",\n            \"description\": \"Instrument of partition by a Revenue Officer\",\n            \"stateCode\": \"JK\"\n        },\n        {\n            \"id\": 1568,\n            \"number\": \"Article 1\",\n            \"description\": \"Acknowledgement of a debt\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1569,\n            \"number\": \"Article 2\",\n            \"description\": \"Administration bond\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1570,\n            \"number\": \"Article 3\",\n            \"description\": \"Adoption deed\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1571,\n            \"number\": \"Article 4\",\n            \"description\": \"Affidavit\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1572,\n            \"number\": \"Article 5\",\n            \"description\": \"Agreement or memorandum of an agreement\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1573,\n            \"number\": \"Article 6\",\n            \"description\": \"Agreement relating to deposit of title deed, pawn, pledge or hypothecation\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1574,\n            \"number\": \"Article 7\",\n            \"description\": \"Appointment in execution of a power\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1575,\n            \"number\": \"Article 8\",\n            \"description\": \"Appraisement or valuation\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1576,\n            \"number\": \"Article 9\",\n            \"description\": \"Apprenticeship deed\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1577,\n            \"number\": \"Article 10\",\n            \"description\": \"Articles of association of a company\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1578,\n            \"number\": \"Article 11\",\n            \"description\": \"Award\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1579,\n            \"number\": \"Article 12\",\n            \"description\": \"Bill of exchange\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1580,\n            \"number\": \"Article 13\",\n            \"description\": \"Bond\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1581,\n            \"number\": \"Article 14\",\n            \"description\": \"Cancellation\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1582,\n            \"number\": \"Article 15\",\n            \"description\": \"Certificate of sale\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1583,\n            \"number\": \"Article 16\",\n            \"description\": \"Certificate or other document\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1584,\n            \"number\": \"Article 17\",\n            \"description\": \"Composition deed\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1585,\n            \"number\": \"Article 18\",\n            \"description\": \"Conveyance\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1586,\n            \"number\": \"Article 19\",\n            \"description\": \"Copy or extract\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1587,\n            \"number\": \"Article 20\",\n            \"description\": \"Counterpart of duplicate\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1588,\n            \"number\": \"Article 21\",\n            \"description\": \"Customs bond or excise bond\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1589,\n            \"number\": \"Article 22\",\n            \"description\": \"Debentures\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1590,\n            \"number\": \"Article 23\",\n            \"description\": \"Delivery order in respect of goods\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1591,\n            \"number\": \"Article 24\",\n            \"description\": \"Divorce\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1592,\n            \"number\": \"Article 25\",\n            \"description\": \"Exchange of property\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1593,\n            \"number\": \"Article 26\",\n            \"description\": \"Further charge\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1594,\n            \"number\": \"Article 27\",\n            \"description\": \"Gift\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1595,\n            \"number\": \"Article 28\",\n            \"description\": \"Indemnity bond\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1596,\n            \"number\": \"Article 29\",\n            \"description\": \"Lease\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1597,\n            \"number\": \"Article 30\",\n            \"description\": \"Letter of allotment of shares\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1598,\n            \"number\": \"Article 31\",\n            \"description\": \"Letter of credit\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1599,\n            \"number\": \"Article 32\",\n            \"description\": \"Letter of guarantee\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1600,\n            \"number\": \"Article 33\",\n            \"description\": \"Letter of license\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1601,\n            \"number\": \"Article 34\",\n            \"description\": \"Memorandum of association of a company\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1602,\n            \"number\": \"Article 35\",\n            \"description\": \"Mortgage deed\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1603,\n            \"number\": \"Article 36\",\n            \"description\": \"Mortgage of a crop\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1604,\n            \"number\": \"Article 37\",\n            \"description\": \"Notarial act\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1605,\n            \"number\": \"Article 38\",\n            \"description\": \"Note or memorandum\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1606,\n            \"number\": \"Article 39\",\n            \"description\": \"Partition\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1607,\n            \"number\": \"Article 40\",\n            \"description\": \"Partnership\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1608,\n            \"number\": \"Article 41\",\n            \"description\": \"All Policy of insurance\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1609,\n            \"number\": \"Article 42\",\n            \"description\": \"Power of attorney\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1610,\n            \"number\": \"Article 43\",\n            \"description\": \"Promissory note\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1611,\n            \"number\": \"Article 44\",\n            \"description\": \"Protest of bill or note\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1612,\n            \"number\": \"Article 45\",\n            \"description\": \"Proxy\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1613,\n            \"number\": \"Article 46\",\n            \"description\": \"Receipt\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1614,\n            \"number\": \"Article 47\",\n            \"description\": \"Reconveyance of mortgaged property\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1615,\n            \"number\": \"Article 48\",\n            \"description\": \"Release\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1616,\n            \"number\": \"Article 49\",\n            \"description\": \"Security bond or mortgage deed\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1617,\n            \"number\": \"Article 50\",\n            \"description\": \"Settlement\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1618,\n            \"number\": \"Article 51\",\n            \"description\": \"Share warrants\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1619,\n            \"number\": \"Article 52\",\n            \"description\": \"Shipping order\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1620,\n            \"number\": \"Article 53\",\n            \"description\": \"Surrender of lease\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1621,\n            \"number\": \"Article 54\",\n            \"description\": \"Transfer\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1622,\n            \"number\": \"Article 55\",\n            \"description\": \"Transfer of lease\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1623,\n            \"number\": \"Article 56\",\n            \"description\": \"Trust\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1624,\n            \"number\": \"Article 57\",\n            \"description\": \"Warrants for goods\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1625,\n            \"number\": \"Article 58\",\n            \"description\": \"Entry as an advocate of the high court\",\n            \"stateCode\": \"LA\"\n        },\n        {\n            \"id\": 1626,\n            \"number\": \"Article 2\",\n            \"description\": \"Adoption Deed\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1627,\n            \"number\": \"Article 8\",\n            \"description\": \"Appraisement or Valuation made otherwise than under an order of the court or in the course of a suit for immovable property only.\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1628,\n            \"number\": \"Article 10\",\n            \"description\": \"Article of Association of a company\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1629,\n            \"number\": \"Article 12\",\n            \"description\": \"Award\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1630,\n            \"number\": \"Article 15\",\n            \"description\": \"Bond\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1631,\n            \"number\": \"Article 17\",\n            \"description\": \"Cancellation\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1632,\n            \"number\": \"Article 18\",\n            \"description\": \"Certificate of Sale\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1633,\n            \"number\": \"Article 22\",\n            \"description\": \"Composition Deed for Immovable Property only.\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1634,\n            \"number\": \"Article 23\",\n            \"description\": \"Conveyance\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1635,\n            \"number\": \"Article 26\",\n            \"description\": \"Customs Bond\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1636,\n            \"number\": \"Article 31\",\n            \"description\": \"Exchange of Property\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1637,\n            \"number\": \"Article 32\",\n            \"description\": \"Instrument of Further Charge\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1638,\n            \"number\": \"Article 33\",\n            \"description\": \"Instrument of Gift\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1639,\n            \"number\": \"Article 35\",\n            \"description\": \"Lease except lease covered by Article 35 (a) (i)\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1640,\n            \"number\": \"Article 39\",\n            \"description\": \"Memorandum of Association of a company\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1641,\n            \"number\": \"Article 40\",\n            \"description\": \"Mortgage Deed with the exception of Article 40(b)\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1642,\n            \"number\": \"Article 45\",\n            \"description\": \"Partition\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1643,\n            \"number\": \"Article 46\",\n            \"description\": \"Partnership\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1644,\n            \"number\": \"Article 48\",\n            \"description\": \"Power of Attorney for the purpose of Article 48 (f)\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1645,\n            \"number\": \"Article 54\",\n            \"description\": \"Re-Conveyance of mortgage of immovable property\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1646,\n            \"number\": \"Article 55\",\n            \"description\": \"Release\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1647,\n            \"number\": \"Article 57\",\n            \"description\": \"Security bond or mortgage deed\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1648,\n            \"number\": \"Article 58\",\n            \"description\": \"Settlement\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1649,\n            \"number\": \"Article 63\",\n            \"description\": \"Transfer of Lease by way of an assignment and not by way of under lease\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1650,\n            \"number\": \"Article 64\",\n            \"description\": \"Trust\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1651,\n            \"number\": \"Article 1\",\n            \"description\": \"Acknowledgement\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1652,\n            \"number\": \"Article 4\",\n            \"description\": \"Affidavit/ Declaration\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1653,\n            \"number\": \"Article 5\",\n            \"description\": \"Agreement or Memorandum of an Agreement.\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1654,\n            \"number\": \"Article 6\",\n            \"description\": \"Agreement relating to deposit of title deeds, pawn or pledge.\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1655,\n            \"number\": \"Article 7\",\n            \"description\": \"Appointment in execution of a power.\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1656,\n            \"number\": \"Article 9\",\n            \"description\": \"Apprenticeship Deed\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1657,\n            \"number\": \"Article 13\",\n            \"description\": \"Bill of Exchange\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1658,\n            \"number\": \"Article 19\",\n            \"description\": \"Certficate or other document.\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1659,\n            \"number\": \"Article 24\",\n            \"description\": \"Copy or extract\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1660,\n            \"number\": \"Article 25\",\n            \"description\": \"Counterpart or Duplicate\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1661,\n            \"number\": \"Article 27\",\n            \"description\": \"Debenture\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1662,\n            \"number\": \"Article 28\",\n            \"description\": \"Delivery order in respect of goods.\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1663,\n            \"number\": \"Article 29\",\n            \"description\": \"Divorce\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1664,\n            \"number\": \"Article 34\",\n            \"description\": \"Indemnity Bond\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1665,\n            \"number\": \"Article 36\",\n            \"description\": \"Letter of allotment of shares.\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1666,\n            \"number\": \"Article 37\",\n            \"description\": \"Letter of Credit/ Letter of Guarantee\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1667,\n            \"number\": \"Article 38\",\n            \"description\": \"Letter of License\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1668,\n            \"number\": \"Article 40(b)\",\n            \"description\": \"Mortgage Deed without possession/Hypothecation.\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1669,\n            \"number\": \"Article 42\",\n            \"description\": \"Notarial Act\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1670,\n            \"number\": \"Article 43\",\n            \"description\": \"Note or Memorandum\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1671,\n            \"number\": \"Article 47\",\n            \"description\": \"Policy of Insurance.\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1672,\n            \"number\": \"Article 49\",\n            \"description\": \"Promissory Note as defined by Section 2(22) of the Indian Stamp Act, 1899\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1673,\n            \"number\": \"Article 50\",\n            \"description\": \"Protest of Bill or Note\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1674,\n            \"number\": \"Article 56\",\n            \"description\": \"Respondentia Bond\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1675,\n            \"number\": \"Article 59\",\n            \"description\": \"Share Warrants\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1676,\n            \"number\": \"Article 61\",\n            \"description\": \"Surrender of Lease\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1677,\n            \"number\": \"Article 62\",\n            \"description\": \"Transfer\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1678,\n            \"number\": \"Article 65\",\n            \"description\": \"Warrant for goods\",\n            \"stateCode\": \"ML\"\n        },\n        {\n            \"id\": 1679,\n            \"number\": \"Article IA-3\",\n            \"description\": \"Adoption Deed\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1680,\n            \"number\": \"Article IA-23(1)\",\n            \"description\": \"Sale Deed (Conveyance)\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1681,\n            \"number\": \"Article IA-23(2)\",\n            \"description\": \"Agreement to Sale (with possession)\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1682,\n            \"number\": \"Article IA-23(3)\",\n            \"description\": \"Conveyance Deed (immovable property vide decree or court order or award of a value of one hundred rupees and upwards )\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1683,\n            \"number\": \"Article IA-23(4)\",\n            \"description\": \"Assignment Deed (Transfer of immovable & movable property)\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1684,\n            \"number\": \"Article IA-31\",\n            \"description\": \"Exchange Deed\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1685,\n            \"number\": \"Article IA-33\",\n            \"description\": \"Gift Deed\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1686,\n            \"number\": \"Article IA-35\",\n            \"description\": \"Lease Deed (period of more than one year & amount of more than Rs.100 )\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1687,\n            \"number\": \"Article IA-40\",\n            \"description\": \"Mortgage Deed\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1688,\n            \"number\": \"Article IA-45\",\n            \"description\": \"Partition Deed\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1689,\n            \"number\": \"Article IA-48\",\n            \"description\": \"Power of Attorney Deed (for sale of immovable property)\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1690,\n            \"number\": \"Article IA-53\",\n            \"description\": \"Receipt Deed (of payment of any consideration for transfer of immovable property )\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1691,\n            \"number\": \"Article IA- 54\",\n            \"description\": \"Reconveyance of Mortgaged Property\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1692,\n            \"number\": \"Article IA-55\",\n            \"description\": \"Release Deed (of claim on right, title, interest or possession against immovable property)\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1693,\n            \"number\": \"Article IA-58\",\n            \"description\": \"Settlement Deed (Including family settlement)\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1694,\n            \"number\": \"Article IA- 58B\",\n            \"description\": \"Revocation of settlement\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1695,\n            \"number\": \"Article IA-61\",\n            \"description\": \"Surrender of Lease Deed\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1696,\n            \"number\": \"Article IA-63\",\n            \"description\": \"Transfer of Lease (By way of assignment )\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1697,\n            \"number\": \"Article IA-4\",\n            \"description\": \"Affidavit\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1698,\n            \"number\": \"Article IA-5(1)\",\n            \"description\": \"Memorandum of an Agreement\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1699,\n            \"number\": \"Article IA-5(2)\",\n            \"description\": \"Agreement (for sale without possession)\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1700,\n            \"number\": \"Article IA-6\",\n            \"description\": \"Agreement relating to deposit of Title Deeds (Equitable Mortgage)\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1701,\n            \"number\": \"Article IA-7\",\n            \"description\": \"Appointment in execution of Power\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1702,\n            \"number\": \"Article IA- 15\",\n            \"description\": \"Bond\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1703,\n            \"number\": \"Article IA-17\",\n            \"description\": \"Cancellation Deed (Of agreement, power of attorney or will)\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1704,\n            \"number\": \"Article IA-18\",\n            \"description\": \"Certificate of Sale\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1705,\n            \"number\": \"Article IA-22\",\n            \"description\": \"Composition Deed (including Inspector ship Deed)\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1706,\n            \"number\": \"Article IA-25\",\n            \"description\": \"Counterpart or Duplicate deed\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1707,\n            \"number\": \"Article IA-26\",\n            \"description\": \"Customs Bond\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1708,\n            \"number\": \"Article IA-27\",\n            \"description\": \"Debenture (of non convertable asset of company)\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1709,\n            \"number\": \"Article IA-32\",\n            \"description\": \"Further Charge\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1710,\n            \"number\": \"Article IA-34\",\n            \"description\": \"Indemnity Bond\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1711,\n            \"number\": \"Article IA-35(1)\",\n            \"description\": \"Lease Deed (for a period of less than one year )\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1712,\n            \"number\": \"Article IA-35(2)\",\n            \"description\": \"Hire Agreement (For lease of movable or immovable property with possession)\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1713,\n            \"number\": \"Article IA-35(3)\",\n            \"description\": \"Agreement to Lease\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1714,\n            \"number\": \"Article IA-41\",\n            \"description\": \"Mortgage of a Crop\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1715,\n            \"number\": \"Article IA-56\",\n            \"description\": \"Respondentia Bond\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1716,\n            \"number\": \"Article IA-57\",\n            \"description\": \"Security Bond\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1717,\n            \"number\": \"Article IA-62\",\n            \"description\": \"Transfer Deed\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1718,\n            \"number\": \"Article IA-64\",\n            \"description\": \"Trust (Declaration of)\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1719,\n            \"number\": \"Article IA-64B\",\n            \"description\": \"Revocation of Trust\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1720,\n            \"number\": \"Article IA-1\",\n            \"description\": \"Acknowledgement\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1721,\n            \"number\": \"Article IA-2\",\n            \"description\": \"Administration Bond\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1722,\n            \"number\": \"Article IA-8\",\n            \"description\": \"Appraisement or valuation\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1723,\n            \"number\": \"Article IA-9\",\n            \"description\": \"Apprenticeship deed\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1724,\n            \"number\": \"Article IA-10\",\n            \"description\": \"Articles of Association of a Company\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1725,\n            \"number\": \"Article IA-11\",\n            \"description\": \"Articles of clerkship\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1726,\n            \"number\": \"Article IA-12\",\n            \"description\": \"Award\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1727,\n            \"number\": \"Article IA-13\",\n            \"description\": \"Bill of Exchange\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1728,\n            \"number\": \"Article IA-14\",\n            \"description\": \"Bill of lading\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1729,\n            \"number\": \"Article IA-16\",\n            \"description\": \"Bottomry Bond\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1730,\n            \"number\": \"Article IA-19\",\n            \"description\": \"Certificate of other document\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1731,\n            \"number\": \"Article IA-20\",\n            \"description\": \"Charter Party\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1732,\n            \"number\": \"Article IA-24\",\n            \"description\": \"Copy or Extract\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1733,\n            \"number\": \"Article IA-28\",\n            \"description\": \"Delivery order in respect of goods\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1734,\n            \"number\": \"Article IA-29\",\n            \"description\": \"Divorce\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1735,\n            \"number\": \"Article IA-36\",\n            \"description\": \"Letter of allotment of shares\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1736,\n            \"number\": \"Article IA-37\",\n            \"description\": \"Letter of credit\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1737,\n            \"number\": \"Article IA-38\",\n            \"description\": \"Letter of License\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1738,\n            \"number\": \"Article IA-39\",\n            \"description\": \"Memorandum of association of a Company\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1739,\n            \"number\": \"Article IA-42\",\n            \"description\": \"Notarial Act\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1740,\n            \"number\": \"Article IA-43\",\n            \"description\": \"Note or Memorandum\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1741,\n            \"number\": \"Article IA-44\",\n            \"description\": \"Note of Protest by the master of a ship\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1742,\n            \"number\": \"Article IA-46(A)\",\n            \"description\": \"Instrument of Partnership\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1743,\n            \"number\": \"Article IA-46(B)\",\n            \"description\": \"Dissolution of Partnership\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1744,\n            \"number\": \"Article IA-47\",\n            \"description\": \"Policy of Insurance\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1745,\n            \"number\": \"Article IA-50\",\n            \"description\": \"Protest of bill or note\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1746,\n            \"number\": \"Article IA-51\",\n            \"description\": \"Protest by the master of a ship\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1747,\n            \"number\": \"Article IA-52\",\n            \"description\": \"Proxy\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1748,\n            \"number\": \"Article IA-59\",\n            \"description\": \"Share Warrants\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1749,\n            \"number\": \"Article IA-65\",\n            \"description\": \"Warrants of Goods\",\n            \"stateCode\": \"OR\"\n        },\n        {\n            \"id\": 1750,\n            \"number\": \"Article 1\",\n            \"description\": \"Acknowledgement\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1751,\n            \"number\": \"Article 2\",\n            \"description\": \"Administration-Bond\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1752,\n            \"number\": \"Article 3\",\n            \"description\": \"Adoption-Deed\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1753,\n            \"number\": \"Article 4\",\n            \"description\": \"Affidavit\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1754,\n            \"number\": \"Article 5\",\n            \"description\": \"Agreement or Memorandum of Agreement\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1755,\n            \"number\": \"Article 6\",\n            \"description\": \"Agreement relating to Deposit of Title Deeds, Pawn or Pledge\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1756,\n            \"number\": \"Article 7\",\n            \"description\": \"Appointment in Execution of a Power\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1757,\n            \"number\": \"Article 8\",\n            \"description\": \"Appraisement or Valuation\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1758,\n            \"number\": \"Article 9\",\n            \"description\": \"Apprenticeship deed\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1759,\n            \"number\": \"Article 10\",\n            \"description\": \"Articles of Association of a Company\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1760,\n            \"number\": \"Article 11\",\n            \"description\": \"Articles of Clerkship\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1761,\n            \"number\": \"Article 12\",\n            \"description\": \"Award\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1762,\n            \"number\": \"Article 13\",\n            \"description\": \"Bill of Exchange\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1763,\n            \"number\": \"Article 14\",\n            \"description\": \"Bill of Lading\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1764,\n            \"number\": \"Article 15\",\n            \"description\": \"Bond\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1765,\n            \"number\": \"Article 16\",\n            \"description\": \"Bottomry Bond\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1766,\n            \"number\": \"Article 17\",\n            \"description\": \"Cancellation\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1767,\n            \"number\": \"Article 18\",\n            \"description\": \"Certificate of Sale\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1768,\n            \"number\": \"Article 19\",\n            \"description\": \"Certificate or Other Document\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1769,\n            \"number\": \"Article 20\",\n            \"description\": \"Charter-Party\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1770,\n            \"number\": \"Article 22\",\n            \"description\": \"Composition-Deed\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1771,\n            \"number\": \"Article 23\",\n            \"description\": \"Conveyance\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1772,\n            \"number\": \"Article 23(A)\",\n            \"description\": \"Conveyance in the Nature of Part Performance\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1773,\n            \"number\": \"Article 24\",\n            \"description\": \"Copy or Extract\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1774,\n            \"number\": \"Article 25\",\n            \"description\": \"Counterpart or Duplicate\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1775,\n            \"number\": \"Article 26\",\n            \"description\": \"Customs Bond\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1776,\n            \"number\": \"Article 27\",\n            \"description\": \"Debenture\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1777,\n            \"number\": \"Article 28\",\n            \"description\": \"Delivery- Order in respect of Goods\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1778,\n            \"number\": \"Article 46(B)\",\n            \"description\": \"Dissolution of Pawn or Pledge\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1779,\n            \"number\": \"Article 29(i)\",\n            \"description\": \"Divorce\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1780,\n            \"number\": \"Article 29(ii)\",\n            \"description\": \"Dower\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1781,\n            \"number\": \"Article 29(iii)\",\n            \"description\": \"Duplicate\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1782,\n            \"number\": \"Article 30\",\n            \"description\": \"Entry as an advocate Vakil or Attorney on the roll of any High Court\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1783,\n            \"number\": \"Article 31\",\n            \"description\": \"Exchange of Property\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1784,\n            \"number\": \"Article 32\",\n            \"description\": \"Further Charge\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1785,\n            \"number\": \"Article 33(i)\",\n            \"description\": \"Gift\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1786,\n            \"number\": \"Article 33(ii)\",\n            \"description\": \"Hiring Agreement\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1787,\n            \"number\": \"Article 34(i)\",\n            \"description\": \"Indemnity-Bond\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1788,\n            \"number\": \"Article 34(ii)\",\n            \"description\": \"Inspectorship-Deed\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1789,\n            \"number\": \"Article 34(iii)\",\n            \"description\": \"Insurance\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1790,\n            \"number\": \"Article 35\",\n            \"description\": \"Lease-more than one year\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1791,\n            \"number\": \"Article 36\",\n            \"description\": \"Letter of Alloment of Shares\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1792,\n            \"number\": \"Article 37(i)\",\n            \"description\": \"Letter of Credit\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1793,\n            \"number\": \"Article 37(ii)\",\n            \"description\": \"Letter of Guarantee\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1794,\n            \"number\": \"Article 38\",\n            \"description\": \"Letter of Licence\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1795,\n            \"number\": \"Article 39\",\n            \"description\": \"Memorandum of Association of a Company\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1796,\n            \"number\": \"Article 41\",\n            \"description\": \"Mortgage of a Crop\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1797,\n            \"number\": \"Article 40\",\n            \"description\": \"Mortgage-Deed\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1798,\n            \"number\": \"Article 42\",\n            \"description\": \"Notarial Act\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1799,\n            \"number\": \"Article 43\",\n            \"description\": \"Note of Memorandum\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1800,\n            \"number\": \"Article 44(i)\",\n            \"description\": \"Note of Protest by the Master of a Ship\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1801,\n            \"number\": \"Article 44(ii)\",\n            \"description\": \"Order for the Payment of Money\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1802,\n            \"number\": \"Article 45\",\n            \"description\": \"Partition\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1803,\n            \"number\": \"Article 46(A)\",\n            \"description\": \"Partnership\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1804,\n            \"number\": \"Article 47\",\n            \"description\": \"Policy of Insurance\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1805,\n            \"number\": \"Article 48\",\n            \"description\": \"Power of Attorney\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1806,\n            \"number\": \"Article 49\",\n            \"description\": \"Promissory Note\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1807,\n            \"number\": \"Article 51\",\n            \"description\": \"Protest by the Master of a Ship\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1808,\n            \"number\": \"Article 50\",\n            \"description\": \"Protest of Bill or Note\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1809,\n            \"number\": \"Article 52\",\n            \"description\": \"Proxy\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1810,\n            \"number\": \"Article 53\",\n            \"description\": \"Receipt\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1811,\n            \"number\": \"Article 54\",\n            \"description\": \"Reconveyance of Mortgaged Property\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1812,\n            \"number\": \"Article 55\",\n            \"description\": \"Release\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1813,\n            \"number\": \"Article 56(i)\",\n            \"description\": \"Respondentia Bond\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1814,\n            \"number\": \"Article 56(ii)\",\n            \"description\": \"Revocation of Any Trust or Settlement\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1815,\n            \"number\": \"Article 57\",\n            \"description\": \"Security Bond or Mortgage Deed\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1816,\n            \"number\": \"Article 58\",\n            \"description\": \"Settlement\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1817,\n            \"number\": \"Article 59\",\n            \"description\": \"Share Warrants\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1818,\n            \"number\": \"Article 60\",\n            \"description\": \"Shipping Order\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1819,\n            \"number\": \"Article 61\",\n            \"description\": \"Surrender of Lease\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1820,\n            \"number\": \"Article 62\",\n            \"description\": \"Transfer\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1821,\n            \"number\": \"Article 63\",\n            \"description\": \"Transfer of Lease\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1822,\n            \"number\": \"Article 64(i)(A)\",\n            \"description\": \"Trust: Declaration of\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1823,\n            \"number\": \"Article 64(i)(B)\",\n            \"description\": \"Trust: Revocation of\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1824,\n            \"number\": \"Article 64(iii)\",\n            \"description\": \"Vakil\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1825,\n            \"number\": \"Article 64(ii)\",\n            \"description\": \"Valuation\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1826,\n            \"number\": \"Article 65\",\n            \"description\": \"Warrant for Goods\",\n            \"stateCode\": \"PY\"\n        },\n        {\n            \"id\": 1827,\n            \"number\": \"Article 1\",\n            \"description\": \"Acknowledgement\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1828,\n            \"number\": \"Article 2\",\n            \"description\": \"Administration ?Bond\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1829,\n            \"number\": \"Article 3\",\n            \"description\": \"Adoption-Deed,\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1830,\n            \"number\": \"Article 4\",\n            \"description\": \"Affidavit.\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1831,\n            \"number\": \"Article 5\",\n            \"description\": \"Agreement or Memorandum of an Agreement-\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1832,\n            \"number\": \"Article 6\",\n            \"description\": \"Agreement relating to Deposit of Title-Deeds, Pawn or Pledge,\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1833,\n            \"number\": \"Article 7\",\n            \"description\": \"Appointment in Execution of a Power,\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1834,\n            \"number\": \"Article 8\",\n            \"description\": \"Appraisment or Valuation,\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1835,\n            \"number\": \"Article 9\",\n            \"description\": \"Apprenticeship Deed,\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1836,\n            \"number\": \"Article 10\",\n            \"description\": \"Articles of association of a Company.\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1837,\n            \"number\": \"Article 12\",\n            \"description\": \"Award\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1838,\n            \"number\": \"Article 13\",\n            \"description\": \"Bill of Exchange,\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1839,\n            \"number\": \"Article 14\",\n            \"description\": \"Bill of Lading\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1840,\n            \"number\": \"Article 15\",\n            \"description\": \"Bond\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1841,\n            \"number\": \"Article 16\",\n            \"description\": \"Bottomry Bond,\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1842,\n            \"number\": \"Article 17\",\n            \"description\": \"Cancellation\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1843,\n            \"number\": \"Article 18\",\n            \"description\": \"Certificate of Sale\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1844,\n            \"number\": \"Article 19\",\n            \"description\": \"Certificate of other Document,\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1845,\n            \"number\": \"Article 20\",\n            \"description\": \"Charter-Party,\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1846,\n            \"number\": \"Article 20-A\",\n            \"description\": \"Chit Agreement,\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1847,\n            \"number\": \"Article 22\",\n            \"description\": \"Composition Deed,\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1848,\n            \"number\": \"Article 23\",\n            \"description\": \"Conveyance\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1849,\n            \"number\": \"Article 24\",\n            \"description\": \"Copy or extract\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1850,\n            \"number\": \"Article 25\",\n            \"description\": \"Counterpart or Duplicate\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1851,\n            \"number\": \"Article 26\",\n            \"description\": \"Customs Bond-\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1852,\n            \"number\": \"Article 27\",\n            \"description\": \"Debenture\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1853,\n            \"number\": \"Article 28\",\n            \"description\": \"Delivery Order in respect of Goods\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1854,\n            \"number\": \"Article 29\",\n            \"description\": \"Divorce-\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1855,\n            \"number\": \"Article 30\",\n            \"description\": \"Exchange of Property\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1856,\n            \"number\": \"Article 31\",\n            \"description\": \"Entry as an Advocate, or Attorney on the Roll of the Madras High Court\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1857,\n            \"number\": \"Article 32\",\n            \"description\": \"Further Charge\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1858,\n            \"number\": \"Article 33\",\n            \"description\": \"Gift-\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1859,\n            \"number\": \"Article 34\",\n            \"description\": \"Indemnity-Bond\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1860,\n            \"number\": \"Article 35\",\n            \"description\": \"Lease,\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1861,\n            \"number\": \"Article 36\",\n            \"description\": \"Letter of Allotment of Shares\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1862,\n            \"number\": \"Article 37\",\n            \"description\": \"Letter of Credit\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1863,\n            \"number\": \"Article 38\",\n            \"description\": \"Letter of Licence,\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1864,\n            \"number\": \"Article 39\",\n            \"description\": \"Memorandum of Association of a Company-\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1865,\n            \"number\": \"Article 40\",\n            \"description\": \"Mortgage Deed\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1866,\n            \"number\": \"Article 41\",\n            \"description\": \"Mortgage of a Crop,\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1867,\n            \"number\": \"Article 42\",\n            \"description\": \"Notarial Act,\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1868,\n            \"number\": \"Article 43\",\n            \"description\": \"Note or Memorandum\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1869,\n            \"number\": \"Article 44\",\n            \"description\": \"Note of Protest by the Master of a ship.\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1870,\n            \"number\": \"Article 45\",\n            \"description\": \"Partition\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1871,\n            \"number\": \"Article 46\",\n            \"description\": \"Partnership-\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1872,\n            \"number\": \"Article 47\",\n            \"description\": \"Policy of Insurance\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1873,\n            \"number\": \"Article 47-B\",\n            \"description\": \"Fire Insurance and other classes of Insurance not elsewhere included in this article covering goods, merchandise, personal effects, crops and other property against loss or damage\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1874,\n            \"number\": \"Article 47-C\",\n            \"description\": \"Accident and Sickness Insurance-\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1875,\n            \"number\": \"Article 47-D\",\n            \"description\": \"D-Life insurance or Group Insurance or other\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1876,\n            \"number\": \"Article 47-E\",\n            \"description\": \"E-Re-Insurance by an Insurance Company,\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1877,\n            \"number\": \"Article 48\",\n            \"description\": \"Power of Attorney\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1878,\n            \"number\": \"Article 49\",\n            \"description\": \"Promissory Note\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1879,\n            \"number\": \"Article 50\",\n            \"description\": \"Protest of Bill or Note.\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1880,\n            \"number\": \"Article 51\",\n            \"description\": \"Protest by the Master of a Ship\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1881,\n            \"number\": \"Article 52\",\n            \"description\": \"Proxy\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1882,\n            \"number\": \"Article 53\",\n            \"description\": \"Receipt\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1883,\n            \"number\": \"Article 54\",\n            \"description\": \"Reconveyance of Mortgaged Property-\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1884,\n            \"number\": \"Article 55\",\n            \"description\": \"A. Release,\\nB. Release of Benami Right in favour of real owner-\\nC.Release of Rght In favour of Co- owner ,\\nD. Release of right in favour of Partner\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1885,\n            \"number\": \"Article 56\",\n            \"description\": \"Respondentia Bond, .\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1886,\n            \"number\": \"Article 57\",\n            \"description\": \"Security Bond or Mortgage Deed\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1887,\n            \"number\": \"Article 58\",\n            \"description\": \"Settlement-\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1888,\n            \"number\": \"Article 59\",\n            \"description\": \"Share Warrants.\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1889,\n            \"number\": \"Article 60\",\n            \"description\": \"Shipping Order\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1890,\n            \"number\": \"Article 61\",\n            \"description\": \"Surrender of lease-\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1891,\n            \"number\": \"Article 62\",\n            \"description\": \"Transfer\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1892,\n            \"number\": \"Article 63\",\n            \"description\": \"Transfer of Lease.\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1893,\n            \"number\": \"Article 64\",\n            \"description\": \"Trust\\nb) Revocation of --of, or concerning, any property when made by any instrument other than a Will\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1894,\n            \"number\": \"Article 65\",\n            \"description\": \"Warrant of Goods.\",\n            \"stateCode\": \"TN\"\n        },\n        {\n            \"id\": 1895,\n            \"number\": \"Article IA-45\",\n            \"description\": \"Partition Deed\",\n            \"stateCode\": \"TR\"\n        },\n        {\n            \"id\": 1896,\n            \"number\": \"Article IA-23(1)\",\n            \"description\": \"Sale Deed\",\n            \"stateCode\": \"TR\"\n        },\n        {\n            \"id\": 1897,\n            \"number\": \"Article IA-48\",\n            \"description\": \"Power of Attorney Deed\",\n            \"stateCode\": \"TR\"\n        },\n        {\n            \"id\": 1898,\n            \"number\": \"Article IA-53\",\n            \"description\": \"Acknowledgement Deed\",\n            \"stateCode\": \"TR\"\n        },\n        {\n            \"id\": 1899,\n            \"number\": \"Article IA-54\",\n            \"description\": \"Reconveyance of Mortgaged Deed\",\n            \"stateCode\": \"TR\"\n        },\n        {\n            \"id\": 1900,\n            \"number\": \"Article IA-55\",\n            \"description\": \"Release Deed\",\n            \"stateCode\": \"TR\"\n        },\n        {\n            \"id\": 1901,\n            \"number\": \"Article IA-58\",\n            \"description\": \"Settlement Deed\",\n            \"stateCode\": \"TR\"\n        },\n        {\n            \"id\": 1902,\n            \"number\": \"Article IA-58B\",\n            \"description\": \"Revocation of settlement\",\n            \"stateCode\": \"TR\"\n        },\n        {\n            \"id\": 1903,\n            \"number\": \"Article IA-61\",\n            \"description\": \"Surrender of Lease Deed\",\n            \"stateCode\": \"TR\"\n        },\n        {\n            \"id\": 1904,\n            \"number\": \"Article IA-63\",\n            \"description\": \"Transfer of Lease\",\n            \"stateCode\": \"TR\"\n        },\n        {\n            \"id\": 1905,\n            \"number\": \"Article IA-3\",\n            \"description\": \"Adoption Deed\",\n            \"stateCode\": \"TR\"\n        },\n        {\n            \"id\": 1906,\n            \"number\": \"Article IA-23(2)\",\n            \"description\": \"Agreement to Sale\",\n            \"stateCode\": \"TR\"\n        },\n        {\n            \"id\": 1907,\n            \"number\": \"Article IA-23(3)\",\n            \"description\": \"Conveyance Deed\",\n            \"stateCode\": \"TR\"\n        },\n        {\n            \"id\": 1908,\n            \"number\": \"Article IA-31\",\n            \"description\": \"Exchange Deed\",\n            \"stateCode\": \"TR\"\n        },\n        {\n            \"id\": 1909,\n            \"number\": \"Article IA-33\",\n            \"description\": \"Gift Deed\",\n            \"stateCode\": \"TR\"\n        },\n        {\n            \"id\": 1910,\n            \"number\": \"Article IA-35\",\n            \"description\": \"Lease Deed\",\n            \"stateCode\": \"TR\"\n        },\n        {\n            \"id\": 1911,\n            \"number\": \"Article IA-40\",\n            \"description\": \"Mortgage Deed\",\n            \"stateCode\": \"TR\"\n        },\n        {\n            \"id\": 1912,\n            \"number\": \"Article IA-46\",\n            \"description\": \"Partnership Deed\",\n            \"stateCode\": \"TR\"\n        },\n        {\n            \"id\": 1913,\n            \"number\": \"Article IA-17\",\n            \"description\": \"Cancellation Deed\",\n            \"stateCode\": \"TR\"\n        },\n        {\n            \"id\": 1914,\n            \"number\": \"Article IA-4\",\n            \"description\": \"Affidavit\",\n            \"stateCode\": \"TR\"\n        },\n        {\n            \"id\": 1915,\n            \"number\": \"Article IA-5(1)\",\n            \"description\": \"Memorandum of an Agreement\",\n            \"stateCode\": \"TR\"\n        },\n        {\n            \"id\": 1916,\n            \"number\": \"Article IA-5(2)\",\n            \"description\": \"Agreement including a higher Agreement\",\n            \"stateCode\": \"TR\"\n        },\n        {\n            \"id\": 1917,\n            \"number\": \"Article IA-6\",\n            \"description\": \"Agreement relating to deposit of Title Deeds (EM)\",\n            \"stateCode\": \"TR\"\n        },\n        {\n            \"id\": 1918,\n            \"number\": \"Article IA-7\",\n            \"description\": \"Appointment in execution of Power\",\n            \"stateCode\": \"TR\"\n        },\n        {\n            \"id\": 1919,\n            \"number\": \"Article IA-15\",\n            \"description\": \"Bond\",\n            \"stateCode\": \"TR\"\n        },\n        {\n            \"id\": 1920,\n            \"number\": \"Article IA-18\",\n            \"description\": \"Certificate of Sale\",\n            \"stateCode\": \"TR\"\n        },\n        {\n            \"id\": 1921,\n            \"number\": \"Article IA-22\",\n            \"description\": \"Composition Deed\",\n            \"stateCode\": \"TR\"\n        },\n        {\n            \"id\": 1922,\n            \"number\": \"Article IA-25\",\n            \"description\": \"Counterpart or Duplicate deed\",\n            \"stateCode\": \"TR\"\n        },\n        {\n            \"id\": 1923,\n            \"number\": \"Article IA-26\",\n            \"description\": \"Customs Bond\",\n            \"stateCode\": \"TR\"\n        },\n        {\n            \"id\": 1924,\n            \"number\": \"Article IA-27\",\n            \"description\": \"Debenture\",\n            \"stateCode\": \"TR\"\n        },\n        {\n            \"id\": 1925,\n            \"number\": \"Article IA-32\",\n            \"description\": \"Further Charge\",\n            \"stateCode\": \"TR\"\n        },\n        {\n            \"id\": 1926,\n            \"number\": \"Article IA-34\",\n            \"description\": \"Indemnity Bond\",\n            \"stateCode\": \"TR\"\n        },\n        {\n            \"id\": 1927,\n            \"number\": \"Article IA-35(1)\",\n            \"description\": \"Lease Deed\",\n            \"stateCode\": \"TR\"\n        },\n        {\n            \"id\": 1928,\n            \"number\": \"Article IA-35(2)\",\n            \"description\": \"Hire Agreement\",\n            \"stateCode\": \"TR\"\n        },\n        {\n            \"id\": 1929,\n            \"number\": \"Article IA-35(3)\",\n            \"description\": \"Agreement to Lease\",\n            \"stateCode\": \"TR\"\n        },\n        {\n            \"id\": 1930,\n            \"number\": \"Article IA-41\",\n            \"description\": \"Mortgage of a Crop\",\n            \"stateCode\": \"TR\"\n        },\n        {\n            \"id\": 1931,\n            \"number\": \"Article IA-56\",\n            \"description\": \"Respondentia Bond\",\n            \"stateCode\": \"TR\"\n        },\n        {\n            \"id\": 1932,\n            \"number\": \"Article IA-57\",\n            \"description\": \"Security Bond\",\n            \"stateCode\": \"TR\"\n        },\n        {\n            \"id\": 1933,\n            \"number\": \"Article IA-62\",\n            \"description\": \"Transfer Deed\",\n            \"stateCode\": \"TR\"\n        },\n        {\n            \"id\": 1934,\n            \"number\": \"Article IA-64\",\n            \"description\": \"Trust (Declaration of)\",\n            \"stateCode\": \"TR\"\n        },\n        {\n            \"id\": 1935,\n            \"number\": \"Article IA-64B\",\n            \"description\": \"Revocation of Trust\",\n            \"stateCode\": \"TR\"\n        },\n        {\n            \"id\": 1936,\n            \"number\": \"Article IA-23\",\n            \"description\": \"Assignment Deed\",\n            \"stateCode\": \"TR\"\n        },\n        {\n            \"id\": 1937,\n            \"number\": \"Article 1\",\n            \"description\": \"Acknowledgment of a debt\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1938,\n            \"number\": \"Article 10\",\n            \"description\": \"Articles of Association of a Company\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1939,\n            \"number\": \"Article 11\",\n            \"description\": \"Articles of Clerkship\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1940,\n            \"number\": \"Article 12\",\n            \"description\": \"Award\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1941,\n            \"number\": \"Article 12(A)\",\n            \"description\": \"Bank Guarantee\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1942,\n            \"number\": \"Article 13\",\n            \"description\": \"Bill of Exchange\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1943,\n            \"number\": \"Article 14\",\n            \"description\": \"Bill of Lading\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1944,\n            \"number\": \"Article 15\",\n            \"description\": \"Bond\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1945,\n            \"number\": \"Article 16\",\n            \"description\": \"Bottomry Bond\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1946,\n            \"number\": \"Article 17\",\n            \"description\": \"Cancellation\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1947,\n            \"number\": \"Article 17(A)\",\n            \"description\": \"Certificate of enrolment of Advocates\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1948,\n            \"number\": \"Article 2\",\n            \"description\": \"Administration Bond\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1949,\n            \"number\": \"Article 17(B)\",\n            \"description\": \"Certificate of Practice as Notary\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1950,\n            \"number\": \"Article 18\",\n            \"description\": \"Certificate of Sale\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1951,\n            \"number\": \"Article 19\",\n            \"description\": \"Certificate or other Document\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1952,\n            \"number\": \"Article 20\",\n            \"description\": \"Charter Party\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1953,\n            \"number\": \"Article 22\",\n            \"description\": \"Composition - Deed\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1954,\n            \"number\": \"Article 23\",\n            \"description\": \"Conveyance\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1955,\n            \"number\": \"Article 24\",\n            \"description\": \"Copy or Extract\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1956,\n            \"number\": \"Article 25\",\n            \"description\": \"Counterpart or Duplicate\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1957,\n            \"number\": \"Article 26\",\n            \"description\": \"Customs - Bonds\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1958,\n            \"number\": \"Article 27\",\n            \"description\": \"Debenture\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1959,\n            \"number\": \"Article 3\",\n            \"description\": \"Adoption - Deed\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1960,\n            \"number\": \"Article 28\",\n            \"description\": \"Delivery order in respect of Goods\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1961,\n            \"number\": \"Article 29\",\n            \"description\": \"Divorce\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1962,\n            \"number\": \"Article 31\",\n            \"description\": \"Exchange of Property\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1963,\n            \"number\": \"Article 32\",\n            \"description\": \"Further Charge\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1964,\n            \"number\": \"Article 33\",\n            \"description\": \"Gift\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1965,\n            \"number\": \"Article 34\",\n            \"description\": \"Indemnity Bond\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1966,\n            \"number\": \"Article 34(A)\",\n            \"description\": \"Instrument\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1967,\n            \"number\": \"Article 35\",\n            \"description\": \"Lease\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1968,\n            \"number\": \"Article 36\",\n            \"description\": \"Letter of Allotment of Shares\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1969,\n            \"number\": \"Article 37\",\n            \"description\": \"Letter of Credit\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1970,\n            \"number\": \"Article 4\",\n            \"description\": \"Affidavit\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1971,\n            \"number\": \"Article 38\",\n            \"description\": \"Letter of License\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1972,\n            \"number\": \"Article 38(A)\",\n            \"description\": \"License\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1973,\n            \"number\": \"Article 39\",\n            \"description\": \"Memorandum of Association of a Company\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1974,\n            \"number\": \"Article 40\",\n            \"description\": \"Mortgage - Deed\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1975,\n            \"number\": \"Article 41\",\n            \"description\": \"Mortgage of a Crop\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1976,\n            \"number\": \"Article 42\",\n            \"description\": \"Notarial Act\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1977,\n            \"number\": \"Article 43\",\n            \"description\": \"Note or Memorandum\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1978,\n            \"number\": \"Article 44\",\n            \"description\": \"Note of Protest\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1979,\n            \"number\": \"Article 45\",\n            \"description\": \"Partition\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1980,\n            \"number\": \"Article 46(A)\",\n            \"description\": \"Partnership\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1981,\n            \"number\": \"Article 5\",\n            \"description\": \"Agreement or Memorandum of an agreement\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1982,\n            \"number\": \"Article 46(B)\",\n            \"description\": \"Dissolution of Partnership\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1983,\n            \"number\": \"Article 47\",\n            \"description\": \"Policy of Insurance\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1984,\n            \"number\": \"Article 48\",\n            \"description\": \"Power of Attorney\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1985,\n            \"number\": \"Article 49\",\n            \"description\": \"Promissory Note\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1986,\n            \"number\": \"Article 50\",\n            \"description\": \"Protest of Bill or note\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1987,\n            \"number\": \"Article 51\",\n            \"description\": \"Protest by the Master of a Ship\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1988,\n            \"number\": \"Article 52\",\n            \"description\": \"Proxy\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1989,\n            \"number\": \"Article 53\",\n            \"description\": \"Receipt\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1990,\n            \"number\": \"Article 54\",\n            \"description\": \"Re-Conveyance of Mortgaged property\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1991,\n            \"number\": \"Article 55\",\n            \"description\": \"Release\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1992,\n            \"number\": \"Article 6\",\n            \"description\": \"Agreement relating to Deposit of Title-Deeds, pawn or Pledge\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1993,\n            \"number\": \"Article 56\",\n            \"description\": \"Respondentia Bond\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1994,\n            \"number\": \"Article 57\",\n            \"description\": \"Security-Bond or Mortgage Deed\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1995,\n            \"number\": \"Article 58(A)\",\n            \"description\": \"Settlement\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1996,\n            \"number\": \"Article 58(B)\",\n            \"description\": \"Revocation of Settlement\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1997,\n            \"number\": \"Article 59\",\n            \"description\": \"Share Warrants\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1998,\n            \"number\": \"Article 60\",\n            \"description\": \"Shipping Order\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 1999,\n            \"number\": \"Article 61\",\n            \"description\": \"Surrender of Lease\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 2000,\n            \"number\": \"Article 62\",\n            \"description\": \"Transfer\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 2001,\n            \"number\": \"Article 63\",\n            \"description\": \"Transfer of Lease\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 2002,\n            \"number\": \"Article 64(A)\",\n            \"description\": \"Trust\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 2003,\n            \"number\": \"Article 7\",\n            \"description\": \"Appointment in execution of a power\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 2004,\n            \"number\": \"Article 64(B)\",\n            \"description\": \"Revocation of Trust\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 2005,\n            \"number\": \"Article 65\",\n            \"description\": \"Warrant for Goods\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 2006,\n            \"number\": \"Article 8\",\n            \"description\": \"Appraisement or Valuation\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 2007,\n            \"number\": \"Article 9\",\n            \"description\": \"Apprenticeship - Deed\",\n            \"stateCode\": \"UK\"\n        },\n        {\n            \"id\": 2008,\n            \"number\": \"Article 1\",\n            \"description\": \"Acknowledgement of a debt\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2009,\n            \"number\": \"Article 2\",\n            \"description\": \"Administration Bond\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2010,\n            \"number\": \"Article 3\",\n            \"description\": \"Adoption-Deed\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2011,\n            \"number\": \"Article 4\",\n            \"description\": \"Affidavit\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2012,\n            \"number\": \"Article 5\",\n            \"description\": \"Agreement or Memorandum of an Agreement\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2013,\n            \"number\": \"Article 5(d)\",\n            \"description\": \"Agreement - if not otherwise provided for\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2014,\n            \"number\": \"Article 6\",\n            \"description\": \"Agreement relating to deposit of title deeds, pawn or pledge, mortgage by way of deposit of Title Deed (Equitable Mortgage) and hypothecation\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2015,\n            \"number\": \"Article 7\",\n            \"description\": \"Appointment in Execution of a Power\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2016,\n            \"number\": \"Article 8\",\n            \"description\": \"Appraisement or Valuation\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2017,\n            \"number\": \"Article 9\",\n            \"description\": \"Apprenticeship-Deed\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2018,\n            \"number\": \"Article 10\",\n            \"description\": \"Articles of Association of a Company\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2019,\n            \"number\": \"Article 11\",\n            \"description\": \"Articles of Clerkship\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2020,\n            \"number\": \"Article 12\",\n            \"description\": \"Award\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2021,\n            \"number\": \"Article 13\",\n            \"description\": \"Bill of Exchange\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2022,\n            \"number\": \"Article 14\",\n            \"description\": \"Bill of Lading (including a through bill of lading)\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2023,\n            \"number\": \"Article 15\",\n            \"description\": \"Bond\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2024,\n            \"number\": \"Article 16\",\n            \"description\": \"Bottomary Bond\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2025,\n            \"number\": \"Article 17\",\n            \"description\": \"Cancellation\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2026,\n            \"number\": \"Article 18\",\n            \"description\": \"Certificate of Sale\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2027,\n            \"number\": \"Article 19\",\n            \"description\": \"Certificate of other Document\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2028,\n            \"number\": \"Article 20\",\n            \"description\": \"Charter Party\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2029,\n            \"number\": \"Article 22\",\n            \"description\": \"Composition-Deed\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2030,\n            \"number\": \"Article 23\",\n            \"description\": \"Conveyance\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2031,\n            \"number\": \"Article 24\",\n            \"description\": \"Copy or Extract\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2032,\n            \"number\": \"Article 25\",\n            \"description\": \"Counterpart or Duplicate\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2033,\n            \"number\": \"Article 26\",\n            \"description\": \"Customs-Bonds\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2034,\n            \"number\": \"Article 27\",\n            \"description\": \"Debenture\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2035,\n            \"number\": \"Article 28\",\n            \"description\": \"Delivery order in respect of goods, deposit of title deeds\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2036,\n            \"number\": \"Article 29\",\n            \"description\": \"Divorce\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2037,\n            \"number\": \"Article 30\",\n            \"description\": \"Entry as an Advocate, Vakil or Attorney on the roll of the High Court\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2038,\n            \"number\": \"Article 31\",\n            \"description\": \"Exchange of Property\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2039,\n            \"number\": \"Article 32\",\n            \"description\": \"Further Charge\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2040,\n            \"number\": \"Article 33\",\n            \"description\": \"Gift\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2041,\n            \"number\": \"Article 34\",\n            \"description\": \"Indemnity Bond\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2042,\n            \"number\": \"Article 35\",\n            \"description\": \"Lease\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2043,\n            \"number\": \"Article 36\",\n            \"description\": \"Letter of Allotment of Shares\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2044,\n            \"number\": \"Article 37\",\n            \"description\": \"Letter of Credit\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2045,\n            \"number\": \"Article 38\",\n            \"description\": \"Letter of License\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2046,\n            \"number\": \"Article 39\",\n            \"description\": \"Memorandum of Association of a Company\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2047,\n            \"number\": \"Article 40\",\n            \"description\": \"Mortgage Deed\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2048,\n            \"number\": \"Article 41\",\n            \"description\": \"Mortgage of a Crop\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2049,\n            \"number\": \"Article 42\",\n            \"description\": \"Notarial Act\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2050,\n            \"number\": \"Article 43\",\n            \"description\": \"Note or Memorandum\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2051,\n            \"number\": \"Article 44\",\n            \"description\": \"Note of Protest by the Master of a Ship\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2052,\n            \"number\": \"Article 45\",\n            \"description\": \"Partition\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2053,\n            \"number\": \"Article 46\",\n            \"description\": \"Partnership\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2054,\n            \"number\": \"Article 47\",\n            \"description\": \"Policy of Insurance\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2055,\n            \"number\": \"Article 48\",\n            \"description\": \"Power of Attorney\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2056,\n            \"number\": \"Article 49\",\n            \"description\": \"Promissory Note\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2057,\n            \"number\": \"Article 50\",\n            \"description\": \"Protest of Bill or Note\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2058,\n            \"number\": \"Article 51\",\n            \"description\": \"Protest by the Master of a Ship\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2059,\n            \"number\": \"Article 52\",\n            \"description\": \"Proxy\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2060,\n            \"number\": \"Article 53\",\n            \"description\": \"Receipt\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2061,\n            \"number\": \"Article 54\",\n            \"description\": \"Reconveyance of Mortgaged Property\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2062,\n            \"number\": \"Article 55\",\n            \"description\": \"Release\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2063,\n            \"number\": \"Article 56\",\n            \"description\": \"Respondentia Bond\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2064,\n            \"number\": \"Article 57\",\n            \"description\": \"Security-Bond or Mortgage Deed\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2065,\n            \"number\": \"Article 58\",\n            \"description\": \"Settlement\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2066,\n            \"number\": \"Article 59\",\n            \"description\": \"Share Warrants\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2067,\n            \"number\": \"Article 60\",\n            \"description\": \"Shipping Order\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2068,\n            \"number\": \"Article 61\",\n            \"description\": \"Surrender of Lease\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2069,\n            \"number\": \"Article 62\",\n            \"description\": \"Transfer\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2070,\n            \"number\": \"Article 63\",\n            \"description\": \"Transfer of Lease\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2071,\n            \"number\": \"Article 64\",\n            \"description\": \"Trust\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2072,\n            \"number\": \"Article 65\",\n            \"description\": \"Warrant for Goods\",\n            \"stateCode\": \"PB\"\n        },\n        {\n            \"id\": 2073,\n            \"number\": \"Article 31(a)\",\n            \"description\": \"Gift in favour of widow by her deceased husband's mother, father, brother, or sister\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2074,\n            \"number\": \"Article 31(b)\",\n            \"description\": \"Gift in favour of widow by her own mother, father, brother, sister, son or daughter;\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2075,\n            \"number\": \"Article 37(b)\",\n            \"description\": \"Mortgage Deed without possession\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2076,\n            \"number\": \"Article 5\",\n            \"description\": \"Agreement to sale with possession\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2077,\n            \"number\": \"Article 21(i)\",\n            \"description\": \"Agreement to sale with possession (disabled)\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2078,\n            \"number\": \"Article 33\",\n            \"description\": \"Assignment Deed for the purpose of assigning or transferring his right in favour of another person to get the lease deed : if such lease deed is executed by any person or\\n the developer in respect of the project covered under Rajasthan Township Policy, 2010\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2079,\n            \"number\": \"Article 44\",\n            \"description\": \"Authentication Power of Attorney\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2080,\n            \"number\": \"Article 17\",\n            \"description\": \"Certificate of sale executed in case of public Auction\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2081,\n            \"number\": \"Article 21\",\n            \"description\": \"Consent Deed (i) Agriculture land purchased for mining purpose or consent deed for\\n mining purpose between land owner and lessee.\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2082,\n            \"number\": \"Article 23(a)\",\n            \"description\": \"Counter Part or Duplicate (Original not exceed Three rupees)\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2083,\n            \"number\": \"Article 23(b)\",\n            \"description\": \"Counter Part or Duplicate In any other case\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2084,\n            \"number\": \"Article 35-B(4)(a)\",\n            \"description\": \"Dissolution of limited liability partnership: (a) where the immovable property is brought in by any partner as his share contribution at the time of constitution of the\\n limited liability partnership and such property is taken by any other partner as his share on dissolution\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2085,\n            \"number\": \"Article 35-B(4)(b)\",\n            \"description\": \"Dissolution of limited liability partnership: (b) where immovable property is acquired by the limited liability partnership after its constitution and such property is distributed among the partners on dissolution\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2086,\n            \"number\": \"Article 29\",\n            \"description\": \"Exchange Deed\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2087,\n            \"number\": \"Article 31\",\n            \"description\": \"Gift deed of immobale property executed in favour of a Non-Profit Institution as defined and identified eligible for benefits under the provisions of the Social Security InvestmentPromotion Scheme, 2021(stamp duty rebate on submission of Entitlement Certificate issued by competent authority under the Scheme)\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2088,\n            \"number\": \"Article 35B(2)(a)\",\n            \"description\": \"Instr.of conversion of firm/Pvt Ltd/unlisted Pub Ltd comp into LLP where on\\n conversion immovable prop.vests in LLP\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2089,\n            \"number\": \"Article 35-B(3)(d)\",\n            \"description\": \"Instrument of constitution of limited liability partnership (d) where such share contribution is brought in by way of both immovable property and cash\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2090,\n            \"number\": \"Article 51(b)\",\n            \"description\": \"Instrument of Settlement executed in family members Family Members means : (father, mother, wife, brother, sister, son, daughter, grandson, granddaughter, daughter-in-law of settler.)\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2091,\n            \"number\": \"Article 33(ii)\",\n            \"description\": \"Lease deed 1 year to 5 year\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2092,\n            \"number\": \"Article 33(iv)\",\n            \"description\": \"Lease Deed after public auction or on allotment or sale by by Govt./ULBs/State\\n Enterprises : Lease period 10 to 15 year\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2093,\n            \"number\": \"Article 33(v)\",\n            \"description\": \"Lease Deed after public auction or on allotment or sale by by Govt./ULBs/State Enterprises : Lease period 15 to 20 year\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2094,\n            \"number\": \"Article 33(vi)\",\n            \"description\": \"Lease Deed after public auction or on allotment or sale by by Govt./ULBs/State Enterprises : Lease period 20 to 30 year\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2095,\n            \"number\": \"Article 33(iii)\",\n            \"description\": \"Lease Deed after public auction or on allotment or sale by by Govt./ULBs/State\\n Enterprises : Lease period 5 to 10 year\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2096,\n            \"number\": \"Article 33(vii)\",\n            \"description\": \"Lease Deed after public auction or on allotment or sale by by Govt./ULBs/State Enterprises :Lease period exceeding 30 year or perpetual\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2097,\n            \"number\": \"Article 33A(ii)\",\n            \"description\": \"Leave and License 1 year to 5 year\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2098,\n            \"number\": \"Article 33A(iv)\",\n            \"description\": \"Leave and License exceeding 10 year to 15 year\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2099,\n            \"number\": \"Article 33A(v)\",\n            \"description\": \"Leave and License exceeding 15 year to 20 year\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2100,\n            \"number\": \"Article 33A(vi)\",\n            \"description\": \"Leave and License exceeding 20 year to 30 year\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2101,\n            \"number\": \"Article 33A(vii)\",\n            \"description\": \"Leave and License exceeding 30 year and perpetual\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2102,\n            \"number\": \"Article 33A\",\n            \"description\": \"Leave and License exceeding 30 year and perpetual (Disable 40% and above) (ix.)\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2103,\n            \"number\": \"Article 33A(iii)\",\n            \"description\": \"Leave and License exceeding 5 year to 10 year\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2104,\n            \"number\": \"Article 35B(2)(b)\",\n            \"description\": \"LLP : Instrument of conversion of firm/ private limited company/ unlisted public limited company into limited liability partnership- (b) in any other case\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2105,\n            \"number\": \"Article 35B\",\n            \"description\": \"LLP (2) Instrument of conversion of firm/ private limited company/ unlisted public\\n limited company into limited liability partnership (b) in any other case\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2106,\n            \"number\": \"Article 35B(4)(b)\",\n            \"description\": \"LLP Winding up or dissolution of LLP (b) in any other case.\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2107,\n            \"number\": \"Article 35B(4)(a)\",\n            \"description\": \"LLP Winding up or dissolution of LLP where on a dissolution of the partnership any immovable property is taken as his share by a partner other than a partner who brought in that property as his share of contribution in the LLP\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2108,\n            \"number\": \"Article 35B(3)\",\n            \"description\": \"LLP: Reconstruction or amalgamation of limited liability partnership\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2109,\n            \"number\": \"Article 35B(1)(b)\",\n            \"description\": \"LLP: where such share contribution brought in by way of cash is in excess of Rs.\\n 50,000/-, for every Rs. 50,000/- or part thereof\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2110,\n            \"number\": \"Article 35B(1)(c)\",\n            \"description\": \"LLP: where such share contribution is brought in by way of immovable property\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2111,\n            \"number\": \"Article 35B(1)(a)\",\n            \"description\": \"LLP:where there is no share contribution in partnership or where such share contribution brought in by way of cash does not exceed Rs. 50,000/-\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2112,\n            \"number\": \"Article 37(c)\",\n            \"description\": \"Mortgage Deed (c) When a collateral or auxiliary or additional or substituted security or by way of further assurance for the above-mentioned purpose where the principal or primarysecurity is duly stamped and for every Rs. 1,000/- or part thereof secured in excess Rs. 1,000/-.\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2113,\n            \"number\": \"Article 37\",\n            \"description\": \"Mortgage Deed Government servant\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2114,\n            \"number\": \"Article 37(a)\",\n            \"description\": \"Mortgage Deed with possession\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2115,\n            \"number\": \"Article 42\",\n            \"description\": \"Partition (Ancestral)\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2116,\n            \"number\": \"Article 44(e)(iv)\",\n            \"description\": \"Power of Attorney :- when given for consideration and authorizing the attorney to sell\\n any immovable property; (Disabled 40% and above)\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2117,\n            \"number\": \"Article 44(e)\",\n            \"description\": \"Power of Attorney when given for consideration and authorizing the attorney to sell any immovable property; (Female SC/ST/BPL)\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2118,\n            \"number\": \"Article 47(b)\",\n            \"description\": \"Re-conveyance of mortgaged : In any other case\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2119,\n            \"number\": \"Article 47\",\n            \"description\": \"Re-conveyance of mortgaged by govt, In case of house loan\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2120,\n            \"number\": \"Article 47(a)\",\n            \"description\": \"Re-conveyance of mortgaged if the consideration not exceed Rs. 1000\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2121,\n            \"number\": \"Article 48\",\n            \"description\": \"Release Deed\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2122,\n            \"number\": \"Article 48(b)\",\n            \"description\": \"Release Deed (disable 40% or above)\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2123,\n            \"number\": \"Article 48(a)\",\n            \"description\": \"Release Deed in favor of all the co-owners, co- sharers and coparceners in ancestral\\n property\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2124,\n            \"number\": \"Article 35-B(5)(a)\",\n            \"description\": \"Retirement of partner,- (a) Where the limited liability partnership owns immovable property and the retiring partner takes no immovable property at the time of his\\n retirement\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2125,\n            \"number\": \"Article 35-B(5)(b)\",\n            \"description\": \"Retirement of partner,- (b) Where the limited liability partnership owns immovable property and the retiring partner takes the immovable property at the time of his retirement whichwas not brought in by him as his share of contribution at the time of constitution of the limited liability partnership\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2126,\n            \"number\": \"Article 35-B(5)(c)\",\n            \"description\": \"Retirement of partner,- (c) Where the limited liability partnership owns immovable property and the retiring partner takes the immovable property at the time of his retirement whichwas acquired by limited liability partnership after its constitution\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2127,\n            \"number\": \"Article 35-B(5)(d)\",\n            \"description\": \"Retirement of partner,- (d) Where the limited liability partnership owns immovable property and the retiring partner takes the immovable property at the time of his retirement whichwas brought in by him as his share of contribution at the time of constitution of the limited liability partnership\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2128,\n            \"number\": \"Article 35-B(5)(e)\",\n            \"description\": \"Retirement of partner,- (e) Where the limited liability partnership does not own any\\n immovable property at the time of retirement of such partner\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2129,\n            \"number\": \"Article 35-B(6)\",\n            \"description\": \"Retirement of partner,- In any other case\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2130,\n            \"number\": \"Article 51\",\n            \"description\": \"Revocation of settlement In respect of other property\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2131,\n            \"number\": \"Article 51(a)\",\n            \"description\": \"Settlement including a deed or dower - (iii) in any other case (Female SC/ST/BPL)\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2132,\n            \"number\": \"Article 24\",\n            \"description\": \"Supplementary Deed/Correction Deed (where original is compulsory registerable)\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2133,\n            \"number\": \"Article 55\",\n            \"description\": \"Transfer of Lease by way of assignment\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2134,\n            \"number\": \"Article 21(iv)\",\n            \"description\": \"Transferable development rights (TDR)\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2135,\n            \"number\": \"Article 1\",\n            \"description\": \"Acknowledgment\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2136,\n            \"number\": \"Article 2\",\n            \"description\": \"Administration Bond\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2137,\n            \"number\": \"Article 3\",\n            \"description\": \"Adoption\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2138,\n            \"number\": \"Article 4\",\n            \"description\": \"Affidavit\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2139,\n            \"number\": \"Article 5(d)\",\n            \"description\": \"Agreement between Bank and Merchant for Point of Sale Machine (POS)\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2140,\n            \"number\": \"Article 5(ff)(ii)\",\n            \"description\": \"Agreement conferring exculsive rights of telecasting, broadcasting or exhibition, event\\n or film. In any other case\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2141,\n            \"number\": \"Article 5(ff)\",\n            \"description\": \"Agreement conferring rights of telecasting, broadcasting or exhibition, event or film of amount upto rupees 10 lakhs\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2142,\n            \"number\": \"Article 6\",\n            \"description\": \"Agreement or any other document Relating to Deposit of Title Deed, pawn or\\n pledge /Equitable Mortgage Deed when Loan not more than 3 months (ii)\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2143,\n            \"number\": \"Article 5(f)\",\n            \"description\": \"Agreement relating to advertisement for promotion of product, programe or event\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2144,\n            \"number\": \"Article 5(c)\",\n            \"description\": \"Agreement to sale without possession\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2145,\n            \"number\": \"Article 11\",\n            \"description\": \"Amendment in Article of Association of a company if relating to increase in authorised share capital in any other case\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2146,\n            \"number\": \"Article 7\",\n            \"description\": \"Appointment in execution of a power\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2147,\n            \"number\": \"Article 8(b)\",\n            \"description\": \"Appraisement of valuation-in any other case\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2148,\n            \"number\": \"Article 8(a)\",\n            \"description\": \"Appraisement of valuation-Where the amount does not exceed Rs. 1,000/-\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2149,\n            \"number\": \"Article 9\",\n            \"description\": \"Apprenticeship-deed\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2150,\n            \"number\": \"Article 10\",\n            \"description\": \"Article of Association of a Company\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2151,\n            \"number\": \"Article 12\",\n            \"description\": \"Articles of clerkship\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2152,\n            \"number\": \"Article 13(ii)\",\n            \"description\": \"Award any other case\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2153,\n            \"number\": \"Article 13(i)\",\n            \"description\": \"Award when value of property does not exceed 1,000\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2154,\n            \"number\": \"Article 13A\",\n            \"description\": \"Bank Guarantee\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2155,\n            \"number\": \"Article 14\",\n            \"description\": \"Bond\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2156,\n            \"number\": \"Article 15\",\n            \"description\": \"Bottomnry Bond\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2157,\n            \"number\": \"Article 16\",\n            \"description\": \"Cancellation Deed\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2158,\n            \"number\": \"Article 19\",\n            \"description\": \"Charter party\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2159,\n            \"number\": \"Article 20(ii)\",\n            \"description\": \"Composition Deed in any other case\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2160,\n            \"number\": \"Article 20(i)\",\n            \"description\": \"Composition Deed Whereby he conveys his property for the benefit of his creditors.\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2161,\n            \"number\": \"Article 20A\",\n            \"description\": \"Concession Agreement\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2162,\n            \"number\": \"Article 22\",\n            \"description\": \"Copy or extract (ii) in any other case\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2163,\n            \"number\": \"Article 22(i)\",\n            \"description\": \"Copy or extract if the original was not chargeable with duty or if chargeable the duty does not exceed Rs. 1\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2164,\n            \"number\": \"Article 25\",\n            \"description\": \"Custom Bond\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2165,\n            \"number\": \"Article 56(A)(a)(ii)\",\n            \"description\": \"Declaration of Trust - in any other case - in respect of immovable property\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2166,\n            \"number\": \"Article 56(A)(a)(i)\",\n            \"description\": \"Declaration of Trust - where there is disposition of property,- where the trust is made for a religious or charitable purpose\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2167,\n            \"number\": \"Article 56(A)(b)\",\n            \"description\": \"Declaration of Trust - where there is no disposition of property\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2168,\n            \"number\": \"Article 26\",\n            \"description\": \"Delivery order in respect of goods,excluding delivery order in respect of settlement of transactions in securities in stock exchange\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2169,\n            \"number\": \"Article 5(e)\",\n            \"description\": \"Developer Agreement (Sale power not given)\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2170,\n            \"number\": \"Article 43\",\n            \"description\": \"Dissolution of partnership(2) (a) where the immovable property is brought in by any partner as his share contribution at the time of constitution of the partnership and such property is taken by any other partner as his share on dissolution.\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2171,\n            \"number\": \"Article 27\",\n            \"description\": \"Divorce Deed\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2172,\n            \"number\": \"Article 28\",\n            \"description\": \"Entry as an advocate, on the roll of any High Court\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2173,\n            \"number\": \"Article 30\",\n            \"description\": \"Further charge with possession (a) (i)\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2174,\n            \"number\": \"Article 30(a)\",\n            \"description\": \"Further charge with possession (Disable 40% and above)\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2175,\n            \"number\": \"Article 30(b)(i)\",\n            \"description\": \"Further charge without possession :- (i) possession is given, or agreed to be given in original mortgage\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2176,\n            \"number\": \"Article 30(b)(ii)\",\n            \"description\": \"Further charge without possession :- (ii) if possession is not so given\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2177,\n            \"number\": \"Article 30(b)\",\n            \"description\": \"Further charge without possession:- possession is given, or agreed to be given in original mortgage (Disable 40% and above)\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2178,\n            \"number\": \"Article 32\",\n            \"description\": \"Indemnity Bond\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2179,\n            \"number\": \"Article 33(i)\",\n            \"description\": \"Lease Deed after public auction or on allotment or sale by Govt./ULBs/State Enterprises : Lease period below 1 year\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2180,\n            \"number\": \"Article 33A(i)\",\n            \"description\": \"Leave and License below 1 year\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2181,\n            \"number\": \"Article 34\",\n            \"description\": \"Letter of allotment in respect of any loan to be raised by any company or proposed company.\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2182,\n            \"number\": \"Article 35\",\n            \"description\": \"Letter of License\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2183,\n            \"number\": \"Article 35A(b)(i)\",\n            \"description\": \"Licence relating to arms or ammunitions on following Forms as set out in Schedule III to the Arms Rules, 1962 - Form XI\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2184,\n            \"number\": \"Article 35A(b)(ii)\",\n            \"description\": \"Licence relating to arms or ammunitions on following Forms as set out in Schedule III to the Arms Rules, 1962 - Form XII\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2185,\n            \"number\": \"Article 35A(b)(iii)\",\n            \"description\": \"Licence relating to arms or ammunitions on following Forms as set out in Schedule III to the Arms Rules, 1962 - Form XIII\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2186,\n            \"number\": \"Article 35A(b)(iv)\",\n            \"description\": \"Licence relating to arms or ammunitions on following Forms as set out in Schedule III\\n to the Arms Rules, 1962 - Form XIV\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2187,\n            \"number\": \"Article 35A(a)(iii)\",\n            \"description\": \"Licence relating to following arms:-DBBL Weapons\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2188,\n            \"number\": \"Article 35A(a)(v)\",\n            \"description\": \"Licence relating to following arms:-ML Weapons\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2189,\n            \"number\": \"Article 35A(a)(i)\",\n            \"description\": \"Licence relating to following arms:-Revolvers or pistols\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2190,\n            \"number\": \"Article 35A(a)(ii)\",\n            \"description\": \"Licence relating to following arms:-Rifles\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2191,\n            \"number\": \"Article 35A(a)(iv)\",\n            \"description\": \"Licence relating to following arms:-SBBL Weapons\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2192,\n            \"number\": \"Article 36(a)\",\n            \"description\": \"Memorandum of association of a company if accompanied by articles of association\\n under section 26 of the Companies Act, 1956.\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2193,\n            \"number\": \"Article 36(b)\",\n            \"description\": \"Memorandum of association of a company if not accompanied\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2194,\n            \"number\": \"Article 38\",\n            \"description\": \"Mortgage of a crop\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2195,\n            \"number\": \"Article 21 (ii)\",\n            \"description\": \"Movable Property\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2196,\n            \"number\": \"Article 39\",\n            \"description\": \"Notarial Act\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2197,\n            \"number\": \"Article 41\",\n            \"description\": \"Note of protest by the master of a ship\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2198,\n            \"number\": \"Article 40\",\n            \"description\": \"Note or Memorandum\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2199,\n            \"number\": \"Article 21(iii)\",\n            \"description\": \"Order of Amalgamation, demerger or reconstruction u/s 232, 233 or 234 of companies Act, 2013 and u/s 44-A of the Banking regulation Act, 1949\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2200,\n            \"number\": \"Article 43(1)(a)\",\n            \"description\": \"Partnership- Instrument of partnership :- (a) below 50,000/-\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2201,\n            \"number\": \"Article 43(1)(b)\",\n            \"description\": \"Partnership- Instrument of partnership :- (b) excess of Rs. 50,000/-, for every Rs. 50,000/- or part thereof;\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2202,\n            \"number\": \"Article 43(1)(c)\",\n            \"description\": \"Partnership- Instrument of partnership :- (c) Where such share contribution is brought\\n in by way of immovable property\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2203,\n            \"number\": \"Article 44(d)\",\n            \"description\": \"Power of Attorney-when authorizing more than five persons but not more than ten persons to act jointly and severally in more than one transaction or generally\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2204,\n            \"number\": \"Article 44(c)\",\n            \"description\": \"Power of Attorney-when authorizing not more than five persons to act jointly and severally in more than one transaction or generally\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2205,\n            \"number\": \"Article 44(b)\",\n            \"description\": \"Power of Attorney-when authorizing one person or more to act in single transaction\\n other than the case mentioned in clause (a)\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2206,\n            \"number\": \"Article 44(a)\",\n            \"description\": \"Power of Attorney-when executed for the sole purpose of procuring the registration of one or more documents in relation to a single transaction or for admitting execution of one ormore such documents\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2207,\n            \"number\": \"Article 46\",\n            \"description\": \"Protest by the master of a ship\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2208,\n            \"number\": \"Article 45\",\n            \"description\": \"Protest of Bill or Note\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2209,\n            \"number\": \"Article 35A(d)(i)\",\n            \"description\": \"Renewal of licence relating to arms or ammunitions on following Forms as set out in\\n Schedule III to the Arms Rules, 1962- Form XI\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2210,\n            \"number\": \"Article 35A(d)(ii)\",\n            \"description\": \"Renewal of licence relating to arms or ammunitions on following Forms as set out in Schedule III to the Arms Rules, 1962- Form XII\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2211,\n            \"number\": \"Article 35A(d)(iii)\",\n            \"description\": \"Renewal of licence relating to arms or ammunitions on following Forms as set out in Schedule III to the Arms Rules, 1962- Form XIII\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2212,\n            \"number\": \"Article 35A(d)(iv)\",\n            \"description\": \"Renewal of licence relating to arms or ammunitions on following Forms as set out in Schedule III to the Arms Rules, 1962- Form XIV\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2213,\n            \"number\": \"Article 35A(c)(iii)\",\n            \"description\": \"Renewal of licence relating to following arms-DBBL Weapons\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2214,\n            \"number\": \"Article 35A(c)(v)\",\n            \"description\": \"Renewal of licence relating to following arms-ML Weapons\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2215,\n            \"number\": \"Article 35A(c)(i)\",\n            \"description\": \"Renewal of licence relating to following arms-Revolvers or pistols\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2216,\n            \"number\": \"Article 35A(c)(ii)\",\n            \"description\": \"Renewal of licence relating to following arms-Rifles\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2217,\n            \"number\": \"Article 35A(c)(iv)\",\n            \"description\": \"Renewal of licence relating to following arms-SBBL Weapons\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2218,\n            \"number\": \"Article 49\",\n            \"description\": \"Respondentia Bond\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2219,\n            \"number\": \"Article 56(B)\",\n            \"description\": \"Revocation of trust\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2220,\n            \"number\": \"Article 50\",\n            \"description\": \"Security Bond\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2221,\n            \"number\": \"Article 52\",\n            \"description\": \"Share warrants\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2222,\n            \"number\": \"Article 53\",\n            \"description\": \"Shipping order\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2223,\n            \"number\": \"Article 5(g)\",\n            \"description\": \"Simple Agreement\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2224,\n            \"number\": \"Article 57\",\n            \"description\": \"Warrant for goods\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2225,\n            \"number\": \"Article 44(ee)(ii)\",\n            \"description\": \"When power of attorney is given without consideration to sell immovable property to\\n -any other person\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2226,\n            \"number\": \"Article 44(ee)(i)\",\n            \"description\": \"When power of attorney is given without consideration to sell immovable property to\\n -the father, mother, brother, sister, wife, husband, son, daughter, grandson or grand daughter ofthe executant\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2227,\n            \"number\": \"Article 58\",\n            \"description\": \"Works Contract (i)upto Rupees Fifty Lakhs\",\n            \"stateCode\": \"RJ\"\n        },\n        {\n            \"id\": 2228,\n            \"number\": \"Article 1\",\n            \"description\": \"Acknowledgement of a Debt\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2229,\n            \"number\": \"Article 2\",\n            \"description\": \"Administration Bond\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2230,\n            \"number\": \"Article 3\",\n            \"description\": \"Adoption Deed\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2231,\n            \"number\": \"Article 4\",\n            \"description\": \"Affidavit\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2232,\n            \"number\": \"Article 5\",\n            \"description\": \"Agreeement or Memorandum of an Agreement\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2233,\n            \"number\": \"Article 6\",\n            \"description\": \"Agreement relating to Deposit of Title Deeds, Pawn or Pledge\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2234,\n            \"number\": \"Article 7\",\n            \"description\": \"Appointment in Execution of a Power\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2235,\n            \"number\": \"Article 8\",\n            \"description\": \"Appraisement or Valuation\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2236,\n            \"number\": \"Article 9\",\n            \"description\": \"Apprenticeship Deed\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2237,\n            \"number\": \"Article 10\",\n            \"description\": \"Articles of Association of a Company\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2238,\n            \"number\": \"Article 11\",\n            \"description\": \"Articles of Clerkship\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2239,\n            \"number\": \"Article 12\",\n            \"description\": \"Award\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2240,\n            \"number\": \"Article 12A\",\n            \"description\": \"Bank Guarantee\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2241,\n            \"number\": \"Article 13\",\n            \"description\": \"Bill of Exchange\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2242,\n            \"number\": \"Article 15\",\n            \"description\": \"Bond\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2243,\n            \"number\": \"Article 16\",\n            \"description\": \"Bottomry Bond\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2244,\n            \"number\": \"Article 17\",\n            \"description\": \"Cancellation\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2245,\n            \"number\": \"Article 17A\",\n            \"description\": \"Certificate of Enrolment under Section 22 of the Advocates Act,1961\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2246,\n            \"number\": \"Article 17B\",\n            \"description\": \"Certificate of Practice as Notary\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2247,\n            \"number\": \"Article 18\",\n            \"description\": \"Certificate of Sale\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2248,\n            \"number\": \"Article 19\",\n            \"description\": \"Certificate or other Document\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2249,\n            \"number\": \"Article 20\",\n            \"description\": \"Charter Party\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2250,\n            \"number\": \"Article 22\",\n            \"description\": \"Composition Deed\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2251,\n            \"number\": \"Article 23\",\n            \"description\": \"Conveyance\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2252,\n            \"number\": \"Article 24\",\n            \"description\": \"Copy or Extract\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2253,\n            \"number\": \"Article 25\",\n            \"description\": \"Counterpart or Duplicate\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2254,\n            \"number\": \"Article 26\",\n            \"description\": \"Customs-Bond\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2255,\n            \"number\": \"Article 27\",\n            \"description\": \"Debenture\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2256,\n            \"number\": \"Article 28\",\n            \"description\": \"Delivery Order in respect of Goods\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2257,\n            \"number\": \"Article 29\",\n            \"description\": \"Divorce\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2258,\n            \"number\": \"Article 31\",\n            \"description\": \"Exchange or Property\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2259,\n            \"number\": \"Article 32\",\n            \"description\": \"Further Charge\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2260,\n            \"number\": \"Article 33\",\n            \"description\": \"Gift\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2261,\n            \"number\": \"Article 34\",\n            \"description\": \"Indemnity Bond\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2262,\n            \"number\": \"Article 34A\",\n            \"description\": \"Instrument Correcting a purely Clerical Error\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2263,\n            \"number\": \"Article 35\",\n            \"description\": \"Lease\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2264,\n            \"number\": \"Article 36\",\n            \"description\": \"Letters of Allotment of Shares\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2265,\n            \"number\": \"Article 38\",\n            \"description\": \"Letter of License\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2266,\n            \"number\": \"Article 38A\",\n            \"description\": \"Licence relating to Arms or Ammunitions\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2267,\n            \"number\": \"Article 39\",\n            \"description\": \"Memorandum of Association of a Company\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2268,\n            \"number\": \"Article 40\",\n            \"description\": \"Mortgage Deed\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2269,\n            \"number\": \"Article 41\",\n            \"description\": \"Mortgage of a Crop\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2270,\n            \"number\": \"Article 42\",\n            \"description\": \"Notarial Act\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2271,\n            \"number\": \"Article 43\",\n            \"description\": \"Note or Memorandum\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2272,\n            \"number\": \"Article 44\",\n            \"description\": \"Note of Protest by the Master of a ship\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2273,\n            \"number\": \"Article 45\",\n            \"description\": \"Partition\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2274,\n            \"number\": \"Article 46\",\n            \"description\": \"Patnership\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2275,\n            \"number\": \"Article 48\",\n            \"description\": \"Power of Attorney\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2276,\n            \"number\": \"Article 50\",\n            \"description\": \"Protest of bill or Note\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2277,\n            \"number\": \"Article 51\",\n            \"description\": \"Protest by the Master of a Ship\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2278,\n            \"number\": \"Article 53\",\n            \"description\": \"Receipt\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2279,\n            \"number\": \"Article 54\",\n            \"description\": \"Re-Conveyance of Mortgaged property\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2280,\n            \"number\": \"Article 55\",\n            \"description\": \"Release\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2281,\n            \"number\": \"Article 56\",\n            \"description\": \"Respondentia Bond\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2282,\n            \"number\": \"Article 57\",\n            \"description\": \"Security Bond or Mortgage Deed\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2283,\n            \"number\": \"Article 58(A)\",\n            \"description\": \"Settlement-Instrument of (including a deed of dower\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2284,\n            \"number\": \"Article 58(B)\",\n            \"description\": \"Settlement-Revocation of\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2285,\n            \"number\": \"Article 59\",\n            \"description\": \"Share Warrants\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2286,\n            \"number\": \"Article 60\",\n            \"description\": \"Shipping Order\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2287,\n            \"number\": \"Article 61\",\n            \"description\": \"Surrender of Lease\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2288,\n            \"number\": \"Article 63\",\n            \"description\": \"Transfer of Lease\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2289,\n            \"number\": \"Article 64\",\n            \"description\": \"Trust\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2290,\n            \"number\": \"Article 65\",\n            \"description\": \"Warrant of Good\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2291,\n            \"number\": \"Article 17(A)\",\n            \"description\": \"Certificate of Enrolment under Section 22 of the Advocates Act,1961\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2292,\n            \"number\": \"Article 5(C)\",\n            \"description\": \"General Loan Agreement\",\n            \"stateCode\": \"UP\"\n        },\n        {\n            \"id\": 2293,\n            \"number\": \"Article 1(i)(a)\",\n            \"description\": \"Acknowledgement of a Debt - upto Rs.5000/-\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2294,\n            \"number\": \"Article 2(B)\",\n            \"description\": \"Administration Bond - In any other case\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2295,\n            \"number\": \"Article 3\",\n            \"description\": \"Adoption Deed\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2296,\n            \"number\": \"Article 4\",\n            \"description\": \"Affidavit\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2297,\n            \"number\": \"Article 1(i)(b)\",\n            \"description\": \"Acknowledgement of a Debt - more than 5000/-\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2298,\n            \"number\": \"Article 1(ii)\",\n            \"description\": \"Acknowledgement of Letter, Article, Package, Parcel .....\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2299,\n            \"number\": \"Article 5(a)\",\n            \"description\": \"Sale of Bill Exchange\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2300,\n            \"number\": \"Article 5(b)\",\n            \"description\": \"Purchase or Sale of Government Security\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2301,\n            \"number\": \"Article 5(c)(i)\",\n            \"description\": \"Sale or Purchase of Shares, Stocks Bonds, Debenture\\n Stock or other marketable security between members of Stock Exchange\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2302,\n            \"number\": \"Article 5(c)(ii)\",\n            \"description\": \"Agreement or its records or MOA - In any other case\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2303,\n            \"number\": \"Article 5(e)(ii)\",\n            \"description\": \"Agreement or its records or MOA - Sale of immovable\\n property wherein part performance of the contract, possession of the contract, possession of the property is not delivered\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2304,\n            \"number\": \"Article 5(g)(i)\",\n            \"description\": \"Agreement or its records or MOA - Sale of moveable property, possession of the property is delivered\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2305,\n            \"number\": \"Article 5(g)(ii)\",\n            \"description\": \"Agreement or its records or MOA - Sale of moveable property, possession of the property is not delivered\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2306,\n            \"number\": \"Article 5(i)\",\n            \"description\": \"Agreement relating to contract between Depository Participant and Client for opening Demat A/c\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2307,\n            \"number\": \"Article 5(i-a)\",\n            \"description\": \"Agreement relating to Contract between Stock Broker or\\n Sub Broker (agent) and client for Stock Market Operations\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2308,\n            \"number\": \"Article 5(i-b)\",\n            \"description\": \"Agreement relating to Advertisement or telecasting or\\n broadcasting of programs\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2309,\n            \"number\": \"Article 5(i-c)\",\n            \"description\": \"Agreement relating to assignment or transfer of\\n intellectual property rights, patent rights, copy rights or trade market rights\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2310,\n            \"number\": \"Article 5(i-d)(i)\",\n            \"description\": \"Agreement relating to building works or labour or\\n services - Upto Rs.10 lakhs\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2311,\n            \"number\": \"Article 5(i-d)(ii)\",\n            \"description\": \"Agreement or its records or MOA - Agreement relating to building works or labour or services Above Rs.10 lakhs\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2312,\n            \"number\": \"Article 5(i-e)(i)\",\n            \"description\": \"Chit Agreement - Where the value of the chit does not\\n exceed Rs.1 lakh\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2313,\n            \"number\": \"Article 5(i-e)(ii)\",\n            \"description\": \"Chit Agreement - Where the value of the chit exceeds\\n Rs.1 lakh\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2314,\n            \"number\": \"Article 5(J)\",\n            \"description\": \"Agreement (in any other cases)\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2315,\n            \"number\": \"Article 6(1)(i)\",\n            \"description\": \"Agreement relating to DTD - Loan amount does not\\n exceed Rs.10 lakhs\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2316,\n            \"number\": \"Article 6(1)(ii)\",\n            \"description\": \"Agreement relating to DTD - Loan amount exceeding\\n Rs.10 lakhs\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2317,\n            \"number\": \"Article 6(2)(i)\",\n            \"description\": \"Pawn or Pledge of Movable Property - Loan amount\\n above Rs.1 lakh and upto Rs.10 lakh\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2318,\n            \"number\": \"Article 6(2)(ii)\",\n            \"description\": \"Pawn or Pledge of Movable Property - Loan amount\\n above Rs.10 lakhs\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2319,\n            \"number\": \"Article 7\",\n            \"description\": \"Appointment in execution of a power\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2320,\n            \"number\": \"Article 8(a)\",\n            \"description\": \"Appraisement or Valuation - Upto Rs.1000\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2321,\n            \"number\": \"Article 8(b)\",\n            \"description\": \"Appraisement or Valuation - In any other case\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2322,\n            \"number\": \"Article 9\",\n            \"description\": \"Apprenticeship Deed\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2323,\n            \"number\": \"Article 10\",\n            \"description\": \"Articles of Association of a Company\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2324,\n            \"number\": \"Article 12(a)\",\n            \"description\": \"Bond - Amount secured does not exceed Rs.1000\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2325,\n            \"number\": \"Article 12(b)\",\n            \"description\": \"Bond - Amount exceeding Rs.1000\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2326,\n            \"number\": \"Article 13\",\n            \"description\": \"Bottomry Bond\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2327,\n            \"number\": \"Article 15(a)\",\n            \"description\": \"Certificate of Sale - Purchase money does not exceed\\n Rs.10\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2328,\n            \"number\": \"Article 15(b)\",\n            \"description\": \"Certificate of Sale - Purchase money does not exceed\\n Rs.25\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2329,\n            \"number\": \"Article 15(c)\",\n            \"description\": \"Certificate of Sale - In any other case\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2330,\n            \"number\": \"Article 16\",\n            \"description\": \"Certificate evidencing right or title of the holder thereof, or any other person, either to any share, scrip or stock in or of any incorporated company\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2331,\n            \"number\": \"Article 17\",\n            \"description\": \"Certificate of Enrolment as Advocate\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2332,\n            \"number\": \"Article 18\",\n            \"description\": \"Charter Party\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2333,\n            \"number\": \"Article 19\",\n            \"description\": \"Composition Deed\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2334,\n            \"number\": \"Article 21\",\n            \"description\": \"Copy of Extract\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2335,\n            \"number\": \"Article 22\",\n            \"description\": \"Counter part or Duplicate\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2336,\n            \"number\": \"Article 23\",\n            \"description\": \"Customs Bond or Excise Bond Art 23(b)\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2337,\n            \"number\": \"Article 24\",\n            \"description\": \"Delivery order in respect of Goods\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2338,\n            \"number\": \"Article 25\",\n            \"description\": \"Divorce\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2339,\n            \"number\": \"Article 27(b)(iii)\",\n            \"description\": \"Further charges Hypothecation of Movable property\\n loan upto 10 Lakhs 34(d)(i)\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2340,\n            \"number\": \"Article 29\",\n            \"description\": \"Indemnity Bond (As per Article 47)\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2341,\n            \"number\": \"Article 30(1)(i)\",\n            \"description\": \"Lease of Immovable Property - Not exceeding 1 year in\\n case of Residential property\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2342,\n            \"number\": \"Article 30(1)(ii)\",\n            \"description\": \"Lease of Immovable Property - Not exceeding 1 year in\\n case of commercial industrial property\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2343,\n            \"number\": \"Article 30(2)\",\n            \"description\": \"Lease of Movable Property - Lease of movable property rent fixed, no premium30(2)(a)(i)upto 10 years\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2344,\n            \"number\": \"Article 30(2)(a)(ii)\",\n            \"description\": \"Lease of Movable Property - Above 10 years\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2345,\n            \"number\": \"Article 30(2)(b)\",\n            \"description\": \"Lease of Movable Property - Lease granted for fine or\\n premium but no rent\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2346,\n            \"number\": \"Article 30(2)(c)\",\n            \"description\": \"Lease of Movable Property - Lease for fine premium and\\n also rent\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2347,\n            \"number\": \"Article 31\",\n            \"description\": \"Letter of Allotment\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2348,\n            \"number\": \"Article 32-A(i)\",\n            \"description\": \"Letter of License - Not more than 1 year in case of residential property\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2349,\n            \"number\": \"Article 32-A(ii)\",\n            \"description\": \"Letter of License - Not more than 1 year in case of commercial industrial property\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2350,\n            \"number\": \"Article 32-A(iii)\",\n            \"description\": \"Letter of License - 1 year to 10 year\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2351,\n            \"number\": \"Article 32-A(iv)\",\n            \"description\": \"Letter of License - 10 year to 20 year\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2352,\n            \"number\": \"Article 32-A(v)\",\n            \"description\": \"Letter of License - 20 to 30 year\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2353,\n            \"number\": \"Article 33\",\n            \"description\": \"Memorandum of Association of a company\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2354,\n            \"number\": \"Article 34(d)(i)\",\n            \"description\": \"Mortgage Deed - Hypothecation of movable property\\n loan upto Rs.10 lakh\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2355,\n            \"number\": \"Article 34(d)(ii)\",\n            \"description\": \"Mortgage Deed - loan exceeding 10 lakhs\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2356,\n            \"number\": \"Article 37(a)\",\n            \"description\": \"Note or memorandum of record sent by broker to his principal intimating the purchase or sale through stock exchange of any goods or commodities\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2357,\n            \"number\": \"Article 37(b)\",\n            \"description\": \"Note or memorandum of record sent by broker to his principal intimating the purchase or sale through stock exchange of any share, scrip, stock, bond, debenture (other than Government Security)\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2358,\n            \"number\": \"Article 37(c)\",\n            \"description\": \"Note or memorandum of record sent by broker to his principal intimating the purchase or sale through stock exchange of a Government Securities\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2359,\n            \"number\": \"Article 37(d)\",\n            \"description\": \"Note or memorandum of record sent by broker to his\\n principal intimating the purchase or sale through stock exchange other Securities\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2360,\n            \"number\": \"Article 37(e)\",\n            \"description\": \"Note or memorandum of record sent by broker to his principal intimating the purchase or sale through stock exchange of futures and options trading of securities\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2361,\n            \"number\": \"Article 37(f)\",\n            \"description\": \"Note or memorandum of record sent by broker to his principal intimating the purchase or sale through stock exchange of forward contracts commodities\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2362,\n            \"number\": \"Article 38\",\n            \"description\": \"Note of Protest by the Master of a ship\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2363,\n            \"number\": \"Article 39(a)(1)\",\n            \"description\": \"Partition - Non Agricultural property in BBMP, UDA, BMRDA, Municipal Councils or Town Panchayats\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2364,\n            \"number\": \"Article 39(a)(2)\",\n            \"description\": \"Partition - Other Areas\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2365,\n            \"number\": \"Article 39(b)\",\n            \"description\": \"Partition - Agricultural Land\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2366,\n            \"number\": \"Article 39(c)\",\n            \"description\": \"Partition - Movable Property\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2367,\n            \"number\": \"Article 39(d)\",\n            \"description\": \"Partition - Combination of all above\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2368,\n            \"number\": \"Article 40 (A)\",\n            \"description\": \"Partnership - Constitution of Partnership\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2369,\n            \"number\": \"Article 40(B)(b)\",\n            \"description\": \"Partnership - Reconstitution\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2370,\n            \"number\": \"Article 40(C)\",\n            \"description\": \"Partnership - Dissolution\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2371,\n            \"number\": \"Article 40A(a)\",\n            \"description\": \"Limited Liability Partnership - Capital Upto Rs.10 lakhs\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2372,\n            \"number\": \"Article 40A(b)\",\n            \"description\": \"Limited Liability Partnership - Capital more than Rs.10 lakhs\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2373,\n            \"number\": \"Article 40B\",\n            \"description\": \"Limited Liability Partnership - Reconstruction or\\n Amalgamation\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2374,\n            \"number\": \"Article 41(d)\",\n            \"description\": \"Power of Attorney - authorizing more than 5 to 10\\n persons to act jointly in more than one transaction or generally\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2375,\n            \"number\": \"Article 41(e)\",\n            \"description\": \"Power of Attorney - Authorizing to sell property\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2376,\n            \"number\": \"Article 41(eb)\",\n            \"description\": \"Power of Attorney - when sale power given to other than\\n family members\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2377,\n            \"number\": \"Article 41(f)\",\n            \"description\": \"Power of Attorney - when given for trading operation\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2378,\n            \"number\": \"Article 41(g)\",\n            \"description\": \"Power of Attorney - when given for depository\\n participant\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2379,\n            \"number\": \"Article 41(h)\",\n            \"description\": \"Power of Attorney - in any other case\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2380,\n            \"number\": \"Article 42\",\n            \"description\": \"Protest of Bill / Note\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2381,\n            \"number\": \"Article 43\",\n            \"description\": \"Protest by the Master of a Ship\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2382,\n            \"number\": \"Article 44\",\n            \"description\": \"Re-Conveyance of mortgaged property\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2383,\n            \"number\": \"Article 47\",\n            \"description\": \"Security Bond or Mortgage Deed\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2384,\n            \"number\": \"Article 49\",\n            \"description\": \"Share Warrants\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2385,\n            \"number\": \"Article 50\",\n            \"description\": \"Shipping\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2386,\n            \"number\": \"Article 51\",\n            \"description\": \"Surrender of Lease (Art 40b)\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2387,\n            \"number\": \"Article 52(a)\",\n            \"description\": \"Transfer of debentures\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2388,\n            \"number\": \"Article 52(b)\",\n            \"description\": \"Transfer any interest secured by bond or policy of\\n insurance\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2389,\n            \"number\": \"Article 53A\",\n            \"description\": \"Transfer of Licence\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2390,\n            \"number\": \"Article 54(i)\",\n            \"description\": \"Trust made for public religious and charitable purpose\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2391,\n            \"number\": \"Article 54(ii)\",\n            \"description\": \"Trust made for management and custody of property where there is no transfer / disposition of property\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2392,\n            \"number\": \"Article 55\",\n            \"description\": \"Warrants of Goods\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2393,\n            \"number\": \"Article 2(a)\",\n            \"description\": \"Administration Bond - Upto Rs.1000/-\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2394,\n            \"number\": \"Article 41(a)\",\n            \"description\": \"Power of Attorney - for admitting executing of document\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2395,\n            \"number\": \"Article 20(5)(i)\",\n            \"description\": \"Conveyance - Industrial machinery treated as movable\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2396,\n            \"number\": \"Article 41(b)\",\n            \"description\": \"Power of Attorney - for authorising one or more person\\n to act in a single transaction\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2397,\n            \"number\": \"Article 41(c)\",\n            \"description\": \"Power of Attorney - for authorising more than 5 person\\n to act jointly\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2398,\n            \"number\": \"Article 52(c)\",\n            \"description\": \"Transfer - property under section 25 of administrator\\n generals act 1963.\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2399,\n            \"number\": \"Article 18A(1)\",\n            \"description\": \"Purchase or Sale of Government Securities - 5(b)\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2400,\n            \"number\": \"Article 18A(2)\",\n            \"description\": \"Securities of incorporated company of other body corporate submitted to clearing house office stock exchange recognized under the Securities Contract (regulartion) Act, 1956. - 5(c)(i)\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2401,\n            \"number\": \"Article 18A(3)\",\n            \"description\": \"Securities of incorporated company or other body corporate submitted to clearing house office stock exchange not recognized under the securities contract (regulation) Act, 1956. - 5(c)(i)\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2402,\n            \"number\": \"Article 40(C)(b)\",\n            \"description\": \"Partnership - Dissolution - Immovable properties\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2403,\n            \"number\": \"Article 32\",\n            \"description\": \"Letter of licence\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2404,\n            \"number\": \"Article 56(i)\",\n            \"description\": \"Bank Guarantee - If related to paper bank guarantee\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2405,\n            \"number\": \"Article 56(ii)\",\n            \"description\": \"Bank Guarantee - If relating to e-bank guarantee\",\n            \"stateCode\": \"KA\"\n        },\n        {\n            \"id\": 2406,\n            \"number\": \"Article DN-RG-1\",\n            \"description\": \"Sale Deed\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2407,\n            \"number\": \"Article DN-RG-2\",\n            \"description\": \"Gift Deed\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2408,\n            \"number\": \"Article DN-RG-3\",\n            \"description\": \"Partition Deed\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2409,\n            \"number\": \"Article DN-RG-4\",\n            \"description\": \"Mortgage Deed For Bank And Other Corporation\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2410,\n            \"number\": \"Article DN-RG-5\",\n            \"description\": \"Lease Deed\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2411,\n            \"number\": \"Article DN-RG-6\",\n            \"description\": \"Agreement Of Lease\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2412,\n            \"number\": \"Article DN-RG-7\",\n            \"description\": \"Duplicate Lease Deed\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2413,\n            \"number\": \"Article DN-RG-8\",\n            \"description\": \"Triplicate Lease Deed\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2414,\n            \"number\": \"Article DN-RG-9\",\n            \"description\": \"Agreement For Sale\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2415,\n            \"number\": \"Article DN-RG-10\",\n            \"description\": \"Adoption Deed\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2416,\n            \"number\": \"Article DN-RG-11\",\n            \"description\": \"License Deed\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2417,\n            \"number\": \"Article DN-RG-12\",\n            \"description\": \"Declaration Cum Consent\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2418,\n            \"number\": \"Article DN-RG-13\",\n            \"description\": \"Memorandum Of Understanding\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2419,\n            \"number\": \"Article DN-RG-14\",\n            \"description\": \"Deed Of Cancellation\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2420,\n            \"number\": \"Article DN-RG-15\",\n            \"description\": \"Possesion Deed\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2421,\n            \"number\": \"Article DN-RG-16\",\n            \"description\": \"Deed Of Admission\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2422,\n            \"number\": \"Article DN-RG-17\",\n            \"description\": \"Retirement Deed\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2423,\n            \"number\": \"Article DN-RG-18\",\n            \"description\": \"Deed Of Confirmation And Rectification Of Deed Of Acknowledgement\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2424,\n            \"number\": \"Article DN-RG-19\",\n            \"description\": \"Mortgage Cum Security Bond\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2425,\n            \"number\": \"Article DN-RG-20\",\n            \"description\": \"Release Deed\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2426,\n            \"number\": \"Article DN-RG-21\",\n            \"description\": \"Deed Of Transfer\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2427,\n            \"number\": \"Article DN-RG-22\",\n            \"description\": \"Family Settlement Deed\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2428,\n            \"number\": \"Article DN-RG-23\",\n            \"description\": \"Exchange Deed\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2429,\n            \"number\": \"Article DN-RG-24\",\n            \"description\": \"Will Deed\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2430,\n            \"number\": \"Article DN-RG-25\",\n            \"description\": \"Deed Of Assignment Cum Conveyance Deed\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2431,\n            \"number\": \"Article DN-RG-26\",\n            \"description\": \"Retirement Cum Partnership Deed\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2432,\n            \"number\": \"Article DN-RG-27\",\n            \"description\": \"Partnership Deed\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2433,\n            \"number\": \"Article DN-RG-28\",\n            \"description\": \"Agreement\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2434,\n            \"number\": \"Article DN-RG-29\",\n            \"description\": \"Affidavits\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2435,\n            \"number\": \"Article DN-RG-30\",\n            \"description\": \"Mortgage/Loans\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2436,\n            \"number\": \"Article DN-RG-31\",\n            \"description\": \"Others\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2437,\n            \"number\": \"Article DN-RG-32\",\n            \"description\": \"Acknowledgement\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2438,\n            \"number\": \"Article DN-RG-33\",\n            \"description\": \"Agreement Or Memorandum Of Agreement Relating To Secure The Repayment Of A Loan Or Debt Made By A Bank Or Finance Company\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2439,\n            \"number\": \"Article DN-RG-34\",\n            \"description\": \"Agreement Of Any Other Document (memorandum Etc.) Relating To The Deposit Of Title Deeds, Pawn Or Pledge\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2440,\n            \"number\": \"Article DN-RG-35\",\n            \"description\": \"Appraisement On Valuation Movable Property Only\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2441,\n            \"number\": \"Article DN-RG-36\",\n            \"description\": \"Apprenticeship Deed\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2442,\n            \"number\": \"Article DN-RG-37\",\n            \"description\": \"Bond\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2443,\n            \"number\": \"Article DN-RG-38\",\n            \"description\": \"Composition Deed\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2444,\n            \"number\": \"Article DN-RG-39\",\n            \"description\": \"Copy Or Extract Of Document Executed In Nesl Web Portal\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2445,\n            \"number\": \"Article DN-RG-40\",\n            \"description\": \"Further Charge Relating To Movable Property\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2446,\n            \"number\": \"Article DN-RG-41\",\n            \"description\": \"Indemnity Bond\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2447,\n            \"number\": \"Article DN-RG-42\",\n            \"description\": \"Lease Less Than One Year\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2448,\n            \"number\": \"Article DN-RG-43\",\n            \"description\": \"Bank Guarantee/Letter Of Credit\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2449,\n            \"number\": \"Article DN-RG-44\",\n            \"description\": \"Mortgage Deed Without Possession/Hypothecation On Deed Relating To Movable Property\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2450,\n            \"number\": \"Article DN-RG-45\",\n            \"description\": \"Letter Of License\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2451,\n            \"number\": \"Article DN-RG-46\",\n            \"description\": \"Notarial Act\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2452,\n            \"number\": \"Article DN-RG-47\",\n            \"description\": \"Note Or Memorandum\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2453,\n            \"number\": \"Article DN-RG-48\",\n            \"description\": \"Re-Conveyance Of Mortgaged Property\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2454,\n            \"number\": \"Article DN-RG-49\",\n            \"description\": \"Power Of Attorney\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2455,\n            \"number\": \"Article DN-RG-50\",\n            \"description\": \"Respondentia Bond\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2456,\n            \"number\": \"Article DN-RG-51\",\n            \"description\": \"Security Bond\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2457,\n            \"number\": \"Article DN-RG-52\",\n            \"description\": \"Share Warrants\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2458,\n            \"number\": \"Article DN-RG-53\",\n            \"description\": \"Surrender Of Lease\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2459,\n            \"number\": \"Article DN-RG-54\",\n            \"description\": \"Transfer\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2460,\n            \"number\": \"Article DN-RG-55\",\n            \"description\": \"Transfer Of Lease By Way Of Assignment And Not By Way Of Under-Lease\",\n            \"stateCode\": \"DH\"\n        },\n        {\n            \"id\": 2461,\n            \"number\": \"Article DN-RG-1\",\n            \"description\": \"Sale Deed\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2462,\n            \"number\": \"Article DN-RG-2\",\n            \"description\": \"Gift Deed\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2463,\n            \"number\": \"Article DN-RG-3\",\n            \"description\": \"Partition Deed\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2464,\n            \"number\": \"Article DN-RG-4\",\n            \"description\": \"Mortgage Deed For Bank And Other Corporation\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2465,\n            \"number\": \"Article DN-RG-5\",\n            \"description\": \"Lease Deed\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2466,\n            \"number\": \"Article DN-RG-6\",\n            \"description\": \"Agreement Of Lease\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2467,\n            \"number\": \"Article DN-RG-7\",\n            \"description\": \"Duplicate Lease Deed\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2468,\n            \"number\": \"Article DN-RG-8\",\n            \"description\": \"Triplicate Lease Deed\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2469,\n            \"number\": \"Article DN-RG-9\",\n            \"description\": \"Agreement For Sale\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2470,\n            \"number\": \"Article DN-RG-10\",\n            \"description\": \"Adoption Deed\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2471,\n            \"number\": \"Article DN-RG-11\",\n            \"description\": \"License Deed\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2472,\n            \"number\": \"Article DN-RG-12\",\n            \"description\": \"Declaration Cum Consent\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2473,\n            \"number\": \"Article DN-RG-13\",\n            \"description\": \"Memorandum Of Understanding\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2474,\n            \"number\": \"Article DN-RG-14\",\n            \"description\": \"Deed Of Cancellation\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2475,\n            \"number\": \"Article DN-RG-15\",\n            \"description\": \"Possesion Deed\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2476,\n            \"number\": \"Article DN-RG-16\",\n            \"description\": \"Deed Of Admission\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2477,\n            \"number\": \"Article DN-RG-17\",\n            \"description\": \"Retirement Deed\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2478,\n            \"number\": \"Article DN-RG-18\",\n            \"description\": \"Deed Of Confirmation And Rectification Of Deed Of Acknowledgement\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2479,\n            \"number\": \"Article DN-RG-19\",\n            \"description\": \"Mortgage Cum Security Bond\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2480,\n            \"number\": \"Article DN-RG-20\",\n            \"description\": \"Release Deed\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2481,\n            \"number\": \"Article DN-RG-21\",\n            \"description\": \"Deed Of Transfer\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2482,\n            \"number\": \"Article DN-RG-22\",\n            \"description\": \"Family Settlement Deed\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2483,\n            \"number\": \"Article DN-RG-23\",\n            \"description\": \"Exchange Deed\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2484,\n            \"number\": \"Article DN-RG-24\",\n            \"description\": \"Will Deed\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2485,\n            \"number\": \"Article DN-RG-25\",\n            \"description\": \"Deed Of Assignment Cum Conveyance Deed\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2486,\n            \"number\": \"Article DN-RG-26\",\n            \"description\": \"Retirement Cum Partnership Deed\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2487,\n            \"number\": \"Article DN-RG-27\",\n            \"description\": \"Partnership Deed\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2488,\n            \"number\": \"Article DN-RG-28\",\n            \"description\": \"Agreement\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2489,\n            \"number\": \"Article DN-RG-29\",\n            \"description\": \"Affidavits\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2490,\n            \"number\": \"Article DN-RG-30\",\n            \"description\": \"Mortgage/Loans\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2491,\n            \"number\": \"Article DN-RG-31\",\n            \"description\": \"Others\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2492,\n            \"number\": \"Article DN-RG-32\",\n            \"description\": \"Acknowledgement\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2493,\n            \"number\": \"Article DN-RG-33\",\n            \"description\": \"Agreement Or Memorandum Of Agreement Relating To Secure The Repayment Of A Loan Or Debt Made By A Bank Or Finance Company\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2494,\n            \"number\": \"Article DN-RG-34\",\n            \"description\": \"Agreement Of Any Other Document (memorandum Etc.) Relating To The Deposit Of Title Deeds, Pawn Or Pledge\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2495,\n            \"number\": \"Article DN-RG-35\",\n            \"description\": \"Appraisement On Valuation Movable Property Only\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2496,\n            \"number\": \"Article DN-RG-36\",\n            \"description\": \"Apprenticeship Deed\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2497,\n            \"number\": \"Article DN-RG-37\",\n            \"description\": \"Bond\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2498,\n            \"number\": \"Article DN-RG-38\",\n            \"description\": \"Composition Deed\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2499,\n            \"number\": \"Article DN-RG-39\",\n            \"description\": \"Copy Or Extract Of Document Executed In Nesl Web Portal\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2500,\n            \"number\": \"Article DN-RG-40\",\n            \"description\": \"Further Charge Relating To Movable Property\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2501,\n            \"number\": \"Article DN-RG-41\",\n            \"description\": \"Indemnity Bond\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2502,\n            \"number\": \"Article DN-RG-42\",\n            \"description\": \"Lease Less Than One Year\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2503,\n            \"number\": \"Article DN-RG-43\",\n            \"description\": \"Bank Guarantee/Letter Of Credit\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2504,\n            \"number\": \"Article DN-RG-44\",\n            \"description\": \"Mortgage Deed Without Possession/Hypothecation On Deed Relating To Movable Property\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2505,\n            \"number\": \"Article DN-RG-45\",\n            \"description\": \"Letter Of License\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2506,\n            \"number\": \"Article DN-RG-46\",\n            \"description\": \"Notarial Act\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2507,\n            \"number\": \"Article DN-RG-47\",\n            \"description\": \"Note Or Memorandum\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2508,\n            \"number\": \"Article DN-RG-48\",\n            \"description\": \"Re-Conveyance Of Mortgaged Property\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2509,\n            \"number\": \"Article DN-RG-49\",\n            \"description\": \"Power Of Attorney\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2510,\n            \"number\": \"Article DN-RG-50\",\n            \"description\": \"Respondentia Bond\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2511,\n            \"number\": \"Article DN-RG-51\",\n            \"description\": \"Security Bond\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2512,\n            \"number\": \"Article DN-RG-52\",\n            \"description\": \"Share Warrants\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2513,\n            \"number\": \"Article DN-RG-53\",\n            \"description\": \"Surrender Of Lease\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2514,\n            \"number\": \"Article DN-RG-54\",\n            \"description\": \"Transfer\",\n            \"stateCode\": \"DD\"\n        },\n        {\n            \"id\": 2515,\n            \"number\": \"Article DN-RG-55\",\n            \"description\": \"Transfer Of Lease By Way Of Assignment And Not By Way Of Under-Lease\",\n            \"stateCode\": \"DD\"\n        }\n    ]\n}"}],"_postman_id":"8fcac9db-5419-4b85-b4a4-90e62e734aa5"},{"name":"Get Branches","id":"6df87abd-3b84-477d-b6f4-895d77006548","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"app-id","value":"{{app-id}}","type":"text"}],"url":"{{eStampSDKBaseUrl}}/v2/fetch/branches","description":"<p><strong>Get Branches Api</strong></p>\n<p>Branch Id and Branch Details for Each State or Branch can be retrieved using get branches api</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-key"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"000df74c-41d3-4f28-a182-342a6ce21028","id":"000df74c-41d3-4f28-a182-342a6ce21028","name":"Zoop eStamp SDK Documentation","type":"collection"}},"urlObject":{"path":["v2","fetch","branches"],"host":["{{eStampSDKBaseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"f0677277-9f70-45fa-ad99-0b310050f20a","name":"Success Response","originalRequest":{"method":"GET","header":[{"key":"app-id","value":"","type":"text"}],"url":"{{eStampSDKBaseUrl}}/v2/fetch/branches"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"vary","value":"Origin, Accept-Encoding"},{"key":"access-control-allow-credentials","value":"true"},{"key":"access-control-expose-headers","value":"Upload-Offset,Location,Upload-Length,Tus-Version,Tus-Resumable,Tus-Max-Size,Tus-Extension,Upload-Metadata,Upload-Id"},{"key":"content-security-policy","value":"script-src 'self';style-src 'self';default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src-attr 'none';upgrade-insecure-requests"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"origin-agent-cluster","value":"?1"},{"key":"referrer-policy","value":"same-origin"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-download-options","value":"noopen"},{"key":"x-frame-options","value":"DENY"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"cache-control","value":"public, max-age=900"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"W/\"b39-cQMsJbBT/sXFGIsuZAEGQ3TWBX8\""},{"key":"content-encoding","value":"gzip"},{"key":"date","value":"Mon, 07 Apr 2025 07:11:36 GMT"},{"key":"x-envoy-upstream-service-time","value":"299"},{"key":"server","value":"istio-envoy"},{"key":"transfer-encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"States fetched successfully.\",\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"Andaman and Nicobar Islands\",\n            \"constitutionName\": \"Andaman and Nicobar Islands\",\n            \"code\": \"AN\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"Andhra Pradesh\",\n            \"constitutionName\": \"Andhra Pradesh\",\n            \"code\": \"AP\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"Arunachal Pradesh\",\n            \"constitutionName\": \"Arunachal Pradesh\",\n            \"code\": \"AR\"\n        },\n        {\n            \"id\": 4,\n            \"name\": \"Assam\",\n            \"constitutionName\": \"Assam\",\n            \"code\": \"AS\"\n        },\n        {\n            \"id\": 5,\n            \"name\": \"Bihar\",\n            \"constitutionName\": \"Bihar\",\n            \"code\": \"BR\"\n        },\n        {\n            \"id\": 6,\n            \"name\": \"Chandigarh\",\n            \"constitutionName\": \"Chandigarh\",\n            \"code\": \"CH\"\n        },\n        {\n            \"id\": 7,\n            \"name\": \"Chhattisgarh\",\n            \"constitutionName\": \"Chhattisgarh\",\n            \"code\": \"CG\"\n        },\n        {\n            \"id\": 8,\n            \"name\": \"Dadra and Nagar Haveli\",\n            \"constitutionName\": \"Dadra and Nagar Haveli and Daman & Diu\",\n            \"code\": \"DH\"\n        },\n        {\n            \"id\": 9,\n            \"name\": \"Daman and Diu\",\n            \"constitutionName\": \"Dadra and Nagar Haveli and Daman & Diu\",\n            \"code\": \"DD\"\n        },\n        {\n            \"id\": 10,\n            \"name\": \"Delhi\",\n            \"constitutionName\": \"The Government of NCT of Delhi\",\n            \"code\": \"DL\"\n        },\n        {\n            \"id\": 11,\n            \"name\": \"Goa\",\n            \"constitutionName\": \"Goa\",\n            \"code\": \"GA\"\n        },\n        {\n            \"id\": 12,\n            \"name\": \"Gujarat\",\n            \"constitutionName\": \"Gujarat\",\n            \"code\": \"GJ\"\n        },\n        {\n            \"id\": 13,\n            \"name\": \"Haryana\",\n            \"constitutionName\": \"Haryana\",\n            \"code\": \"HR\"\n        },\n        {\n            \"id\": 14,\n            \"name\": \"Himachal Pradesh\",\n            \"constitutionName\": \"Himachal Pradesh\",\n            \"code\": \"HP\"\n        },\n        {\n            \"id\": 15,\n            \"name\": \"Jammu and Kashmir\",\n            \"constitutionName\": \"Jammu and Kashmir\",\n            \"code\": \"JK\"\n        },\n        {\n            \"id\": 16,\n            \"name\": \"Jharkhand\",\n            \"constitutionName\": \"Jharkhand\",\n            \"code\": \"JH\"\n        },\n        {\n            \"id\": 17,\n            \"name\": \"Karnataka\",\n            \"constitutionName\": \"Karnataka\",\n            \"code\": \"KA\"\n        },\n        {\n            \"id\": 18,\n            \"name\": \"Kerala\",\n            \"constitutionName\": \"Kerala\",\n            \"code\": \"KL\"\n        },\n        {\n            \"id\": 19,\n            \"name\": \"Ladakh\",\n            \"constitutionName\": \"Ladakh\",\n            \"code\": \"LA\"\n        },\n        {\n            \"id\": 20,\n            \"name\": \"Lakshadweep\",\n            \"constitutionName\": \"Lakshadweep\",\n            \"code\": \"LD\"\n        },\n        {\n            \"id\": 21,\n            \"name\": \"Madhya Pradesh\",\n            \"constitutionName\": \"Madhya Pradesh\",\n            \"code\": \"MP\"\n        },\n        {\n            \"id\": 22,\n            \"name\": \"Maharashtra\",\n            \"constitutionName\": \"Maharashtra\",\n            \"code\": \"MH\"\n        },\n        {\n            \"id\": 23,\n            \"name\": \"Manipur\",\n            \"constitutionName\": \"Manipur\",\n            \"code\": \"MN\"\n        },\n        {\n            \"id\": 24,\n            \"name\": \"Meghalaya\",\n            \"constitutionName\": \"Meghalaya\",\n            \"code\": \"ML\"\n        },\n        {\n            \"id\": 25,\n            \"name\": \"Mizoram\",\n            \"constitutionName\": \"Mizoram\",\n            \"code\": \"MZ\"\n        },\n        {\n            \"id\": 26,\n            \"name\": \"Nagaland\",\n            \"constitutionName\": \"Nagaland\",\n            \"code\": \"NL\"\n        },\n        {\n            \"id\": 27,\n            \"name\": \"Odisha\",\n            \"constitutionName\": \"Odisha\",\n            \"code\": \"OR\"\n        },\n        {\n            \"id\": 28,\n            \"name\": \"Pondicherry\",\n            \"constitutionName\": \"Pondicherry\",\n            \"code\": \"PY\"\n        },\n        {\n            \"id\": 29,\n            \"name\": \"Punjab\",\n            \"constitutionName\": \"Punjab\",\n            \"code\": \"PB\"\n        },\n        {\n            \"id\": 30,\n            \"name\": \"Rajasthan\",\n            \"constitutionName\": \"Rajasthan\",\n            \"code\": \"RJ\"\n        },\n        {\n            \"id\": 31,\n            \"name\": \"Sikkim\",\n            \"constitutionName\": \"Sikkim\",\n            \"code\": \"SK\"\n        },\n        {\n            \"id\": 32,\n            \"name\": \"Tamil Nadu\",\n            \"constitutionName\": \"Tamil Nadu\",\n            \"code\": \"TN\"\n        },\n        {\n            \"id\": 33,\n            \"name\": \"Tripura\",\n            \"constitutionName\": \"Tripura\",\n            \"code\": \"TR\"\n        },\n        {\n            \"id\": 34,\n            \"name\": \"Telangana\",\n            \"constitutionName\": \"Telangana\",\n            \"code\": \"TS\"\n        },\n        {\n            \"id\": 35,\n            \"name\": \"Uttar Pradesh\",\n            \"constitutionName\": \"Uttar Pradesh\",\n            \"code\": \"UP\"\n        },\n        {\n            \"id\": 36,\n            \"name\": \"Uttarakhand\",\n            \"constitutionName\": \"Uttarakhand\",\n            \"code\": \"UK\"\n        },\n        {\n            \"id\": 37,\n            \"name\": \"West Bengal\",\n            \"constitutionName\": \"West Bengal\",\n            \"code\": \"WB\"\n        }\n    ]\n}"}],"_postman_id":"6df87abd-3b84-477d-b6f4-895d77006548"},{"name":"eStamp with eSign","event":[{"listen":"test","script":{"id":"21ae36c3-975d-4d91-96ea-d432d04133f7","exec":[""],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"64f38718-3554-43d2-b1a2-a148f69448d2","exec":[""],"type":"text/javascript","packages":{}}}],"id":"fa472cdb-fbcb-4b2f-8683-1f59bdea3364","protocolProfileBehavior":{"disabledSystemHeaders":{"accept-encoding":true,"connection":true},"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"app-id","value":"{{app-id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"document\": {\n        \"name\": \"Agreement_Esigning.pdf\",\n        \"data\": \"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L1Byb2NTZXQgWy9QREYgL1RleHQgL0ltYWdlQiAvSW1hZ2VDIC9JbWFnZUldCi9FeHRHU3RhdGUgPDwvRzMgMyAwIFI+PgovRm9udCA8PC9GNCA0IDAgUj4+Pj4KL01lZGlhQm94IFswIDAgNTk2IDg0Ml0KL0NvbnRlbnRzIDkgMCBSCi9TdHJ1Y3RQYXJlbnRzIDIKL1BhcmVudCAxNCAwIFI+PgplbmRvYmoKMTAgMCBvYmoKPDwvVHlwZSAvUGFnZQovUmVzb3VyY2VzIDw8L1Byb2NTZXQgWy9QREYgL1RleHQgL0ltYWdlQiAvSW1hZ2VDIC9JbWFnZUldCi9FeHRHU3RhdGUgPDwvRzMgMyAwIFI+PgovRm9udCA8PC9GNCA0IDAgUj4+Pj4KL01lZGlhQm94IFswIDAgNTk2IDg0Ml0KL0NvbnRlbnRzIDExIDAgUgovU3RydWN0UGFyZW50cyAzCi9QYXJlbnQgMTQgMCBSPj4KZW5kb2JqCjEyIDAgb2JqCjw8L1R5cGUgL1BhZ2UKL1Jlc291cmNlcyA8PC9Qcm9jU2V0IFsvUERGIC9UZXh0IC9JbWFnZUIgL0ltYWdlQyAvSW1hZ2VJXQovRXh0R1N0YXRlIDw8L0czIDMgMCBSPj4KL0ZvbnQgPDwvRjQgNCAwIFI+Pj4+Ci9NZWRpYUJveCBbMCAwIDU5NiA4NDJdCi9Db250ZW50cyAxMyAwIFIKL1N0cnVjdFBhcmVudHMgNAovUGFyZW50IDE0IDAgUj4+CmVuZG9iagoxNCAwIG9iago8PC9UeXBlIC9QYWdlcwovQ291bnQgNQovS2lkcyBbMiAwIFIgNiAwIFIgOCAwIFIgMTAgMCBSIDEyIDAgUl0+PgplbmRvYmoKMTUgMCBvYmoKPDwvaC5mM2c2NWtvdjJsZGQgWzIgMCBSIC9YWVogNzIgNzcwIDBdCi9oLjJsczl3MWJ3aDU2IFs2IDAgUiAvWFlaIDcyIDc3MCAwXQovaC5qOTBlNHl2YzFmdiBbOCAwIFIgL1hZWiA3MiA3NzAgMF0KL2guazAwNG02ZHd3MXZhIFsxMCAwIFIgL1hZWiA3MiA3NzAgMF0KL2guaTk4bmgzYjVqM240IFsxMiAwIFIgL1hZWiA3MiA3NzAgMF0+PgplbmRvYmoKMTYgMCBvYmoKPDwv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\",\n        \"info\": \"test\"\n    },\n    \"signers\": [\n        {\n            \"signer_name\": \"Amal Roy\",\n            \"signer_email\": \"amal@zoop.one\",\n            \"signer_city\": \"Pune\",\n            \"signer_purpose\": \"Pdf viewer test\",\n            \"sign_coordinates\": [\n                {\n                    \"page_num\": 0,\n                    \"x_coord\": 400,\n                    \"y_coord\": 550\n                }\n            ]\n        }\n    ],\n    \"estamp_required\":true,\n    \"estamp_id\":\"66a111f7f45cc3fab91b61e4\",\n    \"estamp_version\":\"v2\",\n    \"txn_expiry_min\": \"10080\", //7days\n    \"white_label\": \"Y\",\n    \"response_url\": \"https://eo59jaa8ahywrhe.m.pipedream.net\",\n    \"esign_type\": \"AADHAAR\",\n    \"email_template\": {\n        \"org_name\": \"Zoop One\"\n    }\n    }","options":{"raw":{"language":"json"}}},"url":"{{eSignSDKBaseUrl}}/v5/init","description":"<p><strong>Estamp And Esign Journey</strong></p>\n<p>Once estamp has been procured successfully, you need to pass request_id obtained from estamp init api as estamp_id in this api and estamp_required should be true.</p>\n<p>Case Id and Certificate Number will be added on all pages by default.</p>\n<p>esign-api-url can be</p>\n<ul>\n<li><p><a href=\"https://live.zoop.plus/contract/esign\">https://live.zoop.plus/contract/esign</a>( for production)</p>\n</li>\n<li><p><a href=\"https://live.zoop.plus/contract/esign\">https://test.zoop.plus/contract/esign</a> ( for testing)</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-key"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"000df74c-41d3-4f28-a182-342a6ce21028","id":"000df74c-41d3-4f28-a182-342a6ce21028","name":"Zoop eStamp SDK Documentation","type":"collection"}},"urlObject":{"path":["v5","init"],"host":["{{eSignSDKBaseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"ed279135-f044-417b-9f78-ace03e7bd97d","name":"Document - Success Response","originalRequest":{"method":"POST","header":[{"key":"app-id","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"document\": {\n        \"name\": \"Agreement_Esigning.pdf\",\n        \"data\": \"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L1Byb2NTZXQgWy9QREYgL1RleHQgL0ltYWdlQiAvSW1hZ2VDIC9JbWFnZUldCi9FeHRHU3RhdGUgPDwvRzMgMyAwIFI+PgovRm9udCA8PC9GNCA0IDAgUj4+Pj4KL01lZGlhQm94IFswIDAgNTk2IDg0Ml0KL0NvbnRlbnRzIDkgMCBSCi9TdHJ1Y3RQYXJlbnRzIDIKL1BhcmVudCAxNCAwIFI+PgplbmRvYmoKMTAgMCBvYmoKPDwvVHlwZSAvUGFnZQovUmVzb3VyY2VzIDw8L1Byb2NTZXQgWy9QREYgL1RleHQgL0ltYWdlQiAvSW1hZ2VDIC9JbWFnZUldCi9FeHRHU3RhdGUgPDwvRzMgMyAwIFI+PgovRm9udCA8PC9GNCA0IDAgUj4+Pj4KL01lZGlhQm94IFswIDAgNTk2IDg0Ml0KL0NvbnRlbnRzIDExIDAgUgovU3RydWN0UGFyZW50cyAzCi9QYXJlbnQgMTQgMCBSPj4KZW5kb2JqCjEyIDAgb2JqCjw8L1R5cGUgL1BhZ2UKL1Jlc291cmNlcyA8PC9Qcm9jU2V0IFsvUERGIC9UZXh0IC9JbWFnZUIgL0ltYWdlQyAvSW1hZ2VJXQovRXh0R1N0YXRlIDw8L0czIDMgMCBSPj4KL0ZvbnQgPDwvRjQgNCAwIFI+Pj4+Ci9NZWRpYUJveCBbMCAwIDU5NiA4NDJdCi9Db250ZW50cyAxMyAwIFIKL1N0cnVjdFBhcmVudHMgNAovUGFyZW50IDE0IDAgUj4+CmVuZG9iagoxNCAwIG9iago8PC9UeXBlIC9QYWdlcwovQ291bnQgNQovS2lkcyBbMiAwIFIgNiAwIFIgOCAwIFIgMTAgMCBSIDEyIDAgUl0+PgplbmRvYmoKMTUgMCBvYmoKPDwvaC5mM2c2NWtvdjJsZGQgWzIgMCBSIC9YWVogNzIgNzcwIDBdCi9oLjJsczl3MWJ3aDU2IFs2IDAgUiAvWFlaIDcyIDc3MCAwXQovaC5qOTBlNHl2YzFmdiBbOCAwIFIgL1hZWiA3MiA3NzAgMF0KL2guazAwNG02ZHd3MXZhIFsxMCAwIFIgL1hZWiA3MiA3NzAgMF0KL2guaTk4bmgzYjVqM240IFsxMiAwIFIgL1hZWiA3MiA3NzAgMF0+PgplbmRvYmoKMTYgMCBvYmoKPDwvVHlwZSAvQ2F0YWxvZwovUGFnZXMgMTQgMCBSCi9EZXN0cyAxNSAwIFI+PgplbmRvYmoKMTcgMCBvYmoKPDwvTGVuZ3RoMSAxOTI1NgovRmlsdGVyIC9GbGF0ZURlY29kZQovTGVuZ3RoIDk5NjQ+PiBzdHJlYW0KeJztewt8U8XW75rZO4/muZOmTdqmTULalDaFQlsohdru0hbQ8qbFFqm0QKW8HwUEBakPBAoKoqKgR/CNT9JSIDwUjiAqiqBw8IgPEFHRI4J+iIrS/a2ZpDykvd/57nfv7/7O/Z3ZXf9ZM7P2mtlr1qyZnaRAACASQYQufYuK+5BM0hmAOrC2Z9/Bg4YtsK69CUBg5Ya+w8p6617XLAMgASx3GTQsPWNO9JYYlC/FctXwogHlg1dO+BnAFwSwPDRmcvU08ihdj+3N2D52zOyZ7iedH/0DQP0yUukt08ZNfm9uxRoAIzarp4yrrpsGDohA/blYIY2bNPeWn++29wHo0R/A+n3t2MlzTI+VLMQBTwPQLK6tqR573LYX9ZHjKN+9FiusmRE2LOMYIbF28sw5XZPFMnw41EfSJk0dU73i2Ud64/M8g+2PTq6eM031nLEe21A/uKdUT66xV3X9DEBVi3VF06bWzVRSYRXyk1j7tBk105KODNgJEPsrgP51rBNACxQsQBQFeWbLEvgJcuEvoMF6CdJhOPb+MsqqsCwAT0oy09lGwvs1eS0DoVCCCxsu3CbxmqtSCa/RQWe8VNUzqkeDe8zcGZPAPW5GzURw19aMngHuSdUzp4D7sk5Qxaw59+2DllHm3J+1cVpe/dSXyaksf3dwr80XNlwcJ4HWgMWISz2y3BDmKT5NqE7gT2nDWSKQiReBIrwI9MOLwA14sfsEYTFZgU+sVa1RZeJtcaFc+ABuoVatiurVImVJ5Ba8Ig0YNHAQyDj2dapDLUNIpiaPNMnMuApa0afazmYBRD6i0J22sNVtWDuY+QxeApfqhuVqqIFxsI7djTVdr6xRvrziGnONnSFs594wEgRu4bSQhbltbXwMgHoJjuQyT67gcXwTa2ag7JUY1svkKHoO4WQKP5ETork+G7eroHzCLK3Utukp7aW7yV/pp8LfVP976fn/6tIMDF3aYdphEbPVV5iN5vy3xtlmEuvgGFIu0nCkWKSy/7nWfy6phsMT/1MdON4b/lQuCecYc3ANjWDeKmJ8gwlQH+YJetnsME/RF2rDvIDroGOYF6+QUUEsSoV4NXIABTADxqNnT4IBUIrxpgbLdVgzFabwddAZPb8Ltg/gNVNhJsyFaSjlhuthMtaPQ9kpiG7ohHRZmxuG8tUyC/lqrL26dFnuBZTMwB664uXGEdRy3df2VoilGcgzrMb60Ag78z4nhfsbjz3UYltduPc6/jSzEcdCZ9U2iEGKVT0PMaIPYxAo3yCdYnnLeOUUa2c5/Q6tEgwTwHp4hYyHV2AnvEHO4l0bYCs0w9tgx8j1OMyDh2ARWnIE1izBPoeihYvgIRKjNGP0fhIt/STsR9kb4Q7YBtHEoXwLC2ChcAjvWogbVwcc/WB8kvtIf2UWRotj4t2QDf3xyaaReqVcuV9ZqTwDz8JW4W3lIuhx9sbgtV/5QfV35VO0+Eh4GFbDMbIyYhPO+I3oF1uFv+AzrxEqRaKMUy7gCDxwK45BRJvuJ7uoH7XXwDfEQeYJhajlaSWg7EEpJ1Si7dbANtKN9KUe1UhlgLIfY0onmINaV0MTbMYrCK/BUWJQnVWeUc5CDKShFyxAe7xPdgktF+9syWeLAa2UAjnYMhVeh7fgIPFiXJmqMqgyVLLqNuUwxqiuuDZvhOfxzq/JL/QOvBYIe8U+Sm/0yYXwALM2vAlfkFiSTgaR4TSFTqVPCDMw4qVxTxmLc70EHkXtnxM/2UwN9IDwtPiS+Ls6vuW4YsIZ8cFjuI/+lRjxSd2kjtxFjpAvaSEdRR+jJ4SHxBfEDzXV+NQ3oxffBy/BL8RKepAh5CZSS+aRReQBsprsJwfJKVpAS+lEekaoFaYLr4m98Rom1ol3q+5VLVWfailv2dPyQcsvSoZyLwxBf7gTR/8wRoNm9JMD8DFex+AEURE9MeHlJh5SRm7H6w5yH3mKrCcvkGbs5SA5Qb4lP5Gfye8UFzJV0zjqoR3w8tIZ9Fb6EH2cHsDrIP2e/ibYhQ6CX+gm5AoVwlQc1SJhBV6bhC/EWPGAqKCdM1SrVGtV61Uvqd5QnVUbNHdpQfveH09fTL34eQu0LG5Z1dLU0qx8AVE4h7FoBReeOobguqrG2DIHzxfPop8fIga0XSxJJXmkP1pmFJlAppM5aMl7yBryLB/7q2QHWukjcgbHbKROPubOtBvtTQfhdTOtodPpCrqSNtMj9IKgEfSCWYgSUoW+QqVQI8wU5gqrhIDwnvCZcEI4L/yBlyLqRJfYQfSJfrGvOEqcJT4hfiN+oxqpelf1lVqnnqy+Vx1U/6jprsnTDNYM0VRqlms2aw5rq9A7d8Mm2HJlDCXHhTuFYmET3E8zxRj6Pn0f/XkUjBUGUPRUup4spvNJM01UzVH3or3IQDgr+tDWe+laep72EgaQEjIMJtCuIW1qm/giZrnibjgt7sBnex81z1EbyB30jNoATYTvY+RNoYvoF96Fo8IxohGfhE9EHbGT0/R5YTB6wWtinqocPMLj8KowncyHTbQYjwq/a5ehHw8kL2JcKCUZ5FcBT4R0IHpRtvAl3A0T6d/hNK7jxfAIGSuOg/shk8yDb+A5XBUpqinqVHUUeYeOFxtoJGkGKr7A9lSSSASVDe4hlcIa9Rn6MUbfA6IOPhdextEfoK8KA8SzqqGkFlfAfLgXpit3wlxVufghGQcCGQ5J4nGMbvOEDNGD+QKMKiMxpm3G1b0N40CBMABrHOg5/dEvyjBCrMHrUYwTInrQeFzjN2IUex+a1aU0CONUJoJRB3ezd1uGwgjlOVitjIMpykrohPFgkTIPNa6Hr2A5rCcLW27HOJ+AK+dz0l/Vhx5Q9VE60Qb6MR1GV109v2jtJOKA7/B6FQt5eMZrED+CYZCvLFP+ht7dESPsahiNO+tJfMofsId+wi7IbBlIG5U+wjR83mMwRHlecREd1CqTYBDsgGc1KqjW+HGOA+RDfN7boYYOVWYKNS3j0Q7L0QoyWmsWxp8lcmFZaYGcn3ddbq+eOT2yu2VlZnTtkt65U5o/NaVjsi8p0dvB43YlxDvjYmMc9ugoW6TVIplNRoNeF6HVqFWiQAmkFXv7VLkDvqqA6PP269eJlb3VWFF9RUVVwI1Vfa6WCbiruJj7akkZJW/5k6QckpQvSRLJnQu5ndLcxV53YH+R1x0kI4aUI39fkbfCHTjN+QGcX8F5I/IeD97gLnbUFrkDpMpdHOgzu7ahuKoI1TXqdYXewhpdpzRo1OmR1SMXsHunNRJ7HuEMtRf3bMSTqxEHFYj1FhUHYrxFbAQBIam4emxg8JDy4qI4j6eiU1qAFI7xjg6At3fA7OciUMi7CagLAxrejXs8expY6m5M29WwLCjB6Cq/Yax3bPXI8oBQXcH6sPix36KA/baTjstFVG4tLF90ZWuc0FDsGO9mxYaGRe7AuiHlV7Z6GFZUoA68lyb1qWrog10vQyOWDHNjb3RhRXmALMQu3exJ2FOFnq/GW8xqqia4AxHe3t7ahglVODWxDQEYOtfTFBsrb1WOQ2yxu6G03OsJ5Md5K6qLnI02aBg6d2OM7I65uqVTWqNkCRm20WQOMwbjlUzNpTbOcXHGlQy9ZFnCRuS9Hh0i4B7jxpGUe/GZejCo6QENY3qgGKYKgncFxuKMjA9EFFY1SD1ZPbs/oEqSvO6GnwE9wHv6+6trqsM16iTpZ2As85NLrobtrXzA7w+kpjIX0RTinOIY83i5W6e02UHq9U6T3Jih+WAw2ra6omc6mt/jYRO8NCjDaCwE6oeUh8puGB3XBHK6vyJAq1jLrtaWqDLWUt/acun2Ki96cjN/A4kKaH2X/sxSdGRxbc8Aif5fNNeE2kuGeUuGjCh3FzdUhW1bUnpVKdTe41JbmAtEFpYLcTTM0TiBt6JTjrwkzArlhoCYhH9q7tRjgxoteiWvIe4+AamqXwgrdB7PP3lTUDnL7uLZ5dvCwwz09F9d7nVV+arhGRoEHDBulSWlIxoadFe1oauFOrw+nKHHQ2m5x10YgDJcmUn4F1R29WBUEReQ0WSFTAD9L1QVLl4lGBfmKzAx7+yU1gcDXUNDH6+7T0NVQ3VQqR/tdUvehq30DfpGw7TiqlbHCSrblsYF+iyrQFvVkp64KCj0bvSSxUMaZbJ42IjyrRK+3S8uLW+ihBZW9a5oTMS28q1uAJnXUlbLKlnBzQpQQvAhm6iWy8dtlQHqeavIK3h5TJAAr9O21hEYE6ShOqm1jmKdGKqTeR1LLMYUlpZf6T18SVZ04hse+yxtsF6r/dNnH/x8wlL7L5jXNKk5MTRERLShT8NS+/q018hzYmjU6SD0acZ/Q19E+/rMen0b+rQsta9P19aAtRwlg6ENfREsta9P39aAIzhajEb23vN/TF+kydSGPj1L7esz/rlCxzthd0RJUhvzb2CpfX2ma+Q5MX0OqxXgmqk0stS+PqmtARt5N3E2Wxv+ZGapfX2Wa+Q5MYyPjm5Dn8RS+/oi2xqwxNHtcLThn1aW2tcX1daALRw9MTH/fX3RbetjdyQ5nW34exRL7euL+XOFjRO7I9Xtvvz57aVkZ6l9fc5r5Dkx7Oz1tuGfsSy1r891jTwnhhk+Xxv+6WSpfX2etgbs5Ng9JSXkPlelBJba15d4jTwnhj3T0trwdzdL7etLvkaeE8PCjIw2/DOJpfb1dbpGnhPDkh492vDPVJba15dxjTwnhsPy8kLTfVXqzFL7+rKvkefEcGRxcWi6r0qZLLWv77pr5DllIY4tKWnDP3uw1L6+wmvkObFhb4VSoeNGn8N1cIeQAseRqJDS5I93bRWShfimXi45KHg3WqMyzAWdBDfu/ekc3YhTkTYg7RTYdxGjhASslxAXINUjbUDaiXQQCSM2Imt1I01FWot0nLUI8YKzye2SCpKFGLw3Bs8SZsEOZ5AUJAFciOlIg5BGIS1HWouk5nKsZirSAqSdSGd5iyzYm1Zm4tjtTUt5tnHCpAxerA4VR1by4sYbK0L5gCGhvOj6kFjPkFjXrFB1596hPDktlFuTMupZrjNm7CqIFqLxIaNx4NMQCd0DZkJw0a8ToiCARAV1uEYWrBsTfRlrdwoiEIEKBMaCS9klkCajJaNARxV6BqOgi/5AT4da6OmNJkvG2oIb6AnYgLQTSaAn8PqCfgEL6HFmc8R8pLVIO5EOIJ1BUtPjeB3D63P6OZjpZ5COlI80Cmkt0k6kM0ga+hmiRD9l7wkcGZ+PROmniBL9BB/rE0QzPYrcUXoUh3aoKTsnYytn/OlhxpUUZuxxYcYanRGkHzb9loIe5cOZRo/aLnSAPMgUOjQldXUFBUdT7nhXkH650e13rSvoQg9DAIniSA5jz4fBjTQYqQppGpIauSPIHYF6pBVI65ACSOhliBKSm+5Deg/pCHRBkpEGI2npwSbsJkgPNPl6uwqi6fv0LVzuLrqfvs3z9+henr9L3+T5O5gnYL6P7m1KcEGBHtsB75EwlzBPx3YV/evGRKtLKbDQnWg7F2I6Uj7SIKRRSMuR1HQn7dA01mVFJdthH27qLtoE3/L8OXhKC/IEl+wrRAd0M/D1vA45hLXutT4q+1atxiID3/0rkWPgu2cZcgx8t92JHAPfpNnIMfCNnYAcA9+IUcgx8A0qRQ4hSJ/Ykpjsyh40kbgLzPRWtNKtaKVb0Uq3gkhvZRf8JrKxPdaUmooWWyP7U1Jd9dtI/Q5SP5TUP0Xqa0j9HaT+TlKfS+pvJvV+Uu8k9QmkXib120kPNEU9kZuvKubIDlK/j9S/QurrSL2P1CeR+kRS7ybZcpB6mq7P5FkxzzYWsEWH+XV5GH3M1IMW9aDPezAm7EQ8gKTwkoxC7g4h4ZgElnfYmJofKnfumTG1oB/djTfuxmnYDceQRJyg3ehGu1HJblRgRsxHGoW0C+kMkoKkRukOOPDlHM2I6Uj5SKOQFiCdQVLz4ZxBojA1PMQNfGDp4UEPYiW6Gy/2QbiHeuR4ySn5pX7CcicxJ5BBCUoCzQZ21gOrRWsJEuPmX4y//mKEiIIIej9dDvE4ESvC+fKm3+JdQfJok2+7qyCKPAIJInodyQEfScK8B9TxcjdwalmeBU76EuYZTc7heJu5yZfm2kZM7K7Nrt+cJ13fOoMU2VPO7a6P3EGRNLn+hjUvbXYddi5xvZMe1GLNDl+QYLbNzUW3Onu4XtnHRe/EhjVNrjtYttk139nXNdHJG2pCDTfXYUk2u4b6Rrj6ob4i52iXXIc6N7vynTe7ckNS3dg9m11dcAj+EJuKg01x8k69CVxhWXaQ1MppmlWacs0gTXdNhiZN49G4NPGaOI1Na9VKWpPWoNXhm5RaK2opvh/Zgspx2c++Z7ap+Y8I1CL/0pnzEgX+NTP/KpoSLYUbIBAplNCSYb1JSWDXGCgZ7Q6cH+YNEt2QEQGVtzcJWEugpLR3oIe/JKhRhgay/SUBzeCbyhsJub8CawN0Mb4tl5YHicKqFsaxz+e2AiGWhffFsbzjwvsqKsARPTvfkW/Ns+T0KWoDqsLov5wcV/HxgVUlw8oDL8ZXBDIYo8RXlAQeZB/gbSU/kbPFRVvJjyyrKN8q5JGfioeyeiGvqKKiJEiGczlwkx9RDj3mRy6nxY2ZyYFbmxCSWxOSS8L7US6RZSiHb4FJXC4pIoLLiYTJNdYlFhc1JiZyGbsb6rhMnd19pcy+JJRJSuIy0fWwj8vsi65nMoE8LuJ0okiCk4uQWHByESeJ5SLDL4ukh0WWXBJZwnsSyGUZZ0jGeLxVxngcZfz/bKrp7feTjb0qxoxkH35WeYtrkKoCS2fXOgL1o93uxjEV4U9FfVWjx9SyvLomUOGtKQqM8Ra5G3uNbKN5JGvu5S1qxHNhaXnjSLmmqKmX3KvYW11UsbHv4Kzsq/pacqmvrMFtKBvMlGWxvvpmt9GczZr7sr6yWV/ZrK++cl/eF3AfH1zeqIXeFYUjQ/lGqtehv1bFeSp6R0vT8rjz9vI47ojbhqeV9aD3VwQM3t4BIxJr6lTQqYA14ZpiTSb2CXe4yXFHL0/cNrI+3CRhtcXbG/wzZ9XNAkfx+KLQXx0mrJo5ixk8hP669hK2FQfk6qK6mXjqD6QOKwnkDxlR3qjRYG0Ve6RAz9Y6vb44qOwKVXbGyp6sUhAuCbK6XFYXEREWvHb+Z4XzQrYK6un2jUROIDOhrkIIJJSUUgwFpeGPErfhWYptD3UV+IB1xE/qWnWEh+33Q6gM7JlbaeasMBe2xcxwHroTb6lrNcmlxIzlv2SxmaiQJQEEwpJKEAjFY6ZD9b1+F/yqVdhHREoL+yBGuYjv1Dr+vbse0QAGRCMYEU0czWBClMCMaEH8A4+hFsRIsCLaIBIxCvF3fHe3IdohCtGBeAHfvu3Ix0IM8nEQi+jkGA9xiAngVH7Doy9DN8QjevBg+xt0ADeiF/FXfP/0ICZBB0Qf4i/4BulF7AiJiCngQ0zl6Idk5TykQUfEThw7QypiOvgRu0AnxK6IP+M7XmfETEhHzIIuyjnoxrE7dEXMhkzEHpCl/AfkcOwJ3RB7ccyF7ojXQTZiHvRAzIcc5SeQoSdiAfRC7A25iIWIP0IRXIdYDHmIfSBfOQt9QUbsBwWI10NvxBs4lkAhYn8oQhwAfZQzMJDjIOiLOBj6IQ6B65UfYCjHYXADYimUKKehDAYgDud4IwxELIdByvdQAYMRRyCehptgCPIjYRhiJZQi3sxxFJQp/4AqGI5YDTcijkb8DsZABeJYGIFYAzch3gIjlW9hHMdaqEQcDzcrp2ACVCE/keMkqEacDKOxfgqMQZzKcRqMVb6B6VCDOAPGIdZxnAm1ytcwC8YjzoYJiLcifgVzYCLiXJiMeBtMQbyd4zyYijgfpiHeAdOVk7CAYz3UId4JMxHvglkK+z55NuI9HBfCrcoJuBfmIC6CuYiL4TbEJXC78gU0wDzEpTAfa5YhfgH3wR2I98MCxOVwJ+IKxOPwANyFuBLuRnwQ7lGOwUMcH4aFiKtgEeIjsBhbH0U8BqthCeIaaFA+h8dgKeLjsAzxLxyfgPsR18JyxHWwAvFJxM/gKXgA8WlYifgMPIj4LDykfArPwcPKJ/A8rEJcD48gvsDxRXgU8SVYjfgyPIb4CsdX4XHEDfAXxAA8gdiIeBSaYC3iRliH2AxPKR/DJnha+Tts5rgFnkEMwrOIW+E5xG0ct8N6xB3wgvIRvAYvIr7OcSe8hLgLXkb8K7yC+Aa8irgbNihHYA8EEN+ERuVvsJfjW9CE+DZsVA7DO9CMuA82Ib4LmxHfgy2I+yGI+D5sRTzA8SBsQ/wAdiB+CK8ph+AQ4odwGF5H/BvsRDwCu5QP4COOf4c3ED+G3YhHYQ/iJxw/hTcRP4O9iJ/DW8pBOMbxOLyjHIAvYB/iCXgX8UuOJ+E9xK9gP+LX8D7iN3BQeR9OcfwWPkD8Dj5U9sM/4BDi9xxPw2HEH+CI8h6cgY8Qz3L8Ef6O+BN8jPgfcBTxHMef4VPlXTgPnyH+Ap8j/oq4D36DY4gX4Dji7/AF4h8cL8KXyjvQAicRFfgK8d8x/f9+TP/xXzym/+OfjunfthPTv70mpp9qJ6Z/c01M//qfiOknL8X0GVfF9C/bielf8pj+5TUx/QSP6SeuiOkneEw/wWP6iSti+hfXxPTjPKYf5zH9+L9gTP/4/1FMP/zvmP7vmP4vF9P/1c/p/7oxvb1z+r9j+r9jetsx/e3/D2I6wecA+rtqF0bzo3KRzmAw9C4DjjqTXo88R53WaESeoyAbLVkTxQV0OV2tFV8WSQSoVVSIUBEDJft0OAW7ZJ3Hm9UFCPv+Nagcb5YkWobMd7LFbEbOaTAgmoxGXntWjjGb1WXs90EMjUbEWINKNpqzVEyXielSEbdKVlFVjH4bySULweEfKJ2snO73S+fDnzhhIXfAxVzIz7fnEEtO1y6kEir9JNTo8VrUak237t2zM+nvzQWHSh85kT5TvD1vnuvVvvtG4ShzAUQNWiGBOraCRjnVzCygDSq/NrPH1wSxhjG8hhkBa85tZEyjmv1wTI6wSEZHZKS6zIgNzRYLZ36QIyQJuQSbKgE1yHYmkJDAWhOcJmxJMLCnTQjS7bKB6ux2t0uyUOp2Waw56Yf3M9wP6afZA+Qz3JPRtUtcI73UocFqpbxDOcJsoa39HJf11khalmBjdUx3E6oOPQAtQ+Z7mVu+rd78/lB/rDfemdy9l6qXertqp3q75i3tO07N9YYKQ6lpomGs6TbrbZFLrDusX8V+FXc21rBTvyWSxklOKV5KkNSv42akwXCmxTwCZzg2QSdp1ep9zlib0xmrdcYKhGpjnYIxQQrSZzYOshBLkDg2sScANuSNhBp0zJLcEYPKT9z6yPwqS8zqujr7IQAio2uQ7fROPAZIpIdssGzKp6PoVLqAinQbTQQXWd641IE+UnnuNDpKrnSOmRHycy/m5p++WHnSYmW+grDI1Nlvmi/twQJ6Dv+RAuE/VKgklTPCH8UnRXl82ehB3bt3y/J5O6g1yd27Z2ZER9nQs/BP1PyRTe1JT685s3717Xc9TrZG/vrBofP9nn/jqZEJr7xSkDtm1x17vrpl4oOPN0Qe+Pi7V8pf3PHM4uqu7Cud4crXYjT6np80bxYc7IlVwbAHMibkZqFZ18c4ZDZ5DicQtjb8BiyQFK/OaDaYE3S6lKgEp5iQ4lSlGL1GgyOGgNUtsdXm1vi4ThT3pfv3sz92gTUnP186LZ3GyT+9V9przZH2+DMYscnvqDJGG4uN9xrFYsuNltlxwtDoSdIE29joWca5tnuNDbYlcc8adSq3wJ1ObzCaRA3BfgmbU/bry+2E/VeSkXTDh4kSHdvoMxBDa+UIHKUKh2m0tk6xtXWKrWyKbeyJrXWj3FPd1O1gS8Rdr2kV1bSKai6Jaup8zBO6+Aj4JB/FJz23hd3lW9HJESQ9mmIOkW2kBwAaTI9ybmC/Al2RFiQrw97hP839A0MI849z/sqQm5xGJznJ1sVpiTtLyFcwsqB3YHAh0ytYeInMjo7OzAg5hSb7EtvqH8xBNAzB28E3vNn18MQFG56an9nfZtXXBe+dMH6Zrdnz3atz9k28ZexdK1pOHfmrQu52rF4UuGvek7Yn6Jz5Y+665x73prfGNY0d9XjnhNfu39Xy89fsf09jMWJJqm0Yt41ky1Y8fl+QX2b2Maq54/AQruYYEQrnHFU8nKs5RoRCO0eNlgc8jhotD3XaUD0zsJajiqOaYwTH0LZgLTfUGtYYXjC8Y1D1F/obHxIFKy5vMKgFjUqnFzS4nxiN+wTRJgiiYARqMIoaYTvdzv4Tm6yTdSCKKAL7dGKQ3rJFpdLJ8a4sXevGgczXzczpkfmhmc2rLkiyZaNG7uDN0tR7umlWmClbDHqjLQuoRN1UoOxmdg8yJzeze+gmU5As4/P9PW4WfN84x5Z1rvS1xLcN6Vzu+VxLDpvknJxFnf0ixgOz2YzTzb9YMSqfN1lzMNoelvWZOUKHTjmCGB+fy1RUoDOgjGwzyPocQ/3gHIPsyzF0cGLeKYfHjgrSxvd24PdYPN1IpiUzymsRLISuungP/cuDe/c2t3Qjo54VNv9xw7MtT2Ioe/jiRBYnypRvRI/qOUggf8iRkXw6rRz1PGhEsC1Gz7jLQUS2My7SwJcWR8HBp751QwsJMS7SwOeSo97B55sJ8cm+OgptBYLWNjLzEqdJlxAV5bSyLUxvFsUEp9FEQOPAzb6Z7fWc4RGLbS4s4rBVhUvq4h6MMizIpFj5JmjmWBI7N74hflXk85G7DUcMn8RpIyIdptRYIaKLqot+G24oAkYaKVIXZY2M3Gcy20yRNpPZiOFGjmQDkU3rTNRkMstRJDyoLWaRHGKhCLcX2cKGZxklTZUWSMslUfovgoqDBxUHAYfkoI7WoOJY4bbuIN3ATB7GldejybSpreDiujq4XBVeKtHb2O7D7VBpQcIIfHKRtrNfhS4HfAviuw+ZXomu82e3uTLeYJCJ9ER5BAw0EGXTqDHElL0WtXrSXc2vLLtxWccX7qcfX9wy6J4HdhHtzPvOvX2R1EsNS/c8taZpUH40/fHlltkjW85/8NYDTcdZRHkCI8pFjChGfAs/KyfUWCbaaIlUYrtJuskm6g0JZpMJ7I4ESihoMU63XBu5N3MX8uEp6bxs4YFDx+ZeK+n1anZ2Oid3Yoc8baw7luBfrMNIecjiIcioM+AdRjc/NbrDR8bz3Is4Ez4uXmA+jpyB6WTlZn5uZOdIHT87Vsb0Gum44lyYe5Gt8oHS9EpeNSAU29kZAM2PGDopZlo8GfYEGmWjHo8FeWbfZJ/X8wRNWTlg0sqKH1reaVlMbt/xRGX/rve0LFFtM1lrNk/e3nLx4ssCWbZg5N1RRmbDG5RTolPMg46QTdfLaRHGiNQYY2xqijE1NcfYPSo7rmfq9amVxsrUCcbxqVVdGoz3pqyJfiz2BWNUx9CSVJclsyUZw7jnYl7suDlme8c9MQc6fhj1WUdtUTRJYFa0sEe2WhmyQK8u68Z24EGMc9ldDn9aalaOmJN2vdgvbbi2wn+Ldrx/tmERxuffjL/5LdlZJiJK6YlZ9gyPzTEqZWoKTXGmm/JNy01rTYpJtda0wXTGJJi4rdnMmAxsEkxsKbNpMbEheNjJ1sQXrUnNzu8mH5twEw89JpNTsAfpi7LRkcYUOB7GY58GLg0dipN1GU5Bn1ItVfO55W8a7GzNXz+Cyh/sjIqcmk96kicRj628b8ZgoMfaRJG5AZZP8oNtIlvKzGjIfCrr2egS+biw/Ad3kcQgvUk2JcvsjOD2dfFt8KlycNtoNpnwTBRUjrQy57gX+7qyRtmYgCEgZ1cOXZdDcuzsASYy1Xa+UdqTHB3S+RaYzuNwOvfj9MSd6gNq6lLnq6naxrdbW2jj5FuyidlSbWCPoHawR1Ab2PjV3J/VJmZQNX8VUnftccmJ+fsNDx4IEgYS1lB5+lxrI/dx/1dfseh6Eo/vF/0nQ+f5S/dOxzLb2MJHGHw1wsQDDExPUrPA0S2LHW7Z1S0rORRb8ig7wNijo6Js0XavT1BrTLhCWPRBISF37NYJG3b0revXbeLRcSSzePGCufEBx5SDSxa/OFiKsHfY4bSP3jN1ZMbk8bVP+eLvLuvz0sKBdw60mYyxiUm6KZ2uq5jumL60RK6+ofOcs78vvK4H+ayjU+o4IL1f1U2DrruVraYSXE0JuJqiIJ48Idtd4IyiZUKlqjKiTF8jTFRNjajRa6OYCzCzWZCRhzIu3skw2fqx6oLtfKzY1dozpquzwDogtsA5xDoyZqiz2jo5tto5Rz0n6jw975AgmpiNdvvg6KroadFCtNO8QlonUUkS45w6DWyjL7Idj/sfP3WbmAtIhJCHI52iHr3iLPdbe2sotLeGQruM54VPeeQyth5ejGwZsfk1MlURyalZASMxxrqwtDHJl8XyLczpXMQVzRbCSKYoOlPi3iNxD5O4z0mJGjkxNculydcM0gga7oEavn1r3MyjNNy7NE7Wu8bEvEvjZP1qotkwNDEJWdnsLfqSD1X6BzAvOol1+F59fvoVwRJ3K2wI7Ve5F6fn8iOStfUdm/nRDGJnTgQWCXArstg0Hr5JEY+Pu5Jw87a0H7Z+23KG2D79GzGRP07pmhaOWXbxKB1i6DF8ybwXyHD7083ERQRiIB1bPm/5TXJv2FZLHr63sPY55gm9W4YI36EnJEAqeVOu0utVtjR9kq2/vtimjoiPiU/T+2xp3hx9d9sN+j624Zpyfa3+gu7nKFNnb1pynjcvuX/yirR1aZrunu4p+Wl99H08xSmlntKU8ZoxnjEpVWn1aUeTT3l+8J5Jttij1VFB2tjc0RmpISyISW7oAlUwDephFxwEjGN0viypnE6zrriD06CLjspMyrzyJfWn1tfWX+VkfkxOcjgO2olkl+1V9nq7mIZbGC1L429yditzKx5Z+IcjdjULQ/Zo3sY+MtGzmWNSalb+gbuOncU0Nov20P7HXe6CXMt9bqaZJEEHF/cUF/cUF/cNV+JO8wHzMbNiFl3mfPMgs2Dm9Wb+Rm3mPmOOZT5j7sB6NztZz6FzGatHjPGnzfRkDXb4/QMvu830AaHAJF288pRSOT2XV5w8z047J8MHnpP5fLudDpXT7XYMLDySJKPj0G5ZVjzE2LtlWmw8GkXaLh9ybtmgzyicOX+xw0RmBz45O+WD+3bc9lzNJ+te/271c/PnrX/ltjnry2OHJGWMHZEdWEpyP3uUkGWP1v8x4dcDc14SUj/YtfO93Xt3w38ClIg2/gplbmRzdHJlYW0KZW5kb2JqCjE4IDAgb2JqCjw8L1R5cGUgL0ZvbnREZXNjcmlwdG9yCi9Gb250TmFtZSAvQUFBQUFBK0FyaWFsTVQKL0ZsYWdzIDQKL0FzY2VudCA5MDUuMjczNDQKL0Rlc2NlbnQgLTIxMS45MTQwNgovU3RlbVYgNDUuODk4NDM4Ci9DYXBIZWlnaHQgNzE1LjgyMDMxCi9JdGFsaWNBbmdsZSAwCi9Gb250QkJveCBbLTY2NC41NTA3OCAtMzI0LjcwNzAzIDIwMDAgMTAwNS44NTkzOF0KL0ZvbnRGaWxlMiAxNyAwIFI+PgplbmRvYmoKMTkgMCBvYmoKPDwvVHlwZSAvRm9udAovRm9udERlc2NyaXB0b3IgMTggMCBSCi9CYXNlRm9udCAvQUFBQUFBK0FyaWFsTVQKL1N1YnR5cGUgL0NJREZvbnRUeXBlMgovQ0lEVG9HSURNYXAgL0lkZW50aXR5Ci9DSURTeXN0ZW1JbmZvIDw8L1JlZ2lzdHJ5IChBZG9iZSkKL09yZGVyaW5nIChJZGVudGl0eSkKL1N1cHBsZW1lbnQgMD4+Ci9XIFswIFs3NTAgMCAwIDI3Ny44MzIwM10gMjAgMjQgNTU2LjE1MjM0IDUxIFs2NjYuOTkyMTldIDY4IDc0IDU1Ni4xNTIzNF0KL0RXIDA+PgplbmRvYmoKMjAgMCBvYmoKPDwvRmlsdGVyIC9GbGF0ZURlY29kZQovTGVuZ3RoIDI2Mz4+IHN0cmVhbQp4nF2RTWvEIBCG7/6KOW4PizHZbXsIgWVLIYd+0LQ/wOgkKzQqxhzy7+tHmkIHFB5m3teZkV7bp1YrD/TdGdGhh0Fp6XA2ixMIPY5KE1aCVMJvlG4xcUtoEHfr7HFq9WBIXQPQj5CdvVvhcJGmxztC35xEp/QIh69rF7hbrP3GCbWHgjQNSByC0wu3r3xCoEl2bGXIK78eg+av4nO1CGVilrsRRuJsuUDH9YikLkI0UD+HaAhq+S9/zqp+EDfuUnUVqouiLJpIVaZzptMp0T3L9JjpnOmS6SG9svmxX/e9GZYtWNZWbKvO+dheXOM+u1icC2OnXad546RK4/4d1tioiucH85aHXQplbmRzdHJlYW0KZW5kb2JqCjQgMCBvYmoKPDwvVHlwZSAvRm9udAovU3VidHlwZSAvVHlwZTAKL0Jhc2VGb250IC9BQUFBQUErQXJpYWxNVAovRW5jb2RpbmcgL0lkZW50aXR5LUgKL0Rlc2NlbmRhbnRGb250cyBbMTkgMCBSXQovVG9Vbmljb2RlIDIwIDAgUj4+CmVuZG9iagp4cmVmCjAgMjEKMDAwMDAwMDAwMCA2NTUzNSBmIAowMDAwMDAwMDE1IDAwMDAwIG4gCjAwMDAwMDEzNDcgMDAwMDAgbiAKMDAwMDAwMDEwOCAwMDAwMCBuIAowMDAwMDEzNjUxIDAwMDAwIG4gCjAwMDAwMDAxNDUgMDAwMDAgbiAKMDAwMDAwMTU1NiAwMDAwMCBuIAowMDAwMDAwMzg0IDAwMDAwIG4gCjAwMDAwMDE3NjUgMDAwMDAgbiAKMDAwMDAwMDYyNSAwMDAwMCBuIAowMDAwMDAxOTc0IDAwMDAwIG4gCjAwMDAwMDA4NjYgMDAwMDAgbiAKMDAwMDAwMjE4NSAwMDAwMCBuIAowMDAwMDAxMTA3IDAwMDAwIG4gCjAwMDAwMDIzOTYgMDAwMDAgbiAKMDAwMDAwMjQ3OCAwMDAwMCBuIAowMDAwMDAyNjg4IDAwMDAwIG4gCjAwMDAwMDI3NTEgMDAwMDAgbiAKMDAwMDAxMjgwMiAwMDAwMCBuIAowMDAwMDEzMDM4IDAwMDAwIG4gCjAwMDAwMTMzMTcgMDAwMDAgbiAKdHJhaWxlcgo8PC9TaXplIDIxCi9Sb290IDE2IDAgUgovSW5mbyAxIDAgUj4+CnN0YXJ0eHJlZgoxMzc5MAolJUVPRg==\",\n        \"info\": \"test\"\n    },\n    \"signers\": [\n        {\n            \"signer_name\": \"Amal Roy\",\n            \"signer_email\": \"amal@zoop.one\",\n            \"signer_city\": \"Pune\",\n            \"signer_purpose\": \"Pdf viewer test\",\n            \"sign_coordinates\": [\n                {\n                    \"page_num\": 0,\n                    \"x_coord\": 400,\n                    \"y_coord\": 550\n                }\n            ]\n        }\n    ],\n    \"estamp_required\":true,\n    \"estamp_id\":\"66a111f7f45cc3fab91b61e4\",\n    \"estamp_version\":\"v2\",\n    \"txn_expiry_min\": \"10080\", //7days\n    \"white_label\": \"Y\",\n    \"response_url\": \"https://eo59jaa8ahywrhe.m.pipedream.net\",\n    \"esign_type\": \"AADHAAR\",\n    \"email_template\": {\n        \"org_name\": \"Zoop One\"\n    }\n    }","options":{"raw":{"language":"json"}}},"url":"{{eSignSDKBaseUrl}}/v5/init"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"x-ratelimit-limit","value":"20"},{"key":"x-ratelimit-remaining","value":"19"},{"key":"date","value":"Wed, 24 Jul 2024 14:40:35 GMT"},{"key":"x-ratelimit-reset","value":"1721832037"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"\"qfn023gusac8\""},{"key":"content-length","value":"440"},{"key":"vary","value":"Accept-Encoding"},{"key":"x-envoy-upstream-service-time","value":"968"},{"key":"server","value":"istio-envoy"}],"cookie":[],"responseTime":null,"body":"{\n    \"requests\": [\n        {\n            \"request_id\": \"66a11263f45cc3fab91b6206\",\n            \"signer_name\": \"<signer_name>\",\n            \"signer_email\": \"<signer_email>\",\n            \"signing_url\": \"https://esign.zoop.one/v5/viewer/66a11263f45cc3fab91b6206?show_download_btn=Y&mode=REDIRECT&v=4.2.0\"\n        }\n    ],\n    \"group_id\": \"66a11263f45cc3fab91b6204\",\n    \"success\": true,\n    \"webhook_security_key\": \"fd1f4dd8-e263-4d85-8524-ac173fe9fd6b\",\n    \"request_timestamp\": \"2024-07-24T14:40:35.080+00:00\",\n    \"expires_at\": \"2024-07-31T14:40:35.080+00:00\"\n}"}],"_postman_id":"fa472cdb-fbcb-4b2f-8683-1f59bdea3364"},{"name":"eSign and eStamp with Template","event":[{"listen":"test","script":{"id":"21ae36c3-975d-4d91-96ea-d432d04133f7","exec":[""],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"64f38718-3554-43d2-b1a2-a148f69448d2","exec":[""],"type":"text/javascript","packages":{}}}],"id":"bb0a311a-f564-4abe-bb67-481a8b6f4cc7","protocolProfileBehavior":{"disabledSystemHeaders":{"accept-encoding":true,"connection":true},"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"app-id","value":"{{app-id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"template_id\": \"68384462c427c3e64ec9c255\",\n    // All the template data values should be of type string\n    \"template_data\": [\n        {\n            \"borrower\": \"John Doe\",\n            \"per_address\": \"742 Evergreen Terrace\",\n            \"curr_address\": \"Tower B, Pancheel Business Park\",\n            \"borrower_phone_no\": \"9876543210\",\n            \"borrower_pan\": \"ABCDE1234F\",\n            \"execution_date\": \"2025-04-15\",\n            \"loan_amount_sanctioned\": \"75000\",\n            \"interest_rate\": \"10%\",\n            \"tenure_of_loan\": \"24\",\n            \"total_interest_amount\": \"9000\",\n            \"emi\": \"3450\",\n            \"stamp_duty_amount\": \"1500\",\n            \"annual_percentage_rate\": \"10%\",\n            \"sum_of_all_emi\": \"82800\",\n            \"processing_fee\": \"2000\",\n            \"gst\": \"18%\",\n            \"address_for_notices\": \"221B Baker Street, London\",\n            \"emi_due_date_in_months\": \"12\",\n            \"borrower_email\": \"user123@example.com\",\n            \"borrower_contact_no\": \"9988776655\",\n            \"borrower_address\": \"Pune, Maharashtra\",\n            \"borrower_full_name\": \"Amit Sharma\",\n            \"auth_date\": \"2025-03-01\",\n            \"lender\": \"Zoop Finance Ltd.\",\n            \"loan_amount\": \"75000\",\n            \"loan_no\": \"LN202501\",\n            \"due_date\": \"2025-05-01\",\n            \"borrower_name_eng\": \"Amit Sharma\",\n            \"borrower_name_hindi\": \"Amit Sharma\",\n            \"name_of_borrower\": \"Amit Sharma\",\n            \"loan_ref_no\": \"LN659301\",\n            \"loan_amt\": \"75000\",\n            \"pre_emi\": \"1000\",\n            \"disbursal_amount\": \"74000\",\n            \"purpose\": \"Education\",\n            \"rate_of_interest_per\": \"10%\",\n            \"tenure\": \"24\",\n            \"emi_amount\": \"3450\",\n            \"first_emi_date\": \"2025-06-01\",\n            \"emi_due_date\": \"2025-07-01\",\n            \"mode_of_loan_payment\": \"Bank Transfer\",\n            \"mode_of_disbursal\": \"NEFT\"\n        }\n    ],\n    \"signers\": [\n        {\n            \"signer_name\": \"Bhargav\",\n            \"signer_email\": \"Bhargav@zoop.one\",\n            \"signer_purpose\": \"test\",\n            \"signer_auth_type\": \"AADHAAR\",\n            \"sign_coordinates\": [\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 1\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 2\n                }\n            ]\n        }\n    ],\n    \"txn_expiry_min\": \"43200\", // 30 days\n    \"white_label\": \"Y\",\n    \"estamp_version\": \"v2\",\n    \"estamp_required\": true,\n    \"estamp_id\": \"<estamp_id>\",\n    \"response_url\": \"https://webhook.site/e9c7509e-631e-4bb2-9cf1-b5a102978ba6\",\n    \"esign_type\": \"MISC\"\n}","options":{"raw":{"language":"json"}}},"url":"{{eSignSDKBaseUrl}}/v5/init","description":"<p><strong>Estamp And Esign Journey</strong></p>\n<p>Once estamp has been procured successfully, you need to pass request_id obtained from estamp init api as estamp_id in this api and estamp_required should be true.</p>\n<p>Case Id and Certificate Number will be added on all pages by default.</p>\n<p>esign-api-url can be</p>\n<ul>\n<li><p><a href=\"https://live.zoop.plus/contract/esign\">https://live.zoop.plus/contract/esign</a>( for production)</p>\n</li>\n<li><p><a href=\"https://live.zoop.plus/contract/esign\">https://test.zoop.plus/contract/esign</a> ( for testing)</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-key"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"000df74c-41d3-4f28-a182-342a6ce21028","id":"000df74c-41d3-4f28-a182-342a6ce21028","name":"Zoop eStamp SDK Documentation","type":"collection"}},"urlObject":{"path":["v5","init"],"host":["{{eSignSDKBaseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"67d1d7f7-b730-4bb5-a45e-6be55d980559","name":"Template - Success Response","originalRequest":{"method":"POST","header":[{"key":"app-id","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"template_id\": \"<template_id>\",\n    // All the template data values should be of type string\n    \"template_data\": [\n        {\n            \"borrower\": \"John Doe\",\n            \"per_address\": \"742 Evergreen Terrace\",\n            \"curr_address\": \"Tower B, Pancheel Business Park\",\n            \"borrower_phone_no\": \"9876543210\",\n            \"borrower_pan\": \"ABCDE1234F\",\n            \"execution_date\": \"2025-04-15\",\n            \"loan_amount_sanctioned\": \"75000\",\n            \"interest_rate\": \"10%\",\n            \"tenure_of_loan\": \"24\",\n            \"total_interest_amount\": \"9000\",\n            \"emi\": \"3450\",\n            \"stamp_duty_amount\": \"1500\",\n            \"annual_percentage_rate\": \"10%\",\n            \"sum_of_all_emi\": \"82800\",\n            \"processing_fee\": \"2000\",\n            \"gst\": \"18%\",\n            \"address_for_notices\": \"221B Baker Street, London\",\n            \"emi_due_date_in_months\": \"12\",\n            \"borrower_email\": \"user123@example.com\",\n            \"borrower_contact_no\": \"9988776655\",\n            \"borrower_address\": \"Pune, Maharashtra\",\n            \"borrower_full_name\": \"Amit Sharma\",\n            \"auth_date\": \"2025-03-01\",\n            \"lender\": \"Zoop Finance Ltd.\",\n            \"loan_amount\": \"75000\",\n            \"loan_no\": \"LN202501\",\n            \"due_date\": \"2025-05-01\",\n            \"borrower_name_eng\": \"Amit Sharma\",\n            \"borrower_name_hindi\": \"Amit Sharma\",\n            \"name_of_borrower\": \"Amit Sharma\",\n            \"loan_ref_no\": \"LN659301\",\n            \"loan_amt\": \"75000\",\n            \"pre_emi\": \"1000\",\n            \"disbursal_amount\": \"74000\",\n            \"purpose\": \"Education\",\n            \"rate_of_interest_per\": \"10%\",\n            \"tenure\": \"24\",\n            \"emi_amount\": \"3450\",\n            \"first_emi_date\": \"2025-06-01\",\n            \"emi_due_date\": \"2025-07-01\",\n            \"mode_of_loan_payment\": \"Bank Transfer\",\n            \"mode_of_disbursal\": \"NEFT\"\n        }\n    ],\n    \"signers\": [\n        {\n            \"signer_name\": \"<signer_name>\",\n            \"signer_email\": \"<signer_email>\",\n            \"signer_purpose\": \"<signer_purpose>\",\n            \"signer_auth_type\": \"AADHAAR\",\n            \"sign_coordinates\": [\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 1\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 2\n                }\n            ]\n        }\n    ],\n    \"txn_expiry_min\": \"43200\", // 30 days\n    \"white_label\": \"Y\",\n    \"estamp_version\": \"v2\",\n    \"estamp_required\": true,\n    \"estamp_id\": \"<estamp_id>\",\n    \"response_url\": \"https://webhook.site/e9c7509e-631e-4bb2-9cf1-b5a102978ba6\",\n    \"esign_type\": \"MISC\"\n}","options":{"raw":{"language":"json"}}},"url":"{{eSignSDKBaseUrl}}/v5/init"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"x-ratelimit-limit","value":"20"},{"key":"x-ratelimit-remaining","value":"19"},{"key":"date","value":"Wed, 24 Jul 2024 14:40:35 GMT"},{"key":"x-ratelimit-reset","value":"1721832037"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"\"qfn023gusac8\""},{"key":"content-length","value":"440"},{"key":"vary","value":"Accept-Encoding"},{"key":"x-envoy-upstream-service-time","value":"968"},{"key":"server","value":"istio-envoy"}],"cookie":[],"responseTime":null,"body":"{\n    \"requests\": [\n        {\n            \"request_id\": \"<request_id>\",\n            \"signer_name\": \"<signer_name>\",\n            \"signer_email\": \"<signer_email>\",\n            \"signing_url\": \"https://esign.zoop.one/v5/viewer/{request_id}?show_download_btn=Y&mode=REDIRECT&v=4.2.0\"\n        }\n    ],\n    \"group_id\": \"<group_id>\",\n    \"success\": true,\n    \"webhook_security_key\": \"<webhook_security_key>\",\n    \"request_timestamp\": \"2024-07-24T14:40:35.080+00:00\",\n    \"expires_at\": \"2024-07-31T14:40:35.080+00:00\"\n}"},{"id":"4db2c88f-312f-43d6-a586-12b0acbe2571","name":"Document - Success Response","originalRequest":{"method":"POST","header":[{"key":"app-id","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"template_id\": \"683850e52bd7b173037cef97\",\n    \"template_data\": [\n        {\n            \"borrower\": \"John Doe\",\n            \"per_address\": \"742 Evergreen Terrace\",\n            \"curr_address\": \"Tower B, Pancheel Business Park\",\n            \"borrower_phone_no\": \"9876543210\",\n            \"borrower_pan\": \"ABCDE1234F\",\n            \"execution_date\": \"2025-04-15\",\n            \"loan_amount_sanctioned\": \"75000\",\n            \"interest_rate\": \"10%\",\n            \"tenure_of_loan\": \"24\",\n            \"total_interest_amount\": \"9000\",\n            \"emi\": \"3450\",\n            \"stamp_duty_amount\": \"1500\",\n            \"annual_percentage_rate\": \"10%\",\n            \"sum_of_all_emi\": \"82800\",\n            \"processing_fee\": \"2000\",\n            \"gst\": \"18%\",\n            \"address_for_notices\": \"221B Baker Street, London\",\n            \"emi_due_date_in_months\": \"12\",\n            \"borrower_email\": \"user123@example.com\",\n            \"borrower_contact_no\": \"9988776655\",\n            \"borrower_address\": \"Pune, Maharashtra\",\n            \"borrower_full_name\": \"Amit Sharma\",\n            \"auth_date\": \"2025-03-01\",\n            \"lender\": \"Zoop Finance Ltd.\",\n            \"loan_amount\": \"75000\",\n            \"loan_no\": \"LN202501\",\n            \"due_date\": \"2025-05-01\",\n            \"borrower_name_eng\": \"Amit Sharma\",\n            \"borrower_name_hindi\": \"Amit Sharma\",\n            \"name_of_borrower\": \"Amit Sharma\",\n            \"loan_ref_no\": \"LN659301\",\n            \"loan_amt\": \"75000\",\n            \"pre_emi\": \"1000\",\n            \"disbursal_amount\": \"74000\",\n            \"purpose\": \"Education\",\n            \"rate_of_interest_per\": \"10%\",\n            \"tenure\": \"24\",\n            \"emi_amount\": \"3450\",\n            \"first_emi_date\": \"2025-06-01\",\n            \"emi_due_date\": \"2025-07-01\",\n            \"mode_of_loan_payment\": \"Bank Transfer\",\n            \"mode_of_disbursal\": \"NEFT\"\n        }\n    ],\n    \"signers\": [\n        {\n            \"signer_name\": \"Souraj\",\n            \"signer_email\": \"souraj@zoop.one\",\n            \"signer_purpose\": \"Agreement Esigning\",\n            \"signer_auth_type\": \"AADHAAR\",\n            \"sign_coordinates\": [\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 1\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 2\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 3\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 4\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 5\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 6\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 7\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 8\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 9\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 10\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 11\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 12\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 13\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 14\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 15\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 16\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 17\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 18\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 19\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 20\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 21\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 22\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 23\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 24\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 25\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 26\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 27\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 28\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 29\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 30\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 31\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 32\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 33\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 34\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 35\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 36\n                },\n                {\n                    \"x_coord\": 105,\n                    \"y_coord\": 200,\n                    \"page_num\": 37\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 38\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 39\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 40\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 41\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 42\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 43\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 44\n                },\n                {\n                    \"x_coord\": 137,\n                    \"y_coord\": 297,\n                    \"page_num\": 45\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 46\n                },\n                {\n                    \"x_coord\": 167,\n                    \"y_coord\": 275,\n                    \"page_num\": 47\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 48\n                }\n            ]\n        }\n    ],\n    \"txn_expiry_min\": \"43200\", // 30 days\n    \"white_label\": \"Y\",\n    // \"estamp_version\": \"v2\",\n    // \"estamp_required\": true,\n    // \"estamp_id\": \"cmbaceqsk008y0s9e76oaaf10\",\n    \"response_url\": \"https://webhook.site/e9c7509e-631e-4bb2-9cf1-b5a102978ba6\",\n    \"esign_type\": \"MISC\"\n}\n","options":{"raw":{"language":"json"}}},"url":"{{eSignSDKBaseUrl}}/v5/init"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"x-ratelimit-limit","value":"20"},{"key":"x-ratelimit-remaining","value":"19"},{"key":"date","value":"Wed, 24 Jul 2024 14:40:35 GMT"},{"key":"x-ratelimit-reset","value":"1721832037"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"\"qfn023gusac8\""},{"key":"content-length","value":"440"},{"key":"vary","value":"Accept-Encoding"},{"key":"x-envoy-upstream-service-time","value":"968"},{"key":"server","value":"istio-envoy"}],"cookie":[],"responseTime":null,"body":"{\n    \"requests\": [\n        {\n            \"request_id\": \"66a11263f45cc3fab91b6206\",\n            \"signer_name\": \"<signer_name>\",\n            \"signer_email\": \"<signer_email>\",\n            \"signing_url\": \"https://esign.zoop.one/v5/viewer/66a11263f45cc3fab91b6206?show_download_btn=Y&mode=REDIRECT&v=4.2.0\"\n        }\n    ],\n    \"group_id\": \"66a11263f45cc3fab91b6204\",\n    \"success\": true,\n    \"webhook_security_key\": \"fd1f4dd8-e263-4d85-8524-ac173fe9fd6b\",\n    \"request_timestamp\": \"2024-07-24T14:40:35.080+00:00\",\n    \"expires_at\": \"2024-07-31T14:40:35.080+00:00\"\n}"},{"id":"111f60f3-1d90-4dff-b88b-38617c64523b","name":"Invalid eStamp error response","originalRequest":{"method":"POST","header":[{"key":"app-id","value":"{{app-id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"template_id\": \"<template_id>\",\n    // All the template data values should be of type string\n    \"template_data\": [\n        {\n            \"borrower\": \"John Doe\",\n            \"per_address\": \"742 Evergreen Terrace\",\n            \"curr_address\": \"Tower B, Pancheel Business Park\",\n            \"borrower_phone_no\": \"9876543210\",\n            \"borrower_pan\": \"ABCDE1234F\",\n            \"execution_date\": \"2025-04-15\",\n            \"loan_amount_sanctioned\": \"75000\",\n            \"interest_rate\": \"10%\",\n            \"tenure_of_loan\": \"24\",\n            \"total_interest_amount\": \"9000\",\n            \"emi\": \"3450\",\n            \"stamp_duty_amount\": \"1500\",\n            \"annual_percentage_rate\": \"10%\",\n            \"sum_of_all_emi\": \"82800\",\n            \"processing_fee\": \"2000\",\n            \"gst\": \"18%\",\n            \"address_for_notices\": \"221B Baker Street, London\",\n            \"emi_due_date_in_months\": \"12\",\n            \"borrower_email\": \"user123@example.com\",\n            \"borrower_contact_no\": \"9988776655\",\n            \"borrower_address\": \"Pune, Maharashtra\",\n            \"borrower_full_name\": \"Amit Sharma\",\n            \"auth_date\": \"2025-03-01\",\n            \"lender\": \"Zoop Finance Ltd.\",\n            \"loan_amount\": \"75000\",\n            \"loan_no\": \"LN202501\",\n            \"due_date\": \"2025-05-01\",\n            \"borrower_name_eng\": \"Amit Sharma\",\n            \"borrower_name_hindi\": \"Amit Sharma\",\n            \"name_of_borrower\": \"Amit Sharma\",\n            \"loan_ref_no\": \"LN659301\",\n            \"loan_amt\": \"75000\",\n            \"pre_emi\": \"1000\",\n            \"disbursal_amount\": \"74000\",\n            \"purpose\": \"Education\",\n            \"rate_of_interest_per\": \"10%\",\n            \"tenure\": \"24\",\n            \"emi_amount\": \"3450\",\n            \"first_emi_date\": \"2025-06-01\",\n            \"emi_due_date\": \"2025-07-01\",\n            \"mode_of_loan_payment\": \"Bank Transfer\",\n            \"mode_of_disbursal\": \"NEFT\"\n        }\n    ],\n    \"signers\": [\n        {\n            \"signer_name\": \"<signer_name>\",\n            \"signer_email\": \"<signer_email>\",\n            \"signer_purpose\": \"<signer_purpose>\",\n            \"signer_auth_type\": \"AADHAAR\",\n            \"sign_coordinates\": [\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 1\n                },\n                {\n                    \"x_coord\": 54,\n                    \"y_coord\": 100,\n                    \"page_num\": 2\n                }\n            ]\n        }\n    ],\n    \"txn_expiry_min\": \"43200\", // 30 days\n    \"white_label\": \"Y\",\n    \"estamp_version\": \"v2\",\n    \"estamp_required\": true,\n    \"estamp_id\": \"<estamp_id>\",\n    \"response_url\": \"https://webhook.site/e9c7509e-631e-4bb2-9cf1-b5a102978ba6\",\n    \"esign_type\": \"MISC\"\n}","options":{"raw":{"language":"json"}}},"url":"{{eSignSDKBaseUrl}}/v5/init"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"x-ratelimit-limit","value":"20"},{"key":"x-ratelimit-remaining","value":"19"},{"key":"date","value":"Fri, 30 May 2025 08:28:47 GMT"},{"key":"x-ratelimit-reset","value":"1748593729"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"\"174k2gjwx9f4j\""},{"key":"content-length","value":"163"},{"key":"vary","value":"Accept-Encoding"},{"key":"x-envoy-upstream-service-time","value":"465"},{"key":"server","value":"istio-envoy"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"response_code\": \"106\",\n    \"response_message\": \"Request Body Fields Validation Failed\",\n    \"metadata\": {\n        \"billable\": \"N\",\n        \"reason_message\": \"Invalid estamp_id\"\n    }\n}"}],"_postman_id":"bb0a311a-f564-4abe-bb67-481a8b6f4cc7"},{"name":"Create a estamp order with attachment","id":"10072386-e3dc-49c5-9694-20d63cc004cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"app-id","value":"{{app-id}}","type":"text"},{"key":"api-key","value":"{{api-key}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"stateCode","value":"GJ","type":"text"},{"key":"stampType","value":"ESTAMP","type":"text"},{"key":"stampDutyAmount","value":"100","type":"text"},{"key":"articleId","value":"1334","type":"text"},{"key":"considerationPrice","value":"500","type":"text"},{"key":"purpose","value":"loan aggrement","type":"text"},{"key":"recipientEmail","value":"jenishasangani@zoop.one","type":"text"},{"key":"firstPartyName","value":"Jenisha","type":"text"},{"key":"secondPartyName","value":"Ravi","type":"text"},{"key":"stampDutyPaidBy","value":"FIRST_PARTY","type":"text"},{"key":"callbackUrl","value":"https://webhook.site/cfd8166f-eeb8-4c8d-a52b-1d210c5e69c1","type":"text","disabled":true},{"key":"file","type":"file","uuid":"d84cff0b-6b45-4f8f-9f16-71fee8cf3300","src":"/Users/jenisha/Downloads/Audit_Trail_Report (1).pdf"}]},"url":"{{eStampSDKBaseUrl}}/v2/contract/init","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-key"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"000df74c-41d3-4f28-a182-342a6ce21028","id":"000df74c-41d3-4f28-a182-342a6ce21028","name":"Zoop eStamp SDK Documentation","type":"collection"}},"urlObject":{"path":["v2","contract","init"],"host":["{{eStampSDKBaseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"ad861b34-bfe7-49c9-b55d-f3ffa297cf66","name":"Success Response","originalRequest":{"method":"POST","header":[{"key":"app-id","value":"{{app-id}}","type":"text"},{"key":"api-key","value":"{{api-key}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"stateCode","value":"GJ","type":"text"},{"key":"stampType","value":"ESTAMP","type":"text"},{"key":"stampDutyAmount","value":"100","type":"text"},{"key":"articleId","value":"1334","type":"text"},{"key":"considerationPrice","value":"500","type":"text"},{"key":"purpose","value":"loan aggrement","type":"text"},{"key":"recipientEmail","value":"jenishasangani@zoop.one","type":"text"},{"key":"firstPartyName","value":"Jenisha","type":"text"},{"key":"secondPartyName","value":"Ravi","type":"text"},{"key":"stampDutyPaidBy","value":"FIRST_PARTY","type":"text"},{"key":"callbackUrl","value":"https://webhook.site/cfd8166f-eeb8-4c8d-a52b-1d210c5e69c1","type":"text"},{"key":"file","type":"file","uuid":"d84cff0b-6b45-4f8f-9f16-71fee8cf3300","src":"/Users/jenisha/Downloads/Audit_Trail_Report (1).pdf"}]},"url":"{{eStampSDKBaseUrl}}/v2/contract/init"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"vary","value":"Origin, Accept-Encoding"},{"key":"access-control-allow-credentials","value":"true"},{"key":"access-control-expose-headers","value":"Upload-Offset,Location,Upload-Length,Tus-Version,Tus-Resumable,Tus-Max-Size,Tus-Extension,Upload-Metadata,Upload-Id"},{"key":"content-security-policy","value":"default-src 'none';script-src 'self';style-src 'self';img-src 'self' data:;font-src 'self';connect-src 'self';form-action 'self';frame-ancestors 'none';object-src 'none';base-uri 'self';script-src-attr 'none';upgrade-insecure-requests"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"origin-agent-cluster","value":"?1"},{"key":"referrer-policy","value":"same-origin"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-download-options","value":"noopen"},{"key":"x-frame-options","value":"DENY"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"105"},{"key":"etag","value":"W/\"69-1f50j/UPhd7UHkYt5qaZ5oVyQiU\""},{"key":"date","value":"Thu, 05 Jun 2025 08:56:02 GMT"},{"key":"x-envoy-upstream-service-time","value":"2835"},{"key":"server","value":"istio-envoy"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Order created with attachment successfully.\",\n    \"data\": {\n        \"orderId\": \"STEST000012\"\n    }\n}"},{"id":"27adc5b6-6641-4edb-80f4-16de0e63735e","name":"Invalid Article Id","originalRequest":{"method":"POST","header":[{"key":"app-id","value":"{{app-id}}","type":"text"},{"key":"api-key","value":"{{api-key}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"stateCode","value":"GJ","type":"text"},{"key":"stampType","value":"ESTAMP","type":"text"},{"key":"stampDutyAmount","value":"100","type":"text"},{"key":"articleId","value":"1331","type":"text"},{"key":"considerationPrice","value":"500","type":"text"},{"key":"purpose","value":"loan aggrement","type":"text"},{"key":"recipientEmail","value":"jenishasangani@zoop.one","type":"text"},{"key":"firstPartyName","value":"Jenisha","type":"text"},{"key":"secondPartyName","value":"Ravi","type":"text"},{"key":"stampDutyPaidBy","value":"FIRST_PARTY","type":"text"},{"key":"callbackUrl","value":"https://webhook.site/cfd8166f-eeb8-4c8d-a52b-1d210c5e69c1","type":"text","disabled":true},{"key":"file","type":"file","uuid":"d84cff0b-6b45-4f8f-9f16-71fee8cf3300","src":"/Users/jenisha/Downloads/Audit_Trail_Report (1).pdf","disabled":true}]},"url":"{{eStampSDKBaseUrl}}/v2/contract/init"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"vary","value":"Origin, Accept-Encoding"},{"key":"access-control-allow-credentials","value":"true"},{"key":"access-control-expose-headers","value":"Upload-Offset,Location,Upload-Length,Tus-Version,Tus-Resumable,Tus-Max-Size,Tus-Extension,Upload-Metadata,Upload-Id"},{"key":"content-security-policy","value":"default-src 'none';script-src 'self';style-src 'self';img-src 'self' data:;font-src 'self';connect-src 'self';form-action 'self';frame-ancestors 'none';object-src 'none';base-uri 'self';script-src-attr 'none';upgrade-insecure-requests"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"origin-agent-cluster","value":"?1"},{"key":"referrer-policy","value":"same-origin"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-download-options","value":"noopen"},{"key":"x-frame-options","value":"DENY"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"66"},{"key":"etag","value":"W/\"42-7m/zQGrqiVG0BHIjNAlX258Mo90\""},{"key":"date","value":"Thu, 05 Jun 2025 08:57:22 GMT"},{"key":"x-envoy-upstream-service-time","value":"143"},{"key":"server","value":"istio-envoy"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"message\": \"Article not found for state code: GJ\"\n}"},{"id":"3d28ce52-1561-40b8-b64e-8b36c0b944b5","name":"Create a estamp order with attachment","originalRequest":{"method":"POST","header":[{"key":"app-id","value":"{{app-id}}","type":"text"},{"key":"api-key","value":"{{api-key}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"stateCode","value":"GJ","type":"text"},{"key":"stampType","value":"ESTAMP","type":"text"},{"key":"stampDutyAmount","value":"100","type":"text"},{"key":"articleId","value":"1334","type":"text"},{"key":"considerationPrice","value":"500","type":"text"},{"key":"purpose","value":"loan aggrement","type":"text"},{"key":"firstPartyName","value":"Jenisha","type":"text"},{"key":"secondPartyName","value":"Ravi","type":"text"},{"key":"stampDutyPaidBy","value":"FIRST_PARTY","type":"text"}]},"url":"{{eStampSDKBaseUrl}}/v2/contract/init"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"vary","value":"Origin, Accept-Encoding"},{"key":"access-control-allow-credentials","value":"true"},{"key":"access-control-expose-headers","value":"Upload-Offset,Location,Upload-Length,Tus-Version,Tus-Resumable,Tus-Max-Size,Tus-Extension,Upload-Metadata,Upload-Id"},{"key":"content-security-policy","value":"default-src 'none';script-src 'self';style-src 'self';img-src 'self' data:;font-src 'self';connect-src 'self';form-action 'self';frame-ancestors 'none';object-src 'none';base-uri 'self';script-src-attr 'none';upgrade-insecure-requests"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"origin-agent-cluster","value":"?1"},{"key":"referrer-policy","value":"same-origin"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-download-options","value":"noopen"},{"key":"x-frame-options","value":"DENY"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"105"},{"key":"etag","value":"W/\"69-Q1dtcYtLIcdkgr2NpihDCMwk2ps\""},{"key":"date","value":"Thu, 05 Jun 2025 08:58:11 GMT"},{"key":"x-envoy-upstream-service-time","value":"2956"},{"key":"server","value":"istio-envoy"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Order created with attachment successfully.\",\n    \"data\": {\n        \"orderId\": \"STEST000014\"\n    }\n}"},{"id":"533350f6-3087-4ef4-b90f-19f5f796e283","name":"Order with webhook","originalRequest":{"method":"POST","header":[{"key":"app-id","value":"{{app-id}}","type":"text"},{"key":"api-key","value":"{{api-key}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"stateCode","value":"GJ","type":"text"},{"key":"stampType","value":"ESTAMP","type":"text"},{"key":"stampDutyAmount","value":"100","type":"text"},{"key":"articleId","value":"1334","type":"text"},{"key":"considerationPrice","value":"500","type":"text"},{"key":"purpose","value":"loan aggrement","type":"text"},{"key":"firstPartyName","value":"Jenisha","type":"text"},{"key":"secondPartyName","value":"Ravi","type":"text"},{"key":"stampDutyPaidBy","value":"FIRST_PARTY","type":"text"},{"key":"callbackUrl","value":"https://webhook.site/cfd8166f-eeb8-4c8d-a52b-1d210c5e69c1","type":"text"}]},"url":"{{eStampSDKBaseUrl}}/v2/contract/init"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"vary","value":"Origin, Accept-Encoding"},{"key":"access-control-allow-credentials","value":"true"},{"key":"access-control-expose-headers","value":"Upload-Offset,Location,Upload-Length,Tus-Version,Tus-Resumable,Tus-Max-Size,Tus-Extension,Upload-Metadata,Upload-Id"},{"key":"content-security-policy","value":"default-src 'none';script-src 'self';style-src 'self';img-src 'self' data:;font-src 'self';connect-src 'self';form-action 'self';frame-ancestors 'none';object-src 'none';base-uri 'self';script-src-attr 'none';upgrade-insecure-requests"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"origin-agent-cluster","value":"?1"},{"key":"referrer-policy","value":"same-origin"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-download-options","value":"noopen"},{"key":"x-frame-options","value":"DENY"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"105"},{"key":"etag","value":"W/\"69-DKS9qd0ilCTDch9Ll0YzAkyYu04\""},{"key":"date","value":"Thu, 05 Jun 2025 09:02:42 GMT"},{"key":"x-envoy-upstream-service-time","value":"4672"},{"key":"server","value":"istio-envoy"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Order created with attachment successfully.\",\n    \"data\": {\n        \"orderId\": \"STEST000015\"\n    }\n}"}],"_postman_id":"10072386-e3dc-49c5-9694-20d63cc004cf"},{"name":"Templates+Misc Esign Copy","event":[{"listen":"test","script":{"id":"af00e5fa-c7ec-4a2f-b1c0-420f04bfd773","exec":["pm.test(\"Check the active environment\", () => {","pm.expect(pm.environment.name).to.be.oneOf([\"Product V1 Staging\",\"Product V1 Development\", \"Zoop-production\"]);","});","","pm.test(\"Status code should be 200\", function () {","pm.response.to.have.status(200);","});","","pm.test(\"Group id should not be null\", function () {","var jsonData = pm.response.json();","pm.expect(jsonData.group_id).to.not.eql(null)","});","pm.test(\"Request id should not be null\", function () {","var jsonData = pm.response.json();","pm.expect(jsonData.request_id).to.not.eql(null)","});","","pm.test(\"Success should have 'true' \", function () {","var jsonData = pm.response.json();","pm.expect(jsonData.success).to.eql(true);","});","pm.test(\"Signer name should be present\",function()","{","var jsonData = pm.response.json();","pm.expect(jsonData.signer_email).to.not.eql(null)","});","","","pm.test(\"Signer email should be present\",function()","{","var jsonData = pm.response.json();","pm.expect(jsonData.signer_email).to.not.eql(null)","});","","pm.test(\"Successful POST request\", function () {","pm.expect(pm.response.code).to.be.oneOf([200, 201]);","});","","pm.test(\"Response should have 'requests' property as an array\", function() {","  var jsonData = pm.response.json();","  pm.expect(jsonData).to.have.property('requests').that.is.an('array');","});","","pm.test(\"Each'requests' should have 'request_id', 'signer_name', and 'signer_email'\", function() {","  var jsonData = pm.response.json();","  jsonData.requests.forEach(function(request) {","    pm.expect(request).to.have.property('request_id').that.is.a('string');","    pm.expect(request).to.have.property('signer_name').that.is.a('string');","    pm.expect(request).to.have.property('signer_email').that.is.a('string');","  });","});","","pm.test(\"Response body should have 'group_id', 'success', 'webhook_security_key', 'request_timestamp', and 'expires_at'\", function() {","  var jsonData = pm.response.json();","  pm.expect(jsonData).to.have.property('group_id').that.is.a('string');","  pm.expect(jsonData).to.have.property('success').that.is.a('boolean');","  pm.expect(jsonData).to.have.property('webhook_security_key').that.is.a('string');","  pm.expect(jsonData).to.have.property('request_timestamp').that.is.a('string');","  pm.expect(jsonData).to.have.property('expires_at').that.is.a('string');","});",""],"type":"text/javascript","packages":{}}}],"id":"ac8a91e5-0cae-4a35-937b-a4cabcebfee6","protocolProfileBehavior":{"disabledSystemHeaders":{"accept-encoding":true,"connection":true},"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"app-id","value":"{{app-id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"document\": {\n        \"name\": \"Agreement_Esigning.pdf\"\n    },\n    \"signers\": [\n        {\n            \"signer_name\": \"Amal Roy\",\n            \"signer_email\": \"amal@zoop.one\",\n            \"signer_phone_number\": \"919074866407\",\n            \"signer_city\": \"Pune\",\n            \"signer_purpose\": \"Pdf viewer test\",\n            \"signer_auth_type\": \"AADHAAR\", //\"AADHAAR,WHATSAPP,AUTO_DSC\"\n            \"sign_coordinates\": [\n                {\n                    \"page_num\": 1,\n                    \"x_coord\": 100,\n                    \"y_coord\": 550\n                }\n            ]\n        }\n    ],\n    \"template_id\": \"6825ec593b1e1623eb9efda2\",\n    \"template_data\": [\n        {\n            \"name\": \"Souraj\",\n            \"date_of_birth\": \"16th April 1990\",\n            \"address\": \"Pimpri Chinchwad,Pune\",\n            \"phone_number\": \"7205044629\",\n            \"email\": \"souraj@gmail.com\"\n        }\n    ],\n    \"txn_expiry_min\": \"10080\",\n    \"white_label\": \"Y\",\n    \"response_url\": \"https://eoofncgf6c75wi8.m.pipedream.net\",\n    \"esign_type\": \"MISC\",\n    \"signing_type\": \"SEQUENTIAL\",\n    \"send_invite\": true,\n    \"email_template\": {\n        \"org_name\": \"Zoop\"\n    },\n    \"whatsapp_template\": {\n        \"org_name\": \"ZOOP\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{eSignSDKBaseUrl}}/v5/init","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-key"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"000df74c-41d3-4f28-a182-342a6ce21028","id":"000df74c-41d3-4f28-a182-342a6ce21028","name":"Zoop eStamp SDK Documentation","type":"collection"}},"urlObject":{"path":["v5","init"],"host":["{{eSignSDKBaseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ac8a91e5-0cae-4a35-937b-a4cabcebfee6"}],"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-key"},{"key":"value","value":"<value>"}]}},"event":[{"listen":"prerequest","script":{"id":"b9afcc80-3574-4b15-b66d-d3fa487b3309","type":"text/javascript","packages":{},"requests":{},"exec":[""]}},{"listen":"test","script":{"id":"5ac9aed6-c7f3-4e1d-835e-885190ae94cc","type":"text/javascript","packages":{},"requests":{},"exec":[""]}}],"variable":[{"key":"eStampSDKBaseUrl","value":"https://live.zoop.plus/contract/estamp","disabled":true},{"key":"app-id","value":"","disabled":true},{"key":"api-key","value":"","disabled":true},{"key":"eStampTestSDKBaseUrl","value":"https://test.zoop.plus/contract/estamp/","disabled":true},{"key":"test-app-id","value":"","disabled":true},{"key":"test-api-key","value":"","disabled":true},{"key":"eSignSDKBaseUrl","value":"https://live.zoop.plus/contract/esign","disabled":true}]}