{"info":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","description":"<html><head></head><body><h1 id=\"getting-started\">Getting Started</h1>\n<p>Welcome to the <strong>Doxi Sign API</strong>!</p>\n<p>This guide explains how to authenticate and use key endpoints like creating flows and using templates.<br>Swagger: <a href=\"https://doxi-sign.com/api/swagger\">https://doxi-sign.com/api/swagger</a></p>\n<p>OpenAPI: <a href=\"https://doxi-sign.com/api/swagger/v6/swagger.json\">https://doxi-sign.com/api/swagger/v6/swagger.json</a></p>\n<hr>\n<h2 id=\"get-access-token-login\">Get Access Token (Login)</h2>\n<p>All API requests require a valid access token.</p>\n<h3 id=\"token-endpoint-format\">Token Endpoint Format</h3>\n<p>POST <a href=\"https://login.doxi-sign.com/realms/%7Btenant%7D/protocol/openid-connect/token\">https://login.doxi-sign.com/auth/realms/{tenant}/protocol/openid-connect/token</a></p>\n<blockquote>\n<p>Replace <code>{tenant}</code> with your actual company name.<br>For example, if your Doxi URL is <code>https://doxi-sign.com/mycompany</code>, then:<br>POST <a href=\"https://login.doxi-sign.com/realms/mycompany/protocol/openid-connect/token\">https://login.doxi-sign.com/auth/realms/mycompany/protocol/openid-connect/token</a> </p>\n</blockquote>\n<h3 id=\"headers\">Headers</h3>\n<h3 id=\"body-parameters\">Body Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>grant_type</td>\n<td>password</td>\n</tr>\n<tr>\n<td>client_id</td>\n<td>doxi</td>\n</tr>\n<tr>\n<td>username</td>\n<td><a href=\"https://mailto:your@email.com\">your@email.com</a></td>\n</tr>\n<tr>\n<td>password</td>\n<td>your_password</td>\n</tr>\n<tr>\n<td>scope</td>\n<td>openid</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p>Only <code>username</code>, <code>password</code>, and <code>{tenant}</code> need to be changed.<br><code>client_id</code> is always <code>doxi</code>. </p>\n</blockquote>\n<h3 id=\"sample-response\">Sample Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"access_token\": \"eyJhbGciOiJSUzI1NiIsInR5cCI6Ikp...\",\n  \"expires_in\": 300,\n  \"refresh_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6Ikp...\",\n  \"token_type\": \"Bearer\"\n}\n\n</code></pre>\n<h2 id=\"required-headers-for-all-api-calls\">Required Headers for All API Calls</h2>\n<p>Every request to the Doxi API must include the following headers:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td><code>Bearer {access_token}</code> – the token obtained from the login step</td>\n</tr>\n<tr>\n<td>X-Tenant</td>\n<td>Your tenant name (e.g., <code>mycompany</code>)</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example\">Example:</h3>\n<p>Authorization: {{vault:bearer-token}}<br>X-Tenant: mycompany</p>\n<blockquote>\n<p>Your tenant name appears in your Doxi URL:<br>If your portal is <code>https://doxi-sign.com/mycompany</code>, your <code>X-Tenant</code> is <code>mycompany</code>. </p>\n</blockquote>\n<h2 id=\"refresh-token\">Refresh Token</h2>\n<p>When your access token expires, you can use the <code>refresh_token</code> to obtain a new access token without logging in again.</p>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p>POST <a href=\"https://login.doxi-sign.com/realms/%7Btenant%7D/protocol/openid-connect/token\">https://login.doxi-sign.com/realms/{tenant}/protocol/openid-connect/token</a></p>\n<blockquote>\n<p>Replace <code>{tenant}</code> with your actual tenant name (e.g., <code>mycompany</code>). </p>\n</blockquote>\n<h3 id=\"headers-1\">Headers</h3>\n<h3 id=\"body-parameters-1\">Body Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>grant_type</td>\n<td>refresh_token</td>\n</tr>\n<tr>\n<td>client_id</td>\n<td>doxi</td>\n</tr>\n<tr>\n<td>refresh_token</td>\n<td>your_refresh_token</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"sample-request\">Sample Request</h3>\n<p>POST <a href=\"https://login.doxi-sign.com/realms/mycompany/protocol/openid-connect/token\">https://login.doxi-sign.com/realms/mycompany/protocol/openid-connect/token</a><br>Content-Type: application/x-www-form-urlencoded</p>\n<p>grant_type=refresh_token&amp;<br>client_id=doxi&amp;<br>refresh_token=eyJhbGciOiJIUzI1NiIsInR5cCI6Ikp...</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"access_token\": \"new-access-token\",\n  \"refresh_token\": \"new-refresh-token\",\n  \"expires_in\": 300,\n  \"token_type\": \"Bearer\"\n}\n\n</code></pre>\n<p>Make sure to update the Authorization header in future API calls with the new access_token</p>\n<h2 id=\"create-a-new-flow\">Create a New Flow</h2>\n<p>This method creates a signature flow in the Doxi system by uploading a PDF document and defining the process using a JSON payload.</p>\n<hr>\n<h3 id=\"endpoint-1\">Endpoint</h3>\n<p>POST <a href=\"https://doxi-sign.com/api/ex/flow\">https://doxi-sign.com/api/v6/flow</a></p>\n<hr>\n<h3 id=\"required-headers\">Required Headers</h3>\n<p>X-Tenant: mycompany<br>Content-Type:</p>\n<hr>\n<h3 id=\"body-parameters-multipartform-data\">Body Parameters (multipart/form-data)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>File</code></td>\n<td>File (PDF)</td>\n<td>The PDF document to be signed, uploaded as binary stream</td>\n</tr>\n<tr>\n<td><code>CreateFlowJsonRequest</code></td>\n<td>String (JSON)</td>\n<td>The full flow configuration in JSON format</td>\n</tr>\n</tbody>\n</table>\n</div><hr>\n<h3 id=\"example-request\">Example Request</h3>\n<p><strong>Form Data Fields:</strong></p>\n<ul>\n<li><p><code>File</code>: Upload the actual PDF file (<code>application/pdf</code>)</p>\n</li>\n<li><p><code>CreateFlowJsonRequest</code>: Paste this JSON string:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"DocumentFileName\": \"API Example.pdf\",\n  \"SenderKey\": {\n    \"Key\": \"someUser@SomeDomain.com\",\n    \"Type\": 1\n  },\n  \"Description\": \"API Example test\",\n  \"FlowElements\": [\n    {\n      \"SignerKey\": {\n        \"Key\": \"someUser@SomeDomain.com\",\n        \"Type\": 1\n      },\n      \"ElementType\": 0,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n            \"Top\": 440.2,\n            \"Left\": 62.0,\n            \"Width\": 78.8,\n            \"Height\": 37.5\n        }\n    }\n  ],\n  \"Recipients\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"david@doxi.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"david@doxi.com\",\n      \"FirstName\": \"David\",\n      \"LastName\": \"White\"\n    }\n  ],\n  \"CustomFields\": [\n    {\n      \"Key\": \"SomeInnerSystemIdNumber\",\n      \"Value\": \"12345\"\n    }\n  ],\n  \"Users\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"someUser@SomeDomain.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"someUser@SomeDomain.com\",\n      \"FirstName\": \"Marty\",\n      \"LastName\": \"Braun\",\n      \"SmsPhoneNumber\": \"0501234567\",\n      \"ForceApprovalOnSignature\": false,\n      \"PersonalMessage\": \"test 123\"\n    }\n  ]\n}\n\n</code></pre>\n<p>The CreateFlowJsonRequest must be a string field containing valid JSON, not a nested object.</p>\n<img src=\"https://content.pstmn.io/3759867e-b364-4eb5-887c-1d12bc9ce1de/Y3JlYXRlIGZsb3cuSlBH\" width=\"452\" height=\"435\">\n\n<h3 id=\"🧠-field-explanations\">🧠 Field Explanations</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>DocumentFileName</code></td>\n<td>The display name of the PDF document that will appear in the signing process.</td>\n</tr>\n<tr>\n<td><code>SenderKey</code></td>\n<td>Identifies the user who initiated the signing process. This user receives the final signed document. It includes:  <br>• <code>Key</code>: usually the sender's email  <br>• <code>Type</code>: key type (1 = Email)</td>\n</tr>\n<tr>\n<td><code>Description</code></td>\n<td>A short message that describes the purpose of the signing flow. Shown to signers in emails and signing screens.</td>\n</tr>\n<tr>\n<td><code>FlowElements</code></td>\n<td>An array of field definitions (elements) that need to be filled during the signing process. Each element includes:  <br>• <code>SignerKey</code>: who must fill the element  <br>• <code>ElementType</code>: type of field (e.g., signature, checkbox, text)  <br>• <code>ElementSubType</code>: further categorization (optional)  <br>• <code>PageNumber</code>: which page of the document  <br>• <code>Position</code>: coordinates and size (Top, Left, Width, Height)</td>\n</tr>\n<tr>\n<td><code>Recipients</code></td>\n<td>A list of users who will receive email notifications when the flow is signed or rejected. These users are not signers.</td>\n</tr>\n<tr>\n<td><code>CustomFields</code></td>\n<td>Optional metadata fields (key-value pairs) attached to the flow. Useful for connecting the flow to internal system IDs or business context.</td>\n</tr>\n<tr>\n<td><code>Users</code></td>\n<td>List of signers involved in the flow. Each user must have at least an email or phone number.  <br>Additional properties include:  <br>• <code>SmsPhoneNumber</code>: if SMS is used  <br>• <code>ForceApprovalOnSignature</code>: forces confirmation after signature  <br>• <code>PersonalMessage</code>: custom message sent to the signer</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"pro-tip-reverse-engineer-flow-configuration\">Pro Tip: Reverse-Engineer Flow Configuration</h3>\n<p>To determine the exact <strong>element positions</strong>, <strong>field types</strong>, and all required parameters for creating a signing flow via the API, it's recommended to first build a sample process using the <strong>Doxi web interface</strong>.</p>\n<p>Once the flow is created manually, you can retrieve its full configuration using the following API:</p>\n<p>GET /ex/flow/{signFlowId}</p>\n<p>This will return all relevant details (including users, elements, field positions, and structure) which you can then reuse to construct the same flow programmatically via the API.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Getting Started","slug":"getting-started"}],"owner":"21971446","collectionId":"e1dba953-786e-4367-89aa-46f0c565ea31","publishedId":"2sBXVk9ofq","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2026-01-28T12:45:52.000Z"},"item":[{"name":"Kits","item":[{"name":"/v6/kits/constant","id":"824632c4-9b95-4bd7-9e22-2a0233aadfb2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"Templates\": [\n    \"2c1a8b73-6c2f-4d1e-9b91-7e3c5f9a2d11\",\n    \"9a4f3e12-8d7c-4b6a-91e2-0c5f6a7b8d90\"\n  ],\n  \"KitDescription\": \"Employment contract signing kit\",\n  \"SenderKey\": {\n    \"Key\": \"sender@example.com\",\n    \"Type\": 1\n  },\n  \"PreliminaryText\": \"Please review and sign the attached documents. Contact HR if you have any questions.\",\n  \"ExternalLinks\": [\n    {\n      \"Description\": \"Company Privacy Policy\",\n      \"Url\": \"https://www.example.com/privacy-policy\"\n    },\n    {\n      \"Description\": \"Employee Handbook\",\n      \"Url\": \"https://www.example.com/employee-handbook\"\n    }\n  ],\n  \"Recipients\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"john.doe@example.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"john.doe@example.com\",\n      \"FirstName\": \"John\",\n      \"LastName\": \"Doe\",\n      \"SmsPhoneNumber\": \"+972501234567\",\n      \"UserPassword\": \"7392\",\n      \"Company\": \"Example Corp\",\n      \"Title\": \"Software Engineer\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/kits/constant","description":"<p>[V6] Create a new constant kit</p>\n<h2 id=\"json-object-description\">JSON object description:</h2>\n<hr />\n<h2 id=\"createconstantkitrequest\">createConstantKitRequest:</h2>\n<h3 id=\"request-containing-constant-kit-configuration-including-kit-description-templates-recipients-preliminary-text-and-external-links\">Request containing constant kit configuration including kit description, templates, recipients, preliminary text, and external links</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Templates</td>\n<td>String[]</td>\n<td>List of template identifiers included in the kit.</td>\n</tr>\n<tr>\n<td>* KitDescription</td>\n<td>String(100)</td>\n<td>The display name of the kit.</td>\n</tr>\n<tr>\n<td>* SenderKey</td>\n<td><em><strong>ParticipantKey</strong></em></td>\n<td>Id of the Sender</td>\n</tr>\n<tr>\n<td>PreliminaryText</td>\n<td>String(1000)</td>\n<td>Optional introductory text displayed to the kit signer in the lobby screen.</td>\n</tr>\n<tr>\n<td>ExternalLinks</td>\n<td><em><strong>ExExternalLink[]</strong></em></td>\n<td>Optional collection of related external links (for integrations or metadata).</td>\n</tr>\n<tr>\n<td>Recipients</td>\n<td><em><strong>ExUser[]</strong></em></td>\n<td>Optional list of CC recipients associated with the kit.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exuser\">ExUser:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* UserKey</td>\n<td><em><strong>ParticipantKey</strong></em></td>\n<td>Id of user</td>\n</tr>\n<tr>\n<td>Email</td>\n<td>String(77)</td>\n<td>Email of user</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td>String(50)</td>\n<td>First name of user</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td>String(50)</td>\n<td>Last name of user</td>\n</tr>\n<tr>\n<td>SmsPhoneNumber</td>\n<td>String(80)</td>\n<td>Phone Number of user (if empty, the user will not receive sms)</td>\n</tr>\n<tr>\n<td>UserPassword</td>\n<td>String Validation: Only letters, numbers, and special characters are allowed.</td>\n<td>Password for opening the sign link</td>\n</tr>\n<tr>\n<td>Company</td>\n<td>String(80)</td>\n<td>Company name of user</td>\n</tr>\n<tr>\n<td>Title</td>\n<td>String(80)</td>\n<td>Title of user</td>\n</tr>\n<tr>\n<td>IsDisableAttachment</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Disable/Enable add attachments to the flow</td>\n</tr>\n<tr>\n<td>IsSuspended</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Set status flow to suspended when the signer need to sign</td>\n</tr>\n<tr>\n<td>IsNoDecline</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Disable/Endable Decline option in flow</td>\n</tr>\n<tr>\n<td>NotificationMailsToSend</td>\n<td><em><strong>NotificationMails[]</strong></em></td>\n<td>Types of email notifications</td>\n</tr>\n<tr>\n<td>MinimumSignatures</td>\n<td>Nullable&lt;Int32&gt;</td>\n<td>When the user have optional signature element - Dox validate the minimum signatures in the document</td>\n</tr>\n<tr>\n<td>ForceApprovalOnSignature</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Force approval on signature</td>\n</tr>\n<tr>\n<td>PersonalMessage</td>\n<td>String(300) Validation: The field cannot contain script, vbscript, or style tags.</td>\n<td>Personal message to the signer</td>\n</tr>\n<tr>\n<td>UserPasswordDescription</td>\n<td><em><strong>LanguageKey[]</strong></em></td>\n<td>Display when the user open the linkfor example: \"Please enter your social security number\"LanguageKey is the message with all supported languages</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"languagekey\">LanguageKey:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Language</td>\n<td>String</td>\n<td>language : 'en-US','he-IL'</td>\n</tr>\n<tr>\n<td>Value</td>\n<td>String</td>\n<td>Value of text</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"notificationmails\">NotificationMails[]:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>All</td>\n</tr>\n<tr>\n<td>1</td>\n<td>None</td>\n</tr>\n<tr>\n<td>2</td>\n<td>SignFlow</td>\n</tr>\n<tr>\n<td>3</td>\n<td>FlowApproved</td>\n</tr>\n<tr>\n<td>4</td>\n<td>FlowDeclined</td>\n</tr>\n<tr>\n<td>5</td>\n<td>FlowStart</td>\n</tr>\n<tr>\n<td>6</td>\n<td>ReminderToSignFlow</td>\n</tr>\n<tr>\n<td>7</td>\n<td>FlowStoppedToSender</td>\n</tr>\n<tr>\n<td>8</td>\n<td>FlowStoppedToSigner</td>\n</tr>\n<tr>\n<td>9</td>\n<td>KitCompleted</td>\n</tr>\n<tr>\n<td>10</td>\n<td>SignKit</td>\n</tr>\n<tr>\n<td>11</td>\n<td>ReminderToSignKit</td>\n</tr>\n<tr>\n<td>12</td>\n<td>KitCreated</td>\n</tr>\n<tr>\n<td>13</td>\n<td>FlowExpired</td>\n</tr>\n<tr>\n<td>14</td>\n<td>FlowCCApproved</td>\n</tr>\n<tr>\n<td>15</td>\n<td>FlowCCDeclined</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exexternallink\">ExExternalLink:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Description</td>\n<td>String(100)</td>\n<td></td>\n</tr>\n<tr>\n<td>Url</td>\n<td>String</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"participantkey\">ParticipantKey:</h3>\n<h3 id=\"allow-to-locate-doxi-user-byuseremail1userphone2\">Allow to locate Doxi user by:UserEmail=1UserPhone=2</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* Key</td>\n<td>String</td>\n<td>User search value</td>\n</tr>\n<tr>\n<td>Type</td>\n<td><em><strong>ParticipantKeyType</strong></em></td>\n<td>Search type:UserEmail=1,UserPhone=2</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"participantkeytype\">ParticipantKeyType:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>UserId</td>\n</tr>\n<tr>\n<td>1</td>\n<td>UserEmail</td>\n</tr>\n<tr>\n<td>2</td>\n<td>UserPhone</td>\n</tr>\n<tr>\n<td>3</td>\n<td>UserName</td>\n</tr>\n<tr>\n<td>4</td>\n<td>GroupId</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","kits","constant"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"87dc636d-7f98-44f3-8dc7-ce0ec684a353","name":"Constant kit created successfully","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"Templates\": [\n    \"2c1a8b73-6c2f-4d1e-9b91-7e3c5f9a2d11\",\n    \"9a4f3e12-8d7c-4b6a-91e2-0c5f6a7b8d90\"\n  ],\n  \"KitDescription\": \"Employment contract signing kit\",\n  \"SenderKey\": {\n    \"Key\": \"sender@example.com\",\n    \"Type\": 1\n  },\n  \"PreliminaryText\": \"Please review and sign the attached documents. Contact HR if you have any questions.\",\n  \"ExternalLinks\": [\n    {\n      \"Description\": \"Company Privacy Policy\",\n      \"Url\": \"https://www.example.com/privacy-policy\"\n    },\n    {\n      \"Description\": \"Employee Handbook\",\n      \"Url\": \"https://www.example.com/employee-handbook\"\n    }\n  ],\n  \"Recipients\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"john.doe@example.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"john.doe@example.com\",\n      \"FirstName\": \"John\",\n      \"LastName\": \"Doe\",\n      \"SmsPhoneNumber\": \"+972501234567\",\n      \"UserPassword\": \"7392\",\n      \"Company\": \"Example Corp\",\n      \"Title\": \"Software Engineer\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/kits/constant"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"ConstantKitId\": \"8e763610-f433-4ea9-8bb0-c5ed85b5fc71\"\n}"},{"id":"ce5bc3ad-d26a-4f6a-b467-20424c077215","name":"Invalid request - Missing required fields or invalid kit configuration","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"Templates\": [\n    \"2c1a8b73-6c2f-4d1e-9b91-7e3c5f9a2d11\",\n    \"9a4f3e12-8d7c-4b6a-91e2-0c5f6a7b8d90\"\n  ],\n  \"KitDescription\": \"Employment contract signing kit\",\n  \"SenderKey\": {\n    \"Key\": \"sender@example.com\",\n    \"Type\": 1\n  },\n  \"PreliminaryText\": \"Please review and sign the attached documents. Contact HR if you have any questions.\",\n  \"ExternalLinks\": [\n    {\n      \"Description\": \"Company Privacy Policy\",\n      \"Url\": \"https://www.example.com/privacy-policy\"\n    },\n    {\n      \"Description\": \"Employee Handbook\",\n      \"Url\": \"https://www.example.com/employee-handbook\"\n    }\n  ],\n  \"Recipients\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"john.doe@example.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"john.doe@example.com\",\n      \"FirstName\": \"John\",\n      \"LastName\": \"Doe\",\n      \"SmsPhoneNumber\": \"+972501234567\",\n      \"UserPassword\": \"7392\",\n      \"Company\": \"Example Corp\",\n      \"Title\": \"Software Engineer\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/kits/constant"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"895860ed-87fe-4d8e-bfef-1e03df1c96d1","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"Templates\": [\n    \"2c1a8b73-6c2f-4d1e-9b91-7e3c5f9a2d11\",\n    \"9a4f3e12-8d7c-4b6a-91e2-0c5f6a7b8d90\"\n  ],\n  \"KitDescription\": \"Employment contract signing kit\",\n  \"SenderKey\": {\n    \"Key\": \"sender@example.com\",\n    \"Type\": 1\n  },\n  \"PreliminaryText\": \"Please review and sign the attached documents. Contact HR if you have any questions.\",\n  \"ExternalLinks\": [\n    {\n      \"Description\": \"Company Privacy Policy\",\n      \"Url\": \"https://www.example.com/privacy-policy\"\n    },\n    {\n      \"Description\": \"Employee Handbook\",\n      \"Url\": \"https://www.example.com/employee-handbook\"\n    }\n  ],\n  \"Recipients\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"john.doe@example.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"john.doe@example.com\",\n      \"FirstName\": \"John\",\n      \"LastName\": \"Doe\",\n      \"SmsPhoneNumber\": \"+972501234567\",\n      \"UserPassword\": \"7392\",\n      \"Company\": \"Example Corp\",\n      \"Title\": \"Software Engineer\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/kits/constant"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"b070be91-8ced-4540-b349-cd778576dd37","name":"Kit API license not available","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"Templates\": [\n    \"2c1a8b73-6c2f-4d1e-9b91-7e3c5f9a2d11\",\n    \"9a4f3e12-8d7c-4b6a-91e2-0c5f6a7b8d90\"\n  ],\n  \"KitDescription\": \"Employment contract signing kit\",\n  \"SenderKey\": {\n    \"Key\": \"sender@example.com\",\n    \"Type\": 1\n  },\n  \"PreliminaryText\": \"Please review and sign the attached documents. Contact HR if you have any questions.\",\n  \"ExternalLinks\": [\n    {\n      \"Description\": \"Company Privacy Policy\",\n      \"Url\": \"https://www.example.com/privacy-policy\"\n    },\n    {\n      \"Description\": \"Employee Handbook\",\n      \"Url\": \"https://www.example.com/employee-handbook\"\n    }\n  ],\n  \"Recipients\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"john.doe@example.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"john.doe@example.com\",\n      \"FirstName\": \"John\",\n      \"LastName\": \"Doe\",\n      \"SmsPhoneNumber\": \"+972501234567\",\n      \"UserPassword\": \"7392\",\n      \"Company\": \"Example Corp\",\n      \"Title\": \"Software Engineer\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/kits/constant"},"status":"Payment Required","code":402,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"d7e425f0-a9d5-41df-8666-212651e062af","name":"Internal server error","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"Templates\": [\n    \"2c1a8b73-6c2f-4d1e-9b91-7e3c5f9a2d11\",\n    \"9a4f3e12-8d7c-4b6a-91e2-0c5f6a7b8d90\"\n  ],\n  \"KitDescription\": \"Employment contract signing kit\",\n  \"SenderKey\": {\n    \"Key\": \"sender@example.com\",\n    \"Type\": 1\n  },\n  \"PreliminaryText\": \"Please review and sign the attached documents. Contact HR if you have any questions.\",\n  \"ExternalLinks\": [\n    {\n      \"Description\": \"Company Privacy Policy\",\n      \"Url\": \"https://www.example.com/privacy-policy\"\n    },\n    {\n      \"Description\": \"Employee Handbook\",\n      \"Url\": \"https://www.example.com/employee-handbook\"\n    }\n  ],\n  \"Recipients\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"john.doe@example.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"john.doe@example.com\",\n      \"FirstName\": \"John\",\n      \"LastName\": \"Doe\",\n      \"SmsPhoneNumber\": \"+972501234567\",\n      \"UserPassword\": \"7392\",\n      \"Company\": \"Example Corp\",\n      \"Title\": \"Software Engineer\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/kits/constant"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"824632c4-9b95-4bd7-9e22-2a0233aadfb2"},{"name":"/v6/kits/constant","id":"0520357d-908f-4d5b-bb61-c1b1b8254fc3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Accept","value":"application/json"}],"url":"//v6/kits/constant","description":"<p>[V6] Get all constant kits available to the authenticated user</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","kits","constant"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"74ec0d58-61d3-4d41-94cf-2ae545694fa4","name":"Constant kits list retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"//v6/kits/constant"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"ConstantKits\": [\n    \"1909058d-f59b-42b2-9994-20fbfb154d63\",\n    \"47cc68a6-4a2b-417b-9f64-60f85258ac3d\",\n    \"540116d7-5c56-49fa-a0e7-f96ee343cc24\"\n  ]\n}"},{"id":"b4771709-fef2-42ec-afad-7fcc9d4ac99e","name":"Invalid request parameters","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"//v6/kits/constant"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"21ee2526-0142-4ed9-9ac9-b0f330c6a733","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"//v6/kits/constant"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"14c77ece-f10c-4666-8ad7-8edcb0c9341d","name":"Kit API license not available","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"//v6/kits/constant"},"status":"Payment Required","code":402,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"0e04b6b8-ee12-4005-b5a7-376bf7c7503b","name":"Internal server error","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"//v6/kits/constant"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"0520357d-908f-4d5b-bb61-c1b1b8254fc3"},{"name":"/v6/kits/constant/:kitId","id":"406a6df8-049e-47db-bac9-06111127a8ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"Templates\": [\n    \"2c1a8b73-6c2f-4d1e-9b91-7e3c5f9a2d11\",\n    \"9a4f3e12-8d7c-4b6a-91e2-0c5f6a7b8d90\"\n  ],\n  \"KitDescription\": \"Employment contract signing kit\",\n  \"SenderKey\": {\n    \"Key\": \"sender@example.com\",\n    \"Type\": 1\n  },\n  \"PreliminaryText\": \"Please review and sign the attached documents. Contact HR if you have any questions.\",\n  \"ExternalLinks\": [\n    {\n      \"Description\": \"Company Privacy Policy\",\n      \"Url\": \"https://www.example.com/privacy-policy\"\n    },\n    {\n      \"Description\": \"Employee Handbook\",\n      \"Url\": \"https://www.example.com/employee-handbook\"\n    }\n  ],\n  \"Recipients\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"john.doe@example.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"john.doe@example.com\",\n      \"FirstName\": \"John\",\n      \"LastName\": \"Doe\",\n      \"SmsPhoneNumber\": \"+972501234567\",\n      \"UserPassword\": \"7392\",\n      \"Company\": \"Example Corp\",\n      \"Title\": \"Software Engineer\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/kits/constant/:kitId","description":"<p>[V6] Update an existing constant kit</p>\n<hr />\n<h2 id=\"kitid\">kitId:</h2>\n<h3 id=\"the-unique-identifier-guid-of-the-constant-kit-to-update\">The unique identifier (GUID) of the constant kit to update</h3>\n<hr />\n<h2 id=\"exupdateconstantkitrequest\">exUpdateConstantKitRequest:</h2>\n<h3 id=\"request-containing-updated-constant-kit-configuration-only-provided-fields-will-be-updated\">Request containing updated constant kit configuration. Only provided fields will be updated.</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Templates</td>\n<td>String[]</td>\n<td>List of template identifiers included in the kit.</td>\n</tr>\n<tr>\n<td>* KitDescription</td>\n<td>String(100)</td>\n<td>The display name of the kit.</td>\n</tr>\n<tr>\n<td>* SenderKey</td>\n<td><em><strong>ParticipantKey</strong></em></td>\n<td>Id of the Sender</td>\n</tr>\n<tr>\n<td>PreliminaryText</td>\n<td>String(1000)</td>\n<td>Optional introductory text displayed to the kit signer in the lobby screen.</td>\n</tr>\n<tr>\n<td>ExternalLinks</td>\n<td><em><strong>ExExternalLink[]</strong></em></td>\n<td>Optional collection of related external links (for integrations or metadata).</td>\n</tr>\n<tr>\n<td>Recipients</td>\n<td><em><strong>ExUser[]</strong></em></td>\n<td>Optional list of CC recipients associated with the kit.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exuser\">ExUser:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* UserKey</td>\n<td><em><strong>ParticipantKey</strong></em></td>\n<td>Id of user</td>\n</tr>\n<tr>\n<td>Email</td>\n<td>String(77)</td>\n<td>Email of user</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td>String(50)</td>\n<td>First name of user</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td>String(50)</td>\n<td>Last name of user</td>\n</tr>\n<tr>\n<td>SmsPhoneNumber</td>\n<td>String(80)</td>\n<td>Phone Number of user (if empty, the user will not receive sms)</td>\n</tr>\n<tr>\n<td>UserPassword</td>\n<td>String Validation: Only letters, numbers, and special characters are allowed.</td>\n<td>Password for opening the sign link</td>\n</tr>\n<tr>\n<td>Company</td>\n<td>String(80)</td>\n<td>Company name of user</td>\n</tr>\n<tr>\n<td>Title</td>\n<td>String(80)</td>\n<td>Title of user</td>\n</tr>\n<tr>\n<td>IsDisableAttachment</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Disable/Enable add attachments to the flow</td>\n</tr>\n<tr>\n<td>IsSuspended</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Set status flow to suspended when the signer need to sign</td>\n</tr>\n<tr>\n<td>IsNoDecline</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Disable/Endable Decline option in flow</td>\n</tr>\n<tr>\n<td>NotificationMailsToSend</td>\n<td><em><strong>NotificationMails[]</strong></em></td>\n<td>Types of email notifications</td>\n</tr>\n<tr>\n<td>MinimumSignatures</td>\n<td>Nullable&lt;Int32&gt;</td>\n<td>When the user have optional signature element - Dox validate the minimum signatures in the document</td>\n</tr>\n<tr>\n<td>ForceApprovalOnSignature</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Force approval on signature</td>\n</tr>\n<tr>\n<td>PersonalMessage</td>\n<td>String(300) Validation: The field cannot contain script, vbscript, or style tags.</td>\n<td>Personal message to the signer</td>\n</tr>\n<tr>\n<td>UserPasswordDescription</td>\n<td><em><strong>LanguageKey[]</strong></em></td>\n<td>Display when the user open the linkfor example: \"Please enter your social security number\"LanguageKey is the message with all supported languages</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"languagekey\">LanguageKey:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Language</td>\n<td>String</td>\n<td>language : 'en-US','he-IL'</td>\n</tr>\n<tr>\n<td>Value</td>\n<td>String</td>\n<td>Value of text</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"notificationmails\">NotificationMails[]:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>All</td>\n</tr>\n<tr>\n<td>1</td>\n<td>None</td>\n</tr>\n<tr>\n<td>2</td>\n<td>SignFlow</td>\n</tr>\n<tr>\n<td>3</td>\n<td>FlowApproved</td>\n</tr>\n<tr>\n<td>4</td>\n<td>FlowDeclined</td>\n</tr>\n<tr>\n<td>5</td>\n<td>FlowStart</td>\n</tr>\n<tr>\n<td>6</td>\n<td>ReminderToSignFlow</td>\n</tr>\n<tr>\n<td>7</td>\n<td>FlowStoppedToSender</td>\n</tr>\n<tr>\n<td>8</td>\n<td>FlowStoppedToSigner</td>\n</tr>\n<tr>\n<td>9</td>\n<td>KitCompleted</td>\n</tr>\n<tr>\n<td>10</td>\n<td>SignKit</td>\n</tr>\n<tr>\n<td>11</td>\n<td>ReminderToSignKit</td>\n</tr>\n<tr>\n<td>12</td>\n<td>KitCreated</td>\n</tr>\n<tr>\n<td>13</td>\n<td>FlowExpired</td>\n</tr>\n<tr>\n<td>14</td>\n<td>FlowCCApproved</td>\n</tr>\n<tr>\n<td>15</td>\n<td>FlowCCDeclined</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exexternallink\">ExExternalLink:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Description</td>\n<td>String(100)</td>\n<td></td>\n</tr>\n<tr>\n<td>Url</td>\n<td>String</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"participantkey\">ParticipantKey:</h3>\n<h3 id=\"allow-to-locate-doxi-user-byuseremail1userphone2\">Allow to locate Doxi user by:UserEmail=1UserPhone=2</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* Key</td>\n<td>String</td>\n<td>User search value</td>\n</tr>\n<tr>\n<td>Type</td>\n<td><em><strong>ParticipantKeyType</strong></em></td>\n<td>Search type:UserEmail=1,UserPhone=2</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"participantkeytype\">ParticipantKeyType:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>UserId</td>\n</tr>\n<tr>\n<td>1</td>\n<td>UserEmail</td>\n</tr>\n<tr>\n<td>2</td>\n<td>UserPhone</td>\n</tr>\n<tr>\n<td>3</td>\n<td>UserName</td>\n</tr>\n<tr>\n<td>4</td>\n<td>GroupId</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","kits","constant",":kitId"],"host":["/"],"query":[],"variable":[{"type":"any","value":"string","key":"kitId"}]}},"response":[{"id":"85fbfb3b-6856-4272-931c-d59f3b1a1658","name":"Constant kit updated successfully","originalRequest":{"method":"PUT","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"Templates\": [\n    \"2c1a8b73-6c2f-4d1e-9b91-7e3c5f9a2d11\",\n    \"9a4f3e12-8d7c-4b6a-91e2-0c5f6a7b8d90\"\n  ],\n  \"KitDescription\": \"Employment contract signing kit\",\n  \"SenderKey\": {\n    \"Key\": \"sender@example.com\",\n    \"Type\": 1\n  },\n  \"PreliminaryText\": \"Please review and sign the attached documents. Contact HR if you have any questions.\",\n  \"ExternalLinks\": [\n    {\n      \"Description\": \"Company Privacy Policy\",\n      \"Url\": \"https://www.example.com/privacy-policy\"\n    },\n    {\n      \"Description\": \"Employee Handbook\",\n      \"Url\": \"https://www.example.com/employee-handbook\"\n    }\n  ],\n  \"Recipients\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"john.doe@example.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"john.doe@example.com\",\n      \"FirstName\": \"John\",\n      \"LastName\": \"Doe\",\n      \"SmsPhoneNumber\": \"+972501234567\",\n      \"UserPassword\": \"7392\",\n      \"Company\": \"Example Corp\",\n      \"Title\": \"Software Engineer\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/kits/constant/:kitId","host":["/"],"path":["v6","kits","constant",":kitId"],"variable":[{"key":"kitId","value":"string"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"3bcabbc6-a321-46eb-93c8-a3238a63ff08","name":"Constant kit not found or invalid update data","originalRequest":{"method":"PUT","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"Templates\": [\n    \"2c1a8b73-6c2f-4d1e-9b91-7e3c5f9a2d11\",\n    \"9a4f3e12-8d7c-4b6a-91e2-0c5f6a7b8d90\"\n  ],\n  \"KitDescription\": \"Employment contract signing kit\",\n  \"SenderKey\": {\n    \"Key\": \"sender@example.com\",\n    \"Type\": 1\n  },\n  \"PreliminaryText\": \"Please review and sign the attached documents. Contact HR if you have any questions.\",\n  \"ExternalLinks\": [\n    {\n      \"Description\": \"Company Privacy Policy\",\n      \"Url\": \"https://www.example.com/privacy-policy\"\n    },\n    {\n      \"Description\": \"Employee Handbook\",\n      \"Url\": \"https://www.example.com/employee-handbook\"\n    }\n  ],\n  \"Recipients\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"john.doe@example.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"john.doe@example.com\",\n      \"FirstName\": \"John\",\n      \"LastName\": \"Doe\",\n      \"SmsPhoneNumber\": \"+972501234567\",\n      \"UserPassword\": \"7392\",\n      \"Company\": \"Example Corp\",\n      \"Title\": \"Software Engineer\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/kits/constant/:kitId","host":["/"],"path":["v6","kits","constant",":kitId"],"variable":[{"key":"kitId","value":"string"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"c6242a72-de17-46f1-8816-f084133880dd","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"PUT","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"Templates\": [\n    \"2c1a8b73-6c2f-4d1e-9b91-7e3c5f9a2d11\",\n    \"9a4f3e12-8d7c-4b6a-91e2-0c5f6a7b8d90\"\n  ],\n  \"KitDescription\": \"Employment contract signing kit\",\n  \"SenderKey\": {\n    \"Key\": \"sender@example.com\",\n    \"Type\": 1\n  },\n  \"PreliminaryText\": \"Please review and sign the attached documents. Contact HR if you have any questions.\",\n  \"ExternalLinks\": [\n    {\n      \"Description\": \"Company Privacy Policy\",\n      \"Url\": \"https://www.example.com/privacy-policy\"\n    },\n    {\n      \"Description\": \"Employee Handbook\",\n      \"Url\": \"https://www.example.com/employee-handbook\"\n    }\n  ],\n  \"Recipients\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"john.doe@example.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"john.doe@example.com\",\n      \"FirstName\": \"John\",\n      \"LastName\": \"Doe\",\n      \"SmsPhoneNumber\": \"+972501234567\",\n      \"UserPassword\": \"7392\",\n      \"Company\": \"Example Corp\",\n      \"Title\": \"Software Engineer\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/kits/constant/:kitId","host":["/"],"path":["v6","kits","constant",":kitId"],"variable":[{"key":"kitId","value":"string"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"0616c4f6-bcc3-4e72-8c8a-26ba558b97f4","name":"Kit API license not available","originalRequest":{"method":"PUT","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"Templates\": [\n    \"2c1a8b73-6c2f-4d1e-9b91-7e3c5f9a2d11\",\n    \"9a4f3e12-8d7c-4b6a-91e2-0c5f6a7b8d90\"\n  ],\n  \"KitDescription\": \"Employment contract signing kit\",\n  \"SenderKey\": {\n    \"Key\": \"sender@example.com\",\n    \"Type\": 1\n  },\n  \"PreliminaryText\": \"Please review and sign the attached documents. Contact HR if you have any questions.\",\n  \"ExternalLinks\": [\n    {\n      \"Description\": \"Company Privacy Policy\",\n      \"Url\": \"https://www.example.com/privacy-policy\"\n    },\n    {\n      \"Description\": \"Employee Handbook\",\n      \"Url\": \"https://www.example.com/employee-handbook\"\n    }\n  ],\n  \"Recipients\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"john.doe@example.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"john.doe@example.com\",\n      \"FirstName\": \"John\",\n      \"LastName\": \"Doe\",\n      \"SmsPhoneNumber\": \"+972501234567\",\n      \"UserPassword\": \"7392\",\n      \"Company\": \"Example Corp\",\n      \"Title\": \"Software Engineer\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/kits/constant/:kitId","host":["/"],"path":["v6","kits","constant",":kitId"],"variable":[{"key":"kitId","value":"string"}]}},"status":"Payment Required","code":402,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"f3fed350-e948-4ec3-9c14-6951b8767e14","name":"Internal server error","originalRequest":{"method":"PUT","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"Templates\": [\n    \"2c1a8b73-6c2f-4d1e-9b91-7e3c5f9a2d11\",\n    \"9a4f3e12-8d7c-4b6a-91e2-0c5f6a7b8d90\"\n  ],\n  \"KitDescription\": \"Employment contract signing kit\",\n  \"SenderKey\": {\n    \"Key\": \"sender@example.com\",\n    \"Type\": 1\n  },\n  \"PreliminaryText\": \"Please review and sign the attached documents. Contact HR if you have any questions.\",\n  \"ExternalLinks\": [\n    {\n      \"Description\": \"Company Privacy Policy\",\n      \"Url\": \"https://www.example.com/privacy-policy\"\n    },\n    {\n      \"Description\": \"Employee Handbook\",\n      \"Url\": \"https://www.example.com/employee-handbook\"\n    }\n  ],\n  \"Recipients\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"john.doe@example.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"john.doe@example.com\",\n      \"FirstName\": \"John\",\n      \"LastName\": \"Doe\",\n      \"SmsPhoneNumber\": \"+972501234567\",\n      \"UserPassword\": \"7392\",\n      \"Company\": \"Example Corp\",\n      \"Title\": \"Software Engineer\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/kits/constant/:kitId","host":["/"],"path":["v6","kits","constant",":kitId"],"variable":[{"key":"kitId","value":"string"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"406a6df8-049e-47db-bac9-06111127a8ac"},{"name":"/v6/kits/constant/:kitId","id":"79aed6e5-ba5c-4b91-8568-91874a6744f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Accept","value":"application/json"}],"url":"//v6/kits/constant/:kitId","description":"<p>[V6] Get constant kit information by kit ID</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","kits","constant",":kitId"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>The unique identifier (GUID) of the constant kit</p>\n","type":"text/plain"},"type":"any","value":"string","key":"kitId"}]}},"response":[{"id":"16e56720-2127-4abd-a6fd-0606af7432d1","name":"Constant kit information retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/constant/:kitId","host":["/"],"path":["v6","kits","constant",":kitId"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the constant kit"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Id\": \"c416d0c7-c10b-6d7f-b7e0-4fe86eeb69d3\",\n  \"Templates\": [\n    \"46ff2cea-83c0-47a0-aed3-4c1f503427e6\",\n    \"84463ebd-0513-4bc9-91cb-f870fd04e2f4\"\n  ],\n  \"CreateDate\": \"01/06/2026 14:40:21\",\n  \"KitDescription\": \"Standard Employee Onboarding Kit\",\n  \"SenderKey\": {\n    \"Key\": \"someUser2@company.com\",\n    \"Type\": 1\n  },\n  \"PreliminaryText\": \"Please review and sign the following documents to complete your onboarding process.\",\n  \"ExternalLinks\": [\n    {\n      \"Description\": \"Company Handbook\",\n      \"Url\": \"https://company.com/handbook\"\n    },\n    {\n      \"Description\": \"Privacy Policy\",\n      \"Url\": \"https://company.com/privacy\"\n    }\n  ],\n  \"Recipients\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"someUser@company.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"someUser@company.com\",\n      \"FirstName\": \"some\",\n      \"LastName\": \"user\",\n      \"SmsPhoneNumber\": \"+972501234567\",\n      \"Company\": \"kits\",\n      \"Title\": \"\"\n    }\n  ]\n}"},{"id":"8dd9d140-e5ed-4b4e-95b7-80c6246d1e71","name":"Constant kit not found","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/constant/:kitId","host":["/"],"path":["v6","kits","constant",":kitId"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the constant kit"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"547995d0-6063-43f9-9b5b-06c07f050218","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/constant/:kitId","host":["/"],"path":["v6","kits","constant",":kitId"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the constant kit"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"a787508e-caf2-4059-968b-5f4e3c18a80b","name":"Kit API license not available","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/constant/:kitId","host":["/"],"path":["v6","kits","constant",":kitId"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the constant kit"}]}},"status":"Payment Required","code":402,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"913304ca-4102-4364-b903-a77c81550ad1","name":"Internal server error","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/constant/:kitId","host":["/"],"path":["v6","kits","constant",":kitId"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the constant kit"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"79aed6e5-ba5c-4b91-8568-91874a6744f7"},{"name":"/v6/kits/constant/:kitId","id":"e421d3d3-daf5-4f3f-b2e8-791ee4a4c542","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Accept","value":"text/plain"}],"url":"//v6/kits/constant/:kitId","description":"<p>[V6] Delete a constant kit by kit ID</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","kits","constant",":kitId"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>The unique identifier (GUID) of the constant kit to delete</p>\n","type":"text/plain"},"type":"any","value":"string","key":"kitId"}]}},"response":[{"id":"c7491373-26f3-4978-8464-3fea52a613f1","name":"Constant kit deleted successfully","originalRequest":{"method":"DELETE","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/constant/:kitId","host":["/"],"path":["v6","kits","constant",":kitId"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the constant kit to delete"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"76c980dd-0870-4f71-9985-9488d5c70624","name":"Constant kit not found","originalRequest":{"method":"DELETE","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/constant/:kitId","host":["/"],"path":["v6","kits","constant",":kitId"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the constant kit to delete"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"3399dfb9-d354-42dc-ac94-e0e7c1ad48b2","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"DELETE","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/constant/:kitId","host":["/"],"path":["v6","kits","constant",":kitId"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the constant kit to delete"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"62f5b141-273c-4d37-9e5d-b5fee93e04a9","name":"Kit API license not available","originalRequest":{"method":"DELETE","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/constant/:kitId","host":["/"],"path":["v6","kits","constant",":kitId"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the constant kit to delete"}]}},"status":"Payment Required","code":402,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"70debec9-5975-4b4e-8b06-80cbabe57f8c","name":"Internal server error","originalRequest":{"method":"DELETE","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/constant/:kitId","host":["/"],"path":["v6","kits","constant",":kitId"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the constant kit to delete"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"e421d3d3-daf5-4f3f-b2e8-791ee4a4c542"},{"name":"/v6/kits/constant/:kitId/send","id":"dd5ac715-fff8-4672-b54d-84909f03f61c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"Signer\": {\n    \"UserKey\": {\n      \"Key\": \"john.doe@example.com\",\n      \"Type\": 1\n    },\n    \"Email\": \"john.doe@example.com\",\n    \"FirstName\": \"John\",\n    \"LastName\": \"Doe\",\n    \"SmsPhoneNumber\": \"+972501234567\",\n    \"UserPassword\": \"7392\",\n    \"Company\": \"Example Corp\",\n    \"Title\": \"Software Engineer\",\n    \"IsDisableAttachment\": false,\n    \"IsSuspended\": false,\n    \"IsNoDecline\": true,\n    \"NotificationMailsToSend\": [\n      0\n    ],\n    \"MinimumSignatures\": 1,\n    \"ForceApprovalOnSignature\": true,\n    \"PersonalMessage\": \"Hi John, please review and sign the documents.\",\n    \"UserPasswordDescription\": [\n      {\n        \"Language\": \"en\",\n        \"Value\": \"The verification code was sent to your phone via SMS.\"\n      },\n      {\n        \"Language\": \"he\",\n        \"Value\": \"קוד האימות נשלח אליך בהודעת SMS\"\n      }\n    ]\n  },\n  \"SendingMethods\": [\n    0,\n    1\n  ],\n  \"IsTwoFactorEnabled\": true,\n  \"Templates\": [\n    {\n      \"TemplateId\": \"2c1a8b73-6c2f-4d1e-9b91-7e3c5f9a2d11\",\n      \"DynamicSigners\": [\n        {\n          \"UserKey\": {\n            \"Key\": \"employee@example.com\",\n            \"Type\": 1\n          },\n          \"Email\": \"employee@example.com\",\n          \"FirstName\": \"Jane\",\n          \"LastName\": \"Smith\",\n          \"SmsPhoneNumber\": \"+972541112233\",\n          \"UserPassword\": \"4821\",\n          \"Company\": \"Example Corp\",\n          \"Title\": \"HR Manager\",\n          \"IsDisableAttachment\": false,\n          \"IsSuspended\": false,\n          \"IsNoDecline\": true,\n          \"NotificationMailsToSend\": [\n            0\n          ],\n          \"MinimumSignatures\": 1,\n          \"ForceApprovalOnSignature\": true,\n          \"PersonalMessage\": \"Please sign as the employee.\",\n          \"UserPasswordDescription\": [\n            {\n              \"Language\": \"en\",\n              \"Value\": \"The signing code was sent to you via SMS.\"\n            }\n          ]\n        }\n      ],\n      \"PermanentSignerSettings\": [\n        {\n          \"SignerIndex\": 0,\n          \"EnableAdditionalMessageDelivery\": true,\n          \"IsDisableAttachment\": false,\n          \"IsSuspended\": false,\n          \"IsNoDecline\": true,\n          \"NotificationMailsToSend\": [\n            0\n          ],\n          \"MinimumSignatures\": 1,\n          \"ForceApprovalOnSignature\": true,\n          \"PersonalMessage\": \"Legal approval required.\",\n          \"UserPasswordDescription\": [\n            {\n              \"Language\": \"en\",\n              \"Value\": \"No additional password is required.\"\n            }\n          ]\n        }\n      ]\n    }\n  ],\n  \"RecipientsTwoFactorPassword\": \"7392\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/kits/constant/:kitId/send","description":"<p>[V6] Send a constant kit to recipients</p>\n<hr />\n<h2 id=\"kitid\">kitId:</h2>\n<h3 id=\"the-unique-identifier-guid-of-the-constant-kit-to-send\">The unique identifier (GUID) of the constant kit to send</h3>\n<hr />\n<h2 id=\"sendconstantkitrequest\">sendConstantKitRequest:</h2>\n<h3 id=\"request-containing-sending-configuration-including-signer-information-sending-methods-two-factor-authentication-settings-and-identifiers\">Request containing sending configuration including signer information, sending methods, two-factor authentication settings, and identifiers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* Signer</td>\n<td><em><strong>ExUser</strong></em></td>\n<td>The unique identifier of the kit signer (required).</td>\n</tr>\n<tr>\n<td>SendingMethods</td>\n<td><em><strong>SendMethodTypes[]</strong></em></td>\n<td>Selected sending channels (Email, SMS, WhatsApp) to notify the signer.If null, the signer will not receive an automatic request.</td>\n</tr>\n<tr>\n<td>IsTwoFactorEnabled</td>\n<td>Boolean</td>\n<td>Two-factor authentication for the signer.</td>\n</tr>\n<tr>\n<td>* Templates</td>\n<td><em><strong>ExConstantKitTemplate[]</strong></em></td>\n<td>List of templates identifiers included in the kit.</td>\n</tr>\n<tr>\n<td>RecipientsTwoFactorPassword</td>\n<td>String</td>\n<td>Two-factor authentication password for the recipients.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exconstantkittemplate\">ExConstantKitTemplate:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* TemplateId</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>DynamicSigners</td>\n<td><em><strong>ExUser[]</strong></em></td>\n<td>Dynamic signers in template, to enable notification fill SmsPhoneNumber property.</td>\n</tr>\n<tr>\n<td>PermanentSignerSettings</td>\n<td><em><strong>ExPermanentSignerSettings[]</strong></em></td>\n<td>Permanent signers additional settings.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"expermanentsignersettings\">ExPermanentSignerSettings:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* SignerIndex</td>\n<td>Int32</td>\n<td>The index of the signer in the template, starting from 0.</td>\n</tr>\n<tr>\n<td>EnableAdditionalMessageDelivery</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Indicates whether the signing link should be sent via additional messaging channels(e.g., SMS or WhatsApp) in addition to email.</td>\n</tr>\n<tr>\n<td>IsDisableAttachment</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Disable/Enable add attachments to the flow</td>\n</tr>\n<tr>\n<td>IsSuspended</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Set status flow to suspended when the signer need to sign</td>\n</tr>\n<tr>\n<td>IsNoDecline</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Disable/Endable Decline option in flow</td>\n</tr>\n<tr>\n<td>NotificationMailsToSend</td>\n<td><em><strong>NotificationMails[]</strong></em></td>\n<td>Types of email notifications</td>\n</tr>\n<tr>\n<td>MinimumSignatures</td>\n<td>Nullable&lt;Int32&gt;</td>\n<td>When the user have optional signature element - Dox validate the minimum signatures in the document</td>\n</tr>\n<tr>\n<td>ForceApprovalOnSignature</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Force approval on signature</td>\n</tr>\n<tr>\n<td>PersonalMessage</td>\n<td>String(300) Validation: The field cannot contain script, vbscript, or style tags.</td>\n<td>Personal message to the signer</td>\n</tr>\n<tr>\n<td>UserPasswordDescription</td>\n<td><em><strong>LanguageKey[]</strong></em></td>\n<td>Display when the user open the linkfor example: \"Please enter your social security number\"LanguageKey is the message with all supported languages</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"sendmethodtypes\">SendMethodTypes[]:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>SMS</td>\n</tr>\n<tr>\n<td>1</td>\n<td>EMail</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exuser\">ExUser:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* UserKey</td>\n<td><em><strong>ParticipantKey</strong></em></td>\n<td>Id of user</td>\n</tr>\n<tr>\n<td>Email</td>\n<td>String(77)</td>\n<td>Email of user</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td>String(50)</td>\n<td>First name of user</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td>String(50)</td>\n<td>Last name of user</td>\n</tr>\n<tr>\n<td>SmsPhoneNumber</td>\n<td>String(80)</td>\n<td>Phone Number of user (if empty, the user will not receive sms)</td>\n</tr>\n<tr>\n<td>UserPassword</td>\n<td>String Validation: Only letters, numbers, and special characters are allowed.</td>\n<td>Password for opening the sign link</td>\n</tr>\n<tr>\n<td>Company</td>\n<td>String(80)</td>\n<td>Company name of user</td>\n</tr>\n<tr>\n<td>Title</td>\n<td>String(80)</td>\n<td>Title of user</td>\n</tr>\n<tr>\n<td>IsDisableAttachment</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Disable/Enable add attachments to the flow</td>\n</tr>\n<tr>\n<td>IsSuspended</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Set status flow to suspended when the signer need to sign</td>\n</tr>\n<tr>\n<td>IsNoDecline</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Disable/Endable Decline option in flow</td>\n</tr>\n<tr>\n<td>NotificationMailsToSend</td>\n<td><em><strong>NotificationMails[]</strong></em></td>\n<td>Types of email notifications</td>\n</tr>\n<tr>\n<td>MinimumSignatures</td>\n<td>Nullable&lt;Int32&gt;</td>\n<td>When the user have optional signature element - Dox validate the minimum signatures in the document</td>\n</tr>\n<tr>\n<td>ForceApprovalOnSignature</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Force approval on signature</td>\n</tr>\n<tr>\n<td>PersonalMessage</td>\n<td>String(300) Validation: The field cannot contain script, vbscript, or style tags.</td>\n<td>Personal message to the signer</td>\n</tr>\n<tr>\n<td>UserPasswordDescription</td>\n<td><em><strong>LanguageKey[]</strong></em></td>\n<td>Display when the user open the linkfor example: \"Please enter your social security number\"LanguageKey is the message with all supported languages</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"languagekey\">LanguageKey:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Language</td>\n<td>String</td>\n<td>language : 'en-US','he-IL'</td>\n</tr>\n<tr>\n<td>Value</td>\n<td>String</td>\n<td>Value of text</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"notificationmails\">NotificationMails[]:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>All</td>\n</tr>\n<tr>\n<td>1</td>\n<td>None</td>\n</tr>\n<tr>\n<td>2</td>\n<td>SignFlow</td>\n</tr>\n<tr>\n<td>3</td>\n<td>FlowApproved</td>\n</tr>\n<tr>\n<td>4</td>\n<td>FlowDeclined</td>\n</tr>\n<tr>\n<td>5</td>\n<td>FlowStart</td>\n</tr>\n<tr>\n<td>6</td>\n<td>ReminderToSignFlow</td>\n</tr>\n<tr>\n<td>7</td>\n<td>FlowStoppedToSender</td>\n</tr>\n<tr>\n<td>8</td>\n<td>FlowStoppedToSigner</td>\n</tr>\n<tr>\n<td>9</td>\n<td>KitCompleted</td>\n</tr>\n<tr>\n<td>10</td>\n<td>SignKit</td>\n</tr>\n<tr>\n<td>11</td>\n<td>ReminderToSignKit</td>\n</tr>\n<tr>\n<td>12</td>\n<td>KitCreated</td>\n</tr>\n<tr>\n<td>13</td>\n<td>FlowExpired</td>\n</tr>\n<tr>\n<td>14</td>\n<td>FlowCCApproved</td>\n</tr>\n<tr>\n<td>15</td>\n<td>FlowCCDeclined</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"participantkey\">ParticipantKey:</h3>\n<h3 id=\"allow-to-locate-doxi-user-byuseremail1userphone2\">Allow to locate Doxi user by:UserEmail=1UserPhone=2</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* Key</td>\n<td>String</td>\n<td>User search value</td>\n</tr>\n<tr>\n<td>Type</td>\n<td><em><strong>ParticipantKeyType</strong></em></td>\n<td>Search type:UserEmail=1,UserPhone=2</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"participantkeytype\">ParticipantKeyType:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>UserId</td>\n</tr>\n<tr>\n<td>1</td>\n<td>UserEmail</td>\n</tr>\n<tr>\n<td>2</td>\n<td>UserPhone</td>\n</tr>\n<tr>\n<td>3</td>\n<td>UserName</td>\n</tr>\n<tr>\n<td>4</td>\n<td>GroupId</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","kits","constant",":kitId","send"],"host":["/"],"query":[],"variable":[{"type":"any","value":"string","key":"kitId"}]}},"response":[{"id":"8da9aee2-84e3-46f0-bbd0-5874fc248ef3","name":"Constant kit sent successfully","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"Signer\": {\n    \"UserKey\": {\n      \"Key\": \"john.doe@example.com\",\n      \"Type\": 1\n    },\n    \"Email\": \"john.doe@example.com\",\n    \"FirstName\": \"John\",\n    \"LastName\": \"Doe\",\n    \"SmsPhoneNumber\": \"+972501234567\",\n    \"UserPassword\": \"7392\",\n    \"Company\": \"Example Corp\",\n    \"Title\": \"Software Engineer\",\n    \"IsDisableAttachment\": false,\n    \"IsSuspended\": false,\n    \"IsNoDecline\": true,\n    \"NotificationMailsToSend\": [\n      0\n    ],\n    \"MinimumSignatures\": 1,\n    \"ForceApprovalOnSignature\": true,\n    \"PersonalMessage\": \"Hi John, please review and sign the documents.\",\n    \"UserPasswordDescription\": [\n      {\n        \"Language\": \"en\",\n        \"Value\": \"The verification code was sent to your phone via SMS.\"\n      },\n      {\n        \"Language\": \"he\",\n        \"Value\": \"קוד האימות נשלח אליך בהודעת SMS\"\n      }\n    ]\n  },\n  \"SendingMethods\": [\n    0,\n    1\n  ],\n  \"IsTwoFactorEnabled\": true,\n  \"Templates\": [\n    {\n      \"TemplateId\": \"2c1a8b73-6c2f-4d1e-9b91-7e3c5f9a2d11\",\n      \"DynamicSigners\": [\n        {\n          \"UserKey\": {\n            \"Key\": \"employee@example.com\",\n            \"Type\": 1\n          },\n          \"Email\": \"employee@example.com\",\n          \"FirstName\": \"Jane\",\n          \"LastName\": \"Smith\",\n          \"SmsPhoneNumber\": \"+972541112233\",\n          \"UserPassword\": \"4821\",\n          \"Company\": \"Example Corp\",\n          \"Title\": \"HR Manager\",\n          \"IsDisableAttachment\": false,\n          \"IsSuspended\": false,\n          \"IsNoDecline\": true,\n          \"NotificationMailsToSend\": [\n            0\n          ],\n          \"MinimumSignatures\": 1,\n          \"ForceApprovalOnSignature\": true,\n          \"PersonalMessage\": \"Please sign as the employee.\",\n          \"UserPasswordDescription\": [\n            {\n              \"Language\": \"en\",\n              \"Value\": \"The signing code was sent to you via SMS.\"\n            }\n          ]\n        }\n      ],\n      \"PermanentSignerSettings\": [\n        {\n          \"SignerIndex\": 0,\n          \"EnableAdditionalMessageDelivery\": true,\n          \"IsDisableAttachment\": false,\n          \"IsSuspended\": false,\n          \"IsNoDecline\": true,\n          \"NotificationMailsToSend\": [\n            0\n          ],\n          \"MinimumSignatures\": 1,\n          \"ForceApprovalOnSignature\": true,\n          \"PersonalMessage\": \"Legal approval required.\",\n          \"UserPasswordDescription\": [\n            {\n              \"Language\": \"en\",\n              \"Value\": \"No additional password is required.\"\n            }\n          ]\n        }\n      ]\n    }\n  ],\n  \"RecipientsTwoFactorPassword\": \"7392\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/kits/constant/:kitId/send","host":["/"],"path":["v6","kits","constant",":kitId","send"],"variable":[{"key":"kitId","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"KitId\": \"8026e7dc-7d97-4c56-86a4-f3cc214b17f6\",\n  \"Link\": \"https://DoxiDMZServer/DoxiSign/kit/8026e7dc-7d97-4c56-86a4-f3cc214b17f6\"\n}"},{"id":"8282549c-082d-42a4-826c-2622ed0a2dac","name":"Constant kit not found or invalid sending configuration","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"Signer\": {\n    \"UserKey\": {\n      \"Key\": \"john.doe@example.com\",\n      \"Type\": 1\n    },\n    \"Email\": \"john.doe@example.com\",\n    \"FirstName\": \"John\",\n    \"LastName\": \"Doe\",\n    \"SmsPhoneNumber\": \"+972501234567\",\n    \"UserPassword\": \"7392\",\n    \"Company\": \"Example Corp\",\n    \"Title\": \"Software Engineer\",\n    \"IsDisableAttachment\": false,\n    \"IsSuspended\": false,\n    \"IsNoDecline\": true,\n    \"NotificationMailsToSend\": [\n      0\n    ],\n    \"MinimumSignatures\": 1,\n    \"ForceApprovalOnSignature\": true,\n    \"PersonalMessage\": \"Hi John, please review and sign the documents.\",\n    \"UserPasswordDescription\": [\n      {\n        \"Language\": \"en\",\n        \"Value\": \"The verification code was sent to your phone via SMS.\"\n      },\n      {\n        \"Language\": \"he\",\n        \"Value\": \"קוד האימות נשלח אליך בהודעת SMS\"\n      }\n    ]\n  },\n  \"SendingMethods\": [\n    0,\n    1\n  ],\n  \"IsTwoFactorEnabled\": true,\n  \"Templates\": [\n    {\n      \"TemplateId\": \"2c1a8b73-6c2f-4d1e-9b91-7e3c5f9a2d11\",\n      \"DynamicSigners\": [\n        {\n          \"UserKey\": {\n            \"Key\": \"employee@example.com\",\n            \"Type\": 1\n          },\n          \"Email\": \"employee@example.com\",\n          \"FirstName\": \"Jane\",\n          \"LastName\": \"Smith\",\n          \"SmsPhoneNumber\": \"+972541112233\",\n          \"UserPassword\": \"4821\",\n          \"Company\": \"Example Corp\",\n          \"Title\": \"HR Manager\",\n          \"IsDisableAttachment\": false,\n          \"IsSuspended\": false,\n          \"IsNoDecline\": true,\n          \"NotificationMailsToSend\": [\n            0\n          ],\n          \"MinimumSignatures\": 1,\n          \"ForceApprovalOnSignature\": true,\n          \"PersonalMessage\": \"Please sign as the employee.\",\n          \"UserPasswordDescription\": [\n            {\n              \"Language\": \"en\",\n              \"Value\": \"The signing code was sent to you via SMS.\"\n            }\n          ]\n        }\n      ],\n      \"PermanentSignerSettings\": [\n        {\n          \"SignerIndex\": 0,\n          \"EnableAdditionalMessageDelivery\": true,\n          \"IsDisableAttachment\": false,\n          \"IsSuspended\": false,\n          \"IsNoDecline\": true,\n          \"NotificationMailsToSend\": [\n            0\n          ],\n          \"MinimumSignatures\": 1,\n          \"ForceApprovalOnSignature\": true,\n          \"PersonalMessage\": \"Legal approval required.\",\n          \"UserPasswordDescription\": [\n            {\n              \"Language\": \"en\",\n              \"Value\": \"No additional password is required.\"\n            }\n          ]\n        }\n      ]\n    }\n  ],\n  \"RecipientsTwoFactorPassword\": \"7392\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/kits/constant/:kitId/send","host":["/"],"path":["v6","kits","constant",":kitId","send"],"variable":[{"key":"kitId","value":"string"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"e29206a6-01ab-4b88-a590-722fa6fdb84c","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"Signer\": {\n    \"UserKey\": {\n      \"Key\": \"john.doe@example.com\",\n      \"Type\": 1\n    },\n    \"Email\": \"john.doe@example.com\",\n    \"FirstName\": \"John\",\n    \"LastName\": \"Doe\",\n    \"SmsPhoneNumber\": \"+972501234567\",\n    \"UserPassword\": \"7392\",\n    \"Company\": \"Example Corp\",\n    \"Title\": \"Software Engineer\",\n    \"IsDisableAttachment\": false,\n    \"IsSuspended\": false,\n    \"IsNoDecline\": true,\n    \"NotificationMailsToSend\": [\n      0\n    ],\n    \"MinimumSignatures\": 1,\n    \"ForceApprovalOnSignature\": true,\n    \"PersonalMessage\": \"Hi John, please review and sign the documents.\",\n    \"UserPasswordDescription\": [\n      {\n        \"Language\": \"en\",\n        \"Value\": \"The verification code was sent to your phone via SMS.\"\n      },\n      {\n        \"Language\": \"he\",\n        \"Value\": \"קוד האימות נשלח אליך בהודעת SMS\"\n      }\n    ]\n  },\n  \"SendingMethods\": [\n    0,\n    1\n  ],\n  \"IsTwoFactorEnabled\": true,\n  \"Templates\": [\n    {\n      \"TemplateId\": \"2c1a8b73-6c2f-4d1e-9b91-7e3c5f9a2d11\",\n      \"DynamicSigners\": [\n        {\n          \"UserKey\": {\n            \"Key\": \"employee@example.com\",\n            \"Type\": 1\n          },\n          \"Email\": \"employee@example.com\",\n          \"FirstName\": \"Jane\",\n          \"LastName\": \"Smith\",\n          \"SmsPhoneNumber\": \"+972541112233\",\n          \"UserPassword\": \"4821\",\n          \"Company\": \"Example Corp\",\n          \"Title\": \"HR Manager\",\n          \"IsDisableAttachment\": false,\n          \"IsSuspended\": false,\n          \"IsNoDecline\": true,\n          \"NotificationMailsToSend\": [\n            0\n          ],\n          \"MinimumSignatures\": 1,\n          \"ForceApprovalOnSignature\": true,\n          \"PersonalMessage\": \"Please sign as the employee.\",\n          \"UserPasswordDescription\": [\n            {\n              \"Language\": \"en\",\n              \"Value\": \"The signing code was sent to you via SMS.\"\n            }\n          ]\n        }\n      ],\n      \"PermanentSignerSettings\": [\n        {\n          \"SignerIndex\": 0,\n          \"EnableAdditionalMessageDelivery\": true,\n          \"IsDisableAttachment\": false,\n          \"IsSuspended\": false,\n          \"IsNoDecline\": true,\n          \"NotificationMailsToSend\": [\n            0\n          ],\n          \"MinimumSignatures\": 1,\n          \"ForceApprovalOnSignature\": true,\n          \"PersonalMessage\": \"Legal approval required.\",\n          \"UserPasswordDescription\": [\n            {\n              \"Language\": \"en\",\n              \"Value\": \"No additional password is required.\"\n            }\n          ]\n        }\n      ]\n    }\n  ],\n  \"RecipientsTwoFactorPassword\": \"7392\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/kits/constant/:kitId/send","host":["/"],"path":["v6","kits","constant",":kitId","send"],"variable":[{"key":"kitId","value":"string"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"09f27fd7-d6b5-4717-bd4a-dbcc140c65d2","name":"Kit API license not available","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"Signer\": {\n    \"UserKey\": {\n      \"Key\": \"john.doe@example.com\",\n      \"Type\": 1\n    },\n    \"Email\": \"john.doe@example.com\",\n    \"FirstName\": \"John\",\n    \"LastName\": \"Doe\",\n    \"SmsPhoneNumber\": \"+972501234567\",\n    \"UserPassword\": \"7392\",\n    \"Company\": \"Example Corp\",\n    \"Title\": \"Software Engineer\",\n    \"IsDisableAttachment\": false,\n    \"IsSuspended\": false,\n    \"IsNoDecline\": true,\n    \"NotificationMailsToSend\": [\n      0\n    ],\n    \"MinimumSignatures\": 1,\n    \"ForceApprovalOnSignature\": true,\n    \"PersonalMessage\": \"Hi John, please review and sign the documents.\",\n    \"UserPasswordDescription\": [\n      {\n        \"Language\": \"en\",\n        \"Value\": \"The verification code was sent to your phone via SMS.\"\n      },\n      {\n        \"Language\": \"he\",\n        \"Value\": \"קוד האימות נשלח אליך בהודעת SMS\"\n      }\n    ]\n  },\n  \"SendingMethods\": [\n    0,\n    1\n  ],\n  \"IsTwoFactorEnabled\": true,\n  \"Templates\": [\n    {\n      \"TemplateId\": \"2c1a8b73-6c2f-4d1e-9b91-7e3c5f9a2d11\",\n      \"DynamicSigners\": [\n        {\n          \"UserKey\": {\n            \"Key\": \"employee@example.com\",\n            \"Type\": 1\n          },\n          \"Email\": \"employee@example.com\",\n          \"FirstName\": \"Jane\",\n          \"LastName\": \"Smith\",\n          \"SmsPhoneNumber\": \"+972541112233\",\n          \"UserPassword\": \"4821\",\n          \"Company\": \"Example Corp\",\n          \"Title\": \"HR Manager\",\n          \"IsDisableAttachment\": false,\n          \"IsSuspended\": false,\n          \"IsNoDecline\": true,\n          \"NotificationMailsToSend\": [\n            0\n          ],\n          \"MinimumSignatures\": 1,\n          \"ForceApprovalOnSignature\": true,\n          \"PersonalMessage\": \"Please sign as the employee.\",\n          \"UserPasswordDescription\": [\n            {\n              \"Language\": \"en\",\n              \"Value\": \"The signing code was sent to you via SMS.\"\n            }\n          ]\n        }\n      ],\n      \"PermanentSignerSettings\": [\n        {\n          \"SignerIndex\": 0,\n          \"EnableAdditionalMessageDelivery\": true,\n          \"IsDisableAttachment\": false,\n          \"IsSuspended\": false,\n          \"IsNoDecline\": true,\n          \"NotificationMailsToSend\": [\n            0\n          ],\n          \"MinimumSignatures\": 1,\n          \"ForceApprovalOnSignature\": true,\n          \"PersonalMessage\": \"Legal approval required.\",\n          \"UserPasswordDescription\": [\n            {\n              \"Language\": \"en\",\n              \"Value\": \"No additional password is required.\"\n            }\n          ]\n        }\n      ]\n    }\n  ],\n  \"RecipientsTwoFactorPassword\": \"7392\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/kits/constant/:kitId/send","host":["/"],"path":["v6","kits","constant",":kitId","send"],"variable":[{"key":"kitId","value":"string"}]}},"status":"Payment Required","code":402,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"075de578-db3b-44cd-aec8-64ebc9480479","name":"Internal server error","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"Signer\": {\n    \"UserKey\": {\n      \"Key\": \"john.doe@example.com\",\n      \"Type\": 1\n    },\n    \"Email\": \"john.doe@example.com\",\n    \"FirstName\": \"John\",\n    \"LastName\": \"Doe\",\n    \"SmsPhoneNumber\": \"+972501234567\",\n    \"UserPassword\": \"7392\",\n    \"Company\": \"Example Corp\",\n    \"Title\": \"Software Engineer\",\n    \"IsDisableAttachment\": false,\n    \"IsSuspended\": false,\n    \"IsNoDecline\": true,\n    \"NotificationMailsToSend\": [\n      0\n    ],\n    \"MinimumSignatures\": 1,\n    \"ForceApprovalOnSignature\": true,\n    \"PersonalMessage\": \"Hi John, please review and sign the documents.\",\n    \"UserPasswordDescription\": [\n      {\n        \"Language\": \"en\",\n        \"Value\": \"The verification code was sent to your phone via SMS.\"\n      },\n      {\n        \"Language\": \"he\",\n        \"Value\": \"קוד האימות נשלח אליך בהודעת SMS\"\n      }\n    ]\n  },\n  \"SendingMethods\": [\n    0,\n    1\n  ],\n  \"IsTwoFactorEnabled\": true,\n  \"Templates\": [\n    {\n      \"TemplateId\": \"2c1a8b73-6c2f-4d1e-9b91-7e3c5f9a2d11\",\n      \"DynamicSigners\": [\n        {\n          \"UserKey\": {\n            \"Key\": \"employee@example.com\",\n            \"Type\": 1\n          },\n          \"Email\": \"employee@example.com\",\n          \"FirstName\": \"Jane\",\n          \"LastName\": \"Smith\",\n          \"SmsPhoneNumber\": \"+972541112233\",\n          \"UserPassword\": \"4821\",\n          \"Company\": \"Example Corp\",\n          \"Title\": \"HR Manager\",\n          \"IsDisableAttachment\": false,\n          \"IsSuspended\": false,\n          \"IsNoDecline\": true,\n          \"NotificationMailsToSend\": [\n            0\n          ],\n          \"MinimumSignatures\": 1,\n          \"ForceApprovalOnSignature\": true,\n          \"PersonalMessage\": \"Please sign as the employee.\",\n          \"UserPasswordDescription\": [\n            {\n              \"Language\": \"en\",\n              \"Value\": \"The signing code was sent to you via SMS.\"\n            }\n          ]\n        }\n      ],\n      \"PermanentSignerSettings\": [\n        {\n          \"SignerIndex\": 0,\n          \"EnableAdditionalMessageDelivery\": true,\n          \"IsDisableAttachment\": false,\n          \"IsSuspended\": false,\n          \"IsNoDecline\": true,\n          \"NotificationMailsToSend\": [\n            0\n          ],\n          \"MinimumSignatures\": 1,\n          \"ForceApprovalOnSignature\": true,\n          \"PersonalMessage\": \"Legal approval required.\",\n          \"UserPasswordDescription\": [\n            {\n              \"Language\": \"en\",\n              \"Value\": \"No additional password is required.\"\n            }\n          ]\n        }\n      ]\n    }\n  ],\n  \"RecipientsTwoFactorPassword\": \"7392\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/kits/constant/:kitId/send","host":["/"],"path":["v6","kits","constant",":kitId","send"],"variable":[{"key":"kitId","value":"string"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"dd5ac715-fff8-4672-b54d-84909f03f61c"},{"name":"/v6/kits/single","id":"501fb269-b2b2-4309-acb9-65023684f0c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"Signer\": {\n    \"UserKey\": {\n      \"Key\": \"signer@example.com\",\n      \"Type\": 1\n    },\n    \"Email\": \"signer@example.com\",\n    \"FirstName\": \"John\",\n    \"LastName\": \"Smith\",\n    \"SmsPhoneNumber\": \"+1234567890\",\n    \"UserPassword\": \"pass1234\",\n    \"Company\": \"Acme Inc\",\n    \"Title\": \"Director\",\n    \"IsDisableAttachment\": false,\n    \"IsSuspended\": false,\n    \"IsNoDecline\": false,\n    \"NotificationMailsToSend\": [\n      0,\n      1,\n      2\n    ],\n    \"MinimumSignatures\": 1,\n    \"ForceApprovalOnSignature\": true,\n    \"PersonalMessage\": \"Your signature is required to proceed\",\n    \"UserPasswordDescription\": [\n      {\n        \"Language\": \"en-US\",\n        \"Value\": \"Please enter your password\"\n      },\n      {\n        \"Language\": \"he-IL\",\n        \"Value\": \"אנא הזן את הסיסמה שלך\"\n      }\n    ]\n  },\n  \"Templates\": [\n    {\n      \"Order\": 1,\n      \"TemplateId\": \"template-123\",\n      \"DynamicSigners\": [\n        {\n          \"UserKey\": {\n            \"Key\": \"dynamicsigner@example.com\",\n            \"Type\": 1\n          },\n          \"Email\": \"dynamicsigner@example.com\",\n          \"FirstName\": \"Dynamic\",\n          \"LastName\": \"Signer\"\n        }\n      ],\n      \"PermanentSignerSettings\": [\n        {\n          \"SignerIndex\": 0,\n          \"EnableAdditionalMessageDelivery\": true,\n          \"IsDisableAttachment\": false,\n          \"MinimumSignatures\": 1\n        }\n      ]\n    }\n  ],\n  \"Flows\": [\n    {\n      \"SignFlowId\": \"flow-456\",\n      \"Order\": 2\n    }\n  ],\n  \"KitAction\": 1,\n  \"SendingMethods\": [\n    0,\n    1\n  ],\n  \"IsUseCompanyNameInMessage\": false,\n  \"SignFlowDescriptionMessage\": \"Please sign the attached documents\",\n  \"SignerNotificationMailsToSend\": [\n    0,\n    1,\n    3\n  ],\n  \"SenderNotificationMailsToSend\": [\n    0,\n    1,\n    2\n  ],\n  \"IsTwoFactorEnabled\": true,\n  \"KitDescription\": \"Contract Agreement Kit\",\n  \"SenderKey\": {\n    \"Key\": \"sender@example.com\",\n    \"Type\": 1\n  },\n  \"PreliminaryText\": \"Please review and sign the following documents\",\n  \"ExternalLinks\": [\n    {\n      \"Description\": \"Company Website\",\n      \"Url\": \"https://www.example.com\"\n    }\n  ],\n  \"Recipients\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"recipient@example.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"recipient@example.com\",\n      \"FirstName\": \"Jane\",\n      \"LastName\": \"Doe\",\n      \"Company\": \"Example Corp\",\n      \"Title\": \"Manager\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/kits/single","description":"<p>[V6] Create a new kit with documents and configuration</p>\n<h2 id=\"json-object-description\">JSON object description:</h2>\n<hr />\n<h2 id=\"createkitrequest\">createKitRequest:</h2>\n<h3 id=\"request-containing-kit-configuration-including-kit-name-description-documents-base64-encoded-or-file-references-and-participant-information\">Request containing kit configuration including kit name, description, documents (base64 encoded or file references), and participant information</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* Signer</td>\n<td><em><strong>ExUser</strong></em></td>\n<td>Signer who is required to sign the flows included in the kit</td>\n</tr>\n<tr>\n<td>Templates</td>\n<td><em><strong>ExKitTemplate[]</strong></em></td>\n<td>Templates assigned to the kit</td>\n</tr>\n<tr>\n<td>Flows</td>\n<td><em><strong>ExKitFlow[]</strong></em></td>\n<td>Flows assigned to the kit</td>\n</tr>\n<tr>\n<td>* KitAction</td>\n<td><em><strong>SingleKitAction</strong></em></td>\n<td>The action to do after creating the kit - only save in DB or send the kit to the signer.</td>\n</tr>\n<tr>\n<td>SendingMethods</td>\n<td><em><strong>SendMethodTypes[]</strong></em></td>\n<td>Options to send the sign request to the signer (in case of null, the signer won't receive a request to sign)</td>\n</tr>\n<tr>\n<td>IsUseCompanyNameInMessage</td>\n<td>Boolean</td>\n<td>Sending the request to sign by name of the company instead of the sender name</td>\n</tr>\n<tr>\n<td>SignFlowDescriptionMessage</td>\n<td>String</td>\n<td>Additional information in the request to sign message</td>\n</tr>\n<tr>\n<td>SignerNotificationMailsToSend</td>\n<td><em><strong>NotificationMails[]</strong></em></td>\n<td>Types of emails notification for the sender and CC,Allowed values: 0,1,3,4,5,7,9,12,13,14,15</td>\n</tr>\n<tr>\n<td>SenderNotificationMailsToSend</td>\n<td><em><strong>NotificationMails[]</strong></em></td>\n<td>Types of emails notification for the signer,Allowed values: 0,1,2,6,8,10,11</td>\n</tr>\n<tr>\n<td>* IsTwoFactorEnabled</td>\n<td>Boolean</td>\n<td>Two-factor authentication for the signer.</td>\n</tr>\n<tr>\n<td>* KitDescription</td>\n<td>String(100)</td>\n<td>The display name of the kit.</td>\n</tr>\n<tr>\n<td>* SenderKey</td>\n<td><em><strong>ParticipantKey</strong></em></td>\n<td>Id of the Sender</td>\n</tr>\n<tr>\n<td>PreliminaryText</td>\n<td>String(1000)</td>\n<td>Optional introductory text displayed to the kit signer in the lobby screen.</td>\n</tr>\n<tr>\n<td>ExternalLinks</td>\n<td><em><strong>ExExternalLink[]</strong></em></td>\n<td>Optional collection of related external links (for integrations or metadata).</td>\n</tr>\n<tr>\n<td>Recipients</td>\n<td><em><strong>ExUser[]</strong></em></td>\n<td>Optional list of CC recipients associated with the kit.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exexternallink\">ExExternalLink:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Description</td>\n<td>String(100)</td>\n<td></td>\n</tr>\n<tr>\n<td>Url</td>\n<td>String</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"sendmethodtypes\">SendMethodTypes[]:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>SMS</td>\n</tr>\n<tr>\n<td>1</td>\n<td>EMail</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"singlekitaction\">SingleKitAction:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Save</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Send</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exkitflow\">ExKitFlow:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* SignFlowId</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>* Order</td>\n<td>Int32</td>\n<td>Defines the display order of flows in the kit signing lobby.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exkittemplate\">ExKitTemplate:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* Order</td>\n<td>Int32</td>\n<td>Defines the display order of flows from template in the kit signing lobby.</td>\n</tr>\n<tr>\n<td>* TemplateId</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>DynamicSigners</td>\n<td><em><strong>ExUser[]</strong></em></td>\n<td>Dynamic signers in template, to enable notification fill SmsPhoneNumber property.</td>\n</tr>\n<tr>\n<td>PermanentSignerSettings</td>\n<td><em><strong>ExPermanentSignerSettings[]</strong></em></td>\n<td>Permanent signers additional settings.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"expermanentsignersettings\">ExPermanentSignerSettings:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* SignerIndex</td>\n<td>Int32</td>\n<td>The index of the signer in the template, starting from 0.</td>\n</tr>\n<tr>\n<td>EnableAdditionalMessageDelivery</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Indicates whether the signing link should be sent via additional messaging channels(e.g., SMS or WhatsApp) in addition to email.</td>\n</tr>\n<tr>\n<td>IsDisableAttachment</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Disable/Enable add attachments to the flow</td>\n</tr>\n<tr>\n<td>IsSuspended</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Set status flow to suspended when the signer need to sign</td>\n</tr>\n<tr>\n<td>IsNoDecline</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Disable/Endable Decline option in flow</td>\n</tr>\n<tr>\n<td>NotificationMailsToSend</td>\n<td><em><strong>NotificationMails[]</strong></em></td>\n<td>Types of email notifications</td>\n</tr>\n<tr>\n<td>MinimumSignatures</td>\n<td>Nullable&lt;Int32&gt;</td>\n<td>When the user have optional signature element - Dox validate the minimum signatures in the document</td>\n</tr>\n<tr>\n<td>ForceApprovalOnSignature</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Force approval on signature</td>\n</tr>\n<tr>\n<td>PersonalMessage</td>\n<td>String(300) Validation: The field cannot contain script, vbscript, or style tags.</td>\n<td>Personal message to the signer</td>\n</tr>\n<tr>\n<td>UserPasswordDescription</td>\n<td><em><strong>LanguageKey[]</strong></em></td>\n<td>Display when the user open the linkfor example: \"Please enter your social security number\"LanguageKey is the message with all supported languages</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exuser\">ExUser:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* UserKey</td>\n<td><em><strong>ParticipantKey</strong></em></td>\n<td>Id of user</td>\n</tr>\n<tr>\n<td>Email</td>\n<td>String(77)</td>\n<td>Email of user</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td>String(50)</td>\n<td>First name of user</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td>String(50)</td>\n<td>Last name of user</td>\n</tr>\n<tr>\n<td>SmsPhoneNumber</td>\n<td>String(80)</td>\n<td>Phone Number of user (if empty, the user will not receive sms)</td>\n</tr>\n<tr>\n<td>UserPassword</td>\n<td>String Validation: Only letters, numbers, and special characters are allowed.</td>\n<td>Password for opening the sign link</td>\n</tr>\n<tr>\n<td>Company</td>\n<td>String(80)</td>\n<td>Company name of user</td>\n</tr>\n<tr>\n<td>Title</td>\n<td>String(80)</td>\n<td>Title of user</td>\n</tr>\n<tr>\n<td>IsDisableAttachment</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Disable/Enable add attachments to the flow</td>\n</tr>\n<tr>\n<td>IsSuspended</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Set status flow to suspended when the signer need to sign</td>\n</tr>\n<tr>\n<td>IsNoDecline</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Disable/Endable Decline option in flow</td>\n</tr>\n<tr>\n<td>NotificationMailsToSend</td>\n<td><em><strong>NotificationMails[]</strong></em></td>\n<td>Types of email notifications</td>\n</tr>\n<tr>\n<td>MinimumSignatures</td>\n<td>Nullable&lt;Int32&gt;</td>\n<td>When the user have optional signature element - Dox validate the minimum signatures in the document</td>\n</tr>\n<tr>\n<td>ForceApprovalOnSignature</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Force approval on signature</td>\n</tr>\n<tr>\n<td>PersonalMessage</td>\n<td>String(300) Validation: The field cannot contain script, vbscript, or style tags.</td>\n<td>Personal message to the signer</td>\n</tr>\n<tr>\n<td>UserPasswordDescription</td>\n<td><em><strong>LanguageKey[]</strong></em></td>\n<td>Display when the user open the linkfor example: \"Please enter your social security number\"LanguageKey is the message with all supported languages</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"languagekey\">LanguageKey:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Language</td>\n<td>String</td>\n<td>language : 'en-US','he-IL'</td>\n</tr>\n<tr>\n<td>Value</td>\n<td>String</td>\n<td>Value of text</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"notificationmails\">NotificationMails[]:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>All</td>\n</tr>\n<tr>\n<td>1</td>\n<td>None</td>\n</tr>\n<tr>\n<td>2</td>\n<td>SignFlow</td>\n</tr>\n<tr>\n<td>3</td>\n<td>FlowApproved</td>\n</tr>\n<tr>\n<td>4</td>\n<td>FlowDeclined</td>\n</tr>\n<tr>\n<td>5</td>\n<td>FlowStart</td>\n</tr>\n<tr>\n<td>6</td>\n<td>ReminderToSignFlow</td>\n</tr>\n<tr>\n<td>7</td>\n<td>FlowStoppedToSender</td>\n</tr>\n<tr>\n<td>8</td>\n<td>FlowStoppedToSigner</td>\n</tr>\n<tr>\n<td>9</td>\n<td>KitCompleted</td>\n</tr>\n<tr>\n<td>10</td>\n<td>SignKit</td>\n</tr>\n<tr>\n<td>11</td>\n<td>ReminderToSignKit</td>\n</tr>\n<tr>\n<td>12</td>\n<td>KitCreated</td>\n</tr>\n<tr>\n<td>13</td>\n<td>FlowExpired</td>\n</tr>\n<tr>\n<td>14</td>\n<td>FlowCCApproved</td>\n</tr>\n<tr>\n<td>15</td>\n<td>FlowCCDeclined</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"participantkey\">ParticipantKey:</h3>\n<h3 id=\"allow-to-locate-doxi-user-byuseremail1userphone2\">Allow to locate Doxi user by:UserEmail=1UserPhone=2</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* Key</td>\n<td>String</td>\n<td>User search value</td>\n</tr>\n<tr>\n<td>Type</td>\n<td><em><strong>ParticipantKeyType</strong></em></td>\n<td>Search type:UserEmail=1,UserPhone=2</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"participantkeytype\">ParticipantKeyType:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>UserId</td>\n</tr>\n<tr>\n<td>1</td>\n<td>UserEmail</td>\n</tr>\n<tr>\n<td>2</td>\n<td>UserPhone</td>\n</tr>\n<tr>\n<td>3</td>\n<td>UserName</td>\n</tr>\n<tr>\n<td>4</td>\n<td>GroupId</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","kits","single"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"76fbfd39-5b00-4315-988e-e8728b12654f","name":"Kit created successfully","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"Signer\": {\n    \"UserKey\": {\n      \"Key\": \"signer@example.com\",\n      \"Type\": 1\n    },\n    \"Email\": \"signer@example.com\",\n    \"FirstName\": \"John\",\n    \"LastName\": \"Smith\",\n    \"SmsPhoneNumber\": \"+1234567890\",\n    \"UserPassword\": \"pass1234\",\n    \"Company\": \"Acme Inc\",\n    \"Title\": \"Director\",\n    \"IsDisableAttachment\": false,\n    \"IsSuspended\": false,\n    \"IsNoDecline\": false,\n    \"NotificationMailsToSend\": [\n      0,\n      1,\n      2\n    ],\n    \"MinimumSignatures\": 1,\n    \"ForceApprovalOnSignature\": true,\n    \"PersonalMessage\": \"Your signature is required to proceed\",\n    \"UserPasswordDescription\": [\n      {\n        \"Language\": \"en-US\",\n        \"Value\": \"Please enter your password\"\n      },\n      {\n        \"Language\": \"he-IL\",\n        \"Value\": \"אנא הזן את הסיסמה שלך\"\n      }\n    ]\n  },\n  \"Templates\": [\n    {\n      \"Order\": 1,\n      \"TemplateId\": \"template-123\",\n      \"DynamicSigners\": [\n        {\n          \"UserKey\": {\n            \"Key\": \"dynamicsigner@example.com\",\n            \"Type\": 1\n          },\n          \"Email\": \"dynamicsigner@example.com\",\n          \"FirstName\": \"Dynamic\",\n          \"LastName\": \"Signer\"\n        }\n      ],\n      \"PermanentSignerSettings\": [\n        {\n          \"SignerIndex\": 0,\n          \"EnableAdditionalMessageDelivery\": true,\n          \"IsDisableAttachment\": false,\n          \"MinimumSignatures\": 1\n        }\n      ]\n    }\n  ],\n  \"Flows\": [\n    {\n      \"SignFlowId\": \"flow-456\",\n      \"Order\": 2\n    }\n  ],\n  \"KitAction\": 1,\n  \"SendingMethods\": [\n    0,\n    1\n  ],\n  \"IsUseCompanyNameInMessage\": false,\n  \"SignFlowDescriptionMessage\": \"Please sign the attached documents\",\n  \"SignerNotificationMailsToSend\": [\n    0,\n    1,\n    3\n  ],\n  \"SenderNotificationMailsToSend\": [\n    0,\n    1,\n    2\n  ],\n  \"IsTwoFactorEnabled\": true,\n  \"KitDescription\": \"Contract Agreement Kit\",\n  \"SenderKey\": {\n    \"Key\": \"sender@example.com\",\n    \"Type\": 1\n  },\n  \"PreliminaryText\": \"Please review and sign the following documents\",\n  \"ExternalLinks\": [\n    {\n      \"Description\": \"Company Website\",\n      \"Url\": \"https://www.example.com\"\n    }\n  ],\n  \"Recipients\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"recipient@example.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"recipient@example.com\",\n      \"FirstName\": \"Jane\",\n      \"LastName\": \"Doe\",\n      \"Company\": \"Example Corp\",\n      \"Title\": \"Manager\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/kits/single"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"KitId\": \"8026e7dc-7d97-4c56-86a4-f3cc214b17f6\",\n  \"Link\": \"https://DoxiDMZServer/DoxiSign/kit/8026e7dc-7d97-4c56-86a4-f3cc214b17f6\"\n}"},{"id":"51a1ba19-0c52-4632-8e47-655de0f35120","name":"Invalid request - Missing required fields, or invalid kit configuration","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"Signer\": {\n    \"UserKey\": {\n      \"Key\": \"signer@example.com\",\n      \"Type\": 1\n    },\n    \"Email\": \"signer@example.com\",\n    \"FirstName\": \"John\",\n    \"LastName\": \"Smith\",\n    \"SmsPhoneNumber\": \"+1234567890\",\n    \"UserPassword\": \"pass1234\",\n    \"Company\": \"Acme Inc\",\n    \"Title\": \"Director\",\n    \"IsDisableAttachment\": false,\n    \"IsSuspended\": false,\n    \"IsNoDecline\": false,\n    \"NotificationMailsToSend\": [\n      0,\n      1,\n      2\n    ],\n    \"MinimumSignatures\": 1,\n    \"ForceApprovalOnSignature\": true,\n    \"PersonalMessage\": \"Your signature is required to proceed\",\n    \"UserPasswordDescription\": [\n      {\n        \"Language\": \"en-US\",\n        \"Value\": \"Please enter your password\"\n      },\n      {\n        \"Language\": \"he-IL\",\n        \"Value\": \"אנא הזן את הסיסמה שלך\"\n      }\n    ]\n  },\n  \"Templates\": [\n    {\n      \"Order\": 1,\n      \"TemplateId\": \"template-123\",\n      \"DynamicSigners\": [\n        {\n          \"UserKey\": {\n            \"Key\": \"dynamicsigner@example.com\",\n            \"Type\": 1\n          },\n          \"Email\": \"dynamicsigner@example.com\",\n          \"FirstName\": \"Dynamic\",\n          \"LastName\": \"Signer\"\n        }\n      ],\n      \"PermanentSignerSettings\": [\n        {\n          \"SignerIndex\": 0,\n          \"EnableAdditionalMessageDelivery\": true,\n          \"IsDisableAttachment\": false,\n          \"MinimumSignatures\": 1\n        }\n      ]\n    }\n  ],\n  \"Flows\": [\n    {\n      \"SignFlowId\": \"flow-456\",\n      \"Order\": 2\n    }\n  ],\n  \"KitAction\": 1,\n  \"SendingMethods\": [\n    0,\n    1\n  ],\n  \"IsUseCompanyNameInMessage\": false,\n  \"SignFlowDescriptionMessage\": \"Please sign the attached documents\",\n  \"SignerNotificationMailsToSend\": [\n    0,\n    1,\n    3\n  ],\n  \"SenderNotificationMailsToSend\": [\n    0,\n    1,\n    2\n  ],\n  \"IsTwoFactorEnabled\": true,\n  \"KitDescription\": \"Contract Agreement Kit\",\n  \"SenderKey\": {\n    \"Key\": \"sender@example.com\",\n    \"Type\": 1\n  },\n  \"PreliminaryText\": \"Please review and sign the following documents\",\n  \"ExternalLinks\": [\n    {\n      \"Description\": \"Company Website\",\n      \"Url\": \"https://www.example.com\"\n    }\n  ],\n  \"Recipients\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"recipient@example.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"recipient@example.com\",\n      \"FirstName\": \"Jane\",\n      \"LastName\": \"Doe\",\n      \"Company\": \"Example Corp\",\n      \"Title\": \"Manager\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/kits/single"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"a56ad841-b123-47e3-8607-37ddf9ba3d45","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"Signer\": {\n    \"UserKey\": {\n      \"Key\": \"signer@example.com\",\n      \"Type\": 1\n    },\n    \"Email\": \"signer@example.com\",\n    \"FirstName\": \"John\",\n    \"LastName\": \"Smith\",\n    \"SmsPhoneNumber\": \"+1234567890\",\n    \"UserPassword\": \"pass1234\",\n    \"Company\": \"Acme Inc\",\n    \"Title\": \"Director\",\n    \"IsDisableAttachment\": false,\n    \"IsSuspended\": false,\n    \"IsNoDecline\": false,\n    \"NotificationMailsToSend\": [\n      0,\n      1,\n      2\n    ],\n    \"MinimumSignatures\": 1,\n    \"ForceApprovalOnSignature\": true,\n    \"PersonalMessage\": \"Your signature is required to proceed\",\n    \"UserPasswordDescription\": [\n      {\n        \"Language\": \"en-US\",\n        \"Value\": \"Please enter your password\"\n      },\n      {\n        \"Language\": \"he-IL\",\n        \"Value\": \"אנא הזן את הסיסמה שלך\"\n      }\n    ]\n  },\n  \"Templates\": [\n    {\n      \"Order\": 1,\n      \"TemplateId\": \"template-123\",\n      \"DynamicSigners\": [\n        {\n          \"UserKey\": {\n            \"Key\": \"dynamicsigner@example.com\",\n            \"Type\": 1\n          },\n          \"Email\": \"dynamicsigner@example.com\",\n          \"FirstName\": \"Dynamic\",\n          \"LastName\": \"Signer\"\n        }\n      ],\n      \"PermanentSignerSettings\": [\n        {\n          \"SignerIndex\": 0,\n          \"EnableAdditionalMessageDelivery\": true,\n          \"IsDisableAttachment\": false,\n          \"MinimumSignatures\": 1\n        }\n      ]\n    }\n  ],\n  \"Flows\": [\n    {\n      \"SignFlowId\": \"flow-456\",\n      \"Order\": 2\n    }\n  ],\n  \"KitAction\": 1,\n  \"SendingMethods\": [\n    0,\n    1\n  ],\n  \"IsUseCompanyNameInMessage\": false,\n  \"SignFlowDescriptionMessage\": \"Please sign the attached documents\",\n  \"SignerNotificationMailsToSend\": [\n    0,\n    1,\n    3\n  ],\n  \"SenderNotificationMailsToSend\": [\n    0,\n    1,\n    2\n  ],\n  \"IsTwoFactorEnabled\": true,\n  \"KitDescription\": \"Contract Agreement Kit\",\n  \"SenderKey\": {\n    \"Key\": \"sender@example.com\",\n    \"Type\": 1\n  },\n  \"PreliminaryText\": \"Please review and sign the following documents\",\n  \"ExternalLinks\": [\n    {\n      \"Description\": \"Company Website\",\n      \"Url\": \"https://www.example.com\"\n    }\n  ],\n  \"Recipients\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"recipient@example.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"recipient@example.com\",\n      \"FirstName\": \"Jane\",\n      \"LastName\": \"Doe\",\n      \"Company\": \"Example Corp\",\n      \"Title\": \"Manager\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/kits/single"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"e1b0a3c6-94fe-4bb2-a756-8527a2246970","name":"Payment Required - Kit API license not available","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"Signer\": {\n    \"UserKey\": {\n      \"Key\": \"signer@example.com\",\n      \"Type\": 1\n    },\n    \"Email\": \"signer@example.com\",\n    \"FirstName\": \"John\",\n    \"LastName\": \"Smith\",\n    \"SmsPhoneNumber\": \"+1234567890\",\n    \"UserPassword\": \"pass1234\",\n    \"Company\": \"Acme Inc\",\n    \"Title\": \"Director\",\n    \"IsDisableAttachment\": false,\n    \"IsSuspended\": false,\n    \"IsNoDecline\": false,\n    \"NotificationMailsToSend\": [\n      0,\n      1,\n      2\n    ],\n    \"MinimumSignatures\": 1,\n    \"ForceApprovalOnSignature\": true,\n    \"PersonalMessage\": \"Your signature is required to proceed\",\n    \"UserPasswordDescription\": [\n      {\n        \"Language\": \"en-US\",\n        \"Value\": \"Please enter your password\"\n      },\n      {\n        \"Language\": \"he-IL\",\n        \"Value\": \"אנא הזן את הסיסמה שלך\"\n      }\n    ]\n  },\n  \"Templates\": [\n    {\n      \"Order\": 1,\n      \"TemplateId\": \"template-123\",\n      \"DynamicSigners\": [\n        {\n          \"UserKey\": {\n            \"Key\": \"dynamicsigner@example.com\",\n            \"Type\": 1\n          },\n          \"Email\": \"dynamicsigner@example.com\",\n          \"FirstName\": \"Dynamic\",\n          \"LastName\": \"Signer\"\n        }\n      ],\n      \"PermanentSignerSettings\": [\n        {\n          \"SignerIndex\": 0,\n          \"EnableAdditionalMessageDelivery\": true,\n          \"IsDisableAttachment\": false,\n          \"MinimumSignatures\": 1\n        }\n      ]\n    }\n  ],\n  \"Flows\": [\n    {\n      \"SignFlowId\": \"flow-456\",\n      \"Order\": 2\n    }\n  ],\n  \"KitAction\": 1,\n  \"SendingMethods\": [\n    0,\n    1\n  ],\n  \"IsUseCompanyNameInMessage\": false,\n  \"SignFlowDescriptionMessage\": \"Please sign the attached documents\",\n  \"SignerNotificationMailsToSend\": [\n    0,\n    1,\n    3\n  ],\n  \"SenderNotificationMailsToSend\": [\n    0,\n    1,\n    2\n  ],\n  \"IsTwoFactorEnabled\": true,\n  \"KitDescription\": \"Contract Agreement Kit\",\n  \"SenderKey\": {\n    \"Key\": \"sender@example.com\",\n    \"Type\": 1\n  },\n  \"PreliminaryText\": \"Please review and sign the following documents\",\n  \"ExternalLinks\": [\n    {\n      \"Description\": \"Company Website\",\n      \"Url\": \"https://www.example.com\"\n    }\n  ],\n  \"Recipients\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"recipient@example.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"recipient@example.com\",\n      \"FirstName\": \"Jane\",\n      \"LastName\": \"Doe\",\n      \"Company\": \"Example Corp\",\n      \"Title\": \"Manager\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/kits/single"},"status":"Payment Required","code":402,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"afb3629b-bd8a-437a-9aed-bfe2de88d8ae","name":"Internal server error","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"Signer\": {\n    \"UserKey\": {\n      \"Key\": \"signer@example.com\",\n      \"Type\": 1\n    },\n    \"Email\": \"signer@example.com\",\n    \"FirstName\": \"John\",\n    \"LastName\": \"Smith\",\n    \"SmsPhoneNumber\": \"+1234567890\",\n    \"UserPassword\": \"pass1234\",\n    \"Company\": \"Acme Inc\",\n    \"Title\": \"Director\",\n    \"IsDisableAttachment\": false,\n    \"IsSuspended\": false,\n    \"IsNoDecline\": false,\n    \"NotificationMailsToSend\": [\n      0,\n      1,\n      2\n    ],\n    \"MinimumSignatures\": 1,\n    \"ForceApprovalOnSignature\": true,\n    \"PersonalMessage\": \"Your signature is required to proceed\",\n    \"UserPasswordDescription\": [\n      {\n        \"Language\": \"en-US\",\n        \"Value\": \"Please enter your password\"\n      },\n      {\n        \"Language\": \"he-IL\",\n        \"Value\": \"אנא הזן את הסיסמה שלך\"\n      }\n    ]\n  },\n  \"Templates\": [\n    {\n      \"Order\": 1,\n      \"TemplateId\": \"template-123\",\n      \"DynamicSigners\": [\n        {\n          \"UserKey\": {\n            \"Key\": \"dynamicsigner@example.com\",\n            \"Type\": 1\n          },\n          \"Email\": \"dynamicsigner@example.com\",\n          \"FirstName\": \"Dynamic\",\n          \"LastName\": \"Signer\"\n        }\n      ],\n      \"PermanentSignerSettings\": [\n        {\n          \"SignerIndex\": 0,\n          \"EnableAdditionalMessageDelivery\": true,\n          \"IsDisableAttachment\": false,\n          \"MinimumSignatures\": 1\n        }\n      ]\n    }\n  ],\n  \"Flows\": [\n    {\n      \"SignFlowId\": \"flow-456\",\n      \"Order\": 2\n    }\n  ],\n  \"KitAction\": 1,\n  \"SendingMethods\": [\n    0,\n    1\n  ],\n  \"IsUseCompanyNameInMessage\": false,\n  \"SignFlowDescriptionMessage\": \"Please sign the attached documents\",\n  \"SignerNotificationMailsToSend\": [\n    0,\n    1,\n    3\n  ],\n  \"SenderNotificationMailsToSend\": [\n    0,\n    1,\n    2\n  ],\n  \"IsTwoFactorEnabled\": true,\n  \"KitDescription\": \"Contract Agreement Kit\",\n  \"SenderKey\": {\n    \"Key\": \"sender@example.com\",\n    \"Type\": 1\n  },\n  \"PreliminaryText\": \"Please review and sign the following documents\",\n  \"ExternalLinks\": [\n    {\n      \"Description\": \"Company Website\",\n      \"Url\": \"https://www.example.com\"\n    }\n  ],\n  \"Recipients\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"recipient@example.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"recipient@example.com\",\n      \"FirstName\": \"Jane\",\n      \"LastName\": \"Doe\",\n      \"Company\": \"Example Corp\",\n      \"Title\": \"Manager\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/kits/single"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"501fb269-b2b2-4309-acb9-65023684f0c7"},{"name":"/v6/kits/single/:kitId","id":"ed1be3b6-e02a-4e2a-a411-4e48e4d1e313","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"Signer\": {\n    \"UserKey\": {\n      \"Key\": \"signer@example.com\",\n      \"Type\": 1\n    },\n    \"Email\": \"signer@example.com\",\n    \"FirstName\": \"John\",\n    \"LastName\": \"Smith\",\n    \"SmsPhoneNumber\": \"+1234567890\",\n    \"UserPassword\": \"pass1234\",\n    \"Company\": \"Acme Inc\",\n    \"Title\": \"Director\",\n    \"IsDisableAttachment\": false,\n    \"IsSuspended\": false,\n    \"IsNoDecline\": false,\n    \"NotificationMailsToSend\": [\n      0,\n      1,\n      2\n    ],\n    \"MinimumSignatures\": 1,\n    \"ForceApprovalOnSignature\": true,\n    \"PersonalMessage\": \"Your signature is required to proceed\",\n    \"UserPasswordDescription\": [\n      {\n        \"Language\": \"en-US\",\n        \"Value\": \"Please enter your password\"\n      },\n      {\n        \"Language\": \"he-IL\",\n        \"Value\": \"אנא הזן את הסיסמה שלך\"\n      }\n    ]\n  },\n  \"Templates\": [\n    {\n      \"Order\": 1,\n      \"TemplateId\": \"template-123\",\n      \"DynamicSigners\": [\n        {\n          \"UserKey\": {\n            \"Key\": \"dynamicsigner@example.com\",\n            \"Type\": 1\n          },\n          \"Email\": \"dynamicsigner@example.com\",\n          \"FirstName\": \"Dynamic\",\n          \"LastName\": \"Signer\"\n        }\n      ],\n      \"PermanentSignerSettings\": [\n        {\n          \"SignerIndex\": 0,\n          \"EnableAdditionalMessageDelivery\": true,\n          \"IsDisableAttachment\": false,\n          \"MinimumSignatures\": 1\n        }\n      ]\n    }\n  ],\n  \"Flows\": [\n    {\n      \"SignFlowId\": \"flow-456\",\n      \"Order\": 2\n    }\n  ],\n  \"KitAction\": 1,\n  \"SendingMethods\": [\n    0,\n    1\n  ],\n  \"IsUseCompanyNameInMessage\": false,\n  \"SignFlowDescriptionMessage\": \"Please sign the attached documents\",\n  \"SignerNotificationMailsToSend\": [\n    0,\n    1,\n    3\n  ],\n  \"SenderNotificationMailsToSend\": [\n    0,\n    1,\n    2\n  ],\n  \"IsTwoFactorEnabled\": true,\n  \"KitDescription\": \"Contract Agreement Kit\",\n  \"SenderKey\": {\n    \"Key\": \"sender@example.com\",\n    \"Type\": 1\n  },\n  \"PreliminaryText\": \"Please review and sign the following documents\",\n  \"ExternalLinks\": [\n    {\n      \"Description\": \"Company Website\",\n      \"Url\": \"https://www.example.com\"\n    }\n  ],\n  \"Recipients\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"recipient@example.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"recipient@example.com\",\n      \"FirstName\": \"Jane\",\n      \"LastName\": \"Doe\",\n      \"Company\": \"Example Corp\",\n      \"Title\": \"Manager\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/kits/single/:kitId","description":"<p>[V6] Update existing kit with new configuration</p>\n<hr />\n<h2 id=\"kitid\">kitId:</h2>\n<h3 id=\"the-unique-identifier-guid-of-the-kit-to-update\">The unique identifier (GUID) of the kit to update</h3>\n<hr />\n<h2 id=\"exupdatekitrequest\">exUpdateKitRequest:</h2>\n<h3 id=\"request-containing-updated-kit-configuration-including-kit-name-description-documents-optional-and-participant-information-only-provided-fields-will-be-updated\">Request containing updated kit configuration including kit name, description, documents (optional), and participant information. Only provided fields will be updated.</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* Signer</td>\n<td><em><strong>ExUser</strong></em></td>\n<td>Signer who is required to sign the flows included in the kit</td>\n</tr>\n<tr>\n<td>Templates</td>\n<td><em><strong>ExKitTemplate[]</strong></em></td>\n<td>Templates assigned to the kit</td>\n</tr>\n<tr>\n<td>Flows</td>\n<td><em><strong>ExKitFlow[]</strong></em></td>\n<td>Flows assigned to the kit</td>\n</tr>\n<tr>\n<td>* KitAction</td>\n<td><em><strong>SingleKitAction</strong></em></td>\n<td>The action to do after creating the kit - only save in DB or send the kit to the signer.</td>\n</tr>\n<tr>\n<td>SendingMethods</td>\n<td><em><strong>SendMethodTypes[]</strong></em></td>\n<td>Options to send the sign request to the signer (in case of null, the signer won't receive a request to sign)</td>\n</tr>\n<tr>\n<td>IsUseCompanyNameInMessage</td>\n<td>Boolean</td>\n<td>Sending the request to sign by name of the company instead of the sender name</td>\n</tr>\n<tr>\n<td>SignFlowDescriptionMessage</td>\n<td>String</td>\n<td>Additional information in the request to sign message</td>\n</tr>\n<tr>\n<td>SignerNotificationMailsToSend</td>\n<td><em><strong>NotificationMails[]</strong></em></td>\n<td>Types of emails notification for the sender and CC,Allowed values: 0,1,3,4,5,7,9,12,13,14,15</td>\n</tr>\n<tr>\n<td>SenderNotificationMailsToSend</td>\n<td><em><strong>NotificationMails[]</strong></em></td>\n<td>Types of emails notification for the signer,Allowed values: 0,1,2,6,8,10,11</td>\n</tr>\n<tr>\n<td>* IsTwoFactorEnabled</td>\n<td>Boolean</td>\n<td>Two-factor authentication for the signer.</td>\n</tr>\n<tr>\n<td>* KitDescription</td>\n<td>String(100)</td>\n<td>The display name of the kit.</td>\n</tr>\n<tr>\n<td>* SenderKey</td>\n<td><em><strong>ParticipantKey</strong></em></td>\n<td>Id of the Sender</td>\n</tr>\n<tr>\n<td>PreliminaryText</td>\n<td>String(1000)</td>\n<td>Optional introductory text displayed to the kit signer in the lobby screen.</td>\n</tr>\n<tr>\n<td>ExternalLinks</td>\n<td><em><strong>ExExternalLink[]</strong></em></td>\n<td>Optional collection of related external links (for integrations or metadata).</td>\n</tr>\n<tr>\n<td>Recipients</td>\n<td><em><strong>ExUser[]</strong></em></td>\n<td>Optional list of CC recipients associated with the kit.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exexternallink\">ExExternalLink:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Description</td>\n<td>String(100)</td>\n<td></td>\n</tr>\n<tr>\n<td>Url</td>\n<td>String</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"sendmethodtypes\">SendMethodTypes[]:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>SMS</td>\n</tr>\n<tr>\n<td>1</td>\n<td>EMail</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"singlekitaction\">SingleKitAction:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Save</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Send</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exkitflow\">ExKitFlow:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* SignFlowId</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>* Order</td>\n<td>Int32</td>\n<td>Defines the display order of flows in the kit signing lobby.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exkittemplate\">ExKitTemplate:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* Order</td>\n<td>Int32</td>\n<td>Defines the display order of flows from template in the kit signing lobby.</td>\n</tr>\n<tr>\n<td>* TemplateId</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>DynamicSigners</td>\n<td><em><strong>ExUser[]</strong></em></td>\n<td>Dynamic signers in template, to enable notification fill SmsPhoneNumber property.</td>\n</tr>\n<tr>\n<td>PermanentSignerSettings</td>\n<td><em><strong>ExPermanentSignerSettings[]</strong></em></td>\n<td>Permanent signers additional settings.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"expermanentsignersettings\">ExPermanentSignerSettings:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* SignerIndex</td>\n<td>Int32</td>\n<td>The index of the signer in the template, starting from 0.</td>\n</tr>\n<tr>\n<td>EnableAdditionalMessageDelivery</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Indicates whether the signing link should be sent via additional messaging channels(e.g., SMS or WhatsApp) in addition to email.</td>\n</tr>\n<tr>\n<td>IsDisableAttachment</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Disable/Enable add attachments to the flow</td>\n</tr>\n<tr>\n<td>IsSuspended</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Set status flow to suspended when the signer need to sign</td>\n</tr>\n<tr>\n<td>IsNoDecline</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Disable/Endable Decline option in flow</td>\n</tr>\n<tr>\n<td>NotificationMailsToSend</td>\n<td><em><strong>NotificationMails[]</strong></em></td>\n<td>Types of email notifications</td>\n</tr>\n<tr>\n<td>MinimumSignatures</td>\n<td>Nullable&lt;Int32&gt;</td>\n<td>When the user have optional signature element - Dox validate the minimum signatures in the document</td>\n</tr>\n<tr>\n<td>ForceApprovalOnSignature</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Force approval on signature</td>\n</tr>\n<tr>\n<td>PersonalMessage</td>\n<td>String(300) Validation: The field cannot contain script, vbscript, or style tags.</td>\n<td>Personal message to the signer</td>\n</tr>\n<tr>\n<td>UserPasswordDescription</td>\n<td><em><strong>LanguageKey[]</strong></em></td>\n<td>Display when the user open the linkfor example: \"Please enter your social security number\"LanguageKey is the message with all supported languages</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exuser\">ExUser:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* UserKey</td>\n<td><em><strong>ParticipantKey</strong></em></td>\n<td>Id of user</td>\n</tr>\n<tr>\n<td>Email</td>\n<td>String(77)</td>\n<td>Email of user</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td>String(50)</td>\n<td>First name of user</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td>String(50)</td>\n<td>Last name of user</td>\n</tr>\n<tr>\n<td>SmsPhoneNumber</td>\n<td>String(80)</td>\n<td>Phone Number of user (if empty, the user will not receive sms)</td>\n</tr>\n<tr>\n<td>UserPassword</td>\n<td>String Validation: Only letters, numbers, and special characters are allowed.</td>\n<td>Password for opening the sign link</td>\n</tr>\n<tr>\n<td>Company</td>\n<td>String(80)</td>\n<td>Company name of user</td>\n</tr>\n<tr>\n<td>Title</td>\n<td>String(80)</td>\n<td>Title of user</td>\n</tr>\n<tr>\n<td>IsDisableAttachment</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Disable/Enable add attachments to the flow</td>\n</tr>\n<tr>\n<td>IsSuspended</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Set status flow to suspended when the signer need to sign</td>\n</tr>\n<tr>\n<td>IsNoDecline</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Disable/Endable Decline option in flow</td>\n</tr>\n<tr>\n<td>NotificationMailsToSend</td>\n<td><em><strong>NotificationMails[]</strong></em></td>\n<td>Types of email notifications</td>\n</tr>\n<tr>\n<td>MinimumSignatures</td>\n<td>Nullable&lt;Int32&gt;</td>\n<td>When the user have optional signature element - Dox validate the minimum signatures in the document</td>\n</tr>\n<tr>\n<td>ForceApprovalOnSignature</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Force approval on signature</td>\n</tr>\n<tr>\n<td>PersonalMessage</td>\n<td>String(300) Validation: The field cannot contain script, vbscript, or style tags.</td>\n<td>Personal message to the signer</td>\n</tr>\n<tr>\n<td>UserPasswordDescription</td>\n<td><em><strong>LanguageKey[]</strong></em></td>\n<td>Display when the user open the linkfor example: \"Please enter your social security number\"LanguageKey is the message with all supported languages</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"languagekey\">LanguageKey:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Language</td>\n<td>String</td>\n<td>language : 'en-US','he-IL'</td>\n</tr>\n<tr>\n<td>Value</td>\n<td>String</td>\n<td>Value of text</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"notificationmails\">NotificationMails[]:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>All</td>\n</tr>\n<tr>\n<td>1</td>\n<td>None</td>\n</tr>\n<tr>\n<td>2</td>\n<td>SignFlow</td>\n</tr>\n<tr>\n<td>3</td>\n<td>FlowApproved</td>\n</tr>\n<tr>\n<td>4</td>\n<td>FlowDeclined</td>\n</tr>\n<tr>\n<td>5</td>\n<td>FlowStart</td>\n</tr>\n<tr>\n<td>6</td>\n<td>ReminderToSignFlow</td>\n</tr>\n<tr>\n<td>7</td>\n<td>FlowStoppedToSender</td>\n</tr>\n<tr>\n<td>8</td>\n<td>FlowStoppedToSigner</td>\n</tr>\n<tr>\n<td>9</td>\n<td>KitCompleted</td>\n</tr>\n<tr>\n<td>10</td>\n<td>SignKit</td>\n</tr>\n<tr>\n<td>11</td>\n<td>ReminderToSignKit</td>\n</tr>\n<tr>\n<td>12</td>\n<td>KitCreated</td>\n</tr>\n<tr>\n<td>13</td>\n<td>FlowExpired</td>\n</tr>\n<tr>\n<td>14</td>\n<td>FlowCCApproved</td>\n</tr>\n<tr>\n<td>15</td>\n<td>FlowCCDeclined</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"participantkey\">ParticipantKey:</h3>\n<h3 id=\"allow-to-locate-doxi-user-byuseremail1userphone2\">Allow to locate Doxi user by:UserEmail=1UserPhone=2</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* Key</td>\n<td>String</td>\n<td>User search value</td>\n</tr>\n<tr>\n<td>Type</td>\n<td><em><strong>ParticipantKeyType</strong></em></td>\n<td>Search type:UserEmail=1,UserPhone=2</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"participantkeytype\">ParticipantKeyType:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>UserId</td>\n</tr>\n<tr>\n<td>1</td>\n<td>UserEmail</td>\n</tr>\n<tr>\n<td>2</td>\n<td>UserPhone</td>\n</tr>\n<tr>\n<td>3</td>\n<td>UserName</td>\n</tr>\n<tr>\n<td>4</td>\n<td>GroupId</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","kits","single",":kitId"],"host":["/"],"query":[],"variable":[{"type":"any","value":"string","key":"kitId"}]}},"response":[{"id":"88dd76e6-0718-48b9-93ae-163bc6950d7c","name":"Kit updated successfully","originalRequest":{"method":"PUT","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"Signer\": {\n    \"UserKey\": {\n      \"Key\": \"signer@example.com\",\n      \"Type\": 1\n    },\n    \"Email\": \"signer@example.com\",\n    \"FirstName\": \"John\",\n    \"LastName\": \"Smith\",\n    \"SmsPhoneNumber\": \"+1234567890\",\n    \"UserPassword\": \"pass1234\",\n    \"Company\": \"Acme Inc\",\n    \"Title\": \"Director\",\n    \"IsDisableAttachment\": false,\n    \"IsSuspended\": false,\n    \"IsNoDecline\": false,\n    \"NotificationMailsToSend\": [\n      0,\n      1,\n      2\n    ],\n    \"MinimumSignatures\": 1,\n    \"ForceApprovalOnSignature\": true,\n    \"PersonalMessage\": \"Your signature is required to proceed\",\n    \"UserPasswordDescription\": [\n      {\n        \"Language\": \"en-US\",\n        \"Value\": \"Please enter your password\"\n      },\n      {\n        \"Language\": \"he-IL\",\n        \"Value\": \"אנא הזן את הסיסמה שלך\"\n      }\n    ]\n  },\n  \"Templates\": [\n    {\n      \"Order\": 1,\n      \"TemplateId\": \"template-123\",\n      \"DynamicSigners\": [\n        {\n          \"UserKey\": {\n            \"Key\": \"dynamicsigner@example.com\",\n            \"Type\": 1\n          },\n          \"Email\": \"dynamicsigner@example.com\",\n          \"FirstName\": \"Dynamic\",\n          \"LastName\": \"Signer\"\n        }\n      ],\n      \"PermanentSignerSettings\": [\n        {\n          \"SignerIndex\": 0,\n          \"EnableAdditionalMessageDelivery\": true,\n          \"IsDisableAttachment\": false,\n          \"MinimumSignatures\": 1\n        }\n      ]\n    }\n  ],\n  \"Flows\": [\n    {\n      \"SignFlowId\": \"flow-456\",\n      \"Order\": 2\n    }\n  ],\n  \"KitAction\": 1,\n  \"SendingMethods\": [\n    0,\n    1\n  ],\n  \"IsUseCompanyNameInMessage\": false,\n  \"SignFlowDescriptionMessage\": \"Please sign the attached documents\",\n  \"SignerNotificationMailsToSend\": [\n    0,\n    1,\n    3\n  ],\n  \"SenderNotificationMailsToSend\": [\n    0,\n    1,\n    2\n  ],\n  \"IsTwoFactorEnabled\": true,\n  \"KitDescription\": \"Contract Agreement Kit\",\n  \"SenderKey\": {\n    \"Key\": \"sender@example.com\",\n    \"Type\": 1\n  },\n  \"PreliminaryText\": \"Please review and sign the following documents\",\n  \"ExternalLinks\": [\n    {\n      \"Description\": \"Company Website\",\n      \"Url\": \"https://www.example.com\"\n    }\n  ],\n  \"Recipients\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"recipient@example.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"recipient@example.com\",\n      \"FirstName\": \"Jane\",\n      \"LastName\": \"Doe\",\n      \"Company\": \"Example Corp\",\n      \"Title\": \"Manager\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/kits/single/:kitId","host":["/"],"path":["v6","kits","single",":kitId"],"variable":[{"key":"kitId","value":"string"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"40d58464-ad11-4fb9-b644-128d9abe13d6","name":"Kit not found or invalid update data","originalRequest":{"method":"PUT","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"Signer\": {\n    \"UserKey\": {\n      \"Key\": \"signer@example.com\",\n      \"Type\": 1\n    },\n    \"Email\": \"signer@example.com\",\n    \"FirstName\": \"John\",\n    \"LastName\": \"Smith\",\n    \"SmsPhoneNumber\": \"+1234567890\",\n    \"UserPassword\": \"pass1234\",\n    \"Company\": \"Acme Inc\",\n    \"Title\": \"Director\",\n    \"IsDisableAttachment\": false,\n    \"IsSuspended\": false,\n    \"IsNoDecline\": false,\n    \"NotificationMailsToSend\": [\n      0,\n      1,\n      2\n    ],\n    \"MinimumSignatures\": 1,\n    \"ForceApprovalOnSignature\": true,\n    \"PersonalMessage\": \"Your signature is required to proceed\",\n    \"UserPasswordDescription\": [\n      {\n        \"Language\": \"en-US\",\n        \"Value\": \"Please enter your password\"\n      },\n      {\n        \"Language\": \"he-IL\",\n        \"Value\": \"אנא הזן את הסיסמה שלך\"\n      }\n    ]\n  },\n  \"Templates\": [\n    {\n      \"Order\": 1,\n      \"TemplateId\": \"template-123\",\n      \"DynamicSigners\": [\n        {\n          \"UserKey\": {\n            \"Key\": \"dynamicsigner@example.com\",\n            \"Type\": 1\n          },\n          \"Email\": \"dynamicsigner@example.com\",\n          \"FirstName\": \"Dynamic\",\n          \"LastName\": \"Signer\"\n        }\n      ],\n      \"PermanentSignerSettings\": [\n        {\n          \"SignerIndex\": 0,\n          \"EnableAdditionalMessageDelivery\": true,\n          \"IsDisableAttachment\": false,\n          \"MinimumSignatures\": 1\n        }\n      ]\n    }\n  ],\n  \"Flows\": [\n    {\n      \"SignFlowId\": \"flow-456\",\n      \"Order\": 2\n    }\n  ],\n  \"KitAction\": 1,\n  \"SendingMethods\": [\n    0,\n    1\n  ],\n  \"IsUseCompanyNameInMessage\": false,\n  \"SignFlowDescriptionMessage\": \"Please sign the attached documents\",\n  \"SignerNotificationMailsToSend\": [\n    0,\n    1,\n    3\n  ],\n  \"SenderNotificationMailsToSend\": [\n    0,\n    1,\n    2\n  ],\n  \"IsTwoFactorEnabled\": true,\n  \"KitDescription\": \"Contract Agreement Kit\",\n  \"SenderKey\": {\n    \"Key\": \"sender@example.com\",\n    \"Type\": 1\n  },\n  \"PreliminaryText\": \"Please review and sign the following documents\",\n  \"ExternalLinks\": [\n    {\n      \"Description\": \"Company Website\",\n      \"Url\": \"https://www.example.com\"\n    }\n  ],\n  \"Recipients\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"recipient@example.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"recipient@example.com\",\n      \"FirstName\": \"Jane\",\n      \"LastName\": \"Doe\",\n      \"Company\": \"Example Corp\",\n      \"Title\": \"Manager\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/kits/single/:kitId","host":["/"],"path":["v6","kits","single",":kitId"],"variable":[{"key":"kitId","value":"string"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"a7766d23-5831-4d99-afcd-feb95d47dbe8","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"PUT","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"Signer\": {\n    \"UserKey\": {\n      \"Key\": \"signer@example.com\",\n      \"Type\": 1\n    },\n    \"Email\": \"signer@example.com\",\n    \"FirstName\": \"John\",\n    \"LastName\": \"Smith\",\n    \"SmsPhoneNumber\": \"+1234567890\",\n    \"UserPassword\": \"pass1234\",\n    \"Company\": \"Acme Inc\",\n    \"Title\": \"Director\",\n    \"IsDisableAttachment\": false,\n    \"IsSuspended\": false,\n    \"IsNoDecline\": false,\n    \"NotificationMailsToSend\": [\n      0,\n      1,\n      2\n    ],\n    \"MinimumSignatures\": 1,\n    \"ForceApprovalOnSignature\": true,\n    \"PersonalMessage\": \"Your signature is required to proceed\",\n    \"UserPasswordDescription\": [\n      {\n        \"Language\": \"en-US\",\n        \"Value\": \"Please enter your password\"\n      },\n      {\n        \"Language\": \"he-IL\",\n        \"Value\": \"אנא הזן את הסיסמה שלך\"\n      }\n    ]\n  },\n  \"Templates\": [\n    {\n      \"Order\": 1,\n      \"TemplateId\": \"template-123\",\n      \"DynamicSigners\": [\n        {\n          \"UserKey\": {\n            \"Key\": \"dynamicsigner@example.com\",\n            \"Type\": 1\n          },\n          \"Email\": \"dynamicsigner@example.com\",\n          \"FirstName\": \"Dynamic\",\n          \"LastName\": \"Signer\"\n        }\n      ],\n      \"PermanentSignerSettings\": [\n        {\n          \"SignerIndex\": 0,\n          \"EnableAdditionalMessageDelivery\": true,\n          \"IsDisableAttachment\": false,\n          \"MinimumSignatures\": 1\n        }\n      ]\n    }\n  ],\n  \"Flows\": [\n    {\n      \"SignFlowId\": \"flow-456\",\n      \"Order\": 2\n    }\n  ],\n  \"KitAction\": 1,\n  \"SendingMethods\": [\n    0,\n    1\n  ],\n  \"IsUseCompanyNameInMessage\": false,\n  \"SignFlowDescriptionMessage\": \"Please sign the attached documents\",\n  \"SignerNotificationMailsToSend\": [\n    0,\n    1,\n    3\n  ],\n  \"SenderNotificationMailsToSend\": [\n    0,\n    1,\n    2\n  ],\n  \"IsTwoFactorEnabled\": true,\n  \"KitDescription\": \"Contract Agreement Kit\",\n  \"SenderKey\": {\n    \"Key\": \"sender@example.com\",\n    \"Type\": 1\n  },\n  \"PreliminaryText\": \"Please review and sign the following documents\",\n  \"ExternalLinks\": [\n    {\n      \"Description\": \"Company Website\",\n      \"Url\": \"https://www.example.com\"\n    }\n  ],\n  \"Recipients\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"recipient@example.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"recipient@example.com\",\n      \"FirstName\": \"Jane\",\n      \"LastName\": \"Doe\",\n      \"Company\": \"Example Corp\",\n      \"Title\": \"Manager\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/kits/single/:kitId","host":["/"],"path":["v6","kits","single",":kitId"],"variable":[{"key":"kitId","value":"string"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"6ff54d95-35bb-420d-b344-1b788711e60b","name":"Payment Required - Kit API license not available","originalRequest":{"method":"PUT","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"Signer\": {\n    \"UserKey\": {\n      \"Key\": \"signer@example.com\",\n      \"Type\": 1\n    },\n    \"Email\": \"signer@example.com\",\n    \"FirstName\": \"John\",\n    \"LastName\": \"Smith\",\n    \"SmsPhoneNumber\": \"+1234567890\",\n    \"UserPassword\": \"pass1234\",\n    \"Company\": \"Acme Inc\",\n    \"Title\": \"Director\",\n    \"IsDisableAttachment\": false,\n    \"IsSuspended\": false,\n    \"IsNoDecline\": false,\n    \"NotificationMailsToSend\": [\n      0,\n      1,\n      2\n    ],\n    \"MinimumSignatures\": 1,\n    \"ForceApprovalOnSignature\": true,\n    \"PersonalMessage\": \"Your signature is required to proceed\",\n    \"UserPasswordDescription\": [\n      {\n        \"Language\": \"en-US\",\n        \"Value\": \"Please enter your password\"\n      },\n      {\n        \"Language\": \"he-IL\",\n        \"Value\": \"אנא הזן את הסיסמה שלך\"\n      }\n    ]\n  },\n  \"Templates\": [\n    {\n      \"Order\": 1,\n      \"TemplateId\": \"template-123\",\n      \"DynamicSigners\": [\n        {\n          \"UserKey\": {\n            \"Key\": \"dynamicsigner@example.com\",\n            \"Type\": 1\n          },\n          \"Email\": \"dynamicsigner@example.com\",\n          \"FirstName\": \"Dynamic\",\n          \"LastName\": \"Signer\"\n        }\n      ],\n      \"PermanentSignerSettings\": [\n        {\n          \"SignerIndex\": 0,\n          \"EnableAdditionalMessageDelivery\": true,\n          \"IsDisableAttachment\": false,\n          \"MinimumSignatures\": 1\n        }\n      ]\n    }\n  ],\n  \"Flows\": [\n    {\n      \"SignFlowId\": \"flow-456\",\n      \"Order\": 2\n    }\n  ],\n  \"KitAction\": 1,\n  \"SendingMethods\": [\n    0,\n    1\n  ],\n  \"IsUseCompanyNameInMessage\": false,\n  \"SignFlowDescriptionMessage\": \"Please sign the attached documents\",\n  \"SignerNotificationMailsToSend\": [\n    0,\n    1,\n    3\n  ],\n  \"SenderNotificationMailsToSend\": [\n    0,\n    1,\n    2\n  ],\n  \"IsTwoFactorEnabled\": true,\n  \"KitDescription\": \"Contract Agreement Kit\",\n  \"SenderKey\": {\n    \"Key\": \"sender@example.com\",\n    \"Type\": 1\n  },\n  \"PreliminaryText\": \"Please review and sign the following documents\",\n  \"ExternalLinks\": [\n    {\n      \"Description\": \"Company Website\",\n      \"Url\": \"https://www.example.com\"\n    }\n  ],\n  \"Recipients\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"recipient@example.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"recipient@example.com\",\n      \"FirstName\": \"Jane\",\n      \"LastName\": \"Doe\",\n      \"Company\": \"Example Corp\",\n      \"Title\": \"Manager\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/kits/single/:kitId","host":["/"],"path":["v6","kits","single",":kitId"],"variable":[{"key":"kitId","value":"string"}]}},"status":"Payment Required","code":402,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"ae9ee150-6c72-4a23-b7d1-19f67ce40936","name":"Internal server error","originalRequest":{"method":"PUT","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"Signer\": {\n    \"UserKey\": {\n      \"Key\": \"signer@example.com\",\n      \"Type\": 1\n    },\n    \"Email\": \"signer@example.com\",\n    \"FirstName\": \"John\",\n    \"LastName\": \"Smith\",\n    \"SmsPhoneNumber\": \"+1234567890\",\n    \"UserPassword\": \"pass1234\",\n    \"Company\": \"Acme Inc\",\n    \"Title\": \"Director\",\n    \"IsDisableAttachment\": false,\n    \"IsSuspended\": false,\n    \"IsNoDecline\": false,\n    \"NotificationMailsToSend\": [\n      0,\n      1,\n      2\n    ],\n    \"MinimumSignatures\": 1,\n    \"ForceApprovalOnSignature\": true,\n    \"PersonalMessage\": \"Your signature is required to proceed\",\n    \"UserPasswordDescription\": [\n      {\n        \"Language\": \"en-US\",\n        \"Value\": \"Please enter your password\"\n      },\n      {\n        \"Language\": \"he-IL\",\n        \"Value\": \"אנא הזן את הסיסמה שלך\"\n      }\n    ]\n  },\n  \"Templates\": [\n    {\n      \"Order\": 1,\n      \"TemplateId\": \"template-123\",\n      \"DynamicSigners\": [\n        {\n          \"UserKey\": {\n            \"Key\": \"dynamicsigner@example.com\",\n            \"Type\": 1\n          },\n          \"Email\": \"dynamicsigner@example.com\",\n          \"FirstName\": \"Dynamic\",\n          \"LastName\": \"Signer\"\n        }\n      ],\n      \"PermanentSignerSettings\": [\n        {\n          \"SignerIndex\": 0,\n          \"EnableAdditionalMessageDelivery\": true,\n          \"IsDisableAttachment\": false,\n          \"MinimumSignatures\": 1\n        }\n      ]\n    }\n  ],\n  \"Flows\": [\n    {\n      \"SignFlowId\": \"flow-456\",\n      \"Order\": 2\n    }\n  ],\n  \"KitAction\": 1,\n  \"SendingMethods\": [\n    0,\n    1\n  ],\n  \"IsUseCompanyNameInMessage\": false,\n  \"SignFlowDescriptionMessage\": \"Please sign the attached documents\",\n  \"SignerNotificationMailsToSend\": [\n    0,\n    1,\n    3\n  ],\n  \"SenderNotificationMailsToSend\": [\n    0,\n    1,\n    2\n  ],\n  \"IsTwoFactorEnabled\": true,\n  \"KitDescription\": \"Contract Agreement Kit\",\n  \"SenderKey\": {\n    \"Key\": \"sender@example.com\",\n    \"Type\": 1\n  },\n  \"PreliminaryText\": \"Please review and sign the following documents\",\n  \"ExternalLinks\": [\n    {\n      \"Description\": \"Company Website\",\n      \"Url\": \"https://www.example.com\"\n    }\n  ],\n  \"Recipients\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"recipient@example.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"recipient@example.com\",\n      \"FirstName\": \"Jane\",\n      \"LastName\": \"Doe\",\n      \"Company\": \"Example Corp\",\n      \"Title\": \"Manager\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/kits/single/:kitId","host":["/"],"path":["v6","kits","single",":kitId"],"variable":[{"key":"kitId","value":"string"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"ed1be3b6-e02a-4e2a-a411-4e48e4d1e313"},{"name":"/v6/kits/single/:kitId","id":"cc6a23fc-cb33-40ea-b96a-38ae25793275","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Accept","value":"application/json"}],"url":"//v6/kits/single/:kitId","description":"<p>[V6] Get kit information by kit ID</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","kits","single",":kitId"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>The unique identifier (GUID) of the kit</p>\n","type":"text/plain"},"type":"any","value":"string","key":"kitId"}]}},"response":[{"id":"e6b775f5-d85f-43cf-80e9-ab7b4e06e127","name":"Kit information retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:kitId","host":["/"],"path":["v6","kits","single",":kitId"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the kit"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Id\": \"550e8400-e29b-41d4-a716-446655440000\",\n  \"CreateDate\": \"15/01/2024 10:30:00\",\n  \"Status\": 4,\n  \"Signer\": {\n    \"UserKey\": {\n      \"Key\": \"signer@example.com\",\n      \"Type\": 1\n    },\n    \"Email\": \"signer@example.com\",\n    \"FirstName\": \"John\",\n    \"LastName\": \"Smith\",\n    \"SmsPhoneNumber\": \"+1234567890\",\n    \"UserPassword\": \"pass1234\",\n    \"Company\": \"Acme Inc\",\n    \"Title\": \"Director\",\n    \"IsDisableAttachment\": false,\n    \"IsSuspended\": false,\n    \"IsNoDecline\": false,\n    \"NotificationMailsToSend\": [\n      0,\n      1,\n      2\n    ],\n    \"MinimumSignatures\": 1,\n    \"ForceApprovalOnSignature\": true,\n    \"PersonalMessage\": \"Your signature is required to proceed\",\n    \"UserPasswordDescription\": [\n      {\n        \"Language\": \"en-US\",\n        \"Value\": \"Please enter your password\"\n      },\n      {\n        \"Language\": \"he-IL\",\n        \"Value\": \"אנא הזן את הסיסמה שלך\"\n      }\n    ]\n  },\n  \"Templates\": [],\n  \"Flows\": [\n    {\n      \"SignFlowId\": \"8d019636-b03c-48f2-baf8-83d58386b7f6\",\n      \"Order\": 2\n    }\n  ],\n  \"KitAction\": 1,\n  \"SendingMethods\": [\n    0,\n    1\n  ],\n  \"IsUseCompanyNameInMessage\": false,\n  \"SignFlowDescriptionMessage\": \"Please sign the attached documents\",\n  \"SignerNotificationMailsToSend\": [\n    0,\n    1,\n    3\n  ],\n  \"SenderNotificationMailsToSend\": [\n    0,\n    1,\n    2\n  ],\n  \"IsTwoFactorEnabled\": true,\n  \"KitDescription\": \"Contract Agreement Kit\",\n  \"SenderKey\": {\n    \"Key\": \"sender@example.com\",\n    \"Type\": 1\n  },\n  \"PreliminaryText\": \"Please review and sign the following documents\",\n  \"ExternalLinks\": [\n    {\n      \"Description\": \"Company Website\",\n      \"Url\": \"https://www.example.com\"\n    }\n  ],\n  \"Recipients\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"recipient@example.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"recipient@example.com\",\n      \"FirstName\": \"Jane\",\n      \"LastName\": \"Doe\",\n      \"Company\": \"Example Corp\",\n      \"Title\": \"Manager\"\n    }\n  ]\n}"},{"id":"9d94c84d-8884-4dca-89fc-b7b8d55adaef","name":"Kit not found","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:kitId","host":["/"],"path":["v6","kits","single",":kitId"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the kit"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"ee270174-3db0-42e0-92e4-e8bf756678ca","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:kitId","host":["/"],"path":["v6","kits","single",":kitId"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the kit"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"1ccd59c7-d675-4570-a0b1-2edf8f4e5048","name":"Payment Required - Kit API license not available","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:kitId","host":["/"],"path":["v6","kits","single",":kitId"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the kit"}]}},"status":"Payment Required","code":402,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"1880ee70-2594-4170-b9a2-c9867fdf8870","name":"Internal server error","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:kitId","host":["/"],"path":["v6","kits","single",":kitId"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the kit"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"cc6a23fc-cb33-40ea-b96a-38ae25793275"},{"name":"/v6/kits/single/:kitId","id":"9b760dc4-0ec6-4c03-98d6-7518b4e2806a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Accept","value":"text/plain"}],"url":"//v6/kits/single/:kitId","description":"<p>[V6] Delete kit</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","kits","single",":kitId"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>The unique identifier (GUID) of the kit to delete</p>\n","type":"text/plain"},"type":"any","value":"string","key":"kitId"}]}},"response":[{"id":"ced846fe-ad3d-4a88-aea2-0ef933f3f553","name":"Kit deleted successfully","originalRequest":{"method":"DELETE","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:kitId","host":["/"],"path":["v6","kits","single",":kitId"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the kit to delete"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"6a774aef-b3b1-4c6c-a02e-99c51d0b59cc","name":"Kit not found","originalRequest":{"method":"DELETE","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:kitId","host":["/"],"path":["v6","kits","single",":kitId"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the kit to delete"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"c3f41c7d-4e42-400d-b469-f326d2896072","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"DELETE","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:kitId","host":["/"],"path":["v6","kits","single",":kitId"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the kit to delete"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"7dbe2eed-5217-4b9d-b228-3c3ae14697ed","name":"Payment Required - Kit API license not available","originalRequest":{"method":"DELETE","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:kitId","host":["/"],"path":["v6","kits","single",":kitId"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the kit to delete"}]}},"status":"Payment Required","code":402,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"764846ff-4850-488d-af5c-cea00bab2cd6","name":"Internal server error","originalRequest":{"method":"DELETE","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:kitId","host":["/"],"path":["v6","kits","single",":kitId"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the kit to delete"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"9b760dc4-0ec6-4c03-98d6-7518b4e2806a"},{"name":"/v6/kits/single/search","id":"2e21dfac-088f-4a83-b802-0ec87e76d0f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"ConstantKitId\": \"2ffa889a-c257-4128-a1d5-51b7ec77644c\",\n  \"SignFlowId\": \"aA14ff66-dC54-441F-d5EE-82fe69bFEd5E\",\n  \"FromCreateDate\": \"07/05/2002 19:41:01\",\n  \"ToCreateDate\": \"09/04/1952 06:33:24\",\n  \"Status\": 3,\n  \"MainSigner\": {\n    \"Key\": \"0521234567\",\n    \"Type\": 2\n  },\n  \"CreatedBy\": {\n    \"Key\": \"someUser@someCompany.com\",\n    \"Type\": 1\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/kits/single/search","description":"<p>Search kit by parameters</p>\n<h2 id=\"json-object-description\">JSON object description:</h2>\n<hr />\n<h2 id=\"searchkitrequest\">searchKitRequest:</h2>\n<h3 id=\"the-search-parameter\">The search parameter</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ConstantKitId</td>\n<td>String Validation: Invalid GUID format</td>\n<td>Filter by Constant kit id</td>\n</tr>\n<tr>\n<td>SignFlowId</td>\n<td>String Validation: Invalid GUID format</td>\n<td>Filter by flow id exists in the kit</td>\n</tr>\n<tr>\n<td>FromCreateDate</td>\n<td>Nullable&lt;DateTime&gt;</td>\n<td>Filter by start creation date. Format: dd/mm/yyyy hh:MM:ss in UTC</td>\n</tr>\n<tr>\n<td>ToCreateDate</td>\n<td>Nullable&lt;DateTime&gt;</td>\n<td>Filter by end creation date. Format: dd/mm/yyyy hh:MM:ss in UTC</td>\n</tr>\n<tr>\n<td>Status</td>\n<td><em><strong>Nullable&lt;KitStatusType&gt;</strong></em></td>\n<td>Filter by Kit status</td>\n</tr>\n<tr>\n<td>MainSigner</td>\n<td><em><strong>ParticipantKey</strong></em></td>\n<td>Filter by main signer participant key</td>\n</tr>\n<tr>\n<td>CreatedBy</td>\n<td><em><strong>ParticipantKey</strong></em></td>\n<td>Filter by creator participant key</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"participantkey\">ParticipantKey:</h3>\n<h3 id=\"allow-to-locate-doxi-user-byuseremail1userphone2\">Allow to locate Doxi user by:UserEmail=1UserPhone=2</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* Key</td>\n<td>String</td>\n<td>User search value</td>\n</tr>\n<tr>\n<td>Type</td>\n<td><em><strong>ParticipantKeyType</strong></em></td>\n<td>Search type:UserEmail=1,UserPhone=2</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"participantkeytype\">ParticipantKeyType:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>UserId</td>\n</tr>\n<tr>\n<td>1</td>\n<td>UserEmail</td>\n</tr>\n<tr>\n<td>2</td>\n<td>UserPhone</td>\n</tr>\n<tr>\n<td>3</td>\n<td>UserName</td>\n</tr>\n<tr>\n<td>4</td>\n<td>GroupId</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"kitstatustype\">KitStatusType:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Open</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Completed</td>\n</tr>\n<tr>\n<td>2</td>\n<td>NotSend</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Deleted</td>\n</tr>\n<tr>\n<td>4</td>\n<td>InProgress</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","kits","single","search"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"760d162e-4851-44a2-aa3f-5bd89f0d1a13","name":"Kits information retrieved successfully","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"ConstantKitId\": \"2ffa889a-c257-4128-a1d5-51b7ec77644c\",\n  \"SignFlowId\": \"aA14ff66-dC54-441F-d5EE-82fe69bFEd5E\",\n  \"FromCreateDate\": \"07/05/2002 19:41:01\",\n  \"ToCreateDate\": \"09/04/1952 06:33:24\",\n  \"Status\": 3,\n  \"MainSigner\": {\n    \"Key\": \"0521234567\",\n    \"Type\": 2\n  },\n  \"CreatedBy\": {\n    \"Key\": \"someUser@someCompany.com\",\n    \"Type\": 1\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/kits/single/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"KitsIds\": [\n    \"8026e7dc-7d97-4c56-86a4-f3cc214b17f6\",\n    \"47cc68a6-4a2b-417b-9f64-60f85258ac3d\",\n    \"540116d7-5c56-49fa-a0e7-f96ee343cc24\",\n    \"66370660-7c44-4e07-92e1-4dad9cf14bbe\",\n    \"f9457213-d62c-4387-9696-7652101fb579\",\n    \"df72b155-4e92-4ffa-a10a-62635e131534\"\n  ]\n}"},{"id":"4fccfe2f-2665-4868-b554-5f1b660c1c52","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"ConstantKitId\": \"2ffa889a-c257-4128-a1d5-51b7ec77644c\",\n  \"SignFlowId\": \"aA14ff66-dC54-441F-d5EE-82fe69bFEd5E\",\n  \"FromCreateDate\": \"07/05/2002 19:41:01\",\n  \"ToCreateDate\": \"09/04/1952 06:33:24\",\n  \"Status\": 3,\n  \"MainSigner\": {\n    \"Key\": \"0521234567\",\n    \"Type\": 2\n  },\n  \"CreatedBy\": {\n    \"Key\": \"someUser@someCompany.com\",\n    \"Type\": 1\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/kits/single/search"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"a1dca668-8f64-4332-a16e-0428bc041eee","name":"Payment Required - Kit API license not available","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"ConstantKitId\": \"2ffa889a-c257-4128-a1d5-51b7ec77644c\",\n  \"SignFlowId\": \"aA14ff66-dC54-441F-d5EE-82fe69bFEd5E\",\n  \"FromCreateDate\": \"07/05/2002 19:41:01\",\n  \"ToCreateDate\": \"09/04/1952 06:33:24\",\n  \"Status\": 3,\n  \"MainSigner\": {\n    \"Key\": \"0521234567\",\n    \"Type\": 2\n  },\n  \"CreatedBy\": {\n    \"Key\": \"someUser@someCompany.com\",\n    \"Type\": 1\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/kits/single/search"},"status":"Payment Required","code":402,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"329948d1-1b7d-4081-995c-48185c646761","name":"Internal server error","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"ConstantKitId\": \"2ffa889a-c257-4128-a1d5-51b7ec77644c\",\n  \"SignFlowId\": \"aA14ff66-dC54-441F-d5EE-82fe69bFEd5E\",\n  \"FromCreateDate\": \"07/05/2002 19:41:01\",\n  \"ToCreateDate\": \"09/04/1952 06:33:24\",\n  \"Status\": 3,\n  \"MainSigner\": {\n    \"Key\": \"0521234567\",\n    \"Type\": 2\n  },\n  \"CreatedBy\": {\n    \"Key\": \"someUser@someCompany.com\",\n    \"Type\": 1\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/kits/single/search"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"2e21dfac-088f-4a83-b802-0ec87e76d0f9"},{"name":"/v6/kits/single","id":"e74b80a5-c676-4c8e-8c93-6354baa6b990","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Accept","value":"application/json"}],"url":"//v6/kits/single","description":"<p>[V6] Get all kits</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","kits","single"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"87990355-cd68-4343-b7d4-802ca5ca4d29","name":"Kits information retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:page/:size","host":["/"],"path":["v6","kits","single",":page",":size"],"variable":[{"key":"page","value":"3460"},{"key":"size","value":"3460"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"KitsIds\": [\n    \"8026e7dc-7d97-4c56-86a4-f3cc214b17f6\",\n    \"47cc68a6-4a2b-417b-9f64-60f85258ac3d\",\n    \"540116d7-5c56-49fa-a0e7-f96ee343cc24\",\n    \"66370660-7c44-4e07-92e1-4dad9cf14bbe\",\n    \"f9457213-d62c-4387-9696-7652101fb579\",\n    \"df72b155-4e92-4ffa-a10a-62635e131534\"\n  ]\n}"},{"id":"5d658029-2b3f-466e-a78f-c7e36e1abc36","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:page/:size","host":["/"],"path":["v6","kits","single",":page",":size"],"variable":[{"key":"page","value":"3460"},{"key":"size","value":"3460"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"3103108c-759f-4c3f-b397-4bce78b2e540","name":"Payment Required - Kit API license not available","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:page/:size","host":["/"],"path":["v6","kits","single",":page",":size"],"variable":[{"key":"page","value":"3460"},{"key":"size","value":"3460"}]}},"status":"Payment Required","code":402,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"75938ea8-bb5b-4986-80e6-45f85916433c","name":"Internal server error","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:page/:size","host":["/"],"path":["v6","kits","single",":page",":size"],"variable":[{"key":"page","value":"3460"},{"key":"size","value":"3460"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"e74b80a5-c676-4c8e-8c93-6354baa6b990"},{"name":"/v6/kits/single/:kitId/send","id":"ab133c0c-d216-4fcf-9c29-39c5581342af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Accept","value":"text/plain"}],"url":"//v6/kits/single/:kitId/send","description":"<p>[V6] Send kit</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","kits","single",":kitId","send"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>The unique identifier (GUID) of the kit to send</p>\n","type":"text/plain"},"type":"any","value":"string","key":"kitId"}]}},"response":[{"id":"755019f9-d005-4d46-8e35-aad2cfd6c5b8","name":"Kit sent successfully","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:kitId/send","host":["/"],"path":["v6","kits","single",":kitId","send"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the kit to send"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"87d8bab5-dee3-4e16-bd8c-5a1d669490e6","name":"Kit not found","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:kitId/send","host":["/"],"path":["v6","kits","single",":kitId","send"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the kit to send"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"8b96a47e-c749-4bdd-8271-c1f0cf6d31c1","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:kitId/send","host":["/"],"path":["v6","kits","single",":kitId","send"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the kit to send"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"ad8c0508-75ab-42ed-a86e-7539c0701453","name":"Payment Required - Kit API license not available","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:kitId/send","host":["/"],"path":["v6","kits","single",":kitId","send"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the kit to send"}]}},"status":"Payment Required","code":402,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"054904b5-8b15-43ea-8e2d-15081475f934","name":"Internal server error","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:kitId/send","host":["/"],"path":["v6","kits","single",":kitId","send"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the kit to send"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"ab133c0c-d216-4fcf-9c29-39c5581342af"},{"name":"/v6/kits/single/:kitId/stop","id":"4b66c745-d107-4ec0-b4e6-1d69d089a9e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Accept","value":"text/plain"}],"url":"//v6/kits/single/:kitId/stop?isSendEmailAfterStop=false","description":"<p>[V6] Stop kit</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","kits","single",":kitId","stop"],"host":["/"],"query":[{"description":{"content":"<p>Whether to send an email notification after stopping the kit</p>\n","type":"text/plain"},"key":"isSendEmailAfterStop","value":"false"}],"variable":[{"description":{"content":"<p>The unique identifier (GUID) of the kit to stop</p>\n","type":"text/plain"},"type":"any","value":"string","key":"kitId"}]}},"response":[{"id":"8a3d3cfe-1569-4585-bc3a-3d70e2ac178b","name":"Kit stopped successfully","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:kitId/stop?isSendEmailAfterStop=false","host":["/"],"path":["v6","kits","single",":kitId","stop"],"query":[{"description":"Whether to send an email notification after stopping the kit","key":"isSendEmailAfterStop","value":"false"}],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the kit to stop"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"82e17c0e-86f1-401a-814c-4df48ddbd3e7","name":"Kit not found","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:kitId/stop?isSendEmailAfterStop=false","host":["/"],"path":["v6","kits","single",":kitId","stop"],"query":[{"description":"Whether to send an email notification after stopping the kit","key":"isSendEmailAfterStop","value":"false"}],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the kit to stop"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"e3889da3-f29c-4470-8866-c2941df62ae0","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:kitId/stop?isSendEmailAfterStop=false","host":["/"],"path":["v6","kits","single",":kitId","stop"],"query":[{"description":"Whether to send an email notification after stopping the kit","key":"isSendEmailAfterStop","value":"false"}],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the kit to stop"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"8ceb62f5-1a08-42d5-9a67-be54a9f22ff6","name":"Payment Required - Kit API license not available","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:kitId/stop?isSendEmailAfterStop=false","host":["/"],"path":["v6","kits","single",":kitId","stop"],"query":[{"description":"Whether to send an email notification after stopping the kit","key":"isSendEmailAfterStop","value":"false"}],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the kit to stop"}]}},"status":"Payment Required","code":402,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"cbd00b66-dba6-4aee-a791-04603c0d017a","name":"Internal server error","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:kitId/stop?isSendEmailAfterStop=false","host":["/"],"path":["v6","kits","single",":kitId","stop"],"query":[{"description":"Whether to send an email notification after stopping the kit","key":"isSendEmailAfterStop","value":"false"}],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the kit to stop"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"4b66c745-d107-4ec0-b4e6-1d69d089a9e6"},{"name":"/v6/kits/single/:kitId/link","id":"c60bf226-5663-4d14-877e-94c7e46e69d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Accept","value":"application/json"}],"url":"//v6/kits/single/:kitId/link","description":"<p>[V6] Get kit link to sign</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","kits","single",":kitId","link"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>The unique identifier (GUID) of the kit</p>\n","type":"text/plain"},"type":"any","value":"string","key":"kitId"}]}},"response":[{"id":"eac831dc-8a5d-4b29-956a-760c75490869","name":"Kit link retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:kitId/link","host":["/"],"path":["v6","kits","single",":kitId","link"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the kit"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"SignerKitLink\": \"\"\n}"},{"id":"5e2ab113-4afe-44ed-bd0b-19e91b9c4729","name":"Kit not found","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:kitId/link","host":["/"],"path":["v6","kits","single",":kitId","link"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the kit"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"fe1441a7-a743-451c-ac32-8d7f51f138d0","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:kitId/link","host":["/"],"path":["v6","kits","single",":kitId","link"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the kit"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"f9648939-fa52-4718-aee8-e6a8d39cda09","name":"Payment Required - Kit API license not available","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:kitId/link","host":["/"],"path":["v6","kits","single",":kitId","link"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the kit"}]}},"status":"Payment Required","code":402,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"5d216bf3-bae1-49d0-a276-0f64edddd186","name":"Internal server error","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:kitId/link","host":["/"],"path":["v6","kits","single",":kitId","link"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the kit"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"c60bf226-5663-4d14-877e-94c7e46e69d7"},{"name":"/v6/kits/single/:kitId/Reminder","id":"c9aa681a-f96e-4e9f-91c1-327e65fcf581","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Accept","value":"text/plain"}],"url":"//v6/kits/single/:kitId/Reminder","description":"<p>[V6] Send reminder for kit</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","kits","single",":kitId","Reminder"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>The unique identifier (GUID) of the kit to send reminder for</p>\n","type":"text/plain"},"type":"any","value":"string","key":"kitId"}]}},"response":[{"id":"f2c4397a-ca29-494d-ba0d-5c64cf6640bc","name":"Reminder sent successfully","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:kitId/Reminder","host":["/"],"path":["v6","kits","single",":kitId","Reminder"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the kit to send reminder for"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"3fd16e20-9c26-4954-a178-3778bf8d0e1b","name":"Kit not found","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:kitId/Reminder","host":["/"],"path":["v6","kits","single",":kitId","Reminder"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the kit to send reminder for"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"0bd64620-6c98-4547-a88e-2a864bf40b82","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:kitId/Reminder","host":["/"],"path":["v6","kits","single",":kitId","Reminder"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the kit to send reminder for"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"97438e9d-0227-49ec-a4d1-cfd4749ed94c","name":"Payment Required - Kit API license not available","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:kitId/Reminder","host":["/"],"path":["v6","kits","single",":kitId","Reminder"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the kit to send reminder for"}]}},"status":"Payment Required","code":402,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"69d4aeaa-e8a6-4027-b20a-a42d227a789d","name":"Internal server error","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:kitId/Reminder","host":["/"],"path":["v6","kits","single",":kitId","Reminder"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the kit to send reminder for"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"c9aa681a-f96e-4e9f-91c1-327e65fcf581"},{"name":"/v6/kits/single/:kitId/attachments","id":"fa7bfe29-b796-4d43-b92d-f4283e34bfb9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Accept","value":"application/zip"}],"url":"//v6/kits/single/:kitId/attachments","description":"<p>[V6] Download kit flows attachments</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","kits","single",":kitId","attachments"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>The unique identifier (GUID) of the kit</p>\n","type":"text/plain"},"type":"any","value":"string","key":"kitId"}]}},"response":[{"id":"add17926-02e9-4780-9c9d-079f54d94ab3","name":"Attachments retrieved successfully as ZIP archive","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Accept","value":"application/zip"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:kitId/attachments","host":["/"],"path":["v6","kits","single",":kitId","attachments"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the kit"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/zip"}],"cookie":[],"responseTime":null,"body":"string"},{"id":"af0271d1-f1cf-4cbf-b9a4-96348ec7c8c0","name":"Kit not found","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Accept","value":"application/zip"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:kitId/attachments","host":["/"],"path":["v6","kits","single",":kitId","attachments"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the kit"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/zip"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"80dbdc93-07f5-4131-bff7-fc98d34567b6","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:kitId/attachments","host":["/"],"path":["v6","kits","single",":kitId","attachments"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the kit"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"e4cc063e-be2c-4986-b360-2f3050e022b8","name":"Payment Required - Kit API license not available","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:kitId/attachments","host":["/"],"path":["v6","kits","single",":kitId","attachments"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the kit"}]}},"status":"Payment Required","code":402,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"6a86deb8-4a9b-49fc-b6a9-6241433307cb","name":"Internal server error","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:kitId/attachments","host":["/"],"path":["v6","kits","single",":kitId","attachments"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the kit"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"fa7bfe29-b796-4d43-b92d-f4283e34bfb9"},{"name":"/v6/kits/single/:kitId/documents","id":"716a1ef0-fe9a-4ba8-94b5-d9632c3c7db6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Accept","value":"application/zip"}],"url":"//v6/kits/single/:kitId/documents","description":"<p>[V6] Download kit flows to sign documents</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","kits","single",":kitId","documents"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>The unique identifier (GUID) of the kit</p>\n","type":"text/plain"},"type":"any","value":"string","key":"kitId"}]}},"response":[{"id":"545a5198-3055-4de9-ab2e-31eaa0079ea7","name":"Flow documents retrieved successfully as ZIP archive","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Accept","value":"application/zip"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:kitId/documents","host":["/"],"path":["v6","kits","single",":kitId","documents"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the kit"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/zip"}],"cookie":[],"responseTime":null,"body":"string"},{"id":"956b8432-bdda-4b30-8720-63e88f5ddba3","name":"Invalid kit ID format","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Accept","value":"application/zip"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:kitId/documents","host":["/"],"path":["v6","kits","single",":kitId","documents"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the kit"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/zip"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"854b4096-1f24-420e-a7bd-990a9c1ea816","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:kitId/documents","host":["/"],"path":["v6","kits","single",":kitId","documents"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the kit"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"d73ac13a-b7e1-4122-b387-7ef0e3c7a3b2","name":"Payment Required - Kit API license not available","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:kitId/documents","host":["/"],"path":["v6","kits","single",":kitId","documents"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the kit"}]}},"status":"Payment Required","code":402,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"0a1ba39d-e555-4b73-931c-0627c259dcaf","name":"Internal server error","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/kits/single/:kitId/documents","host":["/"],"path":["v6","kits","single",":kitId","documents"],"variable":[{"key":"kitId","value":"string","description":"The unique identifier (GUID) of the kit"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"716a1ef0-fe9a-4ba8-94b5-d9632c3c7db6"}],"id":"ee6d4ae3-f650-44f4-a386-e477ff6274e2","_postman_id":"ee6d4ae3-f650-44f4-a386-e477ff6274e2","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}}},{"name":"Document","item":[{"name":"/v6/documents/analyze","id":"469bd0f0-9eaa-490e-9640-ce9318a97038","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"description":"<p>Document file to analyze</p>\n","key":"document","type":"file","value":null}]},"url":"//v6/documents/analyze","description":"<p>[V6] Get document info from uploaded file stream</p>\n<h2 id=\"json-object-description\">JSON object description:</h2>\n<hr />\n<h2 id=\"document\">document:</h2>\n<h3 id=\"document-file-to-analyze\">Document file to analyze</h3>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","documents","analyze"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"1ab36d89-e0bd-488f-89aa-42443bc4e455","name":"Document analyzed successfully","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"description":"Document file to analyze","key":"document","type":"file","src":[]}]},"url":"//v6/documents/analyze"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"NumberOfPages\": 5\n}"},{"id":"149e9375-1e83-4cad-bc62-d4b8f2db8578","name":"Invalid request or document format","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"description":"Document file to analyze","key":"document","type":"file","src":[]}]},"url":"//v6/documents/analyze"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"e92b343d-bdc8-4651-a3cd-a43fb0000df6","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"multipart/form-data"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"description":"Document file to analyze","key":"document","type":"file","src":[]}]},"url":"//v6/documents/analyze"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"a7181583-1510-46e1-8202-7169189d1afe","name":"Internal server error","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"description":"Document file to analyze","key":"document","type":"file","src":[]}]},"url":"//v6/documents/analyze"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"}],"_postman_id":"469bd0f0-9eaa-490e-9640-ce9318a97038"},{"name":"/v6/documents/analyze-base64","id":"29e95507-f4d6-491a-b225-70ed73d5409c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"File\": \"JVBERi0xLjcNCiW1tbW1DQoxIDAgb2JqDQo8PC9UeXBlL0NhdGFsb2cvUGFnZXMgMiAwIFIvTGFuZyhlbi1JTCkgL1N0cnVjdFRyZWVSb290IDEwIDAgUi9NYXJrSW5mbzw8L01hcmtlZCB0cnVlPj4vTWV0YWRhdGEgMjAgMCBSL1ZpZXdlclByZWZlcmVuY2VzIDIxIDAgUj4+DQplbmRvYmoNCjIgMCBvYmoNCjw8L1R5cGUvUGFnZXMvQ291bnQgMS9LaWRzWyAzIDAgUl0gPj4NCmVuZG9iag0KMyAwIG9iag0KPDwvVHlwZS9QYWdlL1BhcmVudCAyIDAgUi9SZXNvdXJjZXM8PC9Gb250PDwvRjEgNSAwIFI+Pi9FeHRHU3RhdGU8PC9HUzcgNyAwIFIvR1M4IDggMCBSPj4vUHJvY1NldFsvUERGL1RleHQvSW1hZ2VCL0ltYWdlQy9JbWFnZUldID4+L01lZGlhQm94WyAwIDAgNTk1LjMyIDg0MS45Ml0gL0NvbnRlbnRzIDQgMCBSL0dyb3VwPDwvVHlwZS9Hcm91cC9TL1RyYW5zcGFyZW5jeS9DUy9EZXZpY2VSR0I+Pi9UYWJzL1MvU3RydWN0UGFyZW50cyAwPj4NCmVuZG9iag0KNCAwIG9iag0KPDwvRmlsdGVyL0ZsYXRlRGVjb2RlL0xlbmd0aCAxMzY+Pg0Kc3RyZWFtDQp4nC2MMQvCMBQG9wfvP3yjOiQvMSUJlA5Na1EoKAY6iKN2UlD/P5iKtx0cB31EXesx7TtI06DtEl5MomQhBG8gqGKlthbBGRUt3jemaYMnU5uZ9M7AGCUO+c601AIDb5VYB19F5QLyo3TD2WP+lDXmn4W/DUyXFdZX5ANTX44nJvRjwhdSQR4fDQplbmRzdHJlYW0NCmVuZG9iag0KNSAwIG9iag0KPDwvVHlwZS9Gb250L1N1YnR5cGUvVHJ1ZVR5cGUvTmFtZS9GMS9CYXNlRm9udC9CQ0RFRUUrQ2FsaWJyaS9FbmNvZGluZy9XaW5BbnNpRW5jb2RpbmcvRm9udERlc2NyaXB0b3IgNiAwIFIvRmlyc3RDaGFyIDMyL0xhc3RDaGFyIDMyL1dpZHRocyAxOCAwIFI+Pg0KZW5kb2JqDQo2IDAgb2JqDQo8PC9UeXBlL0ZvbnREZXNjcmlwdG9yL0ZvbnROYW1lL0JDREVFRStDYWxpYnJpL0ZsYWdzIDMyL0l0YWxpY0FuZ2xlIDAvQXNjZW50IDc1MC9EZXNjZW50IC0yNTAvQ2FwSGVpZ2h0IDc1MC9BdmdXaWR0aCA1MjEvTWF4V2lkdGggMTc0My9Gb250V2VpZ2h0IDQwMC9YSGVpZ2h0IDI1MC9TdGVtViA1Mi9Gb250QkJveFsgLTUwMyAtMjUwIDEyNDAgNzUwXSAvRm9udEZpbGUyIDE5IDAgUj4+DQplbmRvYmoNCjcgMCBvYmoNCjw8L1R5cGUvRXh0R1N0YXRlL0JNL05vcm1hbC9jYSAxPj4NCmVuZG9iag0KOCAwIG9iag0KPDwvVHlwZS9FeHRHU3RhdGUvQk0vTm9ybWFsL0NBIDE+Pg0KZW5kb2JqDQo5IDAgb2JqDQo8PC9BdXRob3IoUm9uZW4gUmFiaW5vdml0eikgL0NyZWF0b3Io/v8ATQBpAGMAcgBvAHMAbwBmAHQArgAgAFcAbwByAGQAIABMAFQAUwBDKSAvQ3JlYXRpb25EYXRlKEQ6MjAyNTA4MTcxMDQ5MzUrMDMnMDAnKSAvTW9kRGF0ZShEOjIwMjUwODE3MTA0OTM1KzAzJzAwJykgL1Byb2R1Y2VyKP7/AE0AaQBjAHIAbwBzAG8AZgB0AK4AIABXAG8AcgBkACAATABUAFMAQykgPj4NCmVuZG9iag0KMTcgMCBvYmoNCjw8L1R5cGUvT2JqU3RtL04gNy9GaXJzdCA0Ni9GaWx0ZXIvRmxhdGVEZWNvZGUvTGVuZ3RoIDI5Nj4+DQpzdHJlYW0NCnicbVHRasIwFH0X/If7B7exrWMgwpjKhlhKK+yh+BDrXQ22iaQp6N8vd+2wA1/COTfnnJwkIoYARASxAOFBEIPw6HUOYgZROAMRQhT74RyilwAWC0xZHUCGOaa4v18Jc2e70q1ranBbQHAATCsIWbNcTie9JRgsK1N2DWn3zCm4SnaAwTVS7C1RZozDzNS0k1fuyHmptD6Ld7kuTzgm6mNGuwnd3JbuIIbojc/SxhEmvKz16UH2Xno0N8ypdPhB8kS2x+z5w5+6Vprys+SGPHjTPkE6ZfTArVPf0oNf9mXs5WjM5XF7nrRnIsclHe5kac2Iv5/9OuIrJWtTjQZ5rU400vbneFllZYMbVXWWhrsmXdMW/Mfzf6+byIbaoqePp59OfgBUCqK7DQplbmRzdHJlYW0NCmVuZG9iag0KMTggMCBvYmoNClsgMjI2XSANCmVuZG9iag0KMTkgMCBvYmoNCjw8L0ZpbHRlci9GbGF0ZURlY29kZS9MZW5ndGggMTkyNzIvTGVuZ3RoMSA4MzE2ND4+DQpzdHJlYW0NCnic7H0HXJRXuv453zeNKcwMMrQBZsYBREfAggpqZJRi744BbCCgaFBRscSoITHRhGh6r6aajSnDaCKaZrKmbIrpZZNNcTebTTYxbTfNKNznfO8c227y3927d3Nz//PCM89z3lO+U9/v8BN+Ms4Yc+BDx2rKR5RNK+hlv4tx73eM8SfLR4wrvbaxwsZ45tOMKX0mTi3od8Njdfcj7zzUqqlbVNvc/EqakbGmMsbUzLqVLd7dzW8OYOzmzYzpH5rXPH/R+nfVQYwtqWfMFpjfdPq818p3FDK2bRRj9g8aG2rrOw/f8xras6K9gY1w2O5JP4g02mNZjYtaVg8bYzyE9EeMLZzZtKSutu3IplMY29WbsUGGRbWrm/MXZf8J+Y0o713U0FJ77dlbVzLefS/S5yyuXdTgir9wBWOf4Zl9WpqXLG/pcrONGM+donzzsobm239Y8Ahjay/G475nYi4MIy5aGHf1t3PsQ79mqSYm7MFP1j4n+J3vbn3yh0NHWuM+NQ1EMo4pjAz1DKyT8X3mrT8cOrQ17lOtpeMs9W7hcZ/NWpmDDYVWwAVsE2MJw7XncqbqAvxipmcm/TX6/mgyk1h9kW1UmIkpdr2iKDpV0X3A8rseZ1lnaD2AjZ/q9bIgY9nPUR+MNyo5Xsa7RJ66Sx8vRsoSdfHHesNfYP/fm+ENdvfP3Yf/K6ZrYDf/3H34Z8xg+J/pr3rwlzUP/xOmK2Q1P3cfYvbfN+UZds3P3Ydfgil/ZKP+lXr8G9b07+5LzGIWs5jF7F835Tpu/tG8GnbwP9mXX4qpA9gFP3cfYhazmMUsZv+66R5j8/7jz1zELvxPPzNmMYtZzGIWs5jFLGYxi1nMYvZ/12I/Z8YsZjGLWcxiFrOYxSxmMYtZzGIWs5j97zYe+230mMUsZjGLWcxiFrOYxSxmMYtZzGIWs5jFLGYxi1nMYhazmMUsZjGLWcxiFrOYxSxmMYtZzGIWs5jFLGYxi1nMYhaz/yXWtefn7kHMYhazf8p0gApkRf/nq0uR4lpaZWbGlPUosRjpJOaAxwBlY93ZeFbPlrGtGcXeuOznurT/sQp+79/4edfXiAvfsgd4WlfdJ5sO9njvlOhzEv6mJ6o6Rr2KGfinWurLk/8nLu3/3qL/t0thP238uPb+J6zsnynM034ib/N/tyv/YVP/ra1Ztc+tJ6TIxAraohCr7Y1CPN9HUMeAuxO0dR4fhVideoI298sI2lxvjQLtZBQTTHvRdBzB1kf8b2wEPdLB6o3ntixftrR5yeJFTactXNA4f15D/dw5s2fNnFFdVRmaNnXK5EkTJ4wfN3bM6FEjK8rLSkcMD5YMO2XokMHFRYMGDijIz+udm5Od5e/uSUl0Ouw2iznOZDTodarCWe9yf0WNN5xTE9bl+EeNyhNpfy0ctcc5asJeuCpOLBP21mjFvCeWDKLkvJNKBqlk8GhJ7vAOZUPzenvL/d7w82V+bwevnlwJvaXMX+UNH9T0eE3rcrSEDQmfDzW85SmNZd4wr/GWhytWNraV15ShvXaLudRf2mDO683azRZIC1Q419/cznOHcU0oueWD2xVmsonHhtXs8tr68KTJleVlbp+vSvOxUq2tsKE0bNTa8i4QfWYXeNt7723b3OFgc2sC1np/fe3MyrBai0ptanlb26awMxDu6S8L91zzQQqG3BDu7S8rDwf8aGzslKMP4GF9tsPvbfuaofP+g5+e6KmNegzZjq+ZkGKIR6cJ+VIz9A09xPh8PtGXCzqCbC4S4dbJlZT2srnuCAsWBKrCSo3I2StzXCGR0ypzjlav8fvEUpXXRL9XNqaEW+d683pj9rXvbHwj3xtWc2rm1jUKrm1o85eV0bxNqwwHyyCCtdGxlrf3KUD52hoMYoGYhsmV4QJ/czjRP4IKwOEVa7BgaqVWJVotnFgaZjV10VrhgvIy0S9veVtNGXVQtOWfXLmb9e96v73Q697RnxWyKtGPcFIpFiWnvK2yfl7YU+Oux/6c5610+8LBKkxflb+yoUqskt8R7vk+HufTnqjVwthOKi0Li5Ebs03eSsWtVonVgsNbgQ//iKHIcGC5tKRY0RFDvZXczWQxPCVaQqgT2kFCzS4dJbJUUbV0lNtX5SP7iS65o33SZ4dNx7XlgONon+g5P9o1Ki061NNb3lB2XAdPaFQf7WC0tb/fT0XMRfTBqGESyzlKZqnZOLnwKWhGc4lVTPGG2SRvpb/BX+XHHgpOqhRjE3Otre/Yqf6xk6srtdWO7pJpJ6Qov4hSYeZDtkwopdiDFQG3XFYtPVJLH02OOil7tMz2i361tdW3MzVbbGV3O9eEvvSCqvDEQJU/PDfg94l+5vVuNzGrb1pNKc5qBcKdv6LW73V4K9pqO7pa57a1B4NtzeU1jYNxLtr8o+vb/FMrh7q1zk+pXOdeI56dwMbysdNGoCmFjWj38/Mmtwf5eVOrK3c7EP7Pm1YZUbhSWjOiqj0LeZW78cIJal5FeIVTJLwiIVqagoRJK+/eHWSsVcvVaQ4tXdfBmeYzSR9ndR0K+Rz0oBztQUG84+o6dJQTlKV18JnI10qlc6OlTchxiJw9DC8SpmWStTMxwUGzPmgKxgWtik3BlApXBJ49KBvH2Q4rt3F3O9qcork7eGt7XNC9W2tpSrRkK0oKX+tRH3ouih3XEJ5HAw8dG0GounKHlaF97RMlRgjDLkxpxB7C+6TcWy/239qqxraaKhE9WBL2Kr55mPuHsbDiH4YeG6xhs79hRNjiHyH8JcJfQn6D8Bux83kSx2KLoNtW40cgxompZG5OZ00VTXo7urqmVfqedx+s8uEszQSqK8NxAbzc9NljUG6kQA3cI8OtdbWiHyxUKeoas0fXVeFcygZRZHQ4Di3ERVtAiQqtjjhvqFSHvVbr1yTcCB2tVeGqgHho5YIq7bw6wmyUf3DYkENt6nPEgwqq2hL8/bTgg7Nuzt4kKA59Y1MryeNGEg+rokkyWtHzOj+y6mq8tEem4izTy8LsJk8DYr4up0GD2R3NZGJYarbFZg7H5aNBfAttyRcxR59trKqizmupTdECeLYjbEGPco6bymgFzA6yRou+4HsTuiqKPiaamdzBpvhXI3SKTmstGZEdtmWPrsXbjepb4PEXycomEQQt0Tb2kdcoRm7FvCMkdHRt85/uO84QO8TbT+w/5t6Ng8qq2k52hGcE8nqbTvbaNHdbm8n29yvQfJlsR1lzKtl14q0AFhtO22/ecvGq9I9pVyYENOYat43x4w2iZAvgoqPi+Pi89VWiFLo8SYtlP1qIH1dIvKa1xtscQ2SKR1O0mG3h+ScmG48mKwRwGczOpzsEhiJiLfbKQne4CTtTFhEr4m3zOvyD/eJDqzxSoAaLdPRYYPtj14lD01rnrZyLzY4GK2raKtrEFbWuNjpt0SeFFwdOaBLngmPzoCExnHDrJG9NlbcGV1M+udLnc+M0gr3zcE/114pXwSQaz6Rq7apS2ya2OMNNpcodNuLFNK+2we/DGyQsIhDNvuijLnpsmLutzd8W1s5tBQqj+Rwcu9GC8N0c8Nc2iCv0PHGDbtDqVqC72uyI1tzlfpzlBri1ucTEIfTNFR91beKCPqsmgJlwtiW0eYvbEIJn4e2hy6mbXoNXlXgjebWlrnUjhUkYLVJVaIgKxmWLgnQERG8WBdpnGbOPebTvJQEqbNJaRc+mVIYnySLaeRJiaSCsJBchUwyeT6mulHFKFdmjMb1B7Cq3qO0NK9Mqo8uj1R8tqrrlglE1eLR3SPR8HX3byPfQTDfm9Ef9eDmow6cqTytPsiLmUZ6K8jusSHmLhZTfgt8Avxnl18GvgV8FvwJ+GfwS+FHwI+CHwQ+xENMpb7NCYBqgHlX1wG3Aq4CenYaWOLOgPmeJyuOsDKgHWoDLAT3KPoK829AiZ17lnJ1xKXwMFnSDFGdLcZYUrVKcKcV6KdZJsVaKM6RYI8XpUqyWYpUUK6VYIUWLFMulWCpFsxRLpFgsxSIpmqQ4TYqFUiyQolGK+VLMk6JBinop6qSYK0WtFDVSzJFithSzpJgpxQwpqqWokqJSilOlmC5FSIppUkyVYooUk6WYJMVEKSZIMV6KcVKMlWKMFKOlGCXFSCkqpCiXokyKUilGSDFciqAUJVIMk+IUKYZKMUSKwVIUS1EkxSApBkoxQIpCKfpL0U+KvlL0kaJAinwp8qToLUVAil5S9JQiV4oeUuRIkS1FlhR+KbpL4ZPCK4VHikwpMqRIl8ItRZoUqVKkSJEsRZIULikSpegmRYIUTikcUtiliJfCJoVVCosUZinipDBJYZTCIIVeCp0UqhSKFFwKFhW8S4pOKY5IcViKH6Q4JMX3UnwnxbdSfCPF11L8VYq/SPGVFF9K8YUUn0vxmRQHpfhUik+k+LMUH0vxkRR/kuJDKf4oxQdS/EGK30txQIr3pXhPineleEeK30nxthRvSfFbKd6U4g0pXpfiNSleleIVKV6W4iUpXpTiBSn2S/G8FM9J8awUz0jxGymeluIpKZ6U4gkp9knxaykel+IxKfZK8agUj0jxsBQPSfGgFHuk2C1FhxS7pHhAivul2CnFDikiUrRLEZbiPinuleIeKe6WYrsUd0nxKynulGKbFHdIcbsUt0lxqxS3SHGzFFuluEmKG6W4QYrrpbhOimuluEaKq6W4SoorpbhCisuluEyKS6W4RIqLpbhIigul2CLFZikukKJNivOlOE+KTVJslOJcKeS1h8trD5fXHi6vPVxee7i89nB57eHy2sPltYfLaw+X1x4urz1cXnu4vPZwee3h8trD5bWHy2sPXyaFvP9wef/h8v7D5f2Hy/sPl/cfLu8/XN5/uLz/cHn/4fL+w+X9h8v7D5f3Hy7vP1zef7i8/3B5/+Hy/sPl/YfL+w+X9x8u7z9c3n+4vP9wef/h8v7D5f2Hy/sPl/cfLu8/XN5/uLz2cHnt4fLaw+Vth8vbDpe3HS5vO1zedri87XB52+HytsPlbYeX7hCiQzknkjnMgztzJNMFOptSZ0UyB4NaKXUm0fpIphW0jlJric4gWkN0eiRjOGh1JKMUtIpoJdEKymuh1HKiZeRcGskYAWomWkK0mIosImoiOi2SXg5aSLSAqJFoPtG8SHoZqIFS9UR1RHOJaolqiOYQzaZ6syg1k2gGUTVRFVEl0alE04lCRNOIphJNIZpMNIloItEEovFE44jGEo2JuEeDRhONirjHgEYSVUTcY0HlEfc4UBlRKdEIyhtO9YJEJVRvGNEpREOp5BCiwVS9mKiIaBDRQKIB1FghUX9qpR9RX6I+1FgBUT7VyyPqTRQg6kXUkyiXqAc1nUOUTW1mEfmJulPTPiIv1fMQZRJlEKUTuYnSImkTQKlEKZG0iaBkoiRyuogSydmNKIHISXkOIjs544lsRFbKsxCZieIoz0RkJDJEUieB9JHUySAdkUpOhVKciGnEu4g6tSL8CKUOE/1AdIjyvqfUd0TfEn1D9HUkZRror5GUqaC/UOoroi+JvqC8zyn1GdFBok8p7xOiP5PzY6KPiP5E9CEV+SOlPqDUHyj1e6IDRO9T3ntE75LzHaLfEb1N9BYV+S2l3iR6I5J8Kuj1SPJ00GtEr5LzFaKXiV4iepGKvEC0n5zPEz1H9CzRM1TkN0RPk/MpoieJniDaR/RrKvk4pR4j2kv0KOU9QvQwOR8iepBoD9Fuog4quYtSDxDdT7STaEckqQQUiSTNALUThYnuI7qX6B6iu4m2E90VSUK85r+iVu4k2kZ5dxDdTnQb0a1EtxDdTLSV6CZq7EZq5Qai6ynvOqJria4hupoqXEWpK4muILqc8i6jVi4luoTyLia6iOhCoi1Em6nkBZRqIzqf6DyiTUQbI65a0LkR11zQOUQbIq55oLOJzoq4QqDWiAvBmJ8ZcQ0ErSdaR9XXUr0ziNZEXPWg06n6aqJVRCuJVhC1EC2nppdR9aVEzRFXHWgJNbaYSi4iaiI6jWgh0QKq10g0n3o2j6o3ENVTyTqiuUS1RDVEc4hm06BnUc9mEs2gQVdT01X0oEqiU6m70+lBIWplGtFUoilEkyOJQdCkSKJ4wsRIotjeEyKJG0DjI4l5oHFUZCzRmEgi7gV8NKVGEY0kZ0UkcT2oPJK4CVQWSTwTVBpJbAWNiCRUgIYTBYlKiIZFEvB+56dQamjEWQUaQjQ44hRbo5ioKOIcCRoUcVaCBkac1aABlFdI1D/i7A3qRyX7RpxiYH0iTnE2C4jyqXoePaE3UYAa60XUkxrLJepBlEOUHXGKWcoi8lOb3alNHzXmpVY8RJlUL4MonchNlEaUGnHMAqVEHLNByRHHHFASkYsokagbUQJVcFIFBzntRPFENiIrlbRQSTM544hMREYiA5XUU0kdOVUihYgTsWCXfa5HoNNe5zlir/cchv4BOAR8D9938H0LfAN8DfwV/r8AXyHvS6S/AD4HPgMOwv8p8Any/oz0x8BHwJ+AD+Pne/4Y3+j5APgD8HvgAHzvg98D3gXeQfp34LeBt4DfAm/aTvO8YevreR38mq3J86otx/MK8DL0S7aA50XgBWA/8p+H7znbIs+z0M9A/wb6adtCz1O2BZ4nbY2eJ2zzPftQ99do73HgMSDYtRefjwKPAA9bl3oesi7zPGhd7tljbfHsBjqAXfA/ANyPvJ3I2wFfBGgHwsB9ltM991rWeO6xrPXcbVnn2W5Z77kL+BVwJ7ANuAO43ZLnuQ18K3AL6twM3mo5zXMT9I3QNwDXQ1+Htq5FW9egravhuwq4ErgCuBy4DLgU9S5BexebJ3guMk/0XGie79livt2z2bzNc66a7TlHLfJs4EWes0OtobO2t4bODK0Lrd++LmRZxy3r3OvGrjtj3fZ1b68LJhjMa0NrQmdsXxM6PbQqtHr7qtAeZSObp5wbHBpauX1FSLcicUXLCvWvK/j2FbxsBe+zgitshWOFd4VqbQktCy3fvizElk1a1rosvEw3JLzs/WUKW8bNHV17dyxzZ1aAg5uW2RwVS0NLQs3bl4QWz1sUWogOLiiaH2rcPj80r6g+1LC9PmSvL6hX6ormhmqLakJzimaFZm+fFZpZVB2asb06ZK8uqFasVUWVoVNRdXrRtFBo+7TQ1KLJoSnbJ4cmFk0ITYB/fNHY0LjtY0NjikaFRm8fFRpZVBEqxzywdEe6N111iL5MSEenmJuP6OMOut93f+HWMXfYvdetJtjTPGlKT3sqL52Yypeknpl6UapqT3khRQmm9OxdYU9+Ifm95M+Tdd2CyT3zK1iSI8mbpLrEMJPGT6vQuKSMuO8AbdieJH9Ohd3F7S6PSyn/3MU3MpV7OWfcAVJNKLOTuzwV6sNc/OaennF+MZsWGNthYlPGhk2TZoT5eeHsqeIzOLk6bDgvzELVMyrbOb+wSvv1hHCi+P0SLX3uli0sY8TYcMbUyoi6dWvGiKqx4Vahg0FNdwnNUKQqMHv5iuWByuApzPm+8wun6nrU8YJDsdu53d5lV4J2dN4e74lXxEdXvBqM7zuowm7z2BTx0WVTk4I2eMT4elgnTauwWzwWJVRimWhRgpaS0oqgJa9Pxd+Mc4cYJz050DIbH7OXtwS0b6Sq+AqRDAiv+F7egrT4WqGlWeAEE7WFLT/etYLanLMc1iKdLYFftPGfuwO/fKPf6xnepZzD6pUNwNnAWUArcCawHlgHrAXOANYApwOrgVXASmAF0AIsB5YCzcASYDGwCGgCTgMWAguARmA+MA9oAOqBOmAuUAvUAHOA2cAsYCYwA6gGqoBK4FRgOhACpgFTgSnAZGASMBGYAIwHxgFjgTHAaGAUMBKoAMqBMqAUGAEMB4JACTAMOAUYCgwBBgPFQBEwCBgIDAAKgf5AP6Av0AcoAPKBPKA3EAB6AT2BXKAHkANkA1mAH+gO+AAv4AEygQwgHXADaUAqkAIkA0mAC0gEugEJgBNwAHYgHrABVsACmIE4wAQYAQOgB3TDu/CpAgrAAcbqOXy8EzgCHAZ+AA4B3wPfAd8C3wBfA38F/gJ8BXwJfAF8DnwGHAQ+BT4B/gx8DHwE/An4EPgj8AHwB+D3wAHgfeA94F3gHeB3wNvAW8BvgTeBN4DXgdeAV4FXgJeBl4AXgReA/cDzwHPAs8AzwG+Ap4GngCeBJ4B9wK+Bx4HHgL3Ao8AjwMPAQ8CDwB5gN9AB7AIeAO4HdgI7gAjQDoSB+4B7gXuAu4HtwF3Ar4A7gW3AHcDtwG3ArcAtwM3AVuAm4EbgBuB64DrgWuAa4GrgKuBK4ArgcuAy4FLgEuBi4CLgQmALsBm4AGgDzgfOAzYBG4FzWf3wVo7zz3H+Oc4/x/nnOP8c55/j/HOcf47zz3H+Oc4/x/nnOP8c55/j/HOcf47zz3H++TIAMYAjBnDEAI4YwBEDOGIARwzgiAEcMYAjBnDEAI4YwBEDOGIARwzgiAEcMYAjBnDEAI4YwBEDOGIARwzgiAEcMYAjBnDEAI4YwBEDOGIARwzgiAEc55/j/HOcf46zz3H2Oc4+x9nnOPscZ5/j7HOcfY6zz3H2f+44/Au3qp+7A79wY8uXH3cxE5YyZ7b2ByvGGxnrvOyEv26ZxBay5awVXxvZFnYZe5S9zeayDVDXsK3sDvYrFmaPsd+wN/7hv5f5B6zzdP0iZlV3MQPrxljXoa6DnXcAHfr44zyXIdVN5z3m6XJ0fXaS77POy7ocnR2GBGbW6tqUl+H9Cz/SdQgvXaS7Boq0sgnartX40nhj532d206ag8msms1gM9ksVsNqMf561sgWYGZOY01sEVuspRYjbz4+5yE1B6UQYDR9rNQS1gwsYy1sBVuJr2bo5dGUyFuqpVewVfhazU5na9gZbC1bF/1cpXnWImeNll4NrGdnYmXOYmdrSjJ5NrBz2LlYtU3sPHb+T6bOP6ra2AVsM9b5QnbRj+otJ6Quxtcl7FLsh8vZFexKdjX2xXXs+pO8V2n+a9mN7CbsGZF3BTw3aUrkPsSeZPeze9l97AFtLuswazQjcl7maXPYjDlYixFuOK7HNH+rjs7WeoxdjK0tOtLV8J99XI2V0XkUJTegJLVC6yBaWXfSTFyMMZA+NiJKXaGN/5j3+Fn5Ka+cj+uPm5nrtJRQJ3t/TF/JbsAJvBmfYlaFugWa1E2aPt5/49GyW7X0rew2djvWYpumJJPnDuht7E6c7bvYdnY3vo7p4xXxvewebeXCrJ1F2A62Eyv5ANvFOjT/T+X9Pf+OqD9y1LOb7WEPYoc8wvYi0jyOL+l5GL5Ho959mo/Sj7NfIy1KUepJ9hQi1DPsWfYce4E9gdR+7fNppF5kL7NX2BvcBvUS+xifR9iL+g9YPBvOmH4P5vl6NpvN/ndGt5NNn8ZcbGvXd12rur5TR7F5fBqukHdjlXayzfixffGxktzDzLrfs0S2s+sbdSY498hb+sbOW7o+Z3pEzeXqy4hyKjOyYjaeTWBXhc8NVD7EbLinJLHB/P77XWVlpjzjI7iDKMyLW4yJcV4atOsU2660tBL/rgGGLapzdAfP21li3IL7ecmRd4/sLzjy7sGE4oKDvOCdA+8ecHy531lc0P/Aqwf69nEHE9Nsu5pQdYB/V9MA1bClSXWWiPrBuKaSoGLc0oRGUkoCafsD+wsC+wNoJtCnbxV3+pwaEuMVozHR4O+erwzokTOwf/9+w5QBhTn+7vGK5iscOGiY2r9fpqImSs8wRaS5+vLhanXiEYOy3l8yvb8+M82eaDPolfSUhLyh2Y6pM7KH5mcYVaNB1ZuMuYNGdB/bVN79LaMzw5WUkWAyJWQkuTKcxiNv6+MPfaWP/6FU1/TD5aphyMySLPVqs0nRGQwdmSmpvYb4Rk+3d3PoLN0cziSTMcFpzS2beWSjK120ke5yUVtHxjPO7u46ZAhg9oey18WsBx01w5qHKbY+fZILCsz5KSlpHV0f7XDw8eAvdtijbNP4mx1WjT/aYRGsOIOZWX2tVnMKipsddvGBgmYzSplTUMS8Bz94sa69wVQkWNbAyZaUZFtBSt98gyd3sieUENKHWAksIbnY2b+EF7waOKC95fs5+zuOKmfxKQX9+zv79+0zC8v4d9tIOdYIFi1bLoHTz+NVoXpwv/Oos1CsXqaSzPtzLJmQLkPAlOhJTfZ1Mymd/VWLKyPRlZloUTpHclOiNzXF283Y293o7ZOVEsdX6flGS5onJ3WR3d3NmmayGvV6o9Wkm//D5UazUdUZzQYs0TVH/Xf0yrKm5boPn6rekdkr1RLXLcOFLX0zY+phvP0TmIcNo73fDT9DM5amJAbj4lK+j693f6+fz0oOlmA3R7ewNT7l+6b4er37+yZkYbOWaFtUDMzfPUcbmA+jMRbmw+EUO1Q9PLrt6S0/JGZlJXJn22MbysK5oU1Nl1w8b2NVb8Wz+bmNwzN86m2+jPJzHl0/ZfP8wYc/69twlfhr4Ju7Dukb0L8itlD0bmdvV16PlA7eFYzrbisw5+V1LzSLlJN1H1Cfl2RRM3LqMxodjfpGuZxiMQ/0S8DSJRQXOw70cxYXiyHYTy4uV+7kdTMY/p/rluTSNxi7eZNTvQlGpfMCnT8Xuz1O7bxGMSZ4U1M9CcaclCZPbx8WraeO97Om+nqmz0vNSjZajDodPtRVh8+xWlVDnEFde/j8o96nunvFgh0pVJ7O7JVm8XYXfxGN+VCvx3z0Z0FWL2ZkNzMrrp19HQFnofiVjZwhzg6snD094PxwyJDk4m+89cnR2dAiUjEWsd+rBzAXr2tLmRAY4vywCSW9xd80RcuKqdDiTvFxc9GjR77qP3ESxBq7RDzKVJOTk5LU45b7epMrO93tc5nV6fasPsML52vb15dowvqn1Zw7o0/GgHF93XnZPkeV2fipq8/Y4BUXDpvQL7WbEZOgxsVbvupVVpDWOfHoZDzry8ipmD+8cHp5P4fF1yeY+3FaqvKuf2ggtfPe1ALxV2g1XQfV63EHzkEkf0iLJ56SIdziLhaRoFhEgmKHQ3wgOhSLmFD8IP8eG72g630RVAqiwaYgGmw0tkb9FsGKOWju5quwFPdw6+J7iX+eShlT2MF1O+LH68dhgnFCaL9RwHg1GjeKtXBhlhVTRM2dTSlj4kXdnU1aZcw4ztDJu28A7T0K4EnJzmggd6k5Wrh3JWYqYrIHqdcbnemJIsKOvGZG3eZTc/vNvWTOxA1BY6InBXsy7o7SdWUllYNSXYXTh/tOCVb0SEVQwLRaTavGTx+/oX1uy4PnjCwvVSxGm4gVNuOR8qmnDp27Nlh2dsMpCb1K++IcXoPb/zb1Gey7jdo5bB7Ac+zROGyPThH4i512Bx9njwZqewf/LpjAgt0Qc4NOfHjhZGk4sdnBuMCYHLvLO9olpg7bUYSXfZgvbda0OWsPaAXNTcdKplDRo9EGsyNmwnjctozOkUt7CRqUbYohzmRKzshypfYZMNhvSqAoakhIT07KcBizhw8uzrD5sjKsOpWrc5MynXFxcabE/HGDjoRNFpNOhw/1HJMlDpvSYtowsKyHXTWZzXHxbuy4UcoTyhqDk2WxAaxazEokLnXAg7wSmyqPnx90OD2LUuPU3HDS0n7XWVvU5dE9UqztEQQlLRB10wol5YabkpZa+13XpBWM7odibT/w6Nv+H9oOAwcpa1J9ziS7oaB26IgZxWne4XNK+k7JNdrTEhPTHIbzckfmZhV67NbMfjlZo/OVD6w2HQLP8IK+BRMXDK1YPjGQk8Pz9SadqupM+s6p+fnewlJ/VsUAX2CAiMdNyrP8Jb2b5bEKMeId3dMYVvnUoDXNvK/H0u52V2aza/mxFf1yX4I2SlsP876mY/n/wDoOFHGVVlHHX1J0Rr3JYnc57elef5LeQYNJ9fuTU3rl+LvF+5KMOq572ZkSb9Qb9JaU3IzOOzEsnRibkmKFjfTkJpt0JkN8MlO4uesb/jv9bNwhe7JsMY779dnu8Y4KdPyd/ejvA/rsoJZGR9Pe2X9cNweoOdFp73by/epho7jfpCcYndzk8qe7/S5TfFxqrsfTMwUv0p4eT25qHF9hsopdZTWpe6wJVr3B6rT+UOwLuC0Wd8Dny0u1WFLzRJw/2HWQ36ebo/WwiN7LSUo98zKXUvyAxdEL/V3A0FnHPvlWfkA4g/CmiC479h3X6R5q4Y91+gqj3e1KcjsM3GnolpXu7o4IHJeUlZGekxwXl5yTnpGVFMcHiAuFig+ly+ow6/UWu/WwN6NHisWS0iMjIzfVbE7NRZ8vUOcp1+pXHD+r7pyRjpGY1ef7abPqDmppMavP9zthVqP9MZ7kSXIpGwyO5ISEFLsh2ZzoS8Y7JI53bjrB1ydH3Sinlb8gVWffE30OB2MO/ExcrZuhm4D7vp0l487TgxWwQayEjWQT2alsDpuPn55XsTP5OO0NsnhSY9O0pqLVa4euzW1u6d3iranPqjeNGmcdx4JlujJHn8LEwqa1LfXjygoLy8bVt6xtMqZXzkxJH7Ns5YSVI9asr1jfb+HigYvTqmdnzk6YMj1pujJ4mGGYuVd+fP7K9YtnTx+Wnz9s+uzF61cac/6rve+Aa+pqG8+ChI0ggqh4RRRFhBuGuBXZyDIscV+SC0SyTIKItgo46qp7r6LitnVbrXvWrWiddVVEraNU6178n3PuTQio/dr3+/rv2/6Sp9x7xnOefZ5zTm68zcr0bM7xP+l/so5rO3/mA3vPkwG/f+GiEU5/ZgSajW3/M/m6Nue4+bv/WRGxm5t6BgcFBnizd2f27sreDf3CWvXa99r9wno1681q0Tfw4/9ABgWRM9DlRaA4UOyFSu9DAuDzdaBYHMiToOs7d9TAG2nEffcNGRQQ4MUVBwWJud+jzvd90PUFwp6BSvxZcCGh9v5iYKD4BlS4s6GQhqgNgwt3V4B/8LtoKM0kySAewSK9F0LhHhp2OYgM8oNCVRVnEu80/4bFPZ4lei8NZFq2zunAGYBicUPr+uhnVU1Ja3TjNA3exhu9xc/Vhu/RApU8dHV0FjrTTe+jAMdHyNvbOcEfwzTd7xonXR0+e0zhN3X+YLvrHOhsOKbwbwgd67s4N7AX/sy1cqjn4FjP3op7lcsVOrpBq4PQwznSlajvaHmUf07o5FLfKdba2daKV24Buw7Yd1jwur7byYejJ19gKYDyAWP7BXcXIFHn3ROenZO7g6WFbR27Gm+DskWWaIAvGRkkWKnqO+FkHil8Bid40QZIQf6BpJjfxKVJJG/wu/HCZ1kwZs9/B3CL/hFQ9tcAL+NPwJ2/G/gz//0gaPxfCHN/B96awQz/DrCIrwEr/ovglRnM8O8GYeR/DAlmMIMZzGAGM5jhD8E5M5jBDGYwgxnMYIZ/GfxkBjOYwQxmMIMZzGAGM5jBDGYwgxnMYAYzmMEMZjCDGczwL4AnZjCDGf4pgP/tXGueJ1z5qMhzxC18/O8M7XENlXkce8F6tszneAl2s2WBCY4Fx01wiy1bmrQLOYMFr9myiONjMZwtW3EIYTFbtuaVGPFtOGnCJWzZluMjfMmW7ewtRQY57TmxgMP++z+uVb0WbJnLEbqK2TKPI3QrYst8jpvbWLYsMMGx4Ni6lbBlS5N2IaeD21q2LOK41PNny1YcR7e7bNmam2TEt+G0cnvBlm05LvU92bKdkF8/hC3bc5oBDp/DFViBcE4WGrbM2JkpM3ZmyoydmbLABIexM1O2NGln7MyUGTszZcbOTJmxM1Nm7MyUGTszZTt7N6I9W2bsvIpDcAI4JPyJoRSP3yim5ag5OvjL4uihLQy/iY15HxsFLXIoqTh+0BPKUQAQHAm0ZXNyoE+HazTcacAeDFcZYNpxoqGUCS00Jx8wEoEaDTRSOAW4RHDigHIB0M3DHBVQysaSEPCnxu8y0xp5EEaZSU4glJobayEcX8yfAgoawCWALwV8EA0pJ5fFjYVaDrSi3jyQT2fUJwW/UU2HJfiUPFnYDgSnG9QzoQe1UtgKNXVk6KhZTQnMJQ96pVhfg3XzYawWt+QBlgxbjYD2HNwWz4kBmZB15HicCtu1Ax5PYwyaowSeyMoyfCVYiQy4BG7XYZ/KQRaD96r1QP16kEIOI3VghTCsjRxrIjfqQcGfEkYwEjL6UJgHwfpaDhQRVQrwEK0CqOVDSY/9gN7VlwllBZZJi22B9EXvAsxmLcVQ1WOdGJ4qrJEUS6rCXHTYTzHYK1nQQuF30WmxjgS+M76QY50YW+hwVOiAKsXGK/KYhm03cFECHQW2j4aVUgUtSsyVoanDlqqWAHHUYF0M7ypkbMvIrsBRgyIhh41cJBV6Lx9636Ee11TY14a4ZmzGcGH8qGL1UmPbZmLMaolNNUJWG4LHMVrnQt0Pz11Tb3pjakpMoQDbIY+dpab2NkSfio1kpD/jFy2OBkOM0tjXKHI1Rm0YGbNZHB3UhrLU9aAF46HBRi9ROEbQDFDW0MuQeaQgCYX5S1n+fji7ZGNfoZ4P81X7D7ROYyPHEPltgEoAXD8d6XrMU4YjEXHJNfqgemZ+mCez2bjWGLFR5DIeVwE+jWPn/0++tTZn3H9Mxo0DSaScFniWtWT7CU4Ujgo1lkwPgPJVe44/gAzbFo1UfhA9fmzM+UO5AMdQNo4i5JsCaEVvZGVsbKDK0FRgGZAEWVhaJs8xtD4Wozoc5xqsO2MFwzjk1QzMg8k0BdjSjGX0Rm8bsA15QcrmbjTLfbENEJ6GjQrTPK3BdlWx+YGhQrN1is3JNM4ocqwhI10mlsPg5doe07MjmPjRftCSZdTB9w9lAmZVkGGb6tnVh5mfDF9fI5/aGjBZNJ99s2vOJ2yWz2oqxzNNgecUM/M/tD0aw6wsLQC/ZY0I/jh1Rob/1Lam84NZ3Ql2fdZjz0lrrJO1NaheFWvL1cEkBpAmjC7MbsGQK7XGnYcMr70qnEeoT2rKxB5VI6qYfKBmr4xWTDkPzxcmP8nwOiZncwtDB2EqcPb/dIwyWVzFeqaaumGGyE12FTk438lZO6OsbofzJc3qYNhhGKxcM6p9sWcoXJZxDPur2nmu9kxoUSsv0DhP5+MdhRx7H3mVgjZkoWzAMPT5szT718qdLdnZW50tqncDBmn+zOr0B1cDomEtGnEGGkQjYzSjNyczfjJEDbM7UbCrSHV0/94KZ4jKT69yyHNJxpmjM9mLMP5mooBmeTEZW8X63RfrrGVXH8O+gtkXZbN+NsQxE1cadr/DcFDjfTeF9TRECsWpXuVr57O/wBdGC1FYd2Q3OZvrZexclbJ7bRWW1XTNlOPduA7HJivjp30L5eSa6zx4u6WJjWQmJwTT+fCH6XGqTzUG7I9nN99a2c1g+9qjFfhUIK+lt0Gu6j1Y9aypXokMPvTlGE5n6BRmqNMmEaLB5y8FjrcckxWWkToTy0KzK1We0ZemuYTxoT/rcR2eJQqjDIZ5XTOW/rhVTVd4RkvTlaZmTFdbIh/bUfkf+tGwGuTh0yVjGdpEAhm+Ip7VdhkIGFKTtUP/O/mYyfwyrIFhxWtfI4szu7HBuPyxXbcKrxGGVcb0fGZYJz6WU2qO0uFcwfgqk9X742su9QmPao3a63CUqjB1ZhZ9ePL9TyPAsL5FcyJwbyInEmrpsFpKcEsMtBGQRSXQkwa1cGgNhxZvwEhm+72xp9LxOhQNeKl4jWNoSOCaAPUMnOMiOQSuo1p3wE8AWmhsBKcn5hEB1JIxpgTTjofWOLhHsHhoRBi0pEIdlaNwFmT4JcAo5gwRw66JjKQp0E4YNawpVQzmaJAsHmoSoB/N9oYC7RhMD8mP+EficoJRzkhW0lBsI0QZ0QwDieJwDbWmwj0J8JIx/1CsMyNtAtYhEvoZXSKwBIizH6srg4fsk8b2IB8h+eIAqrUKxTaIxtJU2y8M7kkgOaIfBb0peIVIhJHhWNNkbL0I1mZI2zhcq9aK8VQY1gZZFdkgHMrx8BdltJ0EXxlZJCbUatouHfdXYzH6hbLXMGy5RFxjvBGGaynYV6jXl/WlBOtRm2s6jsQIjBWKNU42Rkgkjl5GekN0MjwSTSRh+CHfmspiiGrid+YIQ8XQn8p6+kO7IKuHYpsguZKNnD9FGebmKiKADBAT8XKpVq1TZ+mJMLVWo9ZSerla5UeEKhSERJ6do9cRElpHawfTMj+7aDpTS+cTiRpalVKgoYk4qkCdpycU6my5lJCqNQVaNIJAlMlAojm6hfgSEkqhySGiKZVULc2F1lh1joqIzpPpEJ+UHLmOUJjSyVJriW7yTIVcSikIliPgqIEpoVPnaaU0gcTNp7Q0kaeS0VpCn0MT8TEpRJxcSqt0dAdCR9MErcykZTJaRiiYVkJG66RauQaph3nIaD0lV+j87MIohTxTK0dMKEKpBorAiFLpgIxWnkVkUUq5ooDIl+tzCF1epl5BE1o1MJarskEqQNXTShipkoEFtCpaq/MjYvREFk3p87S0jtDSoIZcDzykOl9Cp6TAsFJKA2U0RJmn0Ms1QFKVp6S1gKmj9ZiAjtBo1eAOJC5QVyjU+UQOWJeQKzWUVE/IVYQeGRskgyGgpAp4qbOITHk2Jsww0tND9DBYnkv7Eaya3jpCSakKCGke+JSRG9lPBVbWUqCLVq5DJqUpJZGnQWyAYja06ORDAV2vBoUGI5UoAjygZHih6JHmUFoQjNb6SejsPAWlNQZWewPr9igggtPARMgHbfwC2tQwvV5LyWglpc1FemCfGkMzGyyuQc1SNaivktM6v7g8aQtK1xLcSERp1Wp9jl6v0bX395eppTo/pWGkHwzw1xdo1NlaSpNT4E9lQqAhVMBU5EkpXZZaBQYHrGpmujyNRiGHyEF9fkSGOg8sVkDkQQzpUbSiZmQIKbhWT/sSMrlOAxHMOFSjlUOvFFBouFPgRlqrlOv1QC6zAGtliEcwFcSNWmsoZCEOvh/qDnEgy5PqfVE4DoaxvmiMgQH4Jz9HLs0xkSwfmMpVUkUeBH+19GoVREoLeUtmXpigA4Xfk5aZRhDr4HedXiuXMgFpYIDj0ECrA7ZACzlwgTmBcokWzRyZOl+lUFOymtajGFNBZIE64D5UyNNrIA3IaKQmwsmhFZqaFoXEBLHLoCOHyPE8yZFnyvUoQdmlgMhZajRbkMisqX2JTEoHsqpVxlRhcEILNhZolV++PFeuoWVyyk+tzfZHNX/A7M8mlZbgXhwWeA4gMh/Pgh/LXmdZjDiEcQ6ZeaAadEKmgbmkgMyGzV0zTyJT1siUdnZJyDk6PHlAbzABDaMgsMEyMl8iSwtZD00RmIjZoDOyMdgKPArDCXUmZDsVMgqFM7Uhzv64FkggSqdTS+UUig+YZ5CyVHqKSahyBVimBaJYQ1simU3V51piiWQ4GzJ++CgezrOo2STcfNlwQ9IbuhVyiFOGN6KlZZYq4IAnEdLQF+VyeRa609ggmjxQSJeDJyyQzsxDk1eHGtkoAQ39QXEdjVK0WiNnMuonRWUmPLBkJg1raSxEfo5a+Ts6ommQp1WBMDQmIFNDDsWyDKSlekOAVccxBL9MjideeybEIY0Npk1WXJVaj6YMk8zl7DRmIoXt0uWg9SCTrjFzKRNFtYi9Tg/BJAcXGVee3zMAmm/REURyYmRKeqgkgohJJpIkiWkx4RHhhHdoMtS9fYn0mJToxNQUAjAkoQkpGURiJBGakEF0j0kI9yUieiZJIpKTiUQJEROfFBcTAW0xCWFxqeExCVFENxiXkAgLewzMRCCakkgghiypmIhkRCw+QhIWDdXQbjFxMSkZvkRkTEoCohkJREOJpFBJSkxYalyohEhKlSQlJkcA+3AgmxCTECkBLhHxEQkpsOQmQBsRkQYVIjk6NC4OswpNBeklWL6wxKQMSUxUdAoRnRgXHgGN3SJAstBucREMK1AqLC40Jt6XCA+ND42KwKMSgYoEo7HSpUdH4CbgFwr/haXEJCYgNcISE1IkUPUFLSUpxqHpMckRvkSoJCYZGSRSkgjkkTlhRCImAuMSIhgqyNREDY8ACqqnJkdUyxIeERoHtJLRYFNkPzvzcwHzc4E/YVvzc4G/7rmANf4zPxv4Zz4bYLxnfj5gfj5gfj5gfj5QO5ubnxHUfEZgsI75OYH5OYH5OcF/3XMCmJt85pf7VW6cMZyPfXjsL/I53BZw98W/7P+9Tzh/tq0tF3C4KX8U384O4xf+UXwHB4y/9o/iOzpi/Et/FL9OHYTPE/xRfGdnwIc7B/0LBQHGR2MtwCMcrjvHjjuR486P5TQDjABob18Lt7MJrgvgNgVcP8DoiKjXwi02wXUF3OaAGwAYodAeWwv3hAlufcBtCbjBgBEB7Qk1cQGjGrcB4PoCbjvAiIX25Fq4ShPcRoDrD7idACMR2jNQvIhEXJH1gQPL4DN3rsiCKxKKREPGwmeIJZ9rKbhZiD4iLlckwKVCTiGfzxVZlJSUiKy4Ipt9hfsKlwDMABgLYGXBtQIKBhICrqXF+r1onBWXa8WSYGhYIRpW1lwr273wWdx1cddpGCYCWFtyrUUCgUA/cdSoURP1QgFXyJIptObyrC2MdAoFAq615RT4WNtwre32Dtg7AKiWTCWmEuMBRgHYWHLR/3byo8RsuDwbAzGWmg2mZmPHtXHY67bXraRFSYsp0VOikTqjRaNFxSJbIdfWigef9pHF8IlsLxJwRZYswUJbLs/WsrAmSVshImlrz7V1vNnwZsNfO57xvaS4pDgSd+LEwYnfTzxge8DWTsS1s+bDp0P2AfTJ7oANeenmXuZjx+PZWe41fjh791pYcu1EJ9AHR7Yh7tG858kUqmy27KdjymmoHKqlMn2JUK1S5UuEFWgVvkQUrc7FVy1ctTSU0ZfMvkQcpVf9OWwsAxfLAX9NiuBelxGpSQFZ3CTP0spnTPSYF3ZcIa+kuEkWNGXyuFyxA2lnaTVgTDSX5gt4XAsOOcjSupUlV8AtDuFxBSVSkiJ9TVoaLvEobAiTDUEi3hKp8SEFbaE7IyDFtQgKiHBevS0OwRsmUnvydoQ/rYyd9dPz8Bifosnflq2bSWVE3ygpthlIFguekMX8KyV8HpfHcw6EpCD5qXTdzdJDi9H/8QxqiCyrAdcG5BwutiGtLPmpAktnXmqy2JmsgyoiZ+t0SpcjV2Xr1SqxI2mPGoXOQgktU6pVMrEH2RC1WDu7fPRxr7gF2Rz1850bm/bLaCJZno0fGiSFhRIBoCTp4WoXICbbkQHitgFtxCG9oBoAVTFbJfV/iXxsP/8T/WQx19PUUGB/fjHXgQPt1rxiSLxbxj+fy5nWq8vVhdu739d2yVbEa1v1P2y/M2ntfNtJAvXRl/JN5f1Tplb0a3xwZlrfiX4amx5+sUlDn20qlssvX1t/+FbFpVSxPu3YxECL7LHiEMdg7wadvepScUf0G8emtw+33sZ7dSvp+Wjql3WdbSWTnlx4nZD2dbt9McVfzw3xnp7VaeTXPXZtHapLLHvwsoty1jrbqB5RcZ1u75m1q/7mtJ6OQ717y+v/Jv2isUVHxbvK+y8vrwsYvfLK/sV9wgrWZ8w46nmp7A6RE+tz5/DCe+lU2t3iNaekno9UmWr/Q8WZlYKrDrzhvp1Sr2crbWZIWw57PGu12/Ocs89DDlR2Kuvyg+Pbo8qypc48PkyRpcXcQWARJekMtmzUTGBLWluKIMQtLIR8PtkINdoL6gnqxq6tP+3z4lU6Xtal3tLLK+x3Ur9IyRTUXUcQT3YvjSGjxK3JVsghNs5e1Q6J0dIK9AQiUUMzbtERcegpDS0T1yPrInQLZ7uAwIB2we1aBbUJCQoJJhsjqk0FbmS9wrp33vYftsOT0/O2NmHL0yb6pgF3KteSaQihsSCRBMYlMSVRYyLYB3ZSraLWU15Nrhy1+rPPS3X+IBnEMEQwBG9/FLytyZDWZBs/QCJ7GTTncgUJZBwZa6iTvDGdWRb5+fkfY0Frf5e2nrRFMsNyXyXgkZxa85ePonFwxdAe+tW6Q0u/DYpI8Ou1KfRq/PjczenLRuQ9tG2546dOM15Y/Hh3ekbdyskTIlcNK9w78vClAWe82nmN7XBgutjjh53Ttge/am15Z8TLgWMLtpcPbtnM97eKFT4Hqqbc3D7pYRXt+FPIsorz0y9kkLYx21bPt7C64PJQvPNc37S3C4Mn3fnqWadjvbxnvh3t5eeUTjv9IEh8nURcWHkxf8IjvSBp66SDUycniCffrzs86vybm/Wea/r3Ot240HVC8ue/DebsXvp8SJ8790cNiy49tPrByh1CS/d7G8oqr+x/cv9FXEinh/VuZMg2eu+bUOY46L33/tVhX63eciIn5q6GnhEbeLC+/aMHiVfr9x50iSy21EDm68lkPWvKVhKHMza/drIrGvuXZJMAkmSyScvqfolaDUjgW3mWXErpaSI0T5+j1sr1Bca8B9cQsk0AGUQyeS+YqQaj6t+el/+nDPizvSypIHvLwfJ3Vpy4RTPWvkjLuR9+6fShnomrlg3+TBnx3bl20zaXerx6RRffdj07+V34AtE9evop39RRez4Xlfu1Whnayu3bJd1VMXG5LsLrZWf3j/MYNOPklhHdN68TXTox9kKu64z200817/LwzvugOennG/WNeb7Rx+/86B0ZXV5O2dxqpP5Yq00dIst/jYzZ55qVcrThrkYHUzPTtS+ztzcjgq73Xb5sZr81LQpPnt+4qIK/RXpuY90j+46Mb26dMUL4sMr+UaFTcJzT8t2S3s+WX7k5wSY6/8LoqPOO2w/fW/3LhIGtLfoMOLzZp/eCpg37R5S71/VQhxyvH1g4cFz80oFZ0iHTz5OnZzY2ZMBysMgN0tHSil3bXbgCiEKOSfr7aB6qbxxQlyew9bCGDS/6aiSME0raoJEOAkRmDOlgnPsWJB9uNTLc+edpxyffW9InM6es04wpvS+emud28H+b4SBuIWohWNks1KZ1QOD/VYb7BG09WbQQCU0IimaSRdPIoslG4/jxyaIispOBFY9bT/xJVkndY/CPdfzDkpL9ZXQWlafQ++XolWRX43AeGeQRQDSC8yr6F4Lou6f+nCS89ULfJhVALZn9FpU2fpfsRzT6IOeCg931lemJLYcdrDd6yLakc55vrRauLZ79MqjKx3f2TKeK23tO75l+pDxo1Y9F2656cHafDVavqxhRMDO/gvfD4weXTiZ4NKCW7O/V1P3XiSsze0Rki8q7dPSY/pIc7XqkXdflF+03NWlZsWyxfKLn9BP6OXcXR4U9SV6714GUj3h/thmhVFPnbgjPX9ZyfOVjBnfq8ePydtFHQyil8Fpy/eMrLlD799waucbhZu78mRc+b9Fj/bjYHqXzFEe+bRzrbi9fdfHqvuFlMZrVW7/eoY2Sur5efmHJ8jEPVzqGz5du3SgfZ/l95Jihbl3uHWrU5PywV7ymrQ+FHt/TKO5IvcoNC0a89eweM17lUr58xODeZckFU0cvPH/2x0664N86fpOyURI1cO9q55lnJ9W5Mje7X8DENyGjy67mjV7wxeFe6aP377lmN3ni/NYPNv9y2vvcln7y16X1BNwVXtm60/GJW69bpM0e+uJnSfzTfIvE0Ycv2Tye9KibVZnd4PKmaUM8m7fZfWzDRNXqRrdHX4kKzJxcenRqYP9BHl3XzaGPet7r1qTZ+IatB1wOGRc6zqeew0Wq44ycAZLKC1FzSwq7/uJSlN95wc1kN/ekRm1nzvfICnT2buc65Is2pxIO9N/4rFNU8tabFT/aUJ18Lk7zPRXSq3PXbuLSxo6i/WkL9nj17cFbOLDgrOu5K/tmTBIOazYofI3lwDs/HL7RdN6svEPiYhc5WexCw+afhLD9m9P1J7f6JieIkqL1KO2wgWzFF9uaHlFAkuqajdieNO11If2rBwrEngLCw8dxfWbQFnJ6cOCGeX3o0eWV7wo3fsvPGzrBo2HRN0OWkOEmw23FbcigkrqFTh8+8l7csNDd8Eu7/A/mdK0VSFDM5ax1eTTkrhv/zeGwU0VL6ux+t/PZkhnTU5dGz+u379GQyBGizovuOeXfOLkhVRY69OGg4wFhAy93ecqLt/N6ZxnfwMK3rNGAQU935PXMEEcdSwhIHBlCbFjj1MgyoLT8y2V7Om/r61Qmv9h662dn6zQtW+lbNWLUjXblvaISWvf9zmfkz287bzgyiSdctGrmL2HagX08nnbZ6tXizeD8S9EbhOF17iaMn6BxHrP+zEXlWuEFwZiwd7fTVq45t3ii9VH/49f8RB0WDrJPfLPzhd75S/G5IV0PLpBdWTnkqFsW54mnYneVbdmIPltP2ka69psy7mq2V3LusXkNG/Tv942szOHZd2mXDuxV59+8uC3b4/niYqfHZLHTI6N5+XyuuNjpGrRdrnE2dToGTYd5XP6HZ9NibqqljcGdjnA8LeaGg227QkdHiGeW9KgMaz73I+fQpBuTLds88FhT9NmNqkNpXJd9fOnEjcFpPgcWxPI7ePWZzbOk3jZx2x/t5hxAwlkOTnPoIib9xG3a9iIFhTzu05KiH0qLysiiU3/JrGlJejNnCZMfPZqcIZLyYD1SExK5VC1uTnoxqI1Scij0i7OU5GQiIjmhfdt2IaGtIwKD27QWh8BhtBnZlJmIDatJpsiVdOtkPaXUEMnMLylLiu3DYR/6DE7g16pP4NwBQuLXadFXdj/AX3AMqL0p/ewvMQKrGd+50UclrnX+FouDxO2Qt5jzd5BYzFb/dT76Hze2m8WFDc88OXzisSSws9WXz4JLe50sfdy6Gx335d2DE05s+fbiV63or07d6rez/m6nKYm3LMJLy5v1W+80KW3cj7677vJ5rvMON/lqSo8yl9NNzx+f0PH86qMphbrf4p4qAy6oXnfQFvpQt7+/v81t3jsfvUfbNzO6PgjSj7B5N+Jg87lHrQc08ajgOkXLXai7/rNWfbdc2d3Cs6gg6TPyxNSY0orHmWeCtueuyVnd1ypu7ymP9VOWDwgIz+3z7mCVfZ9NozsMGjvnyxmRs5SH1z04Whw3ff2yb9u6Td8aOevdvUfL1NPuz98T/PBivZLA/bdHfnlLNKd8UZ01Ffxzu9KmLDr8pe7npFUrQhvcuNb2O+PRvgFYxNVkG7tivsfLb1e63pz3U16AVd5nZx7sbiytuRuVtu8zXjzlt7Bhn0U2OBSY02u0MvV/uxsF/4H3apyJxf9Xu9FP0K593v7Ilxuijx3CXYLmiOa3t1g+Likv0Zu66FrptaxF2Iu7V0oqHM7WW3T9Vue+/NTh047faXkh9EJb6foGbTylCZ5Xv5Tmbg0RXbk5fZBL1dbjT6Zrqiydr3//ZGyrZ6dnqnt/4bqt9cJHh568qjzT/M3Tb5qr3L7rHi4as/Rq0+9Dfo5d1IU30U/53PvBqRc243tLY59U9ebPcdxxrXDymq8ecgu3XRB6NvLMGtdZeXzcspHHWn6Zvav1qNyegXP6W733OS0dWe/J+y5FK0qbT2g89VSJaty8crsBdcXjC1eqf7mcfPGX/G2Dpl4O2rLysEcI9yv3S7cS6wZbpgiymt9++Li/VeX4yLplcV7Kk/KzI3XhznFbV27/AQ7hgyD5ZRgO4VZFPvgQzvsHHMLFAeLANsHBhkM4VINQ9W9Ozf9TplrVyG5nfp3x7YmHb51nP3s9Qj4jV5/ieH6ZNad49JtHn+V09+1/6EAFtX/wt52zWvX+1SXZWyBuHNrAfWajU1bOkz6jyIwNZLjD4wFjR6WE2V6M39ZWtKnbtelrL+jI9ObFSyPsztx/FlV0co/XgICeAyKf9IwaEzDKQ09lT+1flLLh9PS4afsOLu9bRjmrWhx2fzWmcMcN6m3kPu9GXtlOWvcm49d1l41LytzQ911+406/puet3TW+W3zXHmUOCyw7Z494lrWXPyt8eOWZ7u9UFfOObVj5ZKiPtfjXKwmWU7eOFQXfG9Jw/c9zT3a86x/+3YqnV2W7Srn7CKvpQ06+3bn3aHjffvUWcC0SPeMNmeoOWOTW7x7BP5qazEfwGkfwEnwER2r+g07hwjtje9jdOnxzTpeiQfxOC5cubqLe9GD5iWfi3actbq16/zpdWZ/ctP9Q1tGBN57d/XXIru9XLmpW/mrno9yUdFGrHsXhTm+2J0888XSA0/jBJ7p2DZ1/tY9rVZ9X/VyD53ildddXdnM8sm7PiMMjnoR83qtLwydzC2KnSjjr2jq4PvMvKKIvr9qSe/v7U8+PDeWou5PhXp4dTz/iL5s1OaPlzq3vBD9pvgqI9X6Xus7//daKSYE7MvvP+zG968+PT83NmjKxamDmiGuHYm2mNr/V7mH92EHShcOaKA8sWLqk4+sRn88aOGXIcuXZnxa8avS27aUZTw8vs541pnTXIvdvBN1GbttSON+zLbGlWYXs4Yune4ZLM5o5DPVrlz54yaDVluMdxtX7jlpR5/i8S/ZR8woPnTm54kzl5yN//anDIKsbffVzPEXUlfVJHupdj3/i3LgrFpZOb/+Cjhpy7+XK6DUvrmuHU7nq/FVFx1dYrW234+Hh45eKN2tPNnq6bTTXo/BNg3E+Ke029r5yxC517tAvdB1Ed+a0vv/lzUA/p5bP9vqneDd5cWRtwpUW2zas+nHWxhXdlhw9XT80/uaYVz7zltbJIs/t0Ad0vyEd9mzueP8G3zdZl7Hlm6vhHWcnDbq4+Oyh1HL59fR9ZdfJve9O3Il/Y7enb+LPCz3qt/XfebqnhV+lXUlS8JVKK++G5zcND/YQfXelzY/n+k++rh8b47S4mHeWLOZ1wKfwt4v/nceKJU2tQT2hpUUrez7Pne/CeRMwTZ83Ifzqkdk+X6S7XC5cdfnMkpKikWRRYenwv3nNMpmjFhYcngWn4puxvUhPNwfjWTAgMEQc1MvQICbZBjIfEozx4Cngiv0hO1mzBFA2t4YLj1fPngcZWIjLdZ4wCOsuX0EIbUyG89BXJ8avMNBJlldiTYrQML5wMbHYUOaOKaklMr+oiDP8698COVZUafH2V+dzrl32HDr7m2OC3fx75b+W8wfbeY0S0KWDjvZev+nQ/Md9Og9q19Q932VYme/dJ7Fz3UTC29d7Dxvesvvw8teV4ZNI4rvo1yudiqqct3a4brfIbv8Qi7Unlw05SLWJbRn3IGx14tq75zsm7nhZv/LMtNtjXDVX7q9xnxkqLubbwRnSCkf19L/Xo588wpp+s1TMjSXdTb9asqvx/cIH3x4VZvf+xZ26tUbRb9xL5fmjP3qLXfdUPsn9pqrxJVUr3Xk5WfTahADPX1x0nyy6SxbdJot2CQie09JdS3V+s3tHrFjncb/VseEzz1ZN7uNqdatf9IuV6+ntZNGc/4Kp8HHDgfJh9dv3yRLer/BYff3V/anl/iNm/rYrvf+87u+PnR/z/uJbstY6h770sg9tuj7TS69+u2fu5jGBMRKvgh73t1Ed/dIO2Mi9t85IOHX6WH5sv+t3evZPe58SsfWLp8nha5c0vdB4MzFtTpRka9HWIxP6Jn5bJVlTZJuQZPcjQYvVp3ePWtah8n7/URHXHnj5L5kQM6j79of7xh10HPmqqsD/5MCT6T/5VzQ7O/Xmovf5KS7X1tqdf7tq6KkRI3ZO+NbVh1jQ2218+eti5RsPm9FupfPKlrs/6Vzqf8G+ovdUue5SE9HU/DdrXw3vmjWlx05d4u61j9Mc587+emNF7sWEN1zLPmsbqm5yOm19skp8PTB/N/9KtP3q500iNr0Xvd5iubnHuBuyRouPFAs02vm/np8WdSSowgZs9/8Ay6n4uA0KZW5kc3RyZWFtDQplbmRvYmoNCjIwIDAgb2JqDQo8PC9UeXBlL01ldGFkYXRhL1N1YnR5cGUvWE1ML0xlbmd0aCAzMDY2Pj4NCnN0cmVhbQ0KPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz48eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSIzLjEtNzAxIj4KPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgIHhtbG5zOnBkZj0iaHR0cDovL25zLmFkb2JlLmNvbS9wZGYvMS4zLyI+CjxwZGY6UHJvZHVjZXI+TWljcm9zb2Z0wq4gV29yZCBMVFNDPC9wZGY6UHJvZHVjZXI+PC9yZGY6RGVzY3JpcHRpb24+CjxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiICB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iPgo8ZGM6Y3JlYXRvcj48cmRmOlNlcT48cmRmOmxpPlJvbmVuIFJhYmlub3ZpdHo8L3JkZjpsaT48L3JkZjpTZXE+PC9kYzpjcmVhdG9yPjwvcmRmOkRlc2NyaXB0aW9uPgo8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiAgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIj4KPHhtcDpDcmVhdG9yVG9vbD5NaWNyb3NvZnTCriBXb3JkIExUU0M8L3htcDpDcmVhdG9yVG9vbD48eG1wOkNyZWF0ZURhdGU+MjAyNS0wOC0xN1QxMDo0OTozNSswMzowMDwveG1wOkNyZWF0ZURhdGU+PHhtcDpNb2RpZnlEYXRlPjIwMjUtMDgtMTdUMTA6NDk6MzUrMDM6MDA8L3htcDpNb2RpZnlEYXRlPjwvcmRmOkRlc2NyaXB0aW9uPgo8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiAgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iPgo8eG1wTU06RG9jdW1lbnRJRD51dWlkOjE4ODY5QkQ5LUZEMDYtNDY1Qi1BOUQ0LUExOTQ4MTMxMEE2OTwveG1wTU06RG9jdW1lbnRJRD48eG1wTU06SW5zdGFuY2VJRD51dWlkOjE4ODY5QkQ5LUZEMDYtNDY1Qi1BOUQ0LUExOTQ4MTMxMEE2OTwveG1wTU06SW5zdGFuY2VJRD48L3JkZjpEZXNjcmlwdGlvbj4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCjwvcmRmOlJERj48L3g6eG1wbWV0YT48P3hwYWNrZXQgZW5kPSJ3Ij8+DQplbmRzdHJlYW0NCmVuZG9iag0KMjEgMCBvYmoNCjw8L0Rpc3BsYXlEb2NUaXRsZSB0cnVlPj4NCmVuZG9iag0KMjIgMCBvYmoNCjw8L1R5cGUvWFJlZi9TaXplIDIyL1dbIDEgNCAyXSAvUm9vdCAxIDAgUi9JbmZvIDkgMCBSL0lEWzxEOTlCODYxODA2RkQ1QjQ2QTlENEExOTQ4MTMxMEE2OT48RDk5Qjg2MTgwNkZENUI0NkE5RDRBMTk0ODEzMTBBNjk+XSAvRmlsdGVyL0ZsYXRlRGVjb2RlL0xlbmd0aCA4NT4+DQpzdHJlYW0NCnicY2AAgv//GYGkIAMDiFoGoe6BKcY3YIppH5hiTgVTLCEQqhNCAeWYwNqZIBQzhGKBUKwQihFCQVWyAfWxLgZrZ9eHUF5gKugtmIq3YmAAANuYCv8NCmVuZHN0cmVhbQ0KZW5kb2JqDQp4cmVmDQowIDIzDQowMDAwMDAwMDEwIDY1NTM1IGYNCjAwMDAwMDAwMTcgMDAwMDAgbg0KMDAwMDAwMDE2NiAwMDAwMCBuDQowMDAwMDAwMjIyIDAwMDAwIG4NCjAwMDAwMDA0OTIgMDAwMDAgbg0KMDAwMDAwMDcwMiAwMDAwMCBuDQowMDAwMDAwODY5IDAwMDAwIG4NCjAwMDAwMDExMDggMDAwMDAgbg0KMDAwMDAwMTE2MSAwMDAwMCBuDQowMDAwMDAxMjE0IDAwMDAwIG4NCjAwMDAwMDAwMTEgNjU1MzUgZg0KMDAwMDAwMDAxMiA2NTUzNSBmDQowMDAwMDAwMDEzIDY1NTM1IGYNCjAwMDAwMDAwMTQgNjU1MzUgZg0KMDAwMDAwMDAxNSA2NTUzNSBmDQowMDAwMDAwMDE2IDY1NTM1IGYNCjAwMDAwMDAwMTcgNjU1MzUgZg0KMDAwMDAwMDAwMCA2NTUzNSBmDQowMDAwMDAxODM5IDAwMDAwIG4NCjAwMDAwMDE4NjYgMDAwMDAgbg0KMDAwMDAyMTIyOSAwMDAwMCBuDQowMDAwMDI0Mzc4IDAwMDAwIG4NCjAwMDAwMjQ0MjMgMDAwMDAgbg0KdHJhaWxlcg0KPDwvU2l6ZSAyMy9Sb290IDEgMCBSL0luZm8gOSAwIFIvSURbPEQ5OUI4NjE4MDZGRDVCNDZBOUQ0QTE5NDgxMzEwQTY5PjxEOTlCODYxODA2RkQ1QjQ2QTlENEExOTQ4MTMxMEE2OT5dID4+DQpzdGFydHhyZWYNCjI0NzA3DQolJUVPRg0KeHJlZg0KMCAwDQp0cmFpbGVyDQo8PC9TaXplIDIzL1Jvb3QgMSAwIFIvSW5mbyA5IDAgUi9JRFs8RDk5Qjg2MTgwNkZENUI0NkE5RDRBMTk0ODEzMTBBNjk+PEQ5OUI4NjE4MDZGRDVCNDZBOUQ0QTE5NDgxMzEwQTY5Pl0gL1ByZXYgMjQ3MDcvWFJlZlN0bSAyNDQyMz4+DQpzdGFydHhyZWYNCjI1MzIzDQolJUVPRg==\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/documents/analyze-base64","description":"<p>[V6] Get document info from uploaded file base64</p>\n<h2 id=\"json-object-description\">JSON object description:</h2>\n<hr />\n<h2 id=\"getdocumentinforquest\">getDocumentInfoRquest:</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>File</td>\n<td>String</td>\n<td>Base 64 PDF document file</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","documents","analyze-base64"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"0811fc8f-3bf1-4850-8940-9cbe3ff9f3df","name":"Document analyzed successfully","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"File\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/documents/analyze-base64"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"NumberOfPages\": 5\n}"},{"id":"e798d768-2bad-4081-bb88-824fbe0fcf1c","name":"Invalid request or document format","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"File\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/documents/analyze-base64"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"3fa7ee5f-1cbf-4708-a7aa-d6b46da0cde5","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"File\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/documents/analyze-base64"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"29e95507-f4d6-491a-b225-70ed73d5409c"},{"name":"/v6/documents/search","id":"7dae5bab-737b-4567-bfb1-5374a6f8133b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"description":"<p>Text to search for</p>\n","key":"searchText","value":"string","type":"text"},{"description":"<p>Document file to search</p>\n","key":"file","type":"file","value":null},{"description":"<p>Optional pages to search (comma-separated, e.g., \"0,2-5,7\")</p>\n","key":"pages","value":"string","type":"text"},{"description":"<p>Whether search should be case-sensitive (default: false)</p>\n","key":"isCaseSensitive","value":"false","type":"text"}]},"url":"//v6/documents/search","description":"<p>[V6] Search for text within a document</p>\n<hr />\n<h2 id=\"file\">file:</h2>\n<h3 id=\"document-file-to-search\">Document file to search</h3>\n<hr />\n<h2 id=\"searchtext\">searchText:</h2>\n<h3 id=\"text-to-search-for\">Text to search for</h3>\n<hr />\n<h2 id=\"pages\">pages:</h2>\n<h3 id=\"optional-pages-to-search-comma-separated-eg-02-57\">Optional pages to search (comma-separated, e.g., \"0,2-5,7\")</h3>\n<hr />\n<h2 id=\"iscasesensitive\">isCaseSensitive:</h2>\n<h3 id=\"whether-search-should-be-case-sensitive-default-false\">Whether search should be case-sensitive (default: false)</h3>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","documents","search"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"73972eeb-6033-4009-9bd6-f8caa704294a","name":"Search completed successfully","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"description":"Text to search for","key":"searchText","value":"string","type":"text"},{"description":"Document file to search","key":"file","type":"file","src":[]},{"description":"Optional pages to search (comma-separated, e.g., \"0,2-5,7\")","key":"pages","value":"string","type":"text"},{"description":"Whether search should be case-sensitive (default: false)","key":"isCaseSensitive","value":"false","type":"text"}]},"url":"//v6/documents/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Pages\": [\n    {\n      \"PageNumber\": 0,\n      \"MatchCount\": 2,\n      \"Elements\": [\n        {\n          \"Index\": 0,\n          \"Angle\": 0,\n          \"Text\": \"Sample Text\",\n          \"Position\": {\n            \"Top\": 100.5,\n            \"Left\": 200.3,\n            \"Width\": 150,\n            \"Height\": 20\n          }\n        },\n        {\n          \"Index\": 1,\n          \"Angle\": 0,\n          \"Text\": \"Sample Text\",\n          \"Position\": {\n            \"Top\": 150.5,\n            \"Left\": 200.3,\n            \"Width\": 150,\n            \"Height\": 20\n          }\n        }\n      ]\n    },\n    {\n      \"PageNumber\": 1,\n      \"MatchCount\": 1,\n      \"Elements\": [\n        {\n          \"Index\": 0,\n          \"Angle\": 0,\n          \"Text\": \"Sample Text\",\n          \"Position\": {\n            \"Top\": 100.5,\n            \"Left\": 200.3,\n            \"Width\": 150,\n            \"Height\": 20\n          }\n        }\n      ]\n    }\n  ],\n  \"TotalMatches\": 3\n}"},{"id":"4c9af715-b926-460c-b776-5a83beb7b9c0","name":"Invalid request or document format","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"description":"Text to search for","key":"searchText","value":"string","type":"text"},{"description":"Document file to search","key":"file","type":"file","src":[]},{"description":"Optional pages to search (comma-separated, e.g., \"0,2-5,7\")","key":"pages","value":"string","type":"text"},{"description":"Whether search should be case-sensitive (default: false)","key":"isCaseSensitive","value":"false","type":"text"}]},"url":"//v6/documents/search"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"60941f13-d51b-4aa4-bda7-6f0d5a077693","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"multipart/form-data"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"description":"Text to search for","key":"searchText","value":"string","type":"text"},{"description":"Document file to search","key":"file","type":"file","src":[]},{"description":"Optional pages to search (comma-separated, e.g., \"0,2-5,7\")","key":"pages","value":"string","type":"text"},{"description":"Whether search should be case-sensitive (default: false)","key":"isCaseSensitive","value":"false","type":"text"}]},"url":"//v6/documents/search"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"36f9f176-1732-4bb4-b07f-0cd761c30e0b","name":"Internal server error","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"description":"Text to search for","key":"searchText","value":"string","type":"text"},{"description":"Document file to search","key":"file","type":"file","src":[]},{"description":"Optional pages to search (comma-separated, e.g., \"0,2-5,7\")","key":"pages","value":"string","type":"text"},{"description":"Whether search should be case-sensitive (default: false)","key":"isCaseSensitive","value":"false","type":"text"}]},"url":"//v6/documents/search"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"}],"_postman_id":"7dae5bab-737b-4567-bfb1-5374a6f8133b"},{"name":"/v6/documents/merge","id":"5f5bf6b5-bace-438e-be18-2a33aaafffdb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/pdf"}],"body":{"mode":"formdata","formdata":[{"key":"documents","type":"file","src":["/C:/Temp/sample1.pdf","/C:/Temp/sample2.pdf"]}]},"url":"//v6/documents/merge","description":"<p>[V6] Merge multiple documents into one PDF</p>\n<h2 id=\"json-object-description\">JSON object description:</h2>\n<hr />\n<h2 id=\"documents\">documents:</h2>\n<h3 id=\"array-of-document-files-to-merge-in-order\">Array of document files to merge (in order)</h3>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","documents","merge"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"65cc7c26-6a59-4653-8fd4-5931af030180","name":"Documents merged successfully","originalRequest":{"method":"POST","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"Tenant Name"},{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/pdf"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"formdata","formdata":[{"key":"documents","type":"file","src":["/C:/Temp/sample1.pdf","/C:/Temp/sample2.pdf"]}]},"url":"//v6/documents/merge"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/pdf"}],"cookie":[],"responseTime":null,"body":"string"},{"id":"c4fc0a09-6329-4829-8e9f-7b58fb7cfb1a","name":"Invalid request or document format","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/pdf"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"key":"documents","value":"string,string","type":"text"}]},"url":"//v6/documents/merge"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/pdf"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"97956fe2-4970-4345-8b47-8825404ad49c","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"multipart/form-data"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"key":"documents","value":"string,string","type":"text"}]},"url":"//v6/documents/merge"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"ed8688e4-e412-4298-9d60-e360bc3d2f3f","name":"Internal server error","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/pdf"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"key":"documents","value":"string,string","type":"text"}]},"url":"//v6/documents/merge"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/pdf"}],"cookie":[],"responseTime":null,"body":"{}"}],"_postman_id":"5f5bf6b5-bace-438e-be18-2a33aaafffdb"}],"id":"7d795668-9f3e-4d56-a798-a1e2ffd62601","_postman_id":"7d795668-9f3e-4d56-a798-a1e2ffd62601","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}}},{"name":"Flow","item":[{"name":"/v2/flow/edit","id":"41d03805-5012-42bf-94d0-b91d80764a35","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"formdata","formdata":[{"description":"<p>The document of the flow</p>\n","key":"file","type":"file","value":null},{"description":"<p>The sender of the flow</p>\n","key":"senderKey","value":"{\n  \"Key\": \"john.doe@company.com\",\n  \"Type\": 1\n}","type":"text"}]},"url":"//v2/flow/edit","description":"<p>Creates a new flow for editing. Allows starting the process by sending the document only,and then continue creating the flow from the Doxi UI using the returned link.Supported document types:.pdf, .docx, .doc, .jpg, .jpeg, .png</p>\n<hr />\n<h2 id=\"file\">file:</h2>\n<h3 id=\"the-document-of-the-flow\">The document of the flow</h3>\n<hr />\n<h2 id=\"senderkey\">senderKey:</h2>\n<h3 id=\"the-sender-of-the-flow\">The sender of the flow</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* Key</td>\n<td>String</td>\n<td>User search value</td>\n</tr>\n<tr>\n<td>Type</td>\n<td><em><strong>ParticipantKeyType</strong></em></td>\n<td>Search type:UserEmail=1,UserPhone=2</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"participantkeytype\">ParticipantKeyType:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>UserId</td>\n</tr>\n<tr>\n<td>1</td>\n<td>UserEmail</td>\n</tr>\n<tr>\n<td>2</td>\n<td>UserPhone</td>\n</tr>\n<tr>\n<td>3</td>\n<td>UserName</td>\n</tr>\n<tr>\n<td>4</td>\n<td>GroupId</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v2","flow","edit"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"f7aa6825-30ac-41f6-9015-dda8a30899a0","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"description":"The document of the flow","key":"file","type":"file","src":[]},{"description":"The sender of the flow","key":"senderKey","value":"{\n  \"Key\": \"john.doe@company.com\",\n  \"Type\": 1\n}","type":"text"}]},"url":"//v2/flow/edit"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"EditFlowUrl\": \"https://doxi-sign.com/mycompany/doxisign/edit/1909058d-f59b-42b2-9994-20fbfb154d63/0XyVpZxuN0dI2Bb0ORB4bg%253d%253d\"\n}"}],"_postman_id":"41d03805-5012-42bf-94d0-b91d80764a35"},{"name":"/v5/flowbase64","id":"145a5303-87d6-4ba6-ab8a-d05af886664e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"Base64DocumentFile\": \"JVBERi0xLjcKJeLjz9MKNSAwIG9iago8PC9GaWx0ZXIvRmxhdGVEZWNvZGUvTGVuZ3RoIDY1Pj5zdHJlYW0KeJwr5HIK4dJ3M1QwMlAISeMyMrTQMzBRMLcw0LOwUAhJ4dJwya/IVAhwcVMITswtyEnVDMnicg3hCuQCAHV/DbsKZW5kc3RyZWFtCmVuZG9iago0IDAgb2JqCjw8L0NvbnRlbnRzIDUgMCBSL01lZGlhQm94WzAgMCA1OTUgODQyXS9QYXJlbnQgMiAwIFIvUmVzb3VyY2VzPDwvRm9udDw8L0YxIDYgMCBSPj4+Pi9UcmltQm94WzAgMCA1OTUgODQyXS9UeXBlL1BhZ2U+PgplbmRvYmoKMSAwIG9iago8PC9QYWdlcyAyIDAgUi9UeXBlL0NhdGFsb2c+PgplbmRvYmoKMyAwIG9iago8PC9DcmVhdGlvbkRhdGUoRDoyMDIyMDUwMjE1MzQ0OCswMycwMCcpL01vZERhdGUoRDoyMDIyMDUwMjE1MzQ0OCswMycwMCcpL1Byb2R1Y2VyKGlUZXh0riA3LjEuMTYgqTIwMDAtMjAyMSBpVGV4dCBHcm91cCBOViBcKEFHUEwtdmVyc2lvblwpKT4+CmVuZG9iago2IDAgb2JqCjw8L0Jhc2VGb250L0hlbHZldGljYS9FbmNvZGluZy9XaW5BbnNpRW5jb2RpbmcvU3VidHlwZS9UeXBlMS9UeXBlL0ZvbnQ+PgplbmRvYmoKMiAwIG9iago8PC9Db3VudCAxL0tpZHNbNCAwIFJdL1R5cGUvUGFnZXM+PgplbmRvYmoKeHJlZgowIDcKMDAwMDAwMDAwMCA2NTUzNSBmIAowMDAwMDAwMjc5IDAwMDAwIG4gCjAwMDAwMDA1NzAgMDAwMDAgbiAKMDAwMDAwMDMyNCAwMDAwMCBuIAowMDAwMDAwMTQ2IDAwMDAwIG4gCjAwMDAwMDAwMTUgMDAwMDAgbiAKMDAwMDAwMDQ4MiAwMDAwMCBuIAp0cmFpbGVyCjw8L0lEIFs8NjIxNzRhNGNkYWIwNWQ3MWY3MjE5MDMwN2RkODRiYTE+PDYyMTc0YTRjZGFiMDVkNzFmNzIxOTAzMDdkZDg0YmExPl0vSW5mbyAzIDAgUi9Sb290IDEgMCBSL1NpemUgNz4+CiVpVGV4dC03LjEuMTYgZm9yIC5ORVQKc3RhcnR4cmVmCjYyMQolJUVPRgo=\",\n  \"DocumentFileName\": \"API Example.pdf\",\n  \"SenderKey\": {\n    \"Key\": \"myEmail@domain.com\",\n    \"Type\": 1\n  },\n  \"Description\": \"API Example test\",\n  \"FlowElements\": [\n    {\n      \"SignerKey\": {\n        \"Key\": \"marty@doxi.com\",\n        \"Type\": 1\n      },\n      \"ElementType\": 0,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 291,\n        \"Left\": 401,\n        \"Width\": 114,\n        \"Height\": 38\n      },\n      \"IsEditorElement\": false,\n      \"TextSize\": 0,\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"SignerKey\": {\n        \"Key\": \"marty@doxi.com\",\n        \"Type\": 1\n      },\n      \"ElementType\": 10,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 433,\n        \"Left\": 513,\n        \"Width\": 14,\n        \"Height\": 14\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"0\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Checkbox\",\n      \"ElementHelp\": \"Checkbox-help\",\n      \"ValueName\": \"3\",\n      \"IsRequired\": false,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"isMarked\",\n          \"Value\": \"false\"\n        },\n        {\n          \"Key\": \"order\",\n          \"Value\": \"90\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"SignerKey\": {\n        \"Key\": \"marty@doxi.com\",\n        \"Type\": 1\n      },\n      \"ElementType\": 1,\n      \"ElementSubType\": 2,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 378,\n        \"Left\": 394,\n        \"Width\": 131,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextSize\": 0,\n      \"ElementLabel\": \"Text-First Name\",\n      \"ElementHelp\": \"Text-First Name help\",\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    }\n  ],\n  \"SendMethodType\": 0,\n  \"Recipients\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"david@doxi.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"david@doxi.com\",\n      \"FirstName\": \"David\",\n      \"LastName\": \"White\"\n    }\n  ],\n  \"IsSendApprovalMailToAllSigners\": false,\n  \"IsAutomaticRemainder\": false,\n  \"DayesForAutomaticRemainder\": 0,\n  \"CustomFields\": [\n    {\n      \"Key\": \"SomeInnerSystemIdNumber\",\n      \"Value\": \"12345\"\n    }\n  ],\n  \"Users\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"marty@doxi.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"marty@doxi.com\",\n      \"FirstName\": \"Marty\",\n      \"LastName\": \"Braun\",\n      \"SmsPhoneNumber\": \"0501234567\",\n      \"UserPassword\": \"0018\"\n    }\n  ],\n  \"DisableSBS\": false,\n  \"IsNoSend\": false,\n  \"IsNoNotificationMails\": false,\n  \"IsNoDecline\": false,\n  \"PreliminaryText\": \"Please fill this form\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v5/flowbase64","description":"<p>Creates a new flow request where the file is provided in base64 format</p>\n<h2 id=\"json-object-description\">JSON object description:</h2>\n<hr />\n<h2 id=\"createflowrequest\">createFlowRequest:</h2>\n<h3 id=\"flow-creation-request-with-base64-encoded-document\">Flow creation request with base64 encoded document</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Base64DocumentFile</td>\n<td>String</td>\n<td>The document of the flow</td>\n</tr>\n<tr>\n<td>* DocumentFileName</td>\n<td>String</td>\n<td>The name of the document</td>\n</tr>\n<tr>\n<td>* SenderKey</td>\n<td><em><strong>ParticipantKey</strong></em></td>\n<td>Id of the Sender</td>\n</tr>\n<tr>\n<td>* Description</td>\n<td>String(200)</td>\n<td>The description/name of the flow</td>\n</tr>\n<tr>\n<td>* FlowElements</td>\n<td><em><strong>ExFlowElement[]</strong></em></td>\n<td>All the elements of the flow</td>\n</tr>\n<tr>\n<td>SendMethodType</td>\n<td><em><strong>SendMethodType</strong></em></td>\n<td>Distribution method of the flow</td>\n</tr>\n<tr>\n<td>Recipients</td>\n<td><em><strong>ExUser[]</strong></em></td>\n<td>All the CC users of the flow</td>\n</tr>\n<tr>\n<td>IsSendApprovalMailToAllSigners</td>\n<td>Boolean</td>\n<td>Enabled/Diabaled send email to all signers (when the flow approved)</td>\n</tr>\n<tr>\n<td>IsAutomaticRemainder</td>\n<td>Boolean</td>\n<td>Enabled/Disabled send automatic remainder</td>\n</tr>\n<tr>\n<td>DayesForAutomaticRemainder</td>\n<td>Int32</td>\n<td>Number of the days for getting automatic remainder</td>\n</tr>\n<tr>\n<td>SignFlowDescriptionMessage</td>\n<td>String</td>\n<td>Description of the document in the email</td>\n</tr>\n<tr>\n<td>CustomFields</td>\n<td>KeyValuePair&lt;String,String&gt;[]</td>\n<td>Add additional data in the flow</td>\n</tr>\n<tr>\n<td>* Users</td>\n<td><em><strong>ExUser[]</strong></em></td>\n<td>The changable users of the flow</td>\n</tr>\n<tr>\n<td>PackageId</td>\n<td>String</td>\n<td>Id of the package (the flow will be in package)</td>\n</tr>\n<tr>\n<td>PackageName</td>\n<td>String</td>\n<td>Name of the package</td>\n</tr>\n<tr>\n<td>DisableSBS</td>\n<td>Boolean</td>\n<td>Disabled/Enabled dispaly side by side mode in the flow</td>\n</tr>\n<tr>\n<td>PreliminaryText</td>\n<td>String</td>\n<td>Preliminary text of the flow (display only in side by side mode)</td>\n</tr>\n<tr>\n<td>FlowTwoFactorEnabled</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Enabled/Disabled Two Factor on the flow</td>\n</tr>\n<tr>\n<td>SenderNotificationMailsToSend</td>\n<td><em><strong>NotificationMails[]</strong></em></td>\n<td>Types of emails notification (for the sender and CC), Allowed values: 0,1,3,4,5,7,9,12,13,14,15</td>\n</tr>\n<tr>\n<td>FlowExpirationDate</td>\n<td>Nullable&lt;DateTime&gt;</td>\n<td>Expiration date of the flow</td>\n</tr>\n<tr>\n<td>KitId</td>\n<td>String</td>\n<td>Create flow under kit</td>\n</tr>\n<tr>\n<td>ImagesList</td>\n<td>Dictionary&lt;String,String&gt;</td>\n<td>Dictionary of images for flow elements of type Image.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exuser\">ExUser:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* UserKey</td>\n<td><em><strong>ParticipantKey</strong></em></td>\n<td>Id of user</td>\n</tr>\n<tr>\n<td>Email</td>\n<td>String(77)</td>\n<td>Email of user</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td>String(50)</td>\n<td>First name of user</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td>String(50)</td>\n<td>Last name of user</td>\n</tr>\n<tr>\n<td>SmsPhoneNumber</td>\n<td>String(80)</td>\n<td>Phone Number of user (if empty, the user will not receive sms)</td>\n</tr>\n<tr>\n<td>UserPassword</td>\n<td>String Validation: Only letters, numbers, and special characters are allowed.</td>\n<td>Password for opening the sign link</td>\n</tr>\n<tr>\n<td>Company</td>\n<td>String(80)</td>\n<td>Company name of user</td>\n</tr>\n<tr>\n<td>Title</td>\n<td>String(80)</td>\n<td>Title of user</td>\n</tr>\n<tr>\n<td>IsDisableAttachment</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Disable/Enable add attachments to the flow</td>\n</tr>\n<tr>\n<td>IsSuspended</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Set status flow to suspended when the signer need to sign</td>\n</tr>\n<tr>\n<td>IsNoDecline</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Disable/Endable Decline option in flow</td>\n</tr>\n<tr>\n<td>NotificationMailsToSend</td>\n<td><em><strong>NotificationMails[]</strong></em></td>\n<td>Types of email notifications</td>\n</tr>\n<tr>\n<td>MinimumSignatures</td>\n<td>Nullable&lt;Int32&gt;</td>\n<td>When the user have optional signature element - Dox validate the minimum signatures in the document</td>\n</tr>\n<tr>\n<td>ForceApprovalOnSignature</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Force approval on signature</td>\n</tr>\n<tr>\n<td>PersonalMessage</td>\n<td>String(300) Validation: The field cannot contain script, vbscript, or style tags.</td>\n<td>Personal message to the signer</td>\n</tr>\n<tr>\n<td>UserPasswordDescription</td>\n<td><em><strong>LanguageKey[]</strong></em></td>\n<td>Display when the user open the linkfor example: \"Please enter your social security number\"LanguageKey is the message with all supported languages</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"languagekey\">LanguageKey:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Language</td>\n<td>String</td>\n<td>language : 'en-US','he-IL'</td>\n</tr>\n<tr>\n<td>Value</td>\n<td>String</td>\n<td>Value of text</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"notificationmails\">NotificationMails[]:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>All</td>\n</tr>\n<tr>\n<td>1</td>\n<td>None</td>\n</tr>\n<tr>\n<td>2</td>\n<td>SignFlow</td>\n</tr>\n<tr>\n<td>3</td>\n<td>FlowApproved</td>\n</tr>\n<tr>\n<td>4</td>\n<td>FlowDeclined</td>\n</tr>\n<tr>\n<td>5</td>\n<td>FlowStart</td>\n</tr>\n<tr>\n<td>6</td>\n<td>ReminderToSignFlow</td>\n</tr>\n<tr>\n<td>7</td>\n<td>FlowStoppedToSender</td>\n</tr>\n<tr>\n<td>8</td>\n<td>FlowStoppedToSigner</td>\n</tr>\n<tr>\n<td>9</td>\n<td>KitCompleted</td>\n</tr>\n<tr>\n<td>10</td>\n<td>SignKit</td>\n</tr>\n<tr>\n<td>11</td>\n<td>ReminderToSignKit</td>\n</tr>\n<tr>\n<td>12</td>\n<td>KitCreated</td>\n</tr>\n<tr>\n<td>13</td>\n<td>FlowExpired</td>\n</tr>\n<tr>\n<td>14</td>\n<td>FlowCCApproved</td>\n</tr>\n<tr>\n<td>15</td>\n<td>FlowCCDeclined</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"sendmethodtype\">SendMethodType:</h3>\n<h3 id=\"distribution-method-of-the-flow\">Distribution method of the flow</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>QueuedFlow</td>\n</tr>\n<tr>\n<td>1</td>\n<td>ParallelFlow</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exflowelement\">ExFlowElement:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SignerKey</td>\n<td><em><strong>ParticipantKey</strong></em></td>\n<td>The Id of the signer</td>\n</tr>\n<tr>\n<td>ElementId</td>\n<td>String</td>\n<td>The Id of the element (GUID)</td>\n</tr>\n<tr>\n<td>SignerIndex</td>\n<td>Nullable&lt;Int32&gt;</td>\n<td>The order of signer in the flow</td>\n</tr>\n<tr>\n<td>* ElementType</td>\n<td><em><strong>ElementType</strong></em></td>\n<td>Type of element</td>\n</tr>\n<tr>\n<td>ElementSubType</td>\n<td><em><strong>ElementSubType</strong></em></td>\n<td>Type of subject element</td>\n</tr>\n<tr>\n<td>* PageNumber</td>\n<td>Int32</td>\n<td>The page number of the element</td>\n</tr>\n<tr>\n<td>* Position</td>\n<td><em><strong>ElementPosition</strong></em></td>\n<td>Position of the element on the page</td>\n</tr>\n<tr>\n<td>TextValue</td>\n<td>String(200)</td>\n<td>The text of the element</td>\n</tr>\n<tr>\n<td>TextSize</td>\n<td>Int32</td>\n<td>The size of the text element</td>\n</tr>\n<tr>\n<td>TextFont</td>\n<td>String</td>\n<td>The font of the text element</td>\n</tr>\n<tr>\n<td>ElementLabel</td>\n<td>String</td>\n<td>The label of the element</td>\n</tr>\n<tr>\n<td>ElementHelp</td>\n<td>String</td>\n<td>Information about the element (helps to know more about the element)</td>\n</tr>\n<tr>\n<td>ValueName</td>\n<td>String</td>\n<td>The value name of element (only on radio-button/checkbox elemets)</td>\n</tr>\n<tr>\n<td>HorizontalAlignment</td>\n<td><em><strong>Nullable&lt;ExHorizontalAlignment&gt;</strong></em></td>\n<td>Alignment the text of the element: Right=0,Center=1,Left=2</td>\n</tr>\n<tr>\n<td>IsRequired</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Set required to element</td>\n</tr>\n<tr>\n<td>Validations</td>\n<td><em><strong>ExValidation[]</strong></em></td>\n<td>Set validation to element</td>\n</tr>\n<tr>\n<td>DateTimeValidation</td>\n<td><em><strong>ExDateTimeValidation</strong></em></td>\n<td>Set Date validation to element (only on Date element)</td>\n</tr>\n<tr>\n<td>DropDownList</td>\n<td><em><strong>ExDropDownField[]</strong></em></td>\n<td>Values of drop list element</td>\n</tr>\n<tr>\n<td>AdditionalInfo</td>\n<td>KeyValuePair&lt;String,String&gt;[]</td>\n<td>Add additional data to the element</td>\n</tr>\n<tr>\n<td>DuplicateElementInfo</td>\n<td><em><strong>DuplicateElementInfo</strong></em></td>\n<td>Set element as duplicate (make the element to parent)</td>\n</tr>\n<tr>\n<td>DisplayValueInFlowDecription</td>\n<td>Boolean</td>\n<td>Display/Not dispaly the value of element in the flow decription</td>\n</tr>\n<tr>\n<td>ZIndex</td>\n<td>Nullable&lt;Int32&gt;</td>\n<td>The order of the element on the page</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"duplicateelementinfo\">DuplicateElementInfo:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>IsAllPagesFromCurrent</td>\n<td>Boolean</td>\n<td>Duplicate element at all pages</td>\n</tr>\n<tr>\n<td>PageRange</td>\n<td>String</td>\n<td>Duplicate element on a specific page (for example : 1,5,8 - the element will duplicated on these pages)</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exdropdownfield\">ExDropDownField:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Values</td>\n<td><em><strong>ExDropDownItem[]</strong></em></td>\n<td>List of values</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exdropdownitem\">ExDropDownItem:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Key</td>\n<td>String</td>\n<td>Key of Item</td>\n</tr>\n<tr>\n<td>Value</td>\n<td>String</td>\n<td>Value of Item</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exdatetimevalidation\">ExDateTimeValidation:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DateTimeFormat</td>\n<td>String</td>\n<td>Format of the date</td>\n</tr>\n<tr>\n<td>DateFormatLanguage</td>\n<td>String</td>\n<td>language : 'en-US','he-IL'</td>\n</tr>\n<tr>\n<td>IsCurrentDateTime</td>\n<td>Boolean</td>\n<td>Set the date to the current signing date</td>\n</tr>\n<tr>\n<td>MinimumDate</td>\n<td>Nullable&lt;DateTime&gt;</td>\n<td>Minimum value of date</td>\n</tr>\n<tr>\n<td>MaximumDate</td>\n<td>Nullable&lt;DateTime&gt;</td>\n<td>Maximum value of date</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exvalidation\">ExValidation:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Regex</td>\n<td>String</td>\n<td>The Regex on the value</td>\n</tr>\n<tr>\n<td>ErrorCode</td>\n<td><em><strong>ElementValidationError</strong></em></td>\n<td>Errors of regex</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"elementvalidationerror\">ElementValidationError:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>4</td>\n<td>Email</td>\n</tr>\n<tr>\n<td>5</td>\n<td>IdNumber</td>\n</tr>\n<tr>\n<td>6</td>\n<td>PhoneNumber</td>\n</tr>\n<tr>\n<td>7</td>\n<td>LicensePlate</td>\n</tr>\n<tr>\n<td>8</td>\n<td>PostalCode</td>\n</tr>\n<tr>\n<td>10</td>\n<td>MandatoryElements</td>\n</tr>\n<tr>\n<td>11</td>\n<td>smallChar</td>\n</tr>\n<tr>\n<td>12</td>\n<td>BigChar</td>\n</tr>\n<tr>\n<td>13</td>\n<td>SmallDate</td>\n</tr>\n<tr>\n<td>14</td>\n<td>BigDate</td>\n</tr>\n<tr>\n<td>15</td>\n<td>CreditCard</td>\n</tr>\n<tr>\n<td>16</td>\n<td>CwCredit</td>\n</tr>\n<tr>\n<td>17</td>\n<td>SmallNumber</td>\n</tr>\n<tr>\n<td>18</td>\n<td>BigNumber</td>\n</tr>\n<tr>\n<td>19</td>\n<td>RequiredElements</td>\n</tr>\n<tr>\n<td>20</td>\n<td>FieldValueMustBeNumeric</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exhorizontalalignment\">ExHorizontalAlignment:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Right</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Center</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Left</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"elementposition\">ElementPosition:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* Top</td>\n<td>Single</td>\n<td>Position of the element related to top of the page (in points)</td>\n</tr>\n<tr>\n<td>* Left</td>\n<td>Single</td>\n<td>Position of the element related to left of the page (in points)</td>\n</tr>\n<tr>\n<td>* Width</td>\n<td>Single</td>\n<td>Width of the element (in points)</td>\n</tr>\n<tr>\n<td>* Height</td>\n<td>Single</td>\n<td>Height of the element (in points)</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"elementsubtype\">ElementSubType:</h3>\n<h3 id=\"sub-type-of-element\">Sub type of element</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Custom</td>\n</tr>\n<tr>\n<td>1</td>\n<td>FullName</td>\n</tr>\n<tr>\n<td>2</td>\n<td>FirstName</td>\n</tr>\n<tr>\n<td>3</td>\n<td>LastName</td>\n</tr>\n<tr>\n<td>4</td>\n<td>Email</td>\n</tr>\n<tr>\n<td>5</td>\n<td>IdentityNumber</td>\n</tr>\n<tr>\n<td>6</td>\n<td>PhoneNumber</td>\n</tr>\n<tr>\n<td>7</td>\n<td>License</td>\n</tr>\n<tr>\n<td>8</td>\n<td>PostalCode</td>\n</tr>\n<tr>\n<td>9</td>\n<td>EditorText</td>\n</tr>\n<tr>\n<td>10</td>\n<td>Initials</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"elementtype\">ElementType:</h3>\n<h3 id=\"types-of-elements\">Types of Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Sign</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Text</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Date</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Erase</td>\n</tr>\n<tr>\n<td>4</td>\n<td>Highlight</td>\n</tr>\n<tr>\n<td>5</td>\n<td>Blackout</td>\n</tr>\n<tr>\n<td>9</td>\n<td>EditorText</td>\n</tr>\n<tr>\n<td>10</td>\n<td>Checkbox</td>\n</tr>\n<tr>\n<td>11</td>\n<td>Numeric</td>\n</tr>\n<tr>\n<td>12</td>\n<td>Radio</td>\n</tr>\n<tr>\n<td>13</td>\n<td>Dropdown</td>\n</tr>\n<tr>\n<td>14</td>\n<td>Attachment</td>\n</tr>\n<tr>\n<td>17</td>\n<td>Image</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"participantkey\">ParticipantKey:</h3>\n<h3 id=\"allow-to-locate-doxi-user-byuseremail1userphone2\">Allow to locate Doxi user by:UserEmail=1UserPhone=2</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* Key</td>\n<td>String</td>\n<td>User search value</td>\n</tr>\n<tr>\n<td>Type</td>\n<td><em><strong>ParticipantKeyType</strong></em></td>\n<td>Search type:UserEmail=1,UserPhone=2</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"participantkeytype\">ParticipantKeyType:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>UserId</td>\n</tr>\n<tr>\n<td>1</td>\n<td>UserEmail</td>\n</tr>\n<tr>\n<td>2</td>\n<td>UserPhone</td>\n</tr>\n<tr>\n<td>3</td>\n<td>UserName</td>\n</tr>\n<tr>\n<td>4</td>\n<td>GroupId</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v5","flowbase64"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"28cd6b38-5199-40a3-8578-63cf3055fef9","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"Base64DocumentFile\": \"JVBERi0xLjcKJeLjz9MKNSAwIG9iago8PC9GaWx0ZXIvRmxhdGVEZWNvZGUvTGVuZ3RoIDY1Pj5zdHJlYW0KeJwr5HIK4dJ3M1QwMlAISeMyMrTQMzBRMLcw0LOwUAhJ4dJwya/IVAhwcVMITswtyEnVDMnicg3hCuQCAHV/DbsKZW5kc3RyZWFtCmVuZG9iago0IDAgb2JqCjw8L0NvbnRlbnRzIDUgMCBSL01lZGlhQm94WzAgMCA1OTUgODQyXS9QYXJlbnQgMiAwIFIvUmVzb3VyY2VzPDwvRm9udDw8L0YxIDYgMCBSPj4+Pi9UcmltQm94WzAgMCA1OTUgODQyXS9UeXBlL1BhZ2U+PgplbmRvYmoKMSAwIG9iago8PC9QYWdlcyAyIDAgUi9UeXBlL0NhdGFsb2c+PgplbmRvYmoKMyAwIG9iago8PC9DcmVhdGlvbkRhdGUoRDoyMDIyMDUwMjE1MzQ0OCswMycwMCcpL01vZERhdGUoRDoyMDIyMDUwMjE1MzQ0OCswMycwMCcpL1Byb2R1Y2VyKGlUZXh0riA3LjEuMTYgqTIwMDAtMjAyMSBpVGV4dCBHcm91cCBOViBcKEFHUEwtdmVyc2lvblwpKT4+CmVuZG9iago2IDAgb2JqCjw8L0Jhc2VGb250L0hlbHZldGljYS9FbmNvZGluZy9XaW5BbnNpRW5jb2RpbmcvU3VidHlwZS9UeXBlMS9UeXBlL0ZvbnQ+PgplbmRvYmoKMiAwIG9iago8PC9Db3VudCAxL0tpZHNbNCAwIFJdL1R5cGUvUGFnZXM+PgplbmRvYmoKeHJlZgowIDcKMDAwMDAwMDAwMCA2NTUzNSBmIAowMDAwMDAwMjc5IDAwMDAwIG4gCjAwMDAwMDA1NzAgMDAwMDAgbiAKMDAwMDAwMDMyNCAwMDAwMCBuIAowMDAwMDAwMTQ2IDAwMDAwIG4gCjAwMDAwMDAwMTUgMDAwMDAgbiAKMDAwMDAwMDQ4MiAwMDAwMCBuIAp0cmFpbGVyCjw8L0lEIFs8NjIxNzRhNGNkYWIwNWQ3MWY3MjE5MDMwN2RkODRiYTE+PDYyMTc0YTRjZGFiMDVkNzFmNzIxOTAzMDdkZDg0YmExPl0vSW5mbyAzIDAgUi9Sb290IDEgMCBSL1NpemUgNz4+CiVpVGV4dC03LjEuMTYgZm9yIC5ORVQKc3RhcnR4cmVmCjYyMQolJUVPRgo=\",\n  \"DocumentFileName\": \"API Example.pdf\",\n  \"SenderKey\": {\n    \"Key\": \"myEmail@domain.com\",\n    \"Type\": 1\n  },\n  \"Description\": \"API Example test\",\n  \"FlowElements\": [\n    {\n      \"SignerKey\": {\n        \"Key\": \"marty@doxi.com\",\n        \"Type\": 1\n      },\n      \"ElementType\": 0,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 291,\n        \"Left\": 401,\n        \"Width\": 114,\n        \"Height\": 38\n      },\n      \"IsEditorElement\": false,\n      \"TextSize\": 0,\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"SignerKey\": {\n        \"Key\": \"marty@doxi.com\",\n        \"Type\": 1\n      },\n      \"ElementType\": 10,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 433,\n        \"Left\": 513,\n        \"Width\": 14,\n        \"Height\": 14\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"0\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Checkbox\",\n      \"ElementHelp\": \"Checkbox-help\",\n      \"ValueName\": \"3\",\n      \"IsRequired\": false,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"isMarked\",\n          \"Value\": \"false\"\n        },\n        {\n          \"Key\": \"order\",\n          \"Value\": \"90\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"SignerKey\": {\n        \"Key\": \"marty@doxi.com\",\n        \"Type\": 1\n      },\n      \"ElementType\": 1,\n      \"ElementSubType\": 2,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 378,\n        \"Left\": 394,\n        \"Width\": 131,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextSize\": 0,\n      \"ElementLabel\": \"Text-First Name\",\n      \"ElementHelp\": \"Text-First Name help\",\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    }\n  ],\n  \"SendMethodType\": 0,\n  \"Recipients\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"david@doxi.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"david@doxi.com\",\n      \"FirstName\": \"David\",\n      \"LastName\": \"White\"\n    }\n  ],\n  \"IsSendApprovalMailToAllSigners\": false,\n  \"IsAutomaticRemainder\": false,\n  \"DayesForAutomaticRemainder\": 0,\n  \"CustomFields\": [\n    {\n      \"Key\": \"SomeInnerSystemIdNumber\",\n      \"Value\": \"12345\"\n    }\n  ],\n  \"Users\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"marty@doxi.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"marty@doxi.com\",\n      \"FirstName\": \"Marty\",\n      \"LastName\": \"Braun\",\n      \"SmsPhoneNumber\": \"0501234567\",\n      \"UserPassword\": \"0018\"\n    }\n  ],\n  \"DisableSBS\": false,\n  \"IsNoSend\": false,\n  \"IsNoNotificationMails\": false,\n  \"IsNoDecline\": false,\n  \"PreliminaryText\": \"Please fill this form\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v5/flowbase64"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"SignFlowId\": \"1909058d-f59b-42b2-9994-20fbfb154d63\",\n  \"SignersLink\": [\n    {\n      \"SignerKey\": \"marty@doxi.com\",\n      \"Link\": \"https://DoxiDMZServer/DoxiSign/sign/1909058d-f59b-42b2-9994-20fbfb154d63/0XyVpZxuN0dI2Bb0ORB4bg%253d%253d\"\n    }\n  ]\n}"}],"_postman_id":"145a5303-87d6-4ba6-ab8a-d05af886664e"},{"name":"/v6/flows/:signFlowId/attachments","id":"a6013a56-32a0-4cc6-8eed-94cadd74ffee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Accept","value":"application/zip"}],"url":"//v6/flows/:signFlowId/attachments","description":"<p>[V6] Get all flow attachments by flow ID as a ZIP archive</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","flows",":signFlowId","attachments"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>The unique identifier (GUID) of the flow</p>\n","type":"text/plain"},"type":"any","value":"string","key":"signFlowId"}]}},"response":[{"id":"38f0b09b-af90-45ef-b3b3-9515bf644555","name":"Attachments retrieved successfully as ZIP archive","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Accept","value":"application/zip"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/flows/:signFlowId/attachments","host":["/"],"path":["v6","flows",":signFlowId","attachments"],"variable":[{"key":"signFlowId","value":"string","description":"The unique identifier (GUID) of the flow"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/zip"}],"cookie":[],"responseTime":null,"body":"string"},{"id":"d3759ed5-f45a-4016-9a08-facce533e735","name":"No attachments found for this flow","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/flows/:signFlowId/attachments","host":["/"],"path":["v6","flows",":signFlowId","attachments"],"variable":[{"key":"signFlowId","value":"string","description":"The unique identifier (GUID) of the flow"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"f587756c-3bfa-4542-ad5f-30f3134dcd66","name":"Invalid flow ID format","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Accept","value":"application/zip"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/flows/:signFlowId/attachments","host":["/"],"path":["v6","flows",":signFlowId","attachments"],"variable":[{"key":"signFlowId","value":"string","description":"The unique identifier (GUID) of the flow"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/zip"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"944ba40c-3e4a-46c0-a68e-55c1ad49e0a4","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/flows/:signFlowId/attachments","host":["/"],"path":["v6","flows",":signFlowId","attachments"],"variable":[{"key":"signFlowId","value":"string","description":"The unique identifier (GUID) of the flow"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"c60107ba-eaef-48c1-9ffc-0b1e407c1469","name":"Flow not found","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/flows/:signFlowId/attachments","host":["/"],"path":["v6","flows",":signFlowId","attachments"],"variable":[{"key":"signFlowId","value":"string","description":"The unique identifier (GUID) of the flow"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"affa8fc7-0360-475f-afa3-3ff64280d99e","name":"Internal server error","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/flows/:signFlowId/attachments","host":["/"],"path":["v6","flows",":signFlowId","attachments"],"variable":[{"key":"signFlowId","value":"string","description":"The unique identifier (GUID) of the flow"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"a6013a56-32a0-4cc6-8eed-94cadd74ffee"},{"name":"/v6/flows/:signFlowId/attachments","id":"543573a3-3c13-4776-8921-75088f54c64f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"description":"<p>The file to attach to the flow. Supported file types: PDF, DOCX, DOC, XLSX, XLS, JPG, JPEG, PNG, and other common document formats</p>\n","key":"file","type":"file","value":null},{"description":"<p>Request containing attachment metadata including the user who added the file (UserAddedTheFile participant key)</p>\n","key":"addAttachmentToFlowRequest","value":"{\n  \"SignFlowId\": null,\n  \"UserMail\": null,\n  \"UserAddedTheFile\": {\n    \"Key\": \"user@example.com\",\n    \"Type\": 1\n  },\n  \"IsSignerAttachment\": false\n}","type":"text"}]},"url":"//v6/flows/:signFlowId/attachments","description":"<p>[V6] Upload file attachment to existing flow</p>\n<hr />\n<h2 id=\"signflowid\">signFlowId:</h2>\n<h3 id=\"the-unique-identifier-guid-of-the-flow\">The unique identifier (GUID) of the flow</h3>\n<hr />\n<h2 id=\"file\">file:</h2>\n<h3 id=\"the-file-to-attach-to-the-flow-supported-file-types-pdf-docx-doc-xlsx-xls-jpg-jpeg-png-and-other-common-document-formats\">The file to attach to the flow. Supported file types: PDF, DOCX, DOC, XLSX, XLS, JPG, JPEG, PNG, and other common document formats</h3>\n<hr />\n<h2 id=\"addattachmenttoflowrequest\">addAttachmentToFlowRequest:</h2>\n<h3 id=\"request-containing-attachment-metadata-including-the-user-who-added-the-file-useraddedthefile-participant-key\">Request containing attachment metadata including the user who added the file (UserAddedTheFile participant key)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>UserAddedTheFile</td>\n<td><em><strong>ParticipantKey</strong></em></td>\n<td>User that add the file to the flow</td>\n</tr>\n<tr>\n<td>IsSignerAttachment</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>An indication of whether the attachment was added to the flow in creation mode,or assigned to a specific signer.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"participantkey\">ParticipantKey:</h3>\n<h3 id=\"allow-to-locate-doxi-user-byuseremail1userphone2\">Allow to locate Doxi user by:UserEmail=1UserPhone=2</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* Key</td>\n<td>String</td>\n<td>User search value</td>\n</tr>\n<tr>\n<td>Type</td>\n<td><em><strong>ParticipantKeyType</strong></em></td>\n<td>Search type:UserEmail=1,UserPhone=2</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"participantkeytype\">ParticipantKeyType:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>UserId</td>\n</tr>\n<tr>\n<td>1</td>\n<td>UserEmail</td>\n</tr>\n<tr>\n<td>2</td>\n<td>UserPhone</td>\n</tr>\n<tr>\n<td>3</td>\n<td>UserName</td>\n</tr>\n<tr>\n<td>4</td>\n<td>GroupId</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","flows",":signFlowId","attachments"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>The unique identifier (GUID) of the flow</p>\n","type":"text/plain"},"type":"any","value":"string","key":"signFlowId"}]}},"response":[{"id":"01308648-bded-4b08-963b-5ea38ff9fdfd","name":"File attached successfully","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"description":"The file to attach to the flow. Supported file types: PDF, DOCX, DOC, XLSX, XLS, JPG, JPEG, PNG, and other common document formats","key":"file","type":"file","src":[]},{"description":"Request containing attachment metadata including the user who added the file (UserAddedTheFile participant key)","key":"addAttachmentToFlowRequest","value":"{\n  \"SignFlowId\": null,\n  \"UserMail\": null,\n  \"UserAddedTheFile\": {\n    \"Key\": \"user@example.com\",\n    \"Type\": 1\n  },\n  \"IsSignerAttachment\": false\n}","type":"text"}]},"url":{"raw":"//v6/flows/:signFlowId/attachments","host":["/"],"path":["v6","flows",":signFlowId","attachments"],"variable":[{"key":"signFlowId","value":"string","description":"The unique identifier (GUID) of the flow"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"string"},{"id":"4177392e-22e9-4970-b6e9-3ea556c1192e","name":"Invalid flow ID format, invalid file, or invalid request data","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"description":"The file to attach to the flow. Supported file types: PDF, DOCX, DOC, XLSX, XLS, JPG, JPEG, PNG, and other common document formats","key":"file","type":"file","src":[]},{"description":"Request containing attachment metadata including the user who added the file (UserAddedTheFile participant key)","key":"addAttachmentToFlowRequest","value":"{\n  \"SignFlowId\": null,\n  \"UserMail\": null,\n  \"UserAddedTheFile\": {\n    \"Key\": \"user@example.com\",\n    \"Type\": 1\n  },\n  \"IsSignerAttachment\": false\n}","type":"text"}]},"url":{"raw":"//v6/flows/:signFlowId/attachments","host":["/"],"path":["v6","flows",":signFlowId","attachments"],"variable":[{"key":"signFlowId","value":"string","description":"The unique identifier (GUID) of the flow"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"bec516f2-c585-41ce-b330-1e54de03d23e","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"multipart/form-data"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"description":"The file to attach to the flow. Supported file types: PDF, DOCX, DOC, XLSX, XLS, JPG, JPEG, PNG, and other common document formats","key":"file","type":"file","src":[]},{"description":"Request containing attachment metadata including the user who added the file (UserAddedTheFile participant key)","key":"addAttachmentToFlowRequest","value":"{\n  \"SignFlowId\": null,\n  \"UserMail\": null,\n  \"UserAddedTheFile\": {\n    \"Key\": \"user@example.com\",\n    \"Type\": 1\n  },\n  \"IsSignerAttachment\": false\n}","type":"text"}]},"url":{"raw":"//v6/flows/:signFlowId/attachments","host":["/"],"path":["v6","flows",":signFlowId","attachments"],"variable":[{"key":"signFlowId","value":"string","description":"The unique identifier (GUID) of the flow"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"dcefc036-b034-447b-be92-4bf5749be9f0","name":"Flow not found","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"multipart/form-data"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"description":"The file to attach to the flow. Supported file types: PDF, DOCX, DOC, XLSX, XLS, JPG, JPEG, PNG, and other common document formats","key":"file","type":"file","src":[]},{"description":"Request containing attachment metadata including the user who added the file (UserAddedTheFile participant key)","key":"addAttachmentToFlowRequest","value":"{\n  \"SignFlowId\": null,\n  \"UserMail\": null,\n  \"UserAddedTheFile\": {\n    \"Key\": \"user@example.com\",\n    \"Type\": 1\n  },\n  \"IsSignerAttachment\": false\n}","type":"text"}]},"url":{"raw":"//v6/flows/:signFlowId/attachments","host":["/"],"path":["v6","flows",":signFlowId","attachments"],"variable":[{"key":"signFlowId","value":"string","description":"The unique identifier (GUID) of the flow"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"d8f40363-5379-44f0-8b1e-01a32621c8c6","name":"Internal server error","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"multipart/form-data"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"description":"The file to attach to the flow. Supported file types: PDF, DOCX, DOC, XLSX, XLS, JPG, JPEG, PNG, and other common document formats","key":"file","type":"file","src":[]},{"description":"Request containing attachment metadata including the user who added the file (UserAddedTheFile participant key)","key":"addAttachmentToFlowRequest","value":"{\n  \"SignFlowId\": null,\n  \"UserMail\": null,\n  \"UserAddedTheFile\": {\n    \"Key\": \"user@example.com\",\n    \"Type\": 1\n  },\n  \"IsSignerAttachment\": false\n}","type":"text"}]},"url":{"raw":"//v6/flows/:signFlowId/attachments","host":["/"],"path":["v6","flows",":signFlowId","attachments"],"variable":[{"key":"signFlowId","value":"string","description":"The unique identifier (GUID) of the flow"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"543573a3-3c13-4776-8921-75088f54c64f"},{"name":"/v6/flows/:signFlowId/attachments/base64","id":"7d0eb009-2df8-4b69-b9f8-7c1c88058394","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"File\": {\n    \"FileName\": \"attachment.pdf\",\n    \"File\": \"JVBERi0xLjQKJeLjz9MKMSAwIG9iago8PC9QYWdlcyAyIDAgUgovVHlwZS9DYXRhbG9nPj4KZW5kb2JqCjIgMCBvYmoKPDwvUGFnZXMgMyAwIFIKL1R5cGUvUGFnZVNldAovQ291bnQgMQo+PgplbmRvYmoKMyAwIG9iago8PC9SZXNvdXJjZXMgNCAwIFIKL0NvbnRlbnRzIDUgMCBSCi9UeXBlL1BhZ2UKL01lZGlhQm94IFswIDAgNjEyIDc5Ml0KPj4KZW5kb2JqCjQgMCBvYmoKPDwvUHJvY1NldCBbL1BERiAvVGV4dF0KPj4KZW5kb2JqCjUgMCBvYmoKPDwvTGVuZ3RoIDQKPj4Kc3RyZWFtCkJUCi9GMSAxMiBUZgooVGhpcyBpcyBhIHRlc3QgcGRmKSBFVAplbmRzdHJlYW0KZW5kb2JqCjYgMCBvYmoKPDwvUHJvZHVjZXIgKFBERiBTYW1wbGUpCj4+CmVuZG9iagp4cmVmCjAgNwowMDAwMDAwMDAwIDY1NTM1IGYgCjAwMDAwMDAwMDkgMDAwMDAgbiAKMDAwMDAwMDA1OCAwMDAwMCBuIAowMDAwMDAwMTA3IDAwMDAwIG4gCjAwMDAwMDAxNTggMDAwMDAgbiAKMDAwMDAwMDI1NCAwMDAwMCBuIAowMDAwMDAwMjk2IDAwMDAwIG4gCnRyYWlsZXIKPDwKL1NpemUgNwovUm9vdCAxIDAgUgo+PgpzdGFydHhyZWYKMzU5CiUlRU9GCg==\"\n  },\n  \"UserAddedTheFile\": {\n    \"Key\": \"user@example.com\",\n    \"Type\": 1\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/flows/:signFlowId/attachments/base64","description":"<p>[V6] Upload file attachment as base64 encoded string to existing flow</p>\n<hr />\n<h2 id=\"signflowid\">signFlowId:</h2>\n<h3 id=\"the-unique-identifier-guid-of-the-flow\">The unique identifier (GUID) of the flow</h3>\n<hr />\n<h2 id=\"addattachmenttoflowrequest\">addAttachmentToFlowRequest:</h2>\n<h3 id=\"request-containing-base64-encoded-file-file-property-with-base64file-object-attachment-metadata-and-user-information-useraddedthefile-participant-key\">Request containing base64 encoded file (File property with Base64File object), attachment metadata, and user information (UserAddedTheFile participant key)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* File</td>\n<td><em><strong>Base64File</strong></em></td>\n<td>Base64 attachment file data</td>\n</tr>\n<tr>\n<td>* UserAddedTheFile</td>\n<td><em><strong>ParticipantKey</strong></em></td>\n<td>The user that add the attachment</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"participantkey\">ParticipantKey:</h3>\n<h3 id=\"allow-to-locate-doxi-user-byuseremail1userphone2\">Allow to locate Doxi user by:UserEmail=1UserPhone=2</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* Key</td>\n<td>String</td>\n<td>User search value</td>\n</tr>\n<tr>\n<td>Type</td>\n<td><em><strong>ParticipantKeyType</strong></em></td>\n<td>Search type:UserEmail=1,UserPhone=2</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"participantkeytype\">ParticipantKeyType:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>UserId</td>\n</tr>\n<tr>\n<td>1</td>\n<td>UserEmail</td>\n</tr>\n<tr>\n<td>2</td>\n<td>UserPhone</td>\n</tr>\n<tr>\n<td>3</td>\n<td>UserName</td>\n</tr>\n<tr>\n<td>4</td>\n<td>GroupId</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"base64file\">Base64File:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>FileName</td>\n<td>String</td>\n<td>File name with extention</td>\n</tr>\n<tr>\n<td>File</td>\n<td>String</td>\n<td>Base64 file data</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","flows",":signFlowId","attachments","base64"],"host":["/"],"query":[],"variable":[{"type":"any","value":"string","key":"signFlowId"}]}},"response":[{"id":"feaa6667-af51-401b-9c7c-5c8b146733e2","name":"File attached successfully","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"File\": {\n    \"FileName\": \"attachment.pdf\",\n    \"File\": \"JVBERi0xLjQKJeLjz9MKMSAwIG9iago8PC9QYWdlcyAyIDAgUgovVHlwZS9DYXRhbG9nPj4KZW5kb2JqCjIgMCBvYmoKPDwvUGFnZXMgMyAwIFIKL1R5cGUvUGFnZVNldAovQ291bnQgMQo+PgplbmRvYmoKMyAwIG9iago8PC9SZXNvdXJjZXMgNCAwIFIKL0NvbnRlbnRzIDUgMCBSCi9UeXBlL1BhZ2UKL01lZGlhQm94IFswIDAgNjEyIDc5Ml0KPj4KZW5kb2JqCjQgMCBvYmoKPDwvUHJvY1NldCBbL1BERiAvVGV4dF0KPj4KZW5kb2JqCjUgMCBvYmoKPDwvTGVuZ3RoIDQKPj4Kc3RyZWFtCkJUCi9GMSAxMiBUZgooVGhpcyBpcyBhIHRlc3QgcGRmKSBFVAplbmRzdHJlYW0KZW5kb2JqCjYgMCBvYmoKPDwvUHJvZHVjZXIgKFBERiBTYW1wbGUpCj4+CmVuZG9iagp4cmVmCjAgNwowMDAwMDAwMDAwIDY1NTM1IGYgCjAwMDAwMDAwMDkgMDAwMDAgbiAKMDAwMDAwMDA1OCAwMDAwMCBuIAowMDAwMDAwMTA3IDAwMDAwIG4gCjAwMDAwMDAxNTggMDAwMDAgbiAKMDAwMDAwMDI1NCAwMDAwMCBuIAowMDAwMDAwMjk2IDAwMDAwIG4gCnRyYWlsZXIKPDwKL1NpemUgNwovUm9vdCAxIDAgUgo+PgpzdGFydHhyZWYKMzU5CiUlRU9GCg==\"\n  },\n  \"UserAddedTheFile\": {\n    \"Key\": \"user@example.com\",\n    \"Type\": 1\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/flows/:signFlowId/attachments/base64","host":["/"],"path":["v6","flows",":signFlowId","attachments","base64"],"variable":[{"key":"signFlowId","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"AttachmentId\": \"a1b2c3d4-e5f6-7890-abcd-ef1234567890\"\n}"},{"id":"1ae2f990-7b47-4a6d-9fce-16b43d079fe8","name":"Invalid flow ID format, invalid base64 file data, or invalid request data","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"File\": {\n    \"FileName\": \"attachment.pdf\",\n    \"File\": \"JVBERi0xLjQKJeLjz9MKMSAwIG9iago8PC9QYWdlcyAyIDAgUgovVHlwZS9DYXRhbG9nPj4KZW5kb2JqCjIgMCBvYmoKPDwvUGFnZXMgMyAwIFIKL1R5cGUvUGFnZVNldAovQ291bnQgMQo+PgplbmRvYmoKMyAwIG9iago8PC9SZXNvdXJjZXMgNCAwIFIKL0NvbnRlbnRzIDUgMCBSCi9UeXBlL1BhZ2UKL01lZGlhQm94IFswIDAgNjEyIDc5Ml0KPj4KZW5kb2JqCjQgMCBvYmoKPDwvUHJvY1NldCBbL1BERiAvVGV4dF0KPj4KZW5kb2JqCjUgMCBvYmoKPDwvTGVuZ3RoIDQKPj4Kc3RyZWFtCkJUCi9GMSAxMiBUZgooVGhpcyBpcyBhIHRlc3QgcGRmKSBFVAplbmRzdHJlYW0KZW5kb2JqCjYgMCBvYmoKPDwvUHJvZHVjZXIgKFBERiBTYW1wbGUpCj4+CmVuZG9iagp4cmVmCjAgNwowMDAwMDAwMDAwIDY1NTM1IGYgCjAwMDAwMDAwMDkgMDAwMDAgbiAKMDAwMDAwMDA1OCAwMDAwMCBuIAowMDAwMDAwMTA3IDAwMDAwIG4gCjAwMDAwMDAxNTggMDAwMDAgbiAKMDAwMDAwMDI1NCAwMDAwMCBuIAowMDAwMDAwMjk2IDAwMDAwIG4gCnRyYWlsZXIKPDwKL1NpemUgNwovUm9vdCAxIDAgUgo+PgpzdGFydHhyZWYKMzU5CiUlRU9GCg==\"\n  },\n  \"UserAddedTheFile\": {\n    \"Key\": \"user@example.com\",\n    \"Type\": 1\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/flows/:signFlowId/attachments/base64","host":["/"],"path":["v6","flows",":signFlowId","attachments","base64"],"variable":[{"key":"signFlowId","value":"string"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"da6af2d0-5b6e-4de1-b6b6-20b391caeb33","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"File\": {\n    \"FileName\": \"attachment.pdf\",\n    \"File\": \"JVBERi0xLjQKJeLjz9MKMSAwIG9iago8PC9QYWdlcyAyIDAgUgovVHlwZS9DYXRhbG9nPj4KZW5kb2JqCjIgMCBvYmoKPDwvUGFnZXMgMyAwIFIKL1R5cGUvUGFnZVNldAovQ291bnQgMQo+PgplbmRvYmoKMyAwIG9iago8PC9SZXNvdXJjZXMgNCAwIFIKL0NvbnRlbnRzIDUgMCBSCi9UeXBlL1BhZ2UKL01lZGlhQm94IFswIDAgNjEyIDc5Ml0KPj4KZW5kb2JqCjQgMCBvYmoKPDwvUHJvY1NldCBbL1BERiAvVGV4dF0KPj4KZW5kb2JqCjUgMCBvYmoKPDwvTGVuZ3RoIDQKPj4Kc3RyZWFtCkJUCi9GMSAxMiBUZgooVGhpcyBpcyBhIHRlc3QgcGRmKSBFVAplbmRzdHJlYW0KZW5kb2JqCjYgMCBvYmoKPDwvUHJvZHVjZXIgKFBERiBTYW1wbGUpCj4+CmVuZG9iagp4cmVmCjAgNwowMDAwMDAwMDAwIDY1NTM1IGYgCjAwMDAwMDAwMDkgMDAwMDAgbiAKMDAwMDAwMDA1OCAwMDAwMCBuIAowMDAwMDAwMTA3IDAwMDAwIG4gCjAwMDAwMDAxNTggMDAwMDAgbiAKMDAwMDAwMDI1NCAwMDAwMCBuIAowMDAwMDAwMjk2IDAwMDAwIG4gCnRyYWlsZXIKPDwKL1NpemUgNwovUm9vdCAxIDAgUgo+PgpzdGFydHhyZWYKMzU5CiUlRU9GCg==\"\n  },\n  \"UserAddedTheFile\": {\n    \"Key\": \"user@example.com\",\n    \"Type\": 1\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/flows/:signFlowId/attachments/base64","host":["/"],"path":["v6","flows",":signFlowId","attachments","base64"],"variable":[{"key":"signFlowId","value":"string"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"ed785e98-e613-497b-b5fb-0672be1ee616","name":"Flow not found","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"File\": {\n    \"FileName\": \"attachment.pdf\",\n    \"File\": \"JVBERi0xLjQKJeLjz9MKMSAwIG9iago8PC9QYWdlcyAyIDAgUgovVHlwZS9DYXRhbG9nPj4KZW5kb2JqCjIgMCBvYmoKPDwvUGFnZXMgMyAwIFIKL1R5cGUvUGFnZVNldAovQ291bnQgMQo+PgplbmRvYmoKMyAwIG9iago8PC9SZXNvdXJjZXMgNCAwIFIKL0NvbnRlbnRzIDUgMCBSCi9UeXBlL1BhZ2UKL01lZGlhQm94IFswIDAgNjEyIDc5Ml0KPj4KZW5kb2JqCjQgMCBvYmoKPDwvUHJvY1NldCBbL1BERiAvVGV4dF0KPj4KZW5kb2JqCjUgMCBvYmoKPDwvTGVuZ3RoIDQKPj4Kc3RyZWFtCkJUCi9GMSAxMiBUZgooVGhpcyBpcyBhIHRlc3QgcGRmKSBFVAplbmRzdHJlYW0KZW5kb2JqCjYgMCBvYmoKPDwvUHJvZHVjZXIgKFBERiBTYW1wbGUpCj4+CmVuZG9iagp4cmVmCjAgNwowMDAwMDAwMDAwIDY1NTM1IGYgCjAwMDAwMDAwMDkgMDAwMDAgbiAKMDAwMDAwMDA1OCAwMDAwMCBuIAowMDAwMDAwMTA3IDAwMDAwIG4gCjAwMDAwMDAxNTggMDAwMDAgbiAKMDAwMDAwMDI1NCAwMDAwMCBuIAowMDAwMDAwMjk2IDAwMDAwIG4gCnRyYWlsZXIKPDwKL1NpemUgNwovUm9vdCAxIDAgUgo+PgpzdGFydHhyZWYKMzU5CiUlRU9GCg==\"\n  },\n  \"UserAddedTheFile\": {\n    \"Key\": \"user@example.com\",\n    \"Type\": 1\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/flows/:signFlowId/attachments/base64","host":["/"],"path":["v6","flows",":signFlowId","attachments","base64"],"variable":[{"key":"signFlowId","value":"string"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"c323455b-1c9c-4dcf-94b4-6ad9a65e8a70","name":"Internal server error","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"File\": {\n    \"FileName\": \"attachment.pdf\",\n    \"File\": \"JVBERi0xLjQKJeLjz9MKMSAwIG9iago8PC9QYWdlcyAyIDAgUgovVHlwZS9DYXRhbG9nPj4KZW5kb2JqCjIgMCBvYmoKPDwvUGFnZXMgMyAwIFIKL1R5cGUvUGFnZVNldAovQ291bnQgMQo+PgplbmRvYmoKMyAwIG9iago8PC9SZXNvdXJjZXMgNCAwIFIKL0NvbnRlbnRzIDUgMCBSCi9UeXBlL1BhZ2UKL01lZGlhQm94IFswIDAgNjEyIDc5Ml0KPj4KZW5kb2JqCjQgMCBvYmoKPDwvUHJvY1NldCBbL1BERiAvVGV4dF0KPj4KZW5kb2JqCjUgMCBvYmoKPDwvTGVuZ3RoIDQKPj4Kc3RyZWFtCkJUCi9GMSAxMiBUZgooVGhpcyBpcyBhIHRlc3QgcGRmKSBFVAplbmRzdHJlYW0KZW5kb2JqCjYgMCBvYmoKPDwvUHJvZHVjZXIgKFBERiBTYW1wbGUpCj4+CmVuZG9iagp4cmVmCjAgNwowMDAwMDAwMDAwIDY1NTM1IGYgCjAwMDAwMDAwMDkgMDAwMDAgbiAKMDAwMDAwMDA1OCAwMDAwMCBuIAowMDAwMDAwMTA3IDAwMDAwIG4gCjAwMDAwMDAxNTggMDAwMDAgbiAKMDAwMDAwMDI1NCAwMDAwMCBuIAowMDAwMDAwMjk2IDAwMDAwIG4gCnRyYWlsZXIKPDwKL1NpemUgNwovUm9vdCAxIDAgUgo+PgpzdGFydHhyZWYKMzU5CiUlRU9GCg==\"\n  },\n  \"UserAddedTheFile\": {\n    \"Key\": \"user@example.com\",\n    \"Type\": 1\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/flows/:signFlowId/attachments/base64","host":["/"],"path":["v6","flows",":signFlowId","attachments","base64"],"variable":[{"key":"signFlowId","value":"string"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"7d0eb009-2df8-4b69-b9f8-7c1c88058394"},{"name":"/v6/flows/:signFlowId/attachment-field","id":"8a378f9d-a68b-415d-9593-34ba63b0e24c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/pdf"}],"body":{"mode":"raw","raw":"{\n  \"SignerKey\": {\n    \"Key\": \"signer@example.com\",\n    \"Type\": 1\n  },\n  \"ElementLabel\": \"AttachmentField1\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/flows/:signFlowId/attachment-field","description":"<p>[V6] Get flow attachment field by flow ID, signer key, and element label</p>\n<hr />\n<h2 id=\"signflowid\">signFlowId:</h2>\n<h3 id=\"the-unique-identifier-guid-of-the-flow\">The unique identifier (GUID) of the flow</h3>\n<hr />\n<h2 id=\"getflowattachmentfieldrequest\">getFlowAttachmentFieldRequest:</h2>\n<h3 id=\"request-containing-signer-key-participant-key-with-type-and-value-and-element-label-the-labelname-of-the-attachment-field-element-to-retrieve-the-specific-attachment\">Request containing signer key (participant key with type and value) and element label (the label/name of the attachment field element) to retrieve the specific attachment</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SignFlowId</td>\n<td>String</td>\n<td>Doxi flow ID</td>\n</tr>\n<tr>\n<td>SignerKey</td>\n<td><em><strong>ParticipantKey</strong></em></td>\n<td>The Signer user that add the attachment</td>\n</tr>\n<tr>\n<td>ElementLabel</td>\n<td>String</td>\n<td>The attachment element lable description</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"participantkey\">ParticipantKey:</h3>\n<h3 id=\"allow-to-locate-doxi-user-byuseremail1userphone2\">Allow to locate Doxi user by:UserEmail=1UserPhone=2</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* Key</td>\n<td>String</td>\n<td>User search value</td>\n</tr>\n<tr>\n<td>Type</td>\n<td><em><strong>ParticipantKeyType</strong></em></td>\n<td>Search type:UserEmail=1,UserPhone=2</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"participantkeytype\">ParticipantKeyType:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>UserId</td>\n</tr>\n<tr>\n<td>1</td>\n<td>UserEmail</td>\n</tr>\n<tr>\n<td>2</td>\n<td>UserPhone</td>\n</tr>\n<tr>\n<td>3</td>\n<td>UserName</td>\n</tr>\n<tr>\n<td>4</td>\n<td>GroupId</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","flows",":signFlowId","attachment-field"],"host":["/"],"query":[],"variable":[{"type":"any","value":"string","key":"signFlowId"}]}},"response":[{"id":"5a3a2a92-1bd4-4d02-ad53-64baf74712bf","name":"Attachment field retrieved successfully","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/pdf"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"SignerKey\": {\n    \"Key\": \"signer@example.com\",\n    \"Type\": 1\n  },\n  \"ElementLabel\": \"AttachmentField1\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/flows/:signFlowId/attachment-field","host":["/"],"path":["v6","flows",":signFlowId","attachment-field"],"variable":[{"key":"signFlowId","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/pdf"}],"cookie":[],"responseTime":null,"body":"string"},{"id":"4fd6a1bc-3afc-47bb-8cfb-025376b45f71","name":"No attachment found for the specified field","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"SignerKey\": {\n    \"Key\": \"signer@example.com\",\n    \"Type\": 1\n  },\n  \"ElementLabel\": \"AttachmentField1\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/flows/:signFlowId/attachment-field","host":["/"],"path":["v6","flows",":signFlowId","attachment-field"],"variable":[{"key":"signFlowId","value":"string"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"1e9cdc10-2af1-4dac-8804-4bdfe4061b58","name":"Invalid flow ID format, invalid signer key, or invalid element label","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/pdf"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"SignerKey\": {\n    \"Key\": \"signer@example.com\",\n    \"Type\": 1\n  },\n  \"ElementLabel\": \"AttachmentField1\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/flows/:signFlowId/attachment-field","host":["/"],"path":["v6","flows",":signFlowId","attachment-field"],"variable":[{"key":"signFlowId","value":"string"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/pdf"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"8aee0af6-85dd-4437-831b-003d8f9db02a","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"SignerKey\": {\n    \"Key\": \"signer@example.com\",\n    \"Type\": 1\n  },\n  \"ElementLabel\": \"AttachmentField1\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/flows/:signFlowId/attachment-field","host":["/"],"path":["v6","flows",":signFlowId","attachment-field"],"variable":[{"key":"signFlowId","value":"string"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"6796e009-5e2e-4822-ba77-977d8e84c104","name":"Flow not found, signer not found in flow, or element label not found","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"SignerKey\": {\n    \"Key\": \"signer@example.com\",\n    \"Type\": 1\n  },\n  \"ElementLabel\": \"AttachmentField1\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/flows/:signFlowId/attachment-field","host":["/"],"path":["v6","flows",":signFlowId","attachment-field"],"variable":[{"key":"signFlowId","value":"string"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"d0a1bd9e-2cd6-4186-94f6-ce77dbe0d12e","name":"Internal server error","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"SignerKey\": {\n    \"Key\": \"signer@example.com\",\n    \"Type\": 1\n  },\n  \"ElementLabel\": \"AttachmentField1\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/flows/:signFlowId/attachment-field","host":["/"],"path":["v6","flows",":signFlowId","attachment-field"],"variable":[{"key":"signFlowId","value":"string"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"8a378f9d-a68b-415d-9593-34ba63b0e24c"},{"name":"/v6/flows","id":"1c9f2664-fdd3-42e5-9b77-5f59a0216fb0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Accept","value":"application/json"}],"url":"//v6/flows","description":"<p>[V6] Get all flow IDs available to the authenticated user</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","flows"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"532944db-26e6-4beb-b728-2ad58c91ad6d","name":"Successfully retrieved list of flow IDs","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"//v6/flows"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"SignFlowsIds\": [\n    \"8026e7dc-7d97-4c56-86a4-f3cc214b17f6\",\n    \"47cc68a6-4a2b-417b-9f64-60f85258ac3d\",\n    \"540116d7-5c56-49fa-a0e7-f96ee343cc24\",\n    \"66370660-7c44-4e07-92e1-4dad9cf14bbe\",\n    \"f9457213-d62c-4387-9696-7652101fb579\",\n    \"df72b155-4e92-4ffa-a10a-62635e131534\",\n    \"578dfaed-8338-4419-a1e2-24c56b9ce0f4\",\n    \"87f99690-76fb-428d-84c7-83f62f3e9573\",\n    \"43f01d69-55a7-4b3d-a581-58ecc8087648\",\n    \"3b233a17-1e6c-4c04-8744-1cca45a5b1e9\",\n    \"2ffa889a-c257-4128-a1d5-51b7ec77644c\",\n    \"a3512d3e-c680-41c3-b282-fbbae12f0902\",\n    \"51ebf8d4-1347-405c-9469-1933fab6d9b2\",\n    \"241e47f0-b2dd-491a-9ab4-7b7d07b233d4\",\n    \"074478c7-c69c-45a5-950d-64c5405a2bae\",\n    \"9f0988b3-7252-4802-aa47-080753bf0543\",\n    \"7cf021f8-1f82-4934-93cf-02cb24fbe903\",\n    \"22eb9f9c-bd5f-4056-a974-74ec983c6808\",\n    \"859e7c56-a70e-4e6b-a1ba-5c2b0fd61da9\",\n    \"1909058d-f59b-42b2-9994-20fbfb154d63\"\n  ]\n}"},{"id":"82b39449-0a8f-4e0c-ba36-804256c0d4ab","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"//v6/flows"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"fa239356-cc30-4f05-90e7-516123d0a0b7","name":"Internal server error","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"//v6/flows"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"1c9f2664-fdd3-42e5-9b77-5f59a0216fb0"},{"name":"/v6/flows","id":"bc13069b-68b1-4290-a35e-24224951ad0c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"description":"<p>The document file to upload (PDF, DOCX, DOC, JPG, JPEG, PNG). The file extension must match the DocumentFileName in the request.</p>\n","key":"file","type":"file","value":null},{"description":"<p>Flow creation request containing flow configuration including signers, signature elements, form fields, and document metadata\" </p>\n","key":"createFlowJsonRequest","value":"{\n  \"DocumentFileName\": \"API Example.pdf\",\n  \"SenderKey\": {\n    \"Key\": \"doxiapiuser@mydomain.com\",\n    \"Type\": 1\n  },\n  \"SenderUserName\": null,\n  \"Description\": \"API Example\",\n  \"FlowElements\": [\n    {\n      \"SignerKey\": {\n        \"Key\": \"marty@doxi.com\",\n        \"Type\": 1\n      },\n      \"UserEmail\": null,\n      \"ElementId\": null,\n      \"SignerIndex\": null,\n      \"ElementType\": 0,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 291.0,\n        \"Left\": 401.0,\n        \"Width\": 114.0,\n        \"Height\": 38.0\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": null,\n      \"TextSize\": 0,\n      \"TextFont\": null,\n      \"ElementLabel\": null,\n      \"ElementHelp\": null,\n      \"ValueName\": null,\n      \"HorizontalAlignment\": null,\n      \"IsRequired\": true,\n      \"Validations\": null,\n      \"DateTimeValidation\": null,\n      \"DropDownList\": null,\n      \"AdditionalInfo\": null,\n      \"DuplicateElementInfo\": {\n        \"IsAllPagesFromCurrent\": true,\n        \"PageRange\": null\n      },\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false,\n      \"ZIndex\": null\n    },\n    {\n      \"SignerKey\": {\n        \"Key\": \"marty@doxi.com\",\n        \"Type\": 1\n      },\n      \"UserEmail\": null,\n      \"ElementId\": null,\n      \"SignerIndex\": null,\n      \"ElementType\": 10,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 433.0,\n        \"Left\": 513.0,\n        \"Width\": 14.0,\n        \"Height\": 14.0\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"0\",\n      \"TextSize\": 14,\n      \"TextFont\": null,\n      \"ElementLabel\": \"Checkbox\",\n      \"ElementHelp\": \"Checkbox-help\",\n      \"ValueName\": \"3\",\n      \"HorizontalAlignment\": null,\n      \"IsRequired\": null,\n      \"Validations\": null,\n      \"DateTimeValidation\": null,\n      \"DropDownList\": null,\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"isMarked\",\n          \"Value\": \"false\"\n        },\n        {\n          \"Key\": \"order\",\n          \"Value\": \"90\"\n        }\n      ],\n      \"DuplicateElementInfo\": null,\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false,\n      \"ZIndex\": null\n    }\n  ],\n  \"SendMethodType\": 0,\n  \"Recipients\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"david@doxi.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"david@doxi.com\",\n      \"FirstName\": \"David\",\n      \"LastName\": \"White\",\n      \"SmsPhoneNumber\": null,\n      \"UserPassword\": null,\n      \"Company\": null,\n      \"Title\": null,\n      \"IsDisplayDownloadDocument\": null,\n      \"IsSendFromExternal\": null,\n      \"IsUpdateExistingUser\": null,\n      \"Participant\": null,\n      \"IsDisableAttachment\": null,\n      \"IsSuspended\": null,\n      \"IsNoDecline\": null,\n      \"NotificationMailsToSend\": null,\n      \"MinimumSignatures\": null,\n      \"ForceApprovalOnSignature\": null,\n      \"PersonalMessage\": null,\n      \"UserPasswordDescription\": null\n    }\n  ],\n  \"IsSendApprovalMailToAllSigners\": true,\n  \"IsAutomaticRemainder\": false,\n  \"DayesForAutomaticRemainder\": 0,\n  \"SignFlowDescriptionMessage\": null,\n  \"CustomFields\": [\n    {\n      \"Key\": \"SomeInnerSystemIdNumber\",\n      \"Value\": \"12345\"\n    }\n  ],\n  \"Users\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"marty@doxi.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"marty@doxi.com\",\n      \"FirstName\": \"Marty\",\n      \"LastName\": \"Braun\",\n      \"SmsPhoneNumber\": \"0501234567\",\n      \"UserPassword\": \"0018\",\n      \"Company\": null,\n      \"Title\": null,\n      \"IsDisplayDownloadDocument\": false,\n      \"IsSendFromExternal\": null,\n      \"IsUpdateExistingUser\": null,\n      \"Participant\": null,\n      \"IsDisableAttachment\": false,\n      \"IsSuspended\": null,\n      \"IsNoDecline\": null,\n      \"NotificationMailsToSend\": null,\n      \"MinimumSignatures\": null,\n      \"ForceApprovalOnSignature\": null,\n      \"PersonalMessage\": null,\n      \"UserPasswordDescription\": null\n    }\n  ],\n  \"PackageId\": \"d583e9e1-3633-420a-aa45-793b4653bac1\",\n  \"PackageName\": \"HR-Fill some form\",\n  \"DisableSBS\": false,\n  \"IsNoSend\": false,\n  \"IsNoNotificationMails\": false,\n  \"IsNoDecline\": false,\n  \"PreliminaryText\": \"Please fill this form\",\n  \"FlowTwoFactorEnabled\": null,\n  \"SenderNotificationMailsToSend\": null,\n  \"FlowExpirationDate\": null,\n  \"SourceTemplateId\": null,\n  \"KitId\": null,\n  \"ImagesList\": null\n}","type":"text"}]},"url":"//v6/flows","description":"<p>[V6] Create a new signature flow with document file upload</p>\n<hr />\n<h2 id=\"file\">file:</h2>\n<h3 id=\"the-document-file-to-upload-pdf-docx-doc-jpg-jpeg-png-the-file-extension-must-match-the-documentfilename-in-the-request\">The document file to upload (PDF, DOCX, DOC, JPG, JPEG, PNG). The file extension must match the DocumentFileName in the request.</h3>\n<hr />\n<h2 id=\"createflowjsonrequest\">createFlowJsonRequest:</h2>\n<h3 id=\"flow-creation-request-containing-flow-configuration-including-signers-signature-elements-form-fields-and-document-metadata\">Flow creation request containing flow configuration including signers, signature elements, form fields, and document metadata\"</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* DocumentFileName</td>\n<td>String</td>\n<td>The name of the document</td>\n</tr>\n<tr>\n<td>* SenderKey</td>\n<td><em><strong>ParticipantKey</strong></em></td>\n<td>Id of the Sender</td>\n</tr>\n<tr>\n<td>* Description</td>\n<td>String(200)</td>\n<td>The description/name of the flow</td>\n</tr>\n<tr>\n<td>* FlowElements</td>\n<td><em><strong>ExFlowElement[]</strong></em></td>\n<td>All the elements of the flow</td>\n</tr>\n<tr>\n<td>SendMethodType</td>\n<td><em><strong>SendMethodType</strong></em></td>\n<td>Distribution method of the flow</td>\n</tr>\n<tr>\n<td>Recipients</td>\n<td><em><strong>ExUser[]</strong></em></td>\n<td>All the CC users of the flow</td>\n</tr>\n<tr>\n<td>IsSendApprovalMailToAllSigners</td>\n<td>Boolean</td>\n<td>Enabled/Diabaled send email to all signers (when the flow approved)</td>\n</tr>\n<tr>\n<td>IsAutomaticRemainder</td>\n<td>Boolean</td>\n<td>Enabled/Disabled send automatic remainder</td>\n</tr>\n<tr>\n<td>DayesForAutomaticRemainder</td>\n<td>Int32</td>\n<td>Number of the days for getting automatic remainder</td>\n</tr>\n<tr>\n<td>SignFlowDescriptionMessage</td>\n<td>String</td>\n<td>Description of the document in the email</td>\n</tr>\n<tr>\n<td>CustomFields</td>\n<td>KeyValuePair&lt;String,String&gt;[]</td>\n<td>Add additional data in the flow</td>\n</tr>\n<tr>\n<td>* Users</td>\n<td><em><strong>ExUser[]</strong></em></td>\n<td>The changable users of the flow</td>\n</tr>\n<tr>\n<td>PackageId</td>\n<td>String</td>\n<td>Id of the package (the flow will be in package)</td>\n</tr>\n<tr>\n<td>PackageName</td>\n<td>String</td>\n<td>Name of the package</td>\n</tr>\n<tr>\n<td>DisableSBS</td>\n<td>Boolean</td>\n<td>Disabled/Enabled dispaly side by side mode in the flow</td>\n</tr>\n<tr>\n<td>PreliminaryText</td>\n<td>String</td>\n<td>Preliminary text of the flow (display only in side by side mode)</td>\n</tr>\n<tr>\n<td>FlowTwoFactorEnabled</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Enabled/Disabled Two Factor on the flow</td>\n</tr>\n<tr>\n<td>SenderNotificationMailsToSend</td>\n<td><em><strong>NotificationMails[]</strong></em></td>\n<td>Types of emails notification (for the sender and CC), Allowed values: 0,1,3,4,5,7,9,12,13,14,15</td>\n</tr>\n<tr>\n<td>FlowExpirationDate</td>\n<td>Nullable&lt;DateTime&gt;</td>\n<td>Expiration date of the flow</td>\n</tr>\n<tr>\n<td>KitId</td>\n<td>String</td>\n<td>Create flow under kit</td>\n</tr>\n<tr>\n<td>ImagesList</td>\n<td>Dictionary&lt;String,String&gt;</td>\n<td>Dictionary of images for flow elements of type Image.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exuser\">ExUser:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* UserKey</td>\n<td><em><strong>ParticipantKey</strong></em></td>\n<td>Id of user</td>\n</tr>\n<tr>\n<td>Email</td>\n<td>String(77)</td>\n<td>Email of user</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td>String(50)</td>\n<td>First name of user</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td>String(50)</td>\n<td>Last name of user</td>\n</tr>\n<tr>\n<td>SmsPhoneNumber</td>\n<td>String(80)</td>\n<td>Phone Number of user (if empty, the user will not receive sms)</td>\n</tr>\n<tr>\n<td>UserPassword</td>\n<td>String Validation: Only letters, numbers, and special characters are allowed.</td>\n<td>Password for opening the sign link</td>\n</tr>\n<tr>\n<td>Company</td>\n<td>String(80)</td>\n<td>Company name of user</td>\n</tr>\n<tr>\n<td>Title</td>\n<td>String(80)</td>\n<td>Title of user</td>\n</tr>\n<tr>\n<td>IsDisableAttachment</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Disable/Enable add attachments to the flow</td>\n</tr>\n<tr>\n<td>IsSuspended</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Set status flow to suspended when the signer need to sign</td>\n</tr>\n<tr>\n<td>IsNoDecline</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Disable/Endable Decline option in flow</td>\n</tr>\n<tr>\n<td>NotificationMailsToSend</td>\n<td><em><strong>NotificationMails[]</strong></em></td>\n<td>Types of email notifications</td>\n</tr>\n<tr>\n<td>MinimumSignatures</td>\n<td>Nullable&lt;Int32&gt;</td>\n<td>When the user have optional signature element - Dox validate the minimum signatures in the document</td>\n</tr>\n<tr>\n<td>ForceApprovalOnSignature</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Force approval on signature</td>\n</tr>\n<tr>\n<td>PersonalMessage</td>\n<td>String(300) Validation: The field cannot contain script, vbscript, or style tags.</td>\n<td>Personal message to the signer</td>\n</tr>\n<tr>\n<td>UserPasswordDescription</td>\n<td><em><strong>LanguageKey[]</strong></em></td>\n<td>Display when the user open the linkfor example: \"Please enter your social security number\"LanguageKey is the message with all supported languages</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"languagekey\">LanguageKey:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Language</td>\n<td>String</td>\n<td>language : 'en-US','he-IL'</td>\n</tr>\n<tr>\n<td>Value</td>\n<td>String</td>\n<td>Value of text</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"notificationmails\">NotificationMails[]:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>All</td>\n</tr>\n<tr>\n<td>1</td>\n<td>None</td>\n</tr>\n<tr>\n<td>2</td>\n<td>SignFlow</td>\n</tr>\n<tr>\n<td>3</td>\n<td>FlowApproved</td>\n</tr>\n<tr>\n<td>4</td>\n<td>FlowDeclined</td>\n</tr>\n<tr>\n<td>5</td>\n<td>FlowStart</td>\n</tr>\n<tr>\n<td>6</td>\n<td>ReminderToSignFlow</td>\n</tr>\n<tr>\n<td>7</td>\n<td>FlowStoppedToSender</td>\n</tr>\n<tr>\n<td>8</td>\n<td>FlowStoppedToSigner</td>\n</tr>\n<tr>\n<td>9</td>\n<td>KitCompleted</td>\n</tr>\n<tr>\n<td>10</td>\n<td>SignKit</td>\n</tr>\n<tr>\n<td>11</td>\n<td>ReminderToSignKit</td>\n</tr>\n<tr>\n<td>12</td>\n<td>KitCreated</td>\n</tr>\n<tr>\n<td>13</td>\n<td>FlowExpired</td>\n</tr>\n<tr>\n<td>14</td>\n<td>FlowCCApproved</td>\n</tr>\n<tr>\n<td>15</td>\n<td>FlowCCDeclined</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"sendmethodtype\">SendMethodType:</h3>\n<h3 id=\"distribution-method-of-the-flow\">Distribution method of the flow</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>QueuedFlow</td>\n</tr>\n<tr>\n<td>1</td>\n<td>ParallelFlow</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exflowelement\">ExFlowElement:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SignerKey</td>\n<td><em><strong>ParticipantKey</strong></em></td>\n<td>The Id of the signer</td>\n</tr>\n<tr>\n<td>ElementId</td>\n<td>String</td>\n<td>The Id of the element (GUID)</td>\n</tr>\n<tr>\n<td>SignerIndex</td>\n<td>Nullable&lt;Int32&gt;</td>\n<td>The order of signer in the flow</td>\n</tr>\n<tr>\n<td>* ElementType</td>\n<td><em><strong>ElementType</strong></em></td>\n<td>Type of element</td>\n</tr>\n<tr>\n<td>ElementSubType</td>\n<td><em><strong>ElementSubType</strong></em></td>\n<td>Type of subject element</td>\n</tr>\n<tr>\n<td>* PageNumber</td>\n<td>Int32</td>\n<td>The page number of the element</td>\n</tr>\n<tr>\n<td>* Position</td>\n<td><em><strong>ElementPosition</strong></em></td>\n<td>Position of the element on the page</td>\n</tr>\n<tr>\n<td>TextValue</td>\n<td>String(200)</td>\n<td>The text of the element</td>\n</tr>\n<tr>\n<td>TextSize</td>\n<td>Int32</td>\n<td>The size of the text element</td>\n</tr>\n<tr>\n<td>TextFont</td>\n<td>String</td>\n<td>The font of the text element</td>\n</tr>\n<tr>\n<td>ElementLabel</td>\n<td>String</td>\n<td>The label of the element</td>\n</tr>\n<tr>\n<td>ElementHelp</td>\n<td>String</td>\n<td>Information about the element (helps to know more about the element)</td>\n</tr>\n<tr>\n<td>ValueName</td>\n<td>String</td>\n<td>The value name of element (only on radio-button/checkbox elemets)</td>\n</tr>\n<tr>\n<td>HorizontalAlignment</td>\n<td><em><strong>Nullable&lt;ExHorizontalAlignment&gt;</strong></em></td>\n<td>Alignment the text of the element: Right=0,Center=1,Left=2</td>\n</tr>\n<tr>\n<td>IsRequired</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Set required to element</td>\n</tr>\n<tr>\n<td>Validations</td>\n<td><em><strong>ExValidation[]</strong></em></td>\n<td>Set validation to element</td>\n</tr>\n<tr>\n<td>DateTimeValidation</td>\n<td><em><strong>ExDateTimeValidation</strong></em></td>\n<td>Set Date validation to element (only on Date element)</td>\n</tr>\n<tr>\n<td>DropDownList</td>\n<td><em><strong>ExDropDownField[]</strong></em></td>\n<td>Values of drop list element</td>\n</tr>\n<tr>\n<td>AdditionalInfo</td>\n<td>KeyValuePair&lt;String,String&gt;[]</td>\n<td>Add additional data to the element</td>\n</tr>\n<tr>\n<td>DuplicateElementInfo</td>\n<td><em><strong>DuplicateElementInfo</strong></em></td>\n<td>Set element as duplicate (make the element to parent)</td>\n</tr>\n<tr>\n<td>DisplayValueInFlowDecription</td>\n<td>Boolean</td>\n<td>Display/Not dispaly the value of element in the flow decription</td>\n</tr>\n<tr>\n<td>ZIndex</td>\n<td>Nullable&lt;Int32&gt;</td>\n<td>The order of the element on the page</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"duplicateelementinfo\">DuplicateElementInfo:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>IsAllPagesFromCurrent</td>\n<td>Boolean</td>\n<td>Duplicate element at all pages</td>\n</tr>\n<tr>\n<td>PageRange</td>\n<td>String</td>\n<td>Duplicate element on a specific page (for example : 1,5,8 - the element will duplicated on these pages)</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exdropdownfield\">ExDropDownField:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Values</td>\n<td><em><strong>ExDropDownItem[]</strong></em></td>\n<td>List of values</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exdropdownitem\">ExDropDownItem:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Key</td>\n<td>String</td>\n<td>Key of Item</td>\n</tr>\n<tr>\n<td>Value</td>\n<td>String</td>\n<td>Value of Item</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exdatetimevalidation\">ExDateTimeValidation:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DateTimeFormat</td>\n<td>String</td>\n<td>Format of the date</td>\n</tr>\n<tr>\n<td>DateFormatLanguage</td>\n<td>String</td>\n<td>language : 'en-US','he-IL'</td>\n</tr>\n<tr>\n<td>IsCurrentDateTime</td>\n<td>Boolean</td>\n<td>Set the date to the current signing date</td>\n</tr>\n<tr>\n<td>MinimumDate</td>\n<td>Nullable&lt;DateTime&gt;</td>\n<td>Minimum value of date</td>\n</tr>\n<tr>\n<td>MaximumDate</td>\n<td>Nullable&lt;DateTime&gt;</td>\n<td>Maximum value of date</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exvalidation\">ExValidation:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Regex</td>\n<td>String</td>\n<td>The Regex on the value</td>\n</tr>\n<tr>\n<td>ErrorCode</td>\n<td><em><strong>ElementValidationError</strong></em></td>\n<td>Errors of regex</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"elementvalidationerror\">ElementValidationError:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>4</td>\n<td>Email</td>\n</tr>\n<tr>\n<td>5</td>\n<td>IdNumber</td>\n</tr>\n<tr>\n<td>6</td>\n<td>PhoneNumber</td>\n</tr>\n<tr>\n<td>7</td>\n<td>LicensePlate</td>\n</tr>\n<tr>\n<td>8</td>\n<td>PostalCode</td>\n</tr>\n<tr>\n<td>10</td>\n<td>MandatoryElements</td>\n</tr>\n<tr>\n<td>11</td>\n<td>smallChar</td>\n</tr>\n<tr>\n<td>12</td>\n<td>BigChar</td>\n</tr>\n<tr>\n<td>13</td>\n<td>SmallDate</td>\n</tr>\n<tr>\n<td>14</td>\n<td>BigDate</td>\n</tr>\n<tr>\n<td>15</td>\n<td>CreditCard</td>\n</tr>\n<tr>\n<td>16</td>\n<td>CwCredit</td>\n</tr>\n<tr>\n<td>17</td>\n<td>SmallNumber</td>\n</tr>\n<tr>\n<td>18</td>\n<td>BigNumber</td>\n</tr>\n<tr>\n<td>19</td>\n<td>RequiredElements</td>\n</tr>\n<tr>\n<td>20</td>\n<td>FieldValueMustBeNumeric</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exhorizontalalignment\">ExHorizontalAlignment:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Right</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Center</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Left</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"elementposition\">ElementPosition:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* Top</td>\n<td>Single</td>\n<td>Position of the element related to top of the page (in points)</td>\n</tr>\n<tr>\n<td>* Left</td>\n<td>Single</td>\n<td>Position of the element related to left of the page (in points)</td>\n</tr>\n<tr>\n<td>* Width</td>\n<td>Single</td>\n<td>Width of the element (in points)</td>\n</tr>\n<tr>\n<td>* Height</td>\n<td>Single</td>\n<td>Height of the element (in points)</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"elementsubtype\">ElementSubType:</h3>\n<h3 id=\"sub-type-of-element\">Sub type of element</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Custom</td>\n</tr>\n<tr>\n<td>1</td>\n<td>FullName</td>\n</tr>\n<tr>\n<td>2</td>\n<td>FirstName</td>\n</tr>\n<tr>\n<td>3</td>\n<td>LastName</td>\n</tr>\n<tr>\n<td>4</td>\n<td>Email</td>\n</tr>\n<tr>\n<td>5</td>\n<td>IdentityNumber</td>\n</tr>\n<tr>\n<td>6</td>\n<td>PhoneNumber</td>\n</tr>\n<tr>\n<td>7</td>\n<td>License</td>\n</tr>\n<tr>\n<td>8</td>\n<td>PostalCode</td>\n</tr>\n<tr>\n<td>9</td>\n<td>EditorText</td>\n</tr>\n<tr>\n<td>10</td>\n<td>Initials</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"elementtype\">ElementType:</h3>\n<h3 id=\"types-of-elements\">Types of Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Sign</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Text</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Date</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Erase</td>\n</tr>\n<tr>\n<td>4</td>\n<td>Highlight</td>\n</tr>\n<tr>\n<td>5</td>\n<td>Blackout</td>\n</tr>\n<tr>\n<td>9</td>\n<td>EditorText</td>\n</tr>\n<tr>\n<td>10</td>\n<td>Checkbox</td>\n</tr>\n<tr>\n<td>11</td>\n<td>Numeric</td>\n</tr>\n<tr>\n<td>12</td>\n<td>Radio</td>\n</tr>\n<tr>\n<td>13</td>\n<td>Dropdown</td>\n</tr>\n<tr>\n<td>14</td>\n<td>Attachment</td>\n</tr>\n<tr>\n<td>17</td>\n<td>Image</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"participantkey\">ParticipantKey:</h3>\n<h3 id=\"allow-to-locate-doxi-user-byuseremail1userphone2\">Allow to locate Doxi user by:UserEmail=1UserPhone=2</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* Key</td>\n<td>String</td>\n<td>User search value</td>\n</tr>\n<tr>\n<td>Type</td>\n<td><em><strong>ParticipantKeyType</strong></em></td>\n<td>Search type:UserEmail=1,UserPhone=2</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"participantkeytype\">ParticipantKeyType:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>UserId</td>\n</tr>\n<tr>\n<td>1</td>\n<td>UserEmail</td>\n</tr>\n<tr>\n<td>2</td>\n<td>UserPhone</td>\n</tr>\n<tr>\n<td>3</td>\n<td>UserName</td>\n</tr>\n<tr>\n<td>4</td>\n<td>GroupId</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","flows"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"de5cc779-eedc-46a7-8bd1-3d24e484ba27","name":"Flow created successfully","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"description":"The document file to upload (PDF, DOCX, DOC, JPG, JPEG, PNG). The file extension must match the DocumentFileName in the request.","key":"file","type":"file","src":[]},{"description":"Flow creation request containing flow configuration including signers, signature elements, form fields, and document metadata\" ","key":"createFlowJsonRequest","value":"{\n  \"DocumentFileName\": \"API Example.pdf\",\n  \"SenderKey\": {\n    \"Key\": \"doxiapiuser@mydomain.com\",\n    \"Type\": 1\n  },\n  \"SenderUserName\": null,\n  \"Description\": \"API Example\",\n  \"FlowElements\": [\n    {\n      \"SignerKey\": {\n        \"Key\": \"marty@doxi.com\",\n        \"Type\": 1\n      },\n      \"UserEmail\": null,\n      \"ElementId\": null,\n      \"SignerIndex\": null,\n      \"ElementType\": 0,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 291.0,\n        \"Left\": 401.0,\n        \"Width\": 114.0,\n        \"Height\": 38.0\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": null,\n      \"TextSize\": 0,\n      \"TextFont\": null,\n      \"ElementLabel\": null,\n      \"ElementHelp\": null,\n      \"ValueName\": null,\n      \"HorizontalAlignment\": null,\n      \"IsRequired\": true,\n      \"Validations\": null,\n      \"DateTimeValidation\": null,\n      \"DropDownList\": null,\n      \"AdditionalInfo\": null,\n      \"DuplicateElementInfo\": {\n        \"IsAllPagesFromCurrent\": true,\n        \"PageRange\": null\n      },\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false,\n      \"ZIndex\": null\n    },\n    {\n      \"SignerKey\": {\n        \"Key\": \"marty@doxi.com\",\n        \"Type\": 1\n      },\n      \"UserEmail\": null,\n      \"ElementId\": null,\n      \"SignerIndex\": null,\n      \"ElementType\": 10,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 433.0,\n        \"Left\": 513.0,\n        \"Width\": 14.0,\n        \"Height\": 14.0\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"0\",\n      \"TextSize\": 14,\n      \"TextFont\": null,\n      \"ElementLabel\": \"Checkbox\",\n      \"ElementHelp\": \"Checkbox-help\",\n      \"ValueName\": \"3\",\n      \"HorizontalAlignment\": null,\n      \"IsRequired\": null,\n      \"Validations\": null,\n      \"DateTimeValidation\": null,\n      \"DropDownList\": null,\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"isMarked\",\n          \"Value\": \"false\"\n        },\n        {\n          \"Key\": \"order\",\n          \"Value\": \"90\"\n        }\n      ],\n      \"DuplicateElementInfo\": null,\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false,\n      \"ZIndex\": null\n    }\n  ],\n  \"SendMethodType\": 0,\n  \"Recipients\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"david@doxi.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"david@doxi.com\",\n      \"FirstName\": \"David\",\n      \"LastName\": \"White\",\n      \"SmsPhoneNumber\": null,\n      \"UserPassword\": null,\n      \"Company\": null,\n      \"Title\": null,\n      \"IsDisplayDownloadDocument\": null,\n      \"IsSendFromExternal\": null,\n      \"IsUpdateExistingUser\": null,\n      \"Participant\": null,\n      \"IsDisableAttachment\": null,\n      \"IsSuspended\": null,\n      \"IsNoDecline\": null,\n      \"NotificationMailsToSend\": null,\n      \"MinimumSignatures\": null,\n      \"ForceApprovalOnSignature\": null,\n      \"PersonalMessage\": null,\n      \"UserPasswordDescription\": null\n    }\n  ],\n  \"IsSendApprovalMailToAllSigners\": true,\n  \"IsAutomaticRemainder\": false,\n  \"DayesForAutomaticRemainder\": 0,\n  \"SignFlowDescriptionMessage\": null,\n  \"CustomFields\": [\n    {\n      \"Key\": \"SomeInnerSystemIdNumber\",\n      \"Value\": \"12345\"\n    }\n  ],\n  \"Users\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"marty@doxi.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"marty@doxi.com\",\n      \"FirstName\": \"Marty\",\n      \"LastName\": \"Braun\",\n      \"SmsPhoneNumber\": \"0501234567\",\n      \"UserPassword\": \"0018\",\n      \"Company\": null,\n      \"Title\": null,\n      \"IsDisplayDownloadDocument\": false,\n      \"IsSendFromExternal\": null,\n      \"IsUpdateExistingUser\": null,\n      \"Participant\": null,\n      \"IsDisableAttachment\": false,\n      \"IsSuspended\": null,\n      \"IsNoDecline\": null,\n      \"NotificationMailsToSend\": null,\n      \"MinimumSignatures\": null,\n      \"ForceApprovalOnSignature\": null,\n      \"PersonalMessage\": null,\n      \"UserPasswordDescription\": null\n    }\n  ],\n  \"PackageId\": \"d583e9e1-3633-420a-aa45-793b4653bac1\",\n  \"PackageName\": \"HR-Fill some form\",\n  \"DisableSBS\": false,\n  \"IsNoSend\": false,\n  \"IsNoNotificationMails\": false,\n  \"IsNoDecline\": false,\n  \"PreliminaryText\": \"Please fill this form\",\n  \"FlowTwoFactorEnabled\": null,\n  \"SenderNotificationMailsToSend\": null,\n  \"FlowExpirationDate\": null,\n  \"SourceTemplateId\": null,\n  \"KitId\": null,\n  \"ImagesList\": null\n}","type":"text"}]},"url":"//v6/flows"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"SignFlowId\": \"1909058d-f59b-42b2-9994-20fbfb154d63\",\n  \"SignersLink\": [\n    {\n      \"SignerKey\": \"marty@doxi.com\",\n      \"Link\": \"https://DoxiDMZServer/DoxiSign/sign/1909058d-f59b-42b2-9994-20fbfb154d63/0XyVpZxuN0dI2Bb0ORB4bg%253d%253d\"\n    }\n  ]\n}"},{"id":"fa8fee84-b8e3-4cb6-8ebd-f6b167202878","name":"Invalid request - File extension mismatch or invalid flow configuration","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"description":"The document file to upload (PDF, DOCX, DOC, JPG, JPEG, PNG). The file extension must match the DocumentFileName in the request.","key":"file","type":"file","src":[]},{"description":"Flow creation request containing flow configuration including signers, signature elements, form fields, and document metadata\" ","key":"createFlowJsonRequest","value":"{\n  \"DocumentFileName\": \"API Example.pdf\",\n  \"SenderKey\": {\n    \"Key\": \"doxiapiuser@mydomain.com\",\n    \"Type\": 1\n  },\n  \"SenderUserName\": null,\n  \"Description\": \"API Example\",\n  \"FlowElements\": [\n    {\n      \"SignerKey\": {\n        \"Key\": \"marty@doxi.com\",\n        \"Type\": 1\n      },\n      \"UserEmail\": null,\n      \"ElementId\": null,\n      \"SignerIndex\": null,\n      \"ElementType\": 0,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 291.0,\n        \"Left\": 401.0,\n        \"Width\": 114.0,\n        \"Height\": 38.0\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": null,\n      \"TextSize\": 0,\n      \"TextFont\": null,\n      \"ElementLabel\": null,\n      \"ElementHelp\": null,\n      \"ValueName\": null,\n      \"HorizontalAlignment\": null,\n      \"IsRequired\": true,\n      \"Validations\": null,\n      \"DateTimeValidation\": null,\n      \"DropDownList\": null,\n      \"AdditionalInfo\": null,\n      \"DuplicateElementInfo\": {\n        \"IsAllPagesFromCurrent\": true,\n        \"PageRange\": null\n      },\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false,\n      \"ZIndex\": null\n    },\n    {\n      \"SignerKey\": {\n        \"Key\": \"marty@doxi.com\",\n        \"Type\": 1\n      },\n      \"UserEmail\": null,\n      \"ElementId\": null,\n      \"SignerIndex\": null,\n      \"ElementType\": 10,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 433.0,\n        \"Left\": 513.0,\n        \"Width\": 14.0,\n        \"Height\": 14.0\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"0\",\n      \"TextSize\": 14,\n      \"TextFont\": null,\n      \"ElementLabel\": \"Checkbox\",\n      \"ElementHelp\": \"Checkbox-help\",\n      \"ValueName\": \"3\",\n      \"HorizontalAlignment\": null,\n      \"IsRequired\": null,\n      \"Validations\": null,\n      \"DateTimeValidation\": null,\n      \"DropDownList\": null,\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"isMarked\",\n          \"Value\": \"false\"\n        },\n        {\n          \"Key\": \"order\",\n          \"Value\": \"90\"\n        }\n      ],\n      \"DuplicateElementInfo\": null,\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false,\n      \"ZIndex\": null\n    }\n  ],\n  \"SendMethodType\": 0,\n  \"Recipients\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"david@doxi.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"david@doxi.com\",\n      \"FirstName\": \"David\",\n      \"LastName\": \"White\",\n      \"SmsPhoneNumber\": null,\n      \"UserPassword\": null,\n      \"Company\": null,\n      \"Title\": null,\n      \"IsDisplayDownloadDocument\": null,\n      \"IsSendFromExternal\": null,\n      \"IsUpdateExistingUser\": null,\n      \"Participant\": null,\n      \"IsDisableAttachment\": null,\n      \"IsSuspended\": null,\n      \"IsNoDecline\": null,\n      \"NotificationMailsToSend\": null,\n      \"MinimumSignatures\": null,\n      \"ForceApprovalOnSignature\": null,\n      \"PersonalMessage\": null,\n      \"UserPasswordDescription\": null\n    }\n  ],\n  \"IsSendApprovalMailToAllSigners\": true,\n  \"IsAutomaticRemainder\": false,\n  \"DayesForAutomaticRemainder\": 0,\n  \"SignFlowDescriptionMessage\": null,\n  \"CustomFields\": [\n    {\n      \"Key\": \"SomeInnerSystemIdNumber\",\n      \"Value\": \"12345\"\n    }\n  ],\n  \"Users\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"marty@doxi.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"marty@doxi.com\",\n      \"FirstName\": \"Marty\",\n      \"LastName\": \"Braun\",\n      \"SmsPhoneNumber\": \"0501234567\",\n      \"UserPassword\": \"0018\",\n      \"Company\": null,\n      \"Title\": null,\n      \"IsDisplayDownloadDocument\": false,\n      \"IsSendFromExternal\": null,\n      \"IsUpdateExistingUser\": null,\n      \"Participant\": null,\n      \"IsDisableAttachment\": false,\n      \"IsSuspended\": null,\n      \"IsNoDecline\": null,\n      \"NotificationMailsToSend\": null,\n      \"MinimumSignatures\": null,\n      \"ForceApprovalOnSignature\": null,\n      \"PersonalMessage\": null,\n      \"UserPasswordDescription\": null\n    }\n  ],\n  \"PackageId\": \"d583e9e1-3633-420a-aa45-793b4653bac1\",\n  \"PackageName\": \"HR-Fill some form\",\n  \"DisableSBS\": false,\n  \"IsNoSend\": false,\n  \"IsNoNotificationMails\": false,\n  \"IsNoDecline\": false,\n  \"PreliminaryText\": \"Please fill this form\",\n  \"FlowTwoFactorEnabled\": null,\n  \"SenderNotificationMailsToSend\": null,\n  \"FlowExpirationDate\": null,\n  \"SourceTemplateId\": null,\n  \"KitId\": null,\n  \"ImagesList\": null\n}","type":"text"}]},"url":"//v6/flows"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"162decc5-a067-42fc-8741-202af44b4190","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"multipart/form-data"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"description":"The document file to upload (PDF, DOCX, DOC, JPG, JPEG, PNG). The file extension must match the DocumentFileName in the request.","key":"file","type":"file","src":[]},{"description":"Flow creation request containing flow configuration including signers, signature elements, form fields, and document metadata\" ","key":"createFlowJsonRequest","value":"{\n  \"DocumentFileName\": \"API Example.pdf\",\n  \"SenderKey\": {\n    \"Key\": \"doxiapiuser@mydomain.com\",\n    \"Type\": 1\n  },\n  \"SenderUserName\": null,\n  \"Description\": \"API Example\",\n  \"FlowElements\": [\n    {\n      \"SignerKey\": {\n        \"Key\": \"marty@doxi.com\",\n        \"Type\": 1\n      },\n      \"UserEmail\": null,\n      \"ElementId\": null,\n      \"SignerIndex\": null,\n      \"ElementType\": 0,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 291.0,\n        \"Left\": 401.0,\n        \"Width\": 114.0,\n        \"Height\": 38.0\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": null,\n      \"TextSize\": 0,\n      \"TextFont\": null,\n      \"ElementLabel\": null,\n      \"ElementHelp\": null,\n      \"ValueName\": null,\n      \"HorizontalAlignment\": null,\n      \"IsRequired\": true,\n      \"Validations\": null,\n      \"DateTimeValidation\": null,\n      \"DropDownList\": null,\n      \"AdditionalInfo\": null,\n      \"DuplicateElementInfo\": {\n        \"IsAllPagesFromCurrent\": true,\n        \"PageRange\": null\n      },\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false,\n      \"ZIndex\": null\n    },\n    {\n      \"SignerKey\": {\n        \"Key\": \"marty@doxi.com\",\n        \"Type\": 1\n      },\n      \"UserEmail\": null,\n      \"ElementId\": null,\n      \"SignerIndex\": null,\n      \"ElementType\": 10,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 433.0,\n        \"Left\": 513.0,\n        \"Width\": 14.0,\n        \"Height\": 14.0\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"0\",\n      \"TextSize\": 14,\n      \"TextFont\": null,\n      \"ElementLabel\": \"Checkbox\",\n      \"ElementHelp\": \"Checkbox-help\",\n      \"ValueName\": \"3\",\n      \"HorizontalAlignment\": null,\n      \"IsRequired\": null,\n      \"Validations\": null,\n      \"DateTimeValidation\": null,\n      \"DropDownList\": null,\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"isMarked\",\n          \"Value\": \"false\"\n        },\n        {\n          \"Key\": \"order\",\n          \"Value\": \"90\"\n        }\n      ],\n      \"DuplicateElementInfo\": null,\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false,\n      \"ZIndex\": null\n    }\n  ],\n  \"SendMethodType\": 0,\n  \"Recipients\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"david@doxi.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"david@doxi.com\",\n      \"FirstName\": \"David\",\n      \"LastName\": \"White\",\n      \"SmsPhoneNumber\": null,\n      \"UserPassword\": null,\n      \"Company\": null,\n      \"Title\": null,\n      \"IsDisplayDownloadDocument\": null,\n      \"IsSendFromExternal\": null,\n      \"IsUpdateExistingUser\": null,\n      \"Participant\": null,\n      \"IsDisableAttachment\": null,\n      \"IsSuspended\": null,\n      \"IsNoDecline\": null,\n      \"NotificationMailsToSend\": null,\n      \"MinimumSignatures\": null,\n      \"ForceApprovalOnSignature\": null,\n      \"PersonalMessage\": null,\n      \"UserPasswordDescription\": null\n    }\n  ],\n  \"IsSendApprovalMailToAllSigners\": true,\n  \"IsAutomaticRemainder\": false,\n  \"DayesForAutomaticRemainder\": 0,\n  \"SignFlowDescriptionMessage\": null,\n  \"CustomFields\": [\n    {\n      \"Key\": \"SomeInnerSystemIdNumber\",\n      \"Value\": \"12345\"\n    }\n  ],\n  \"Users\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"marty@doxi.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"marty@doxi.com\",\n      \"FirstName\": \"Marty\",\n      \"LastName\": \"Braun\",\n      \"SmsPhoneNumber\": \"0501234567\",\n      \"UserPassword\": \"0018\",\n      \"Company\": null,\n      \"Title\": null,\n      \"IsDisplayDownloadDocument\": false,\n      \"IsSendFromExternal\": null,\n      \"IsUpdateExistingUser\": null,\n      \"Participant\": null,\n      \"IsDisableAttachment\": false,\n      \"IsSuspended\": null,\n      \"IsNoDecline\": null,\n      \"NotificationMailsToSend\": null,\n      \"MinimumSignatures\": null,\n      \"ForceApprovalOnSignature\": null,\n      \"PersonalMessage\": null,\n      \"UserPasswordDescription\": null\n    }\n  ],\n  \"PackageId\": \"d583e9e1-3633-420a-aa45-793b4653bac1\",\n  \"PackageName\": \"HR-Fill some form\",\n  \"DisableSBS\": false,\n  \"IsNoSend\": false,\n  \"IsNoNotificationMails\": false,\n  \"IsNoDecline\": false,\n  \"PreliminaryText\": \"Please fill this form\",\n  \"FlowTwoFactorEnabled\": null,\n  \"SenderNotificationMailsToSend\": null,\n  \"FlowExpirationDate\": null,\n  \"SourceTemplateId\": null,\n  \"KitId\": null,\n  \"ImagesList\": null\n}","type":"text"}]},"url":"//v6/flows"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"f4e9923c-be60-4c77-b478-b50e5e34d2dc","name":"Internal server error","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"multipart/form-data"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"description":"The document file to upload (PDF, DOCX, DOC, JPG, JPEG, PNG). The file extension must match the DocumentFileName in the request.","key":"file","type":"file","src":[]},{"description":"Flow creation request containing flow configuration including signers, signature elements, form fields, and document metadata\" ","key":"createFlowJsonRequest","value":"{\n  \"DocumentFileName\": \"API Example.pdf\",\n  \"SenderKey\": {\n    \"Key\": \"doxiapiuser@mydomain.com\",\n    \"Type\": 1\n  },\n  \"SenderUserName\": null,\n  \"Description\": \"API Example\",\n  \"FlowElements\": [\n    {\n      \"SignerKey\": {\n        \"Key\": \"marty@doxi.com\",\n        \"Type\": 1\n      },\n      \"UserEmail\": null,\n      \"ElementId\": null,\n      \"SignerIndex\": null,\n      \"ElementType\": 0,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 291.0,\n        \"Left\": 401.0,\n        \"Width\": 114.0,\n        \"Height\": 38.0\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": null,\n      \"TextSize\": 0,\n      \"TextFont\": null,\n      \"ElementLabel\": null,\n      \"ElementHelp\": null,\n      \"ValueName\": null,\n      \"HorizontalAlignment\": null,\n      \"IsRequired\": true,\n      \"Validations\": null,\n      \"DateTimeValidation\": null,\n      \"DropDownList\": null,\n      \"AdditionalInfo\": null,\n      \"DuplicateElementInfo\": {\n        \"IsAllPagesFromCurrent\": true,\n        \"PageRange\": null\n      },\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false,\n      \"ZIndex\": null\n    },\n    {\n      \"SignerKey\": {\n        \"Key\": \"marty@doxi.com\",\n        \"Type\": 1\n      },\n      \"UserEmail\": null,\n      \"ElementId\": null,\n      \"SignerIndex\": null,\n      \"ElementType\": 10,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 433.0,\n        \"Left\": 513.0,\n        \"Width\": 14.0,\n        \"Height\": 14.0\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"0\",\n      \"TextSize\": 14,\n      \"TextFont\": null,\n      \"ElementLabel\": \"Checkbox\",\n      \"ElementHelp\": \"Checkbox-help\",\n      \"ValueName\": \"3\",\n      \"HorizontalAlignment\": null,\n      \"IsRequired\": null,\n      \"Validations\": null,\n      \"DateTimeValidation\": null,\n      \"DropDownList\": null,\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"isMarked\",\n          \"Value\": \"false\"\n        },\n        {\n          \"Key\": \"order\",\n          \"Value\": \"90\"\n        }\n      ],\n      \"DuplicateElementInfo\": null,\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false,\n      \"ZIndex\": null\n    }\n  ],\n  \"SendMethodType\": 0,\n  \"Recipients\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"david@doxi.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"david@doxi.com\",\n      \"FirstName\": \"David\",\n      \"LastName\": \"White\",\n      \"SmsPhoneNumber\": null,\n      \"UserPassword\": null,\n      \"Company\": null,\n      \"Title\": null,\n      \"IsDisplayDownloadDocument\": null,\n      \"IsSendFromExternal\": null,\n      \"IsUpdateExistingUser\": null,\n      \"Participant\": null,\n      \"IsDisableAttachment\": null,\n      \"IsSuspended\": null,\n      \"IsNoDecline\": null,\n      \"NotificationMailsToSend\": null,\n      \"MinimumSignatures\": null,\n      \"ForceApprovalOnSignature\": null,\n      \"PersonalMessage\": null,\n      \"UserPasswordDescription\": null\n    }\n  ],\n  \"IsSendApprovalMailToAllSigners\": true,\n  \"IsAutomaticRemainder\": false,\n  \"DayesForAutomaticRemainder\": 0,\n  \"SignFlowDescriptionMessage\": null,\n  \"CustomFields\": [\n    {\n      \"Key\": \"SomeInnerSystemIdNumber\",\n      \"Value\": \"12345\"\n    }\n  ],\n  \"Users\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"marty@doxi.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"marty@doxi.com\",\n      \"FirstName\": \"Marty\",\n      \"LastName\": \"Braun\",\n      \"SmsPhoneNumber\": \"0501234567\",\n      \"UserPassword\": \"0018\",\n      \"Company\": null,\n      \"Title\": null,\n      \"IsDisplayDownloadDocument\": false,\n      \"IsSendFromExternal\": null,\n      \"IsUpdateExistingUser\": null,\n      \"Participant\": null,\n      \"IsDisableAttachment\": false,\n      \"IsSuspended\": null,\n      \"IsNoDecline\": null,\n      \"NotificationMailsToSend\": null,\n      \"MinimumSignatures\": null,\n      \"ForceApprovalOnSignature\": null,\n      \"PersonalMessage\": null,\n      \"UserPasswordDescription\": null\n    }\n  ],\n  \"PackageId\": \"d583e9e1-3633-420a-aa45-793b4653bac1\",\n  \"PackageName\": \"HR-Fill some form\",\n  \"DisableSBS\": false,\n  \"IsNoSend\": false,\n  \"IsNoNotificationMails\": false,\n  \"IsNoDecline\": false,\n  \"PreliminaryText\": \"Please fill this form\",\n  \"FlowTwoFactorEnabled\": null,\n  \"SenderNotificationMailsToSend\": null,\n  \"FlowExpirationDate\": null,\n  \"SourceTemplateId\": null,\n  \"KitId\": null,\n  \"ImagesList\": null\n}","type":"text"}]},"url":"//v6/flows"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"bc13069b-68b1-4290-a35e-24224951ad0c"},{"name":"/v6/flows/search","id":"8e6d505c-e4b8-4ee6-9236-f0d4ebf2216e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"CustomFields\": [\n    {\n      \"Key\": \"MyFieldName\",\n      \"Value\": \"some-value\"\n    },\n    {\n      \"Key\": \"MyFieldName2\",\n      \"Value\": \"some-value\"\n    }\n  ],\n  \"SignatureFlowStatus\": 0\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/flows/search","description":"<p>[V6] Search flows by filter parameters</p>\n<h2 id=\"json-object-description\">JSON object description:</h2>\n<hr />\n<h2 id=\"getflowsbyfilterrequest\">getFlowsByFilterRequest:</h2>\n<h3 id=\"filter-request-containing-customfields-key-value-pairs-and-signatureflowstatus-status-values-open0-approved1-declined2-stopped3-suspended4\">Filter request containing CustomFields (Key-value pairs) and SignatureFlowStatus. Status values: Open=0, Approved=1, Declined=2, Stopped=3, Suspended=4</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomFields</td>\n<td>KeyValuePair[]</td>\n<td>Search flows be CustomFields property Key+Value</td>\n</tr>\n<tr>\n<td>SignatureFlowStatus</td>\n<td><em><strong>Nullable</strong></em></td>\n<td>Search flow by Flow status</td>\n</tr>\n<tr>\n<td>Signer</td>\n<td><em><strong>ParticipantKey</strong></em></td>\n<td>Searche by the flow signer</td>\n</tr>\n<tr>\n<td>Sender</td>\n<td><em><strong>ParticipantKey</strong></em></td>\n<td>Search by the user that create the flow (sender)</td>\n</tr>\n<tr>\n<td>FromDate</td>\n<td>Nullable</td>\n<td>Search by flow create date - from</td>\n</tr>\n<tr>\n<td>ToDate</td>\n<td>Nullable</td>\n<td>Search by flow create date - to</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>String</td>\n<td>Search by flow description name</td>\n</tr>\n<tr>\n<td>KitId</td>\n<td>String</td>\n<td>Search by kit Id</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"participantkey\">ParticipantKey:</h3>\n<h3 id=\"allow-to-locate-doxi-user-byuseremail1userphone2\">Allow to locate Doxi user by:UserEmail=1UserPhone=2</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* Key</td>\n<td>String</td>\n<td>User search value</td>\n</tr>\n<tr>\n<td>Type</td>\n<td><em><strong>ParticipantKeyType</strong></em></td>\n<td>Search type:UserEmail=1,UserPhone=2</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"participantkeytype\">ParticipantKeyType:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>UserId</td>\n</tr>\n<tr>\n<td>1</td>\n<td>UserEmail</td>\n</tr>\n<tr>\n<td>2</td>\n<td>UserPhone</td>\n</tr>\n<tr>\n<td>3</td>\n<td>UserName</td>\n</tr>\n<tr>\n<td>4</td>\n<td>GroupId</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"signatureflowstatus\">SignatureFlowStatus:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Open</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Approved</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Declined</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Stopped</td>\n</tr>\n<tr>\n<td>4</td>\n<td>Suspended</td>\n</tr>\n<tr>\n<td>5</td>\n<td>Expired</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","flows","search"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"d1fe63a1-e666-404f-9263-5820748eb472","name":"Search completed successfully","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"CustomFields\": [\n    {\n      \"Key\": \"MyFieldName\",\n      \"Value\": \"some-value\"\n    },\n    {\n      \"Key\": \"MyFieldName2\",\n      \"Value\": \"some-value\"\n    }\n  ],\n  \"SignatureFlowStatus\": 0\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/flows/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  \"string\",\n  \"string\"\n]"},{"id":"da093641-9ce8-450f-b6b4-69fa4fc5061c","name":"Invalid filter parameters","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"CustomFields\": [\n    {\n      \"Key\": \"MyFieldName\",\n      \"Value\": \"some-value\"\n    },\n    {\n      \"Key\": \"MyFieldName2\",\n      \"Value\": \"some-value\"\n    }\n  ],\n  \"SignatureFlowStatus\": 0\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/flows/search"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"0bbd55b8-5e03-496d-921d-74e121993a95","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"CustomFields\": [\n    {\n      \"Key\": \"MyFieldName\",\n      \"Value\": \"some-value\"\n    },\n    {\n      \"Key\": \"MyFieldName2\",\n      \"Value\": \"some-value\"\n    }\n  ],\n  \"SignatureFlowStatus\": 0\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/flows/search"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"8f71af67-c803-4f04-a262-2b6d32eb79ff","name":"Internal server error","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"CustomFields\": [\n    {\n      \"Key\": \"MyFieldName\",\n      \"Value\": \"some-value\"\n    },\n    {\n      \"Key\": \"MyFieldName2\",\n      \"Value\": \"some-value\"\n    }\n  ],\n  \"SignatureFlowStatus\": 0\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/flows/search"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"8e6d505c-e4b8-4ee6-9236-f0d4ebf2216e"},{"name":"/v6/flows/:signFlowId/document","id":"a44d8b63-27f7-4ef9-9bee-3b80064f5820","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Accept","value":"application/pdf"}],"url":"//v6/flows/:signFlowId/document?withSigns=true","description":"<p>[V6] Get the PDF document with all filled data and signatures</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","flows",":signFlowId","document"],"host":["/"],"query":[{"description":{"content":"<p>If true, return the PDF with digital signatures; if false, return without digital signatures (default: true)</p>\n","type":"text/plain"},"key":"withSigns","value":"true"}],"variable":[{"description":{"content":"<p>The unique identifier (GUID) of the flow</p>\n","type":"text/plain"},"type":"any","value":"string","key":"signFlowId"}]}},"response":[{"id":"59701fef-e0c8-4fdd-a5de-039fcfa2539d","name":"PDF document retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Accept","value":"application/pdf"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/flows/:signFlowId/document?withSigns=true","host":["/"],"path":["v6","flows",":signFlowId","document"],"query":[{"description":"If true, return the PDF with digital signatures; if false, return without digital signatures (default: true)","key":"withSigns","value":"true"}],"variable":[{"key":"signFlowId","value":"string","description":"The unique identifier (GUID) of the flow"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/pdf"}],"cookie":[],"responseTime":null,"body":"string"},{"id":"7e03c470-27d1-4207-b7d8-b057fd12c575","name":"Invalid flow ID format","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Accept","value":"application/pdf"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/flows/:signFlowId/document?withSigns=true","host":["/"],"path":["v6","flows",":signFlowId","document"],"query":[{"description":"If true, return the PDF with digital signatures; if false, return without digital signatures (default: true)","key":"withSigns","value":"true"}],"variable":[{"key":"signFlowId","value":"string","description":"The unique identifier (GUID) of the flow"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/pdf"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"06dfcd06-8bf1-4460-a44e-2c3ed35ec968","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/flows/:signFlowId/document?withSigns=true","host":["/"],"path":["v6","flows",":signFlowId","document"],"query":[{"description":"If true, return the PDF with digital signatures; if false, return without digital signatures (default: true)","key":"withSigns","value":"true"}],"variable":[{"key":"signFlowId","value":"string","description":"The unique identifier (GUID) of the flow"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"7c1b0fb1-f9a8-4def-915b-3d9b302a26c2","name":"Flow not found","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/flows/:signFlowId/document?withSigns=true","host":["/"],"path":["v6","flows",":signFlowId","document"],"query":[{"description":"If true, return the PDF with digital signatures; if false, return without digital signatures (default: true)","key":"withSigns","value":"true"}],"variable":[{"key":"signFlowId","value":"string","description":"The unique identifier (GUID) of the flow"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"150412cc-e4d1-4ca4-b167-1fb5546e4f3c","name":"Internal server error","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/flows/:signFlowId/document?withSigns=true","host":["/"],"path":["v6","flows",":signFlowId","document"],"query":[{"description":"If true, return the PDF with digital signatures; if false, return without digital signatures (default: true)","key":"withSigns","value":"true"}],"variable":[{"key":"signFlowId","value":"string","description":"The unique identifier (GUID) of the flow"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"a44d8b63-27f7-4ef9-9bee-3b80064f5820"},{"name":"/v6/flows/:signFlowId/document-info","id":"14ae85b8-baf5-4528-aae9-95d313f302e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Accept","value":"text/plain"}],"url":"//v6/flows/:signFlowId/document-info?includeDocument=false","description":"<p>[V6] Get flow document information and optionally the PDF document</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","flows",":signFlowId","document-info"],"host":["/"],"query":[{"description":{"content":"<p>If true, include the PDF document in the response as a file stream; if false, return only metadata (default: false)</p>\n","type":"text/plain"},"key":"includeDocument","value":"false"}],"variable":[{"description":{"content":"<p>The unique identifier (GUID) of the flow</p>\n","type":"text/plain"},"type":"any","value":"string","key":"signFlowId"}]}},"response":[{"id":"d48f14a5-f46e-423e-bd7b-f1a7659279c3","name":"Document information retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/flows/:signFlowId/document-info?includeDocument=false","host":["/"],"path":["v6","flows",":signFlowId","document-info"],"query":[{"description":"If true, include the PDF document in the response as a file stream; if false, return only metadata (default: false)","key":"includeDocument","value":"false"}],"variable":[{"key":"signFlowId","value":"string","description":"The unique identifier (GUID) of the flow"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"string"},{"id":"c88b1531-53eb-45bd-ae5e-a1901dded08b","name":"Invalid flow ID format","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/flows/:signFlowId/document-info?includeDocument=false","host":["/"],"path":["v6","flows",":signFlowId","document-info"],"query":[{"description":"If true, include the PDF document in the response as a file stream; if false, return only metadata (default: false)","key":"includeDocument","value":"false"}],"variable":[{"key":"signFlowId","value":"string","description":"The unique identifier (GUID) of the flow"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"e3d9a3f7-8122-4b28-8dab-d939075293e8","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/flows/:signFlowId/document-info?includeDocument=false","host":["/"],"path":["v6","flows",":signFlowId","document-info"],"query":[{"description":"If true, include the PDF document in the response as a file stream; if false, return only metadata (default: false)","key":"includeDocument","value":"false"}],"variable":[{"key":"signFlowId","value":"string","description":"The unique identifier (GUID) of the flow"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"faa085b7-0e21-4808-b5a9-a586ffadc649","name":"Flow not found","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/flows/:signFlowId/document-info?includeDocument=false","host":["/"],"path":["v6","flows",":signFlowId","document-info"],"query":[{"description":"If true, include the PDF document in the response as a file stream; if false, return only metadata (default: false)","key":"includeDocument","value":"false"}],"variable":[{"key":"signFlowId","value":"string","description":"The unique identifier (GUID) of the flow"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"3427e798-8406-41a8-992f-3498bf673567","name":"Internal server error","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/flows/:signFlowId/document-info?includeDocument=false","host":["/"],"path":["v6","flows",":signFlowId","document-info"],"query":[{"description":"If true, include the PDF document in the response as a file stream; if false, return only metadata (default: false)","key":"includeDocument","value":"false"}],"variable":[{"key":"signFlowId","value":"string","description":"The unique identifier (GUID) of the flow"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"14ae85b8-baf5-4528-aae9-95d313f302e0"},{"name":"/v6/flows/:signFlowId/action","id":"1972dc20-5081-482e-9aa8-ba7f4ca9ccd5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"FlowAction\": 0,\n  \"SenderKey\": {\n    \"Key\": \"sender@example.com\",\n    \"Type\": 1\n  },\n  \"UserKey\": {\n    \"Key\": \"sender@example.com\",\n    \"Type\": 1\n  },\n  \"IsRecover\": false,\n  \"SignerKey\": {\n    \"Key\": \"signer@example.com\",\n    \"Type\": 1\n  },\n  \"SignerIndex\": 0\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/flows/:signFlowId/action","description":"<p>[V6] Change flow status by performing an action</p>\n<hr />\n<h2 id=\"signflowid\">signFlowId:</h2>\n<h3 id=\"the-unique-identifier-guid-of-the-flow\">The unique identifier (GUID) of the flow</h3>\n<hr />\n<h2 id=\"setflowactionrequest\">setFlowActionRequest:</h2>\n<h3 id=\"request-containing-the-action-to-perform-flowaction-values-stopflow0-resenddeclinedflow1-sendreminder2-archiveflow3\">Request containing the action to perform. FlowAction values: StopFlow=0, ResendDeclinedFlow=1, SendReminder=2, ArchiveFlow=3</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* FlowAction</td>\n<td><em><strong>FlowExternalAction</strong></em></td>\n<td>FlowAction: StopFlow=0 ResendDeclinedFlow=1 SendReminder=2 ArchiveFlow=3</td>\n</tr>\n<tr>\n<td>SenderKey</td>\n<td><em><strong>ParticipantKey</strong></em></td>\n<td>Required for actions:  1. ResendDeclinedFlow - flow creator or admin user 2. ArchiveFlow - a participant in the flow (creator or signer) Not required for actions:  1. StopFlow 2. SendReminder</td>\n</tr>\n<tr>\n<td>IsRecover</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Required for action: ArchiveFlow To archive a flow - IsRecover = false To remove a flow from archive - IsRecover = true</td>\n</tr>\n<tr>\n<td>SignerKey</td>\n<td><em><strong>ParticipantKey</strong></em></td>\n<td>Optional for actions:  1. SendReminder - the signer who should receive the reminder (only in a parallel process) 2. ResendDeclinedFlow - Restore a flow for specific signer, sign staus will be changed from decline to waiting for approval Not required for actions:  1. StopFlow 2. ArchiveFlow</td>\n</tr>\n<tr>\n<td>SignerIndex</td>\n<td>Nullable&lt;Int32&gt;</td>\n<td>The order of the signer in a flow  Required for ResendDeclinedFlow action in case of multiple signers in parallel flow</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"participantkey\">ParticipantKey:</h3>\n<h3 id=\"allow-to-locate-doxi-user-byuseremail1userphone2\">Allow to locate Doxi user by:UserEmail=1UserPhone=2</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* Key</td>\n<td>String</td>\n<td>User search value</td>\n</tr>\n<tr>\n<td>Type</td>\n<td><em><strong>ParticipantKeyType</strong></em></td>\n<td>Search type:UserEmail=1,UserPhone=2</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"participantkeytype\">ParticipantKeyType:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>UserId</td>\n</tr>\n<tr>\n<td>1</td>\n<td>UserEmail</td>\n</tr>\n<tr>\n<td>2</td>\n<td>UserPhone</td>\n</tr>\n<tr>\n<td>3</td>\n<td>UserName</td>\n</tr>\n<tr>\n<td>4</td>\n<td>GroupId</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"flowexternalaction\">FlowExternalAction:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>StopFlow</td>\n</tr>\n<tr>\n<td>1</td>\n<td>ResendDeclinedFlow</td>\n</tr>\n<tr>\n<td>2</td>\n<td>SendReminder</td>\n</tr>\n<tr>\n<td>3</td>\n<td>ArchiveFlow</td>\n</tr>\n<tr>\n<td>4</td>\n<td>ReleaseFlow</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","flows",":signFlowId","action"],"host":["/"],"query":[],"variable":[{"type":"any","value":"string","key":"signFlowId"}]}},"response":[{"id":"ba93112d-6db6-414a-9789-897b1149c793","name":"Action performed successfully","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"FlowAction\": 0,\n  \"SenderKey\": {\n    \"Key\": \"sender@example.com\",\n    \"Type\": 1\n  },\n  \"UserKey\": {\n    \"Key\": \"sender@example.com\",\n    \"Type\": 1\n  },\n  \"IsRecover\": false,\n  \"SignerKey\": {\n    \"Key\": \"signer@example.com\",\n    \"Type\": 1\n  },\n  \"SignerIndex\": 0\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/flows/:signFlowId/action","host":["/"],"path":["v6","flows",":signFlowId","action"],"variable":[{"key":"signFlowId","value":"string"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"fd5c9d34-aebd-413b-9438-049886b5a4a1","name":"Invalid flow ID format or invalid action","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"FlowAction\": 0,\n  \"SenderKey\": {\n    \"Key\": \"sender@example.com\",\n    \"Type\": 1\n  },\n  \"UserKey\": {\n    \"Key\": \"sender@example.com\",\n    \"Type\": 1\n  },\n  \"IsRecover\": false,\n  \"SignerKey\": {\n    \"Key\": \"signer@example.com\",\n    \"Type\": 1\n  },\n  \"SignerIndex\": 0\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/flows/:signFlowId/action","host":["/"],"path":["v6","flows",":signFlowId","action"],"variable":[{"key":"signFlowId","value":"string"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"856e3a5a-1482-4087-b5f3-fc6207a766f1","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"FlowAction\": 0,\n  \"SenderKey\": {\n    \"Key\": \"sender@example.com\",\n    \"Type\": 1\n  },\n  \"UserKey\": {\n    \"Key\": \"sender@example.com\",\n    \"Type\": 1\n  },\n  \"IsRecover\": false,\n  \"SignerKey\": {\n    \"Key\": \"signer@example.com\",\n    \"Type\": 1\n  },\n  \"SignerIndex\": 0\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/flows/:signFlowId/action","host":["/"],"path":["v6","flows",":signFlowId","action"],"variable":[{"key":"signFlowId","value":"string"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"82036496-8b6f-4105-9dfb-408ad965550d","name":"Flow not found","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"FlowAction\": 0,\n  \"SenderKey\": {\n    \"Key\": \"sender@example.com\",\n    \"Type\": 1\n  },\n  \"UserKey\": {\n    \"Key\": \"sender@example.com\",\n    \"Type\": 1\n  },\n  \"IsRecover\": false,\n  \"SignerKey\": {\n    \"Key\": \"signer@example.com\",\n    \"Type\": 1\n  },\n  \"SignerIndex\": 0\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/flows/:signFlowId/action","host":["/"],"path":["v6","flows",":signFlowId","action"],"variable":[{"key":"signFlowId","value":"string"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"0fe94ce8-b6a4-4204-b36b-955f73de7d75","name":"Internal server error","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"FlowAction\": 0,\n  \"SenderKey\": {\n    \"Key\": \"sender@example.com\",\n    \"Type\": 1\n  },\n  \"UserKey\": {\n    \"Key\": \"sender@example.com\",\n    \"Type\": 1\n  },\n  \"IsRecover\": false,\n  \"SignerKey\": {\n    \"Key\": \"signer@example.com\",\n    \"Type\": 1\n  },\n  \"SignerIndex\": 0\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/flows/:signFlowId/action","host":["/"],"path":["v6","flows",":signFlowId","action"],"variable":[{"key":"signFlowId","value":"string"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"1972dc20-5081-482e-9aa8-ba7f4ca9ccd5"},{"name":"/v6/flows/:signFlowId","id":"11459fbc-f553-43f5-879f-a2b6fcfabcc9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Accept","value":"application/json"}],"url":"//v6/flows/:signFlowId","description":"<p>[V6] Get flow metadata by flow ID</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","flows",":signFlowId"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>The unique identifier (GUID) of the flow</p>\n","type":"text/plain"},"type":"any","value":"string","key":"signFlowId"}]}},"response":[{"id":"4ae4cad2-091c-41c7-8af1-d755c9ece3ad","name":"Flow metadata retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/flows/:signFlowId","host":["/"],"path":["v6","flows",":signFlowId"],"variable":[{"key":"signFlowId","value":"string","description":"The unique identifier (GUID) of the flow"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"FlowElements\": [\n    {\n      \"SignerKey\": {\n        \"Key\": \"c7ef3b76-f0fd-4041-81bb-55bb581ab7ac\",\n        \"Type\": 0\n      },\n      \"ElementType\": 0,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 21,\n        \"Left\": 3,\n        \"Width\": 115,\n        \"Height\": 38\n      },\n      \"IsEditorElement\": false,\n      \"TextSize\": 0,\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"SignerKey\": {\n        \"Key\": \"c7ef3b76-f0fd-4041-81bb-55bb581ab7ac\",\n        \"Type\": 0\n      },\n      \"ElementType\": 11,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 21,\n        \"Left\": 123,\n        \"Width\": 54,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextSize\": 10,\n      \"ElementLabel\": \"\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"SignerKey\": {\n        \"Key\": \"982dee72-99e7-4b3e-8920-e23982190e29\",\n        \"Type\": 0\n      },\n      \"ElementType\": 0,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 21,\n        \"Left\": 243,\n        \"Width\": 115,\n        \"Height\": 38\n      },\n      \"IsEditorElement\": false,\n      \"TextSize\": 0,\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    }\n  ]\n}"},{"id":"a3a2b210-0651-4a05-9214-aea17ecaee3e","name":"Invalid flow ID format","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/flows/:signFlowId","host":["/"],"path":["v6","flows",":signFlowId"],"variable":[{"key":"signFlowId","value":"string","description":"The unique identifier (GUID) of the flow"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"484ff645-17c2-4ed3-a9d4-9f7399f42eab","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/flows/:signFlowId","host":["/"],"path":["v6","flows",":signFlowId"],"variable":[{"key":"signFlowId","value":"string","description":"The unique identifier (GUID) of the flow"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"1b626b6c-e775-41c1-ad21-94a6151c6af0","name":"Flow not found","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/flows/:signFlowId","host":["/"],"path":["v6","flows",":signFlowId"],"variable":[{"key":"signFlowId","value":"string","description":"The unique identifier (GUID) of the flow"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"a6af0990-9d31-4e8f-828a-dc7f0061893a","name":"Internal server error","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/flows/:signFlowId","host":["/"],"path":["v6","flows",":signFlowId"],"variable":[{"key":"signFlowId","value":"string","description":"The unique identifier (GUID) of the flow"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"11459fbc-f553-43f5-879f-a2b6fcfabcc9"},{"name":"/v6/flows/searchstatus","id":"ed294ad6-927c-47ee-b133-c36333155882","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"SignFlowsIds\": [\n    \"1e304ccd-157c-47a0-9bbb-ba181c9232b2\",\n    \"7d19cadc-c712-4786-81fc-87efadc9e81c\",\n    \"6af074d7-6735-4579-a4f3-6dda1c4df4fc\",\n    \"e6c448a9-b1cc-4f44-903c-e6643a34160a\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/flows/searchstatus","description":"<p>[V6] Get the status of multiple flows by their IDs</p>\n<h2 id=\"json-object-description\">JSON object description:</h2>\n<hr />\n<h2 id=\"getflowsstatusrequest\">getFlowsStatusRequest:</h2>\n<h3 id=\"request-containing-an-array-of-flow-ids-guids-to-get-status-for-maximum-recommended-100-flow-ids-per-request\">Request containing an array of flow IDs (GUIDs) to get status for. Maximum recommended: 100 flow IDs per request.</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SignFlowsIds</td>\n<td>String[]</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","flows","searchstatus"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"201b56d5-e014-43c0-9778-2df462c8b4e7","name":"Flow statuses retrieved successfully","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"SignFlowsIds\": [\n    \"1e304ccd-157c-47a0-9bbb-ba181c9232b2\",\n    \"7d19cadc-c712-4786-81fc-87efadc9e81c\",\n    \"6af074d7-6735-4579-a4f3-6dda1c4df4fc\",\n    \"e6c448a9-b1cc-4f44-903c-e6643a34160a\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/flows/searchstatus"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"SignFlowId\": \"1e304ccd-157c-47a0-9bbb-ba181c9232b2\",\n    \"Status\": \"Open\"\n  },\n  {\n    \"SignFlowId\": \"6af074d7-6735-4579-a4f3-6dda1c4df4fc\",\n    \"Status\": \"Open\"\n  },\n  {\n    \"SignFlowId\": \"7d19cadc-c712-4786-81fc-87efadc9e81c\",\n    \"Status\": \"Open\"\n  },\n  {\n    \"SignFlowId\": \"e6c448a9-b1cc-4f44-903c-e6643a34160a\",\n    \"Status\": \"Open\"\n  }\n]"},{"id":"ecb9fd6f-c043-47fe-ae98-60e29a76bc11","name":"Invalid request - Empty array or invalid flow ID format","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"SignFlowsIds\": [\n    \"1e304ccd-157c-47a0-9bbb-ba181c9232b2\",\n    \"7d19cadc-c712-4786-81fc-87efadc9e81c\",\n    \"6af074d7-6735-4579-a4f3-6dda1c4df4fc\",\n    \"e6c448a9-b1cc-4f44-903c-e6643a34160a\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/flows/searchstatus"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"a935a0f7-a1c5-41fb-9cb8-9606aa9f3e27","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"SignFlowsIds\": [\n    \"1e304ccd-157c-47a0-9bbb-ba181c9232b2\",\n    \"7d19cadc-c712-4786-81fc-87efadc9e81c\",\n    \"6af074d7-6735-4579-a4f3-6dda1c4df4fc\",\n    \"e6c448a9-b1cc-4f44-903c-e6643a34160a\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/flows/searchstatus"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"71ba58b7-2499-4915-9de1-06b78c63a813","name":"Internal server error","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"SignFlowsIds\": [\n    \"1e304ccd-157c-47a0-9bbb-ba181c9232b2\",\n    \"7d19cadc-c712-4786-81fc-87efadc9e81c\",\n    \"6af074d7-6735-4579-a4f3-6dda1c4df4fc\",\n    \"e6c448a9-b1cc-4f44-903c-e6643a34160a\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/flows/searchstatus"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"ed294ad6-927c-47ee-b133-c36333155882"},{"name":"/v6/flows/:signFlowId/status","id":"f3198355-c1a0-4098-bb38-188f69c5c11a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Accept","value":"application/json"}],"url":"//v6/flows/:signFlowId/status","description":"<p>[V6] Get the status of a single flow by flow ID</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","flows",":signFlowId","status"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>The unique identifier (GUID) of the flow</p>\n","type":"text/plain"},"type":"any","value":"string","key":"signFlowId"}]}},"response":[{"id":"388072e5-8e98-416d-957d-ddf5361b2ea5","name":"Flow status retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/flows/:signFlowId/status","host":["/"],"path":["v6","flows",":signFlowId","status"],"variable":[{"key":"signFlowId","value":"string","description":"The unique identifier (GUID) of the flow"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"SignFlowId\": \"63656e37-a5db-4093-a1c3-b7ede6308a1c\",\n  \"Signers\": [\n    {\n      \"Name\": \"Marty Braun\",\n      \"Email\": \"marty@doxi.com\",\n      \"Phone\": \"0501234567\",\n      \"SendDate\": \"20/07/2021 11:19:14\",\n      \"Status\": \"Waiting for approval\",\n      \"EmailStatus\": 1,\n      \"SMSStatus\": 2,\n      \"IsViewedBySigner\": false\n    }\n  ],\n  \"Sender\": \"Ronen Rabinovitz\",\n  \"SenderEmail\": \"someuser@somedomain.com\",\n  \"CreateDate\": \"20/07/2021 11:17:48\",\n  \"Status\": \"Open\",\n  \"Description\": \"description\",\n  \"CustomFields\": [\n    {\n      \"Key\": \"SomeInnerSystemIdNumber\",\n      \"Value\": \"12345\"\n    }\n  ]\n}"},{"id":"9dbf6107-125d-4fae-b3c5-0a6c0327627e","name":"Invalid flow ID format","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/flows/:signFlowId/status","host":["/"],"path":["v6","flows",":signFlowId","status"],"variable":[{"key":"signFlowId","value":"string","description":"The unique identifier (GUID) of the flow"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"ea00ba1c-e2bb-427c-b10c-8cff66e06258","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/flows/:signFlowId/status","host":["/"],"path":["v6","flows",":signFlowId","status"],"variable":[{"key":"signFlowId","value":"string","description":"The unique identifier (GUID) of the flow"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"5305586d-59d5-4048-b547-d4db301d232f","name":"Flow not found","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/flows/:signFlowId/status","host":["/"],"path":["v6","flows",":signFlowId","status"],"variable":[{"key":"signFlowId","value":"string","description":"The unique identifier (GUID) of the flow"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"32848d06-dbd2-42c8-9ce1-6ebbdb1aeac7","name":"Internal server error","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/flows/:signFlowId/status","host":["/"],"path":["v6","flows",":signFlowId","status"],"variable":[{"key":"signFlowId","value":"string","description":"The unique identifier (GUID) of the flow"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"f3198355-c1a0-4098-bb38-188f69c5c11a"},{"name":"/v6/flows/:signFlowId/signatures","id":"7337103e-aa87-40a0-b68d-f4e57c8363bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"SignerKey\": {\n    \"Key\": \"signer@example.com\",\n    \"Type\": 1\n  },\n  \"SignAction\": 0,\n  \"SignImageBase64\": \"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNk+M9QDwADhgGAWjR9awAAAABJRU5ErkJggg==\",\n  \"BrowserDetails\": \"{\\\"userAgent\\\":\\\"Mozilla/5.0\\\",\\\"platform\\\":\\\"Win32\\\"}\",\n  \"IPAddress\": \"192.168.1.1\",\n  \"FlowElements\": [\n    {\n      \"ElementId\": \"550e8400-e29b-41d4-a716-446655440000\",\n      \"TextData\": \"John Doe\"\n    },\n    {\n      \"ElementId\": \"550e8400-e29b-41d4-a716-446655440001\",\n      \"TextData\": \"12345\"\n    }\n  ],\n  \"AttachedFiles\": [\n    \"a1b2c3d4-e5f6-7890-abcd-ef1234567890\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/flows/:signFlowId/signatures","description":"<p>[V6] Fill flow fields for one user (set signatures and form fields)</p>\n<hr />\n<h2 id=\"signflowid\">signFlowId:</h2>\n<h3 id=\"the-unique-identifier-guid-of-the-flow\">The unique identifier (GUID) of the flow</h3>\n<hr />\n<h2 id=\"exsetsignflowrequest\">exSetSignFlowRequest:</h2>\n<h3 id=\"request-containing-signature-elements-signature-positions-images-and-form-field-values-to-set-for-a-specific-user-must-include-the-users-participant-key\">Request containing signature elements (signature positions, images) and form field values to set for a specific user. Must include the user's participant key.</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* SignerKey</td>\n<td><em><strong>ParticipantKey</strong></em></td>\n<td>The Signer that need to do the action</td>\n</tr>\n<tr>\n<td>DeclineComments</td>\n<td>String(4000)</td>\n<td>Only requerd in Decline action (signAction=1)</td>\n</tr>\n<tr>\n<td>SignAction</td>\n<td><em><strong>SignAction</strong></em></td>\n<td>The action that need to do</td>\n</tr>\n<tr>\n<td>SignImageBase64</td>\n<td>String</td>\n<td>Base-64 image of the signature - Only in Sign action (signAction=0)</td>\n</tr>\n<tr>\n<td>BrowserDetails</td>\n<td>String</td>\n<td>Base-64 of the JSON of the browsers that signed (for record on the signature metadata) - Only in Sign action (signAction=0)</td>\n</tr>\n<tr>\n<td>IPAddress</td>\n<td>String</td>\n<td>IP address of the signer that sign the document</td>\n</tr>\n<tr>\n<td>FlowElements</td>\n<td><em><strong>FlowElementData[]</strong></em></td>\n<td>Elements that need to fill with signer value - Only in Sign action (signAction=0/2)</td>\n</tr>\n<tr>\n<td>AttachedFiles</td>\n<td>String[]</td>\n<td>File IDs (Use method ex/flow/:signFlowId/attachments)</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"flowelementdata\">FlowElementData:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* ElementId</td>\n<td>String Validation: Invalid GUID format</td>\n<td>Element ID</td>\n</tr>\n<tr>\n<td>TextData</td>\n<td>String(4000)</td>\n<td>Value of the field</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"signaction\">SignAction:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Approve</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Decline</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Save</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"participantkey\">ParticipantKey:</h3>\n<h3 id=\"allow-to-locate-doxi-user-byuseremail1userphone2\">Allow to locate Doxi user by:UserEmail=1UserPhone=2</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* Key</td>\n<td>String</td>\n<td>User search value</td>\n</tr>\n<tr>\n<td>Type</td>\n<td><em><strong>ParticipantKeyType</strong></em></td>\n<td>Search type:UserEmail=1,UserPhone=2</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"participantkeytype\">ParticipantKeyType:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>UserId</td>\n</tr>\n<tr>\n<td>1</td>\n<td>UserEmail</td>\n</tr>\n<tr>\n<td>2</td>\n<td>UserPhone</td>\n</tr>\n<tr>\n<td>3</td>\n<td>UserName</td>\n</tr>\n<tr>\n<td>4</td>\n<td>GroupId</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","flows",":signFlowId","signatures"],"host":["/"],"query":[],"variable":[{"type":"any","value":"string","key":"signFlowId"}]}},"response":[{"id":"9dd9d6e8-f884-4b08-85e2-9926678845f6","name":"Signatures and form fields set successfully","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"SignerKey\": {\n    \"Key\": \"signer@example.com\",\n    \"Type\": 1\n  },\n  \"SignAction\": 0,\n  \"SignImageBase64\": \"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNk+M9QDwADhgGAWjR9awAAAABJRU5ErkJggg==\",\n  \"BrowserDetails\": \"{\\\"userAgent\\\":\\\"Mozilla/5.0\\\",\\\"platform\\\":\\\"Win32\\\"}\",\n  \"IPAddress\": \"192.168.1.1\",\n  \"FlowElements\": [\n    {\n      \"ElementId\": \"550e8400-e29b-41d4-a716-446655440000\",\n      \"TextData\": \"John Doe\"\n    },\n    {\n      \"ElementId\": \"550e8400-e29b-41d4-a716-446655440001\",\n      \"TextData\": \"12345\"\n    }\n  ],\n  \"AttachedFiles\": [\n    \"a1b2c3d4-e5f6-7890-abcd-ef1234567890\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/flows/:signFlowId/signatures","host":["/"],"path":["v6","flows",":signFlowId","signatures"],"variable":[{"key":"signFlowId","value":"string"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"6d56f980-2783-4013-8d6f-74632f40235b","name":"Invalid flow ID format or invalid signature/form field data","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"SignerKey\": {\n    \"Key\": \"signer@example.com\",\n    \"Type\": 1\n  },\n  \"SignAction\": 0,\n  \"SignImageBase64\": \"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNk+M9QDwADhgGAWjR9awAAAABJRU5ErkJggg==\",\n  \"BrowserDetails\": \"{\\\"userAgent\\\":\\\"Mozilla/5.0\\\",\\\"platform\\\":\\\"Win32\\\"}\",\n  \"IPAddress\": \"192.168.1.1\",\n  \"FlowElements\": [\n    {\n      \"ElementId\": \"550e8400-e29b-41d4-a716-446655440000\",\n      \"TextData\": \"John Doe\"\n    },\n    {\n      \"ElementId\": \"550e8400-e29b-41d4-a716-446655440001\",\n      \"TextData\": \"12345\"\n    }\n  ],\n  \"AttachedFiles\": [\n    \"a1b2c3d4-e5f6-7890-abcd-ef1234567890\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/flows/:signFlowId/signatures","host":["/"],"path":["v6","flows",":signFlowId","signatures"],"variable":[{"key":"signFlowId","value":"string"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"7333dfb3-978c-4413-8e88-23d4e629b153","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"SignerKey\": {\n    \"Key\": \"signer@example.com\",\n    \"Type\": 1\n  },\n  \"SignAction\": 0,\n  \"SignImageBase64\": \"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNk+M9QDwADhgGAWjR9awAAAABJRU5ErkJggg==\",\n  \"BrowserDetails\": \"{\\\"userAgent\\\":\\\"Mozilla/5.0\\\",\\\"platform\\\":\\\"Win32\\\"}\",\n  \"IPAddress\": \"192.168.1.1\",\n  \"FlowElements\": [\n    {\n      \"ElementId\": \"550e8400-e29b-41d4-a716-446655440000\",\n      \"TextData\": \"John Doe\"\n    },\n    {\n      \"ElementId\": \"550e8400-e29b-41d4-a716-446655440001\",\n      \"TextData\": \"12345\"\n    }\n  ],\n  \"AttachedFiles\": [\n    \"a1b2c3d4-e5f6-7890-abcd-ef1234567890\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/flows/:signFlowId/signatures","host":["/"],"path":["v6","flows",":signFlowId","signatures"],"variable":[{"key":"signFlowId","value":"string"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"d2cf7933-cd65-4f82-bbd0-be1a17e5eef1","name":"Flow not found or user not found in flow","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"SignerKey\": {\n    \"Key\": \"signer@example.com\",\n    \"Type\": 1\n  },\n  \"SignAction\": 0,\n  \"SignImageBase64\": \"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNk+M9QDwADhgGAWjR9awAAAABJRU5ErkJggg==\",\n  \"BrowserDetails\": \"{\\\"userAgent\\\":\\\"Mozilla/5.0\\\",\\\"platform\\\":\\\"Win32\\\"}\",\n  \"IPAddress\": \"192.168.1.1\",\n  \"FlowElements\": [\n    {\n      \"ElementId\": \"550e8400-e29b-41d4-a716-446655440000\",\n      \"TextData\": \"John Doe\"\n    },\n    {\n      \"ElementId\": \"550e8400-e29b-41d4-a716-446655440001\",\n      \"TextData\": \"12345\"\n    }\n  ],\n  \"AttachedFiles\": [\n    \"a1b2c3d4-e5f6-7890-abcd-ef1234567890\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/flows/:signFlowId/signatures","host":["/"],"path":["v6","flows",":signFlowId","signatures"],"variable":[{"key":"signFlowId","value":"string"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"eae82c53-6a28-4b05-be4c-92213e5d432b","name":"Internal server error","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"SignerKey\": {\n    \"Key\": \"signer@example.com\",\n    \"Type\": 1\n  },\n  \"SignAction\": 0,\n  \"SignImageBase64\": \"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNk+M9QDwADhgGAWjR9awAAAABJRU5ErkJggg==\",\n  \"BrowserDetails\": \"{\\\"userAgent\\\":\\\"Mozilla/5.0\\\",\\\"platform\\\":\\\"Win32\\\"}\",\n  \"IPAddress\": \"192.168.1.1\",\n  \"FlowElements\": [\n    {\n      \"ElementId\": \"550e8400-e29b-41d4-a716-446655440000\",\n      \"TextData\": \"John Doe\"\n    },\n    {\n      \"ElementId\": \"550e8400-e29b-41d4-a716-446655440001\",\n      \"TextData\": \"12345\"\n    }\n  ],\n  \"AttachedFiles\": [\n    \"a1b2c3d4-e5f6-7890-abcd-ef1234567890\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/flows/:signFlowId/signatures","host":["/"],"path":["v6","flows",":signFlowId","signatures"],"variable":[{"key":"signFlowId","value":"string"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"7337103e-aa87-40a0-b68d-f4e57c8363bf"},{"name":"/v6/flows/replace-signer","id":"3e0a0886-734c-47e7-ad78-0a188e1c0386","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"CurrentSignerKey\": {\n    \"Key\": \"old-signer@example.com\",\n    \"Type\": 1\n  },\n  \"NewtSigner\": {\n    \"UserKey\": {\n      \"Key\": \"new-signer@example.com\",\n      \"Type\": 1\n    },\n    \"Email\": \"new-signer@example.com\",\n    \"FirstName\": \"Jane\",\n    \"LastName\": \"Smith\"\n  },\n  \"signFlowsId\": [\n    \"1909058d-f59b-42b2-9994-20fbfb154d63\",\n    \"47cc68a6-4a2b-417b-9f64-60f85258ac3d\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/flows/replace-signer","description":"<p>[V6] Replace a signer in a flow with a new signer</p>\n<h2 id=\"json-object-description\">JSON object description:</h2>\n<hr />\n<h2 id=\"exreplacesignerrequest\">exReplaceSignerRequest:</h2>\n<h3 id=\"request-containing-the-flow-id-old-signer-information-participant-key-and-new-signer-information-participant-key-and-optional-details\">Request containing the flow ID, old signer information (participant key), and new signer information (participant key and optional details)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CurrentSignerKey</td>\n<td><em><strong>ParticipantKey</strong></em></td>\n<td>Old signer referense key</td>\n</tr>\n<tr>\n<td>NewtSigner</td>\n<td><em><strong>ExUser</strong></em></td>\n<td>New signer data</td>\n</tr>\n<tr>\n<td>signFlowsId</td>\n<td>String[]</td>\n<td>List of flows that need to be replace to the new signer</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exuser\">ExUser:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* UserKey</td>\n<td><em><strong>ParticipantKey</strong></em></td>\n<td>Id of user</td>\n</tr>\n<tr>\n<td>Email</td>\n<td>String(77)</td>\n<td>Email of user</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td>String(50)</td>\n<td>First name of user</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td>String(50)</td>\n<td>Last name of user</td>\n</tr>\n<tr>\n<td>SmsPhoneNumber</td>\n<td>String(80)</td>\n<td>Phone Number of user (if empty, the user will not receive sms)</td>\n</tr>\n<tr>\n<td>UserPassword</td>\n<td>String Validation: Only letters, numbers, and special characters are allowed.</td>\n<td>Password for opening the sign link</td>\n</tr>\n<tr>\n<td>Company</td>\n<td>String(80)</td>\n<td>Company name of user</td>\n</tr>\n<tr>\n<td>Title</td>\n<td>String(80)</td>\n<td>Title of user</td>\n</tr>\n<tr>\n<td>IsDisableAttachment</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Disable/Enable add attachments to the flow</td>\n</tr>\n<tr>\n<td>IsSuspended</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Set status flow to suspended when the signer need to sign</td>\n</tr>\n<tr>\n<td>IsNoDecline</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Disable/Endable Decline option in flow</td>\n</tr>\n<tr>\n<td>NotificationMailsToSend</td>\n<td><em><strong>NotificationMails[]</strong></em></td>\n<td>Types of email notifications</td>\n</tr>\n<tr>\n<td>MinimumSignatures</td>\n<td>Nullable&lt;Int32&gt;</td>\n<td>When the user have optional signature element - Dox validate the minimum signatures in the document</td>\n</tr>\n<tr>\n<td>ForceApprovalOnSignature</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Force approval on signature</td>\n</tr>\n<tr>\n<td>PersonalMessage</td>\n<td>String(300) Validation: The field cannot contain script, vbscript, or style tags.</td>\n<td>Personal message to the signer</td>\n</tr>\n<tr>\n<td>UserPasswordDescription</td>\n<td><em><strong>LanguageKey[]</strong></em></td>\n<td>Display when the user open the linkfor example: \"Please enter your social security number\"LanguageKey is the message with all supported languages</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"languagekey\">LanguageKey:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Language</td>\n<td>String</td>\n<td>language : 'en-US','he-IL'</td>\n</tr>\n<tr>\n<td>Value</td>\n<td>String</td>\n<td>Value of text</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"notificationmails\">NotificationMails[]:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>All</td>\n</tr>\n<tr>\n<td>1</td>\n<td>None</td>\n</tr>\n<tr>\n<td>2</td>\n<td>SignFlow</td>\n</tr>\n<tr>\n<td>3</td>\n<td>FlowApproved</td>\n</tr>\n<tr>\n<td>4</td>\n<td>FlowDeclined</td>\n</tr>\n<tr>\n<td>5</td>\n<td>FlowStart</td>\n</tr>\n<tr>\n<td>6</td>\n<td>ReminderToSignFlow</td>\n</tr>\n<tr>\n<td>7</td>\n<td>FlowStoppedToSender</td>\n</tr>\n<tr>\n<td>8</td>\n<td>FlowStoppedToSigner</td>\n</tr>\n<tr>\n<td>9</td>\n<td>KitCompleted</td>\n</tr>\n<tr>\n<td>10</td>\n<td>SignKit</td>\n</tr>\n<tr>\n<td>11</td>\n<td>ReminderToSignKit</td>\n</tr>\n<tr>\n<td>12</td>\n<td>KitCreated</td>\n</tr>\n<tr>\n<td>13</td>\n<td>FlowExpired</td>\n</tr>\n<tr>\n<td>14</td>\n<td>FlowCCApproved</td>\n</tr>\n<tr>\n<td>15</td>\n<td>FlowCCDeclined</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"participantkey\">ParticipantKey:</h3>\n<h3 id=\"allow-to-locate-doxi-user-byuseremail1userphone2\">Allow to locate Doxi user by:UserEmail=1UserPhone=2</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* Key</td>\n<td>String</td>\n<td>User search value</td>\n</tr>\n<tr>\n<td>Type</td>\n<td><em><strong>ParticipantKeyType</strong></em></td>\n<td>Search type:UserEmail=1,UserPhone=2</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"participantkeytype\">ParticipantKeyType:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>UserId</td>\n</tr>\n<tr>\n<td>1</td>\n<td>UserEmail</td>\n</tr>\n<tr>\n<td>2</td>\n<td>UserPhone</td>\n</tr>\n<tr>\n<td>3</td>\n<td>UserName</td>\n</tr>\n<tr>\n<td>4</td>\n<td>GroupId</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","flows","replace-signer"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"056af628-6dbe-4ae0-9d17-83101d4cb2ac","name":"Signer replaced successfully","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"CurrentSignerKey\": {\n    \"Key\": \"old-signer@example.com\",\n    \"Type\": 1\n  },\n  \"NewtSigner\": {\n    \"UserKey\": {\n      \"Key\": \"new-signer@example.com\",\n      \"Type\": 1\n    },\n    \"Email\": \"new-signer@example.com\",\n    \"FirstName\": \"Jane\",\n    \"LastName\": \"Smith\"\n  },\n  \"signFlowsId\": [\n    \"1909058d-f59b-42b2-9994-20fbfb154d63\",\n    \"47cc68a6-4a2b-417b-9f64-60f85258ac3d\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/flows/replace-signer"},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"7776a583-eb74-4225-a6de-ad7c48b3d039","name":"Invalid request - Flow ID, old signer, or new signer information is invalid","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"CurrentSignerKey\": {\n    \"Key\": \"old-signer@example.com\",\n    \"Type\": 1\n  },\n  \"NewtSigner\": {\n    \"UserKey\": {\n      \"Key\": \"new-signer@example.com\",\n      \"Type\": 1\n    },\n    \"Email\": \"new-signer@example.com\",\n    \"FirstName\": \"Jane\",\n    \"LastName\": \"Smith\"\n  },\n  \"signFlowsId\": [\n    \"1909058d-f59b-42b2-9994-20fbfb154d63\",\n    \"47cc68a6-4a2b-417b-9f64-60f85258ac3d\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/flows/replace-signer"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"9e30c6ec-bd6d-40bf-96fe-33a99166f113","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"CurrentSignerKey\": {\n    \"Key\": \"old-signer@example.com\",\n    \"Type\": 1\n  },\n  \"NewtSigner\": {\n    \"UserKey\": {\n      \"Key\": \"new-signer@example.com\",\n      \"Type\": 1\n    },\n    \"Email\": \"new-signer@example.com\",\n    \"FirstName\": \"Jane\",\n    \"LastName\": \"Smith\"\n  },\n  \"signFlowsId\": [\n    \"1909058d-f59b-42b2-9994-20fbfb154d63\",\n    \"47cc68a6-4a2b-417b-9f64-60f85258ac3d\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/flows/replace-signer"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"77646c43-3a6a-4639-90e2-41a92fc15250","name":"Flow not found or old signer not found in flow","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"CurrentSignerKey\": {\n    \"Key\": \"old-signer@example.com\",\n    \"Type\": 1\n  },\n  \"NewtSigner\": {\n    \"UserKey\": {\n      \"Key\": \"new-signer@example.com\",\n      \"Type\": 1\n    },\n    \"Email\": \"new-signer@example.com\",\n    \"FirstName\": \"Jane\",\n    \"LastName\": \"Smith\"\n  },\n  \"signFlowsId\": [\n    \"1909058d-f59b-42b2-9994-20fbfb154d63\",\n    \"47cc68a6-4a2b-417b-9f64-60f85258ac3d\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/flows/replace-signer"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"b38e99ac-bed3-4c55-8b22-3a6032e416e9","name":"Internal server error","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"CurrentSignerKey\": {\n    \"Key\": \"old-signer@example.com\",\n    \"Type\": 1\n  },\n  \"NewtSigner\": {\n    \"UserKey\": {\n      \"Key\": \"new-signer@example.com\",\n      \"Type\": 1\n    },\n    \"Email\": \"new-signer@example.com\",\n    \"FirstName\": \"Jane\",\n    \"LastName\": \"Smith\"\n  },\n  \"signFlowsId\": [\n    \"1909058d-f59b-42b2-9994-20fbfb154d63\",\n    \"47cc68a6-4a2b-417b-9f64-60f85258ac3d\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/flows/replace-signer"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"3e0a0886-734c-47e7-ad78-0a188e1c0386"},{"name":"/v6/flows/:signFlowId/sign-url","id":"d0000843-2ede-4d2a-9218-803f07e091dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"SignerKey\": {\n    \"Key\": \"signer@example.com\",\n    \"Type\": 1\n  },\n  \"IsShortenUrl\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/flows/:signFlowId/sign-url","description":"<p>[V6] Get sign URL for a user to access the flow signing page</p>\n<hr />\n<h2 id=\"signflowid\">signFlowId:</h2>\n<h3 id=\"the-unique-identifier-guid-of-the-flow\">The unique identifier (GUID) of the flow</h3>\n<hr />\n<h2 id=\"signurlrequest\">signUrlRequest:</h2>\n<h3 id=\"request-containing-user-key-information-participant-key-with-type-and-value-to-generate-the-sign-url-the-user-must-be-a-participant-in-the-flow\">Request containing user key information (participant key with type and value) to generate the sign URL. The user must be a participant in the flow.</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SignerKey</td>\n<td><em><strong>ParticipantKey</strong></em></td>\n<td>Represents the signer to whom the URLs belong.</td>\n</tr>\n<tr>\n<td>IsShortenUrl</td>\n<td>Boolean</td>\n<td>Indicates whether to retrieve the shortened URL or the full URL.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"participantkey\">ParticipantKey:</h3>\n<h3 id=\"allow-to-locate-doxi-user-byuseremail1userphone2\">Allow to locate Doxi user by:UserEmail=1UserPhone=2</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* Key</td>\n<td>String</td>\n<td>User search value</td>\n</tr>\n<tr>\n<td>Type</td>\n<td><em><strong>ParticipantKeyType</strong></em></td>\n<td>Search type:UserEmail=1,UserPhone=2</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"participantkeytype\">ParticipantKeyType:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>UserId</td>\n</tr>\n<tr>\n<td>1</td>\n<td>UserEmail</td>\n</tr>\n<tr>\n<td>2</td>\n<td>UserPhone</td>\n</tr>\n<tr>\n<td>3</td>\n<td>UserName</td>\n</tr>\n<tr>\n<td>4</td>\n<td>GroupId</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","flows",":signFlowId","sign-url"],"host":["/"],"query":[],"variable":[{"type":"any","value":"string","key":"signFlowId"}]}},"response":[{"id":"ee88281f-00a9-4fbe-8b68-a33883174954","name":"Sign URL generated successfully","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"SignerKey\": {\n    \"Key\": \"signer@example.com\",\n    \"Type\": 1\n  },\n  \"IsShortenUrl\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/flows/:signFlowId/sign-url","host":["/"],"path":["v6","flows",":signFlowId","sign-url"],"variable":[{"key":"signFlowId","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Url\": \"https://doxi-sign.com/mycompany/doxisign/sign/1909058d-f59b-42b2-9994-20fbfb154d63/0XyVpZxuN0dI2Bb0ORB4bg%253d%253d\"\n}"},{"id":"7cc1aa1a-7752-4ddb-b880-659d2c4b9d14","name":"Invalid flow ID format or invalid user key","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"SignerKey\": {\n    \"Key\": \"signer@example.com\",\n    \"Type\": 1\n  },\n  \"IsShortenUrl\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/flows/:signFlowId/sign-url","host":["/"],"path":["v6","flows",":signFlowId","sign-url"],"variable":[{"key":"signFlowId","value":"string"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"6a9b24c4-fd4c-4656-8a23-be08c6df119e","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"SignerKey\": {\n    \"Key\": \"signer@example.com\",\n    \"Type\": 1\n  },\n  \"IsShortenUrl\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/flows/:signFlowId/sign-url","host":["/"],"path":["v6","flows",":signFlowId","sign-url"],"variable":[{"key":"signFlowId","value":"string"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"dd0d814b-c9b2-4956-91e5-33da5f287c9f","name":"Flow not found or user not found in flow","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"SignerKey\": {\n    \"Key\": \"signer@example.com\",\n    \"Type\": 1\n  },\n  \"IsShortenUrl\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/flows/:signFlowId/sign-url","host":["/"],"path":["v6","flows",":signFlowId","sign-url"],"variable":[{"key":"signFlowId","value":"string"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"e41e78b4-bb0d-4ba2-9feb-14ee3e624932","name":"Internal server error","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"SignerKey\": {\n    \"Key\": \"signer@example.com\",\n    \"Type\": 1\n  },\n  \"IsShortenUrl\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/flows/:signFlowId/sign-url","host":["/"],"path":["v6","flows",":signFlowId","sign-url"],"variable":[{"key":"signFlowId","value":"string"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"d0000843-2ede-4d2a-9218-803f07e091dc"}],"id":"ec7b6fe6-06f3-4989-9169-16d89dddf955","_postman_id":"ec7b6fe6-06f3-4989-9169-16d89dddf955","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}}},{"name":"Template","item":[{"name":"/v6/templates/:templateId/flow","id":"d100354d-ff65-451f-8396-99d33ad0d6ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"Description\": \"Create flow from template example\",\n  \"SenderKey\": {\n    \"Key\": \"doxiUser\",\n    \"Type\": 3\n  },\n  \"CustomFields\": [\n    {\n      \"Key\": \"SomeInnerSystemIdNumber\",\n      \"Value\": \"12345\"\n    }\n  ],\n  \"Users\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"marty@doxi.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"marty@doxi.com\",\n      \"FirstName\": \"Marty\",\n      \"LastName\": \"Braun\",\n      \"SmsPhoneNumber\": \"0501234567\",\n      \"UserPassword\": \"0018\",\n      \"IsDisplayDownloadDocument\": false,\n      \"IsDisableAttachment\": false\n    }\n  ],\n  \"Recipients\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"david@doxi.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"david@doxi.com\",\n      \"FirstName\": \"David\",\n      \"LastName\": \"White\"\n    }\n  ],\n  \"IsNoSend\": false,\n  \"IsNoNotificationMails\": false,\n  \"ReadOnlyFields\": [\n    {\n      \"SignerEmail\": \"marty@doxi.com\",\n      \"ElementLabel\": \"IDNumberField\",\n      \"Value\": \"028654438\",\n      \"TextSize\": 10,\n      \"TextFont\": \"Times New Roman\"\n    }\n  ],\n  \"IsSendApprovalMailToAllSigners\": true,\n  \"PreliminaryText\": \"Please fill this form\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/templates/:templateId/flow","description":"<p>[V6] Create new signature flow from an existing template</p>\n<hr />\n<h2 id=\"templateid\">templateId:</h2>\n<h3 id=\"the-unique-identifier-guid-of-the-template-to-use-as-the-basis-for-the-new-flow\">The unique identifier (GUID) of the template to use as the basis for the new flow</h3>\n<hr />\n<h2 id=\"createflowfromtemplaterequest\">createFlowFromTemplateRequest:</h2>\n<h3 id=\"request-containing-flow-configuration-including-signers-custom-fields-and-participant-information-the-templates-document-and-signature-elements-will-be-used\">Request containing flow configuration including signers, custom fields, and participant information. The template's document and signature elements will be used.</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* Description</td>\n<td>String</td>\n<td>The description/name of the flow</td>\n</tr>\n<tr>\n<td>* SenderKey</td>\n<td><em><strong>ParticipantKey</strong></em></td>\n<td>Id of the Sender</td>\n</tr>\n<tr>\n<td>CustomFields</td>\n<td>KeyValuePair&lt;String,String&gt;[]</td>\n<td>Add additional data in the flow</td>\n</tr>\n<tr>\n<td>Users</td>\n<td><em><strong>ExUser[]</strong></em></td>\n<td>The changable users of the flow</td>\n</tr>\n<tr>\n<td>PermanentSignersSettings</td>\n<td><em><strong>ExPermanentSignerSettings[]</strong></em></td>\n<td>Additional settings for permanent signers</td>\n</tr>\n<tr>\n<td>Recipients</td>\n<td><em><strong>ExUser[]</strong></em></td>\n<td>All the CC users of the flow</td>\n</tr>\n<tr>\n<td>IsNoSend</td>\n<td>Boolean</td>\n<td>Disable/Enable receive emails of the flow</td>\n</tr>\n<tr>\n<td>ReadOnlyFields</td>\n<td><em><strong>ReadOnlyField[]</strong></em></td>\n<td>Elements with readonly value (the signer can't change the value)</td>\n</tr>\n<tr>\n<td>PackageId</td>\n<td>String</td>\n<td>Id of the package (the flow will be assigned to package)</td>\n</tr>\n<tr>\n<td>PackageName</td>\n<td>String</td>\n<td>Name of the package</td>\n</tr>\n<tr>\n<td>SenderNotificationMailsToSend</td>\n<td><em><strong>NotificationMails[]</strong></em></td>\n<td>Types of emails notification (for the sender and CC),Allowed values: 0,1,3,4,5,7,9,12,13,14,15</td>\n</tr>\n<tr>\n<td>IsAutomaticRemainder</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Enable/Disable send automatic remainder</td>\n</tr>\n<tr>\n<td>DayesForAutomaticRemainder</td>\n<td>Nullable&lt;Int32&gt;</td>\n<td>Number of the days for getting automatic remainder</td>\n</tr>\n<tr>\n<td>IsSendApprovalMailToAllSigners</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Enabled/Diabaled send email to all signers (when the flow approved)</td>\n</tr>\n<tr>\n<td>PreliminaryText</td>\n<td>String</td>\n<td>Preliminary text of the flow (display only in side by side mode)</td>\n</tr>\n<tr>\n<td>SignFlowDescriptionMessage</td>\n<td>String</td>\n<td>Description of the document in the email</td>\n</tr>\n<tr>\n<td>DisableSBS</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Disable/Enable dispaly side by side mode in the flow</td>\n</tr>\n<tr>\n<td>FlowTwoFactorEnabled</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Enable/Disable Two Factor on the flow</td>\n</tr>\n<tr>\n<td>SignersIndexToRemove</td>\n<td>Int32[]</td>\n<td>The index of the signer to remove from the flow (The first index is one)</td>\n</tr>\n<tr>\n<td>FlowExpirationDate</td>\n<td>Nullable&lt;DateTime&gt;</td>\n<td>Expiration date of the flow</td>\n</tr>\n<tr>\n<td>KitId</td>\n<td>String</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"readonlyfield\">ReadOnlyField:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* ElementLabel</td>\n<td>String</td>\n<td>Label of element</td>\n</tr>\n<tr>\n<td>Value</td>\n<td>String</td>\n<td>Value of element</td>\n</tr>\n<tr>\n<td>TextSize</td>\n<td>Int32</td>\n<td>Size ot element text</td>\n</tr>\n<tr>\n<td>TextFont</td>\n<td>String</td>\n<td>Font of element text</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"expermanentsignersettings\">ExPermanentSignerSettings:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* SignerIndex</td>\n<td>Int32</td>\n<td>The index of the signer in the template, starting from 0.</td>\n</tr>\n<tr>\n<td>EnableAdditionalMessageDelivery</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Indicates whether the signing link should be sent via additional messaging channels(e.g., SMS or WhatsApp) in addition to email.</td>\n</tr>\n<tr>\n<td>IsDisableAttachment</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Disable/Enable add attachments to the flow</td>\n</tr>\n<tr>\n<td>IsSuspended</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Set status flow to suspended when the signer need to sign</td>\n</tr>\n<tr>\n<td>IsNoDecline</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Disable/Endable Decline option in flow</td>\n</tr>\n<tr>\n<td>NotificationMailsToSend</td>\n<td><em><strong>NotificationMails[]</strong></em></td>\n<td>Types of email notifications</td>\n</tr>\n<tr>\n<td>MinimumSignatures</td>\n<td>Nullable&lt;Int32&gt;</td>\n<td>When the user have optional signature element - Dox validate the minimum signatures in the document</td>\n</tr>\n<tr>\n<td>ForceApprovalOnSignature</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Force approval on signature</td>\n</tr>\n<tr>\n<td>PersonalMessage</td>\n<td>String(300) Validation: The field cannot contain script, vbscript, or style tags.</td>\n<td>Personal message to the signer</td>\n</tr>\n<tr>\n<td>UserPasswordDescription</td>\n<td><em><strong>LanguageKey[]</strong></em></td>\n<td>Display when the user open the linkfor example: \"Please enter your social security number\"LanguageKey is the message with all supported languages</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exuser\">ExUser:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* UserKey</td>\n<td><em><strong>ParticipantKey</strong></em></td>\n<td>Id of user</td>\n</tr>\n<tr>\n<td>Email</td>\n<td>String(77)</td>\n<td>Email of user</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td>String(50)</td>\n<td>First name of user</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td>String(50)</td>\n<td>Last name of user</td>\n</tr>\n<tr>\n<td>SmsPhoneNumber</td>\n<td>String(80)</td>\n<td>Phone Number of user (if empty, the user will not receive sms)</td>\n</tr>\n<tr>\n<td>UserPassword</td>\n<td>String Validation: Only letters, numbers, and special characters are allowed.</td>\n<td>Password for opening the sign link</td>\n</tr>\n<tr>\n<td>Company</td>\n<td>String(80)</td>\n<td>Company name of user</td>\n</tr>\n<tr>\n<td>Title</td>\n<td>String(80)</td>\n<td>Title of user</td>\n</tr>\n<tr>\n<td>IsDisableAttachment</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Disable/Enable add attachments to the flow</td>\n</tr>\n<tr>\n<td>IsSuspended</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Set status flow to suspended when the signer need to sign</td>\n</tr>\n<tr>\n<td>IsNoDecline</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Disable/Endable Decline option in flow</td>\n</tr>\n<tr>\n<td>NotificationMailsToSend</td>\n<td><em><strong>NotificationMails[]</strong></em></td>\n<td>Types of email notifications</td>\n</tr>\n<tr>\n<td>MinimumSignatures</td>\n<td>Nullable&lt;Int32&gt;</td>\n<td>When the user have optional signature element - Dox validate the minimum signatures in the document</td>\n</tr>\n<tr>\n<td>ForceApprovalOnSignature</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Force approval on signature</td>\n</tr>\n<tr>\n<td>PersonalMessage</td>\n<td>String(300) Validation: The field cannot contain script, vbscript, or style tags.</td>\n<td>Personal message to the signer</td>\n</tr>\n<tr>\n<td>UserPasswordDescription</td>\n<td><em><strong>LanguageKey[]</strong></em></td>\n<td>Display when the user open the linkfor example: \"Please enter your social security number\"LanguageKey is the message with all supported languages</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"languagekey\">LanguageKey:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Language</td>\n<td>String</td>\n<td>language : 'en-US','he-IL'</td>\n</tr>\n<tr>\n<td>Value</td>\n<td>String</td>\n<td>Value of text</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"notificationmails\">NotificationMails[]:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>All</td>\n</tr>\n<tr>\n<td>1</td>\n<td>None</td>\n</tr>\n<tr>\n<td>2</td>\n<td>SignFlow</td>\n</tr>\n<tr>\n<td>3</td>\n<td>FlowApproved</td>\n</tr>\n<tr>\n<td>4</td>\n<td>FlowDeclined</td>\n</tr>\n<tr>\n<td>5</td>\n<td>FlowStart</td>\n</tr>\n<tr>\n<td>6</td>\n<td>ReminderToSignFlow</td>\n</tr>\n<tr>\n<td>7</td>\n<td>FlowStoppedToSender</td>\n</tr>\n<tr>\n<td>8</td>\n<td>FlowStoppedToSigner</td>\n</tr>\n<tr>\n<td>9</td>\n<td>KitCompleted</td>\n</tr>\n<tr>\n<td>10</td>\n<td>SignKit</td>\n</tr>\n<tr>\n<td>11</td>\n<td>ReminderToSignKit</td>\n</tr>\n<tr>\n<td>12</td>\n<td>KitCreated</td>\n</tr>\n<tr>\n<td>13</td>\n<td>FlowExpired</td>\n</tr>\n<tr>\n<td>14</td>\n<td>FlowCCApproved</td>\n</tr>\n<tr>\n<td>15</td>\n<td>FlowCCDeclined</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"participantkey\">ParticipantKey:</h3>\n<h3 id=\"allow-to-locate-doxi-user-byuseremail1userphone2\">Allow to locate Doxi user by:UserEmail=1UserPhone=2</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* Key</td>\n<td>String</td>\n<td>User search value</td>\n</tr>\n<tr>\n<td>Type</td>\n<td><em><strong>ParticipantKeyType</strong></em></td>\n<td>Search type:UserEmail=1,UserPhone=2</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"participantkeytype\">ParticipantKeyType:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>UserId</td>\n</tr>\n<tr>\n<td>1</td>\n<td>UserEmail</td>\n</tr>\n<tr>\n<td>2</td>\n<td>UserPhone</td>\n</tr>\n<tr>\n<td>3</td>\n<td>UserName</td>\n</tr>\n<tr>\n<td>4</td>\n<td>GroupId</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","templates",":templateId","flow"],"host":["/"],"query":[],"variable":[{"type":"any","value":"string","key":"templateId"}]}},"response":[{"id":"8c7e5a9f-6d78-4c6b-9f48-d4e28cc19a8f","name":"Flow created successfully from template","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"TemplateId\": \"d583e9e1-3633-420a-aa45-793b4653bac1\",\n  \"Description\": \"Create flow from template example\",\n  \"SenderKey\": {\n    \"Key\": \"doxiUser\",\n    \"Type\": 3\n  },\n  \"CustomFields\": [\n    {\n      \"Key\": \"SomeInnerSystemIdNumber\",\n      \"Value\": \"12345\"\n    }\n  ],\n  \"Users\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"marty@doxi.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"marty@doxi.com\",\n      \"FirstName\": \"Marty\",\n      \"LastName\": \"Braun\",\n      \"SmsPhoneNumber\": \"0501234567\",\n      \"UserPassword\": \"0018\",\n      \"IsDisplayDownloadDocument\": false,\n      \"IsDisableAttachment\": false\n    }\n  ],\n  \"Recipients\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"david@doxi.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"david@doxi.com\",\n      \"FirstName\": \"David\",\n      \"LastName\": \"White\"\n    }\n  ],\n  \"IsNoSend\": false,\n  \"IsNoNotificationMails\": false,\n  \"ReadOnlyFields\": [\n    {\n      \"SignerEmail\": \"marty@doxi.com\",\n      \"ElementLabel\": \"IDNumberField\",\n      \"Value\": \"028654438\",\n      \"TextSize\": 10,\n      \"TextFont\": \"Times New Roman\"\n    }\n  ],\n  \"IsSendApprovalMailToAllSigners\": true,\n  \"PreliminaryText\": \"Please fill this form\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/templates/:templateId/flow","host":["/"],"path":["v6","templates",":templateId","flow"],"variable":[{"key":"templateId","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"SignFlowId\": \"1909058d-f59b-42b2-9994-20fbfb154d63\",\n  \"SignersLink\": [\n    {\n      \"SignerId\": \"marty@doxi.com\",\n      \"Link\": \"https://DoxiDMZServer/DoxiSign/sign/1909058d-f59b-42b2-9994-20fbfb154d63/0XyVpZxuN0dI2Bb0ORB4bg%253d%253d\"\n    }\n  ]\n}"},{"id":"e18cc3ef-c1ee-46e7-b0ae-c33317c5997a","name":"Invalid template ID format or invalid flow configuration","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"TemplateId\": \"d583e9e1-3633-420a-aa45-793b4653bac1\",\n  \"Description\": \"Create flow from template example\",\n  \"SenderKey\": {\n    \"Key\": \"doxiUser\",\n    \"Type\": 3\n  },\n  \"CustomFields\": [\n    {\n      \"Key\": \"SomeInnerSystemIdNumber\",\n      \"Value\": \"12345\"\n    }\n  ],\n  \"Users\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"marty@doxi.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"marty@doxi.com\",\n      \"FirstName\": \"Marty\",\n      \"LastName\": \"Braun\",\n      \"SmsPhoneNumber\": \"0501234567\",\n      \"UserPassword\": \"0018\",\n      \"IsDisplayDownloadDocument\": false,\n      \"IsDisableAttachment\": false\n    }\n  ],\n  \"Recipients\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"david@doxi.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"david@doxi.com\",\n      \"FirstName\": \"David\",\n      \"LastName\": \"White\"\n    }\n  ],\n  \"IsNoSend\": false,\n  \"IsNoNotificationMails\": false,\n  \"ReadOnlyFields\": [\n    {\n      \"SignerEmail\": \"marty@doxi.com\",\n      \"ElementLabel\": \"IDNumberField\",\n      \"Value\": \"028654438\",\n      \"TextSize\": 10,\n      \"TextFont\": \"Times New Roman\"\n    }\n  ],\n  \"IsSendApprovalMailToAllSigners\": true,\n  \"PreliminaryText\": \"Please fill this form\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/templates/:templateId/flow","host":["/"],"path":["v6","templates",":templateId","flow"],"variable":[{"key":"templateId","value":"string"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"08e39da5-0dc0-4c3c-b817-c5b02b20cfce","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"TemplateId\": \"d583e9e1-3633-420a-aa45-793b4653bac1\",\n  \"Description\": \"Create flow from template example\",\n  \"SenderKey\": {\n    \"Key\": \"doxiUser\",\n    \"Type\": 3\n  },\n  \"CustomFields\": [\n    {\n      \"Key\": \"SomeInnerSystemIdNumber\",\n      \"Value\": \"12345\"\n    }\n  ],\n  \"Users\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"marty@doxi.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"marty@doxi.com\",\n      \"FirstName\": \"Marty\",\n      \"LastName\": \"Braun\",\n      \"SmsPhoneNumber\": \"0501234567\",\n      \"UserPassword\": \"0018\",\n      \"IsDisplayDownloadDocument\": false,\n      \"IsDisableAttachment\": false\n    }\n  ],\n  \"Recipients\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"david@doxi.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"david@doxi.com\",\n      \"FirstName\": \"David\",\n      \"LastName\": \"White\"\n    }\n  ],\n  \"IsNoSend\": false,\n  \"IsNoNotificationMails\": false,\n  \"ReadOnlyFields\": [\n    {\n      \"SignerEmail\": \"marty@doxi.com\",\n      \"ElementLabel\": \"IDNumberField\",\n      \"Value\": \"028654438\",\n      \"TextSize\": 10,\n      \"TextFont\": \"Times New Roman\"\n    }\n  ],\n  \"IsSendApprovalMailToAllSigners\": true,\n  \"PreliminaryText\": \"Please fill this form\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/templates/:templateId/flow","host":["/"],"path":["v6","templates",":templateId","flow"],"variable":[{"key":"templateId","value":"string"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"a9b55587-1609-41a6-8d35-e2702f3fad77","name":"Template not found","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"TemplateId\": \"d583e9e1-3633-420a-aa45-793b4653bac1\",\n  \"Description\": \"Create flow from template example\",\n  \"SenderKey\": {\n    \"Key\": \"doxiUser\",\n    \"Type\": 3\n  },\n  \"CustomFields\": [\n    {\n      \"Key\": \"SomeInnerSystemIdNumber\",\n      \"Value\": \"12345\"\n    }\n  ],\n  \"Users\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"marty@doxi.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"marty@doxi.com\",\n      \"FirstName\": \"Marty\",\n      \"LastName\": \"Braun\",\n      \"SmsPhoneNumber\": \"0501234567\",\n      \"UserPassword\": \"0018\",\n      \"IsDisplayDownloadDocument\": false,\n      \"IsDisableAttachment\": false\n    }\n  ],\n  \"Recipients\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"david@doxi.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"david@doxi.com\",\n      \"FirstName\": \"David\",\n      \"LastName\": \"White\"\n    }\n  ],\n  \"IsNoSend\": false,\n  \"IsNoNotificationMails\": false,\n  \"ReadOnlyFields\": [\n    {\n      \"SignerEmail\": \"marty@doxi.com\",\n      \"ElementLabel\": \"IDNumberField\",\n      \"Value\": \"028654438\",\n      \"TextSize\": 10,\n      \"TextFont\": \"Times New Roman\"\n    }\n  ],\n  \"IsSendApprovalMailToAllSigners\": true,\n  \"PreliminaryText\": \"Please fill this form\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/templates/:templateId/flow","host":["/"],"path":["v6","templates",":templateId","flow"],"variable":[{"key":"templateId","value":"string"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"51ff4bdb-7c59-4e7f-9008-128086d0c614","name":"Internal server error","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"TemplateId\": \"d583e9e1-3633-420a-aa45-793b4653bac1\",\n  \"Description\": \"Create flow from template example\",\n  \"SenderKey\": {\n    \"Key\": \"doxiUser\",\n    \"Type\": 3\n  },\n  \"CustomFields\": [\n    {\n      \"Key\": \"SomeInnerSystemIdNumber\",\n      \"Value\": \"12345\"\n    }\n  ],\n  \"Users\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"marty@doxi.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"marty@doxi.com\",\n      \"FirstName\": \"Marty\",\n      \"LastName\": \"Braun\",\n      \"SmsPhoneNumber\": \"0501234567\",\n      \"UserPassword\": \"0018\",\n      \"IsDisplayDownloadDocument\": false,\n      \"IsDisableAttachment\": false\n    }\n  ],\n  \"Recipients\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"david@doxi.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"david@doxi.com\",\n      \"FirstName\": \"David\",\n      \"LastName\": \"White\"\n    }\n  ],\n  \"IsNoSend\": false,\n  \"IsNoNotificationMails\": false,\n  \"ReadOnlyFields\": [\n    {\n      \"SignerEmail\": \"marty@doxi.com\",\n      \"ElementLabel\": \"IDNumberField\",\n      \"Value\": \"028654438\",\n      \"TextSize\": 10,\n      \"TextFont\": \"Times New Roman\"\n    }\n  ],\n  \"IsSendApprovalMailToAllSigners\": true,\n  \"PreliminaryText\": \"Please fill this form\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/templates/:templateId/flow","host":["/"],"path":["v6","templates",":templateId","flow"],"variable":[{"key":"templateId","value":"string"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"d100354d-ff65-451f-8396-99d33ad0d6ce"},{"name":"/v6/templates/:templateId","id":"6bd9f365-a69d-4004-874a-a68cc79edc96","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Accept","value":"application/json"}],"url":"//v6/templates/:templateId","description":"<p>[V6] Get template information including all elements and PDF document</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","templates",":templateId"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>The unique identifier (GUID) of the template</p>\n","type":"text/plain"},"type":"any","value":"string","key":"templateId"}]}},"response":[{"id":"d89d15d7-d1be-4cdd-8428-c3ff2bd0e1f3","name":"Template information retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/templates/:templateId","host":["/"],"path":["v6","templates",":templateId"],"variable":[{"key":"templateId","value":"string","description":"The unique identifier (GUID) of the template"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"DocumentFileName\": \"API Example.pdf\",\n  \"Users\": [\n    {\n      \"UserIndex\": 1,\n      \"Title\": \"Customer\",\n      \"SignerType\": 0,\n      \"IsSuspended\": false,\n      \"IsNoDecline\": false,\n      \"IsChangable\": true,\n      \"ForceApprovalOnSignature\": false\n    }\n  ],\n  \"Base64DocumentFile\": \"JVBERi0xLjANCjEgMCBvYmo8PC9UeXBlL0NhdGFsb2cvUGFnZXMgMiAwIFI+PmVuZG9iaiAyIDAgb2JqPDwvVHlwZS9QYWdlcy9LaWRzWzMgMCBSXS9Db3VudCAxPj5lbmRvYmogMyAwIG9iajw8L1R5cGUvUGFnZS9NZWRpYUJveFswIDAgMyAzXT4+ZW5kb2JqDQp4cmVmDQowIDQNCjAwMDAwMDAwMDAgNjU1MzUgZg0KMDAwMDAwMDAxMCAwMDAwMCBuDQowMDAwMDAwMDUzIDAwMDAwIG4NCjAwMDAwMDAxMDIgMDAwMDAgbg0KdHJhaWxlcjw8L1NpemUgNC9Sb290IDEgMCBSPj4NCnN0YXJ0eHJlZg0KMTQ5DQolRU9G\",\n  \"TemplateName\": \"API Example\",\n  \"FlowElements\": [\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 0,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 291,\n        \"Left\": 401,\n        \"Width\": 114,\n        \"Height\": 38\n      },\n      \"IsEditorElement\": false,\n      \"TextSize\": 0,\n      \"IsRequired\": true,\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    }\n  ],\n  \"SendMethodType\": 0,\n  \"TemplateType\": 0,\n  \"CaptchaDisabled\": false,\n  \"IsAutomaticRemainder\": false,\n  \"DayesForAutomaticRemainder\": 0,\n  \"IsSendApprovalMailToAllSigners\": false,\n  \"DisableSBS\": false,\n  \"SenderUserName\": \"someuser\",\n  \"IsNoDecline\": false\n}"},{"id":"f16f07b6-8df8-4ad5-86b5-5c2a9133c239","name":"Invalid template ID format","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/templates/:templateId","host":["/"],"path":["v6","templates",":templateId"],"variable":[{"key":"templateId","value":"string","description":"The unique identifier (GUID) of the template"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"a32eac21-a82d-4feb-a9f2-272c93c9090a","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/templates/:templateId","host":["/"],"path":["v6","templates",":templateId"],"variable":[{"key":"templateId","value":"string","description":"The unique identifier (GUID) of the template"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"663ad2ca-9026-4899-b10b-7b9e34ab78b4","name":"Template not found","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/templates/:templateId","host":["/"],"path":["v6","templates",":templateId"],"variable":[{"key":"templateId","value":"string","description":"The unique identifier (GUID) of the template"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"0986d37b-545f-44e3-add8-477d86b85037","name":"Internal server error","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/templates/:templateId","host":["/"],"path":["v6","templates",":templateId"],"variable":[{"key":"templateId","value":"string","description":"The unique identifier (GUID) of the template"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"6bd9f365-a69d-4004-874a-a68cc79edc96"},{"name":"/v6/templates/:templateId","id":"9ecb46ce-c7da-4216-855d-06353eb87c8e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"TemplateName\": \"API Template Example\",\n  \"FlowElements\": [\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 0,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 291,\n        \"Left\": 401,\n        \"Width\": 114,\n        \"Height\": 38\n      },\n      \"IsEditorElement\": false,\n      \"TextSize\": 0,\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 10,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 433,\n        \"Left\": 513,\n        \"Width\": 14,\n        \"Height\": 14\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"0\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Checkbox\",\n      \"ElementHelp\": \"Checkbox-help\",\n      \"ValueName\": \"3\",\n      \"IsRequired\": false,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"isMarked\",\n          \"Value\": \"false\"\n        },\n        {\n          \"Key\": \"order\",\n          \"Value\": \"90\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 11,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 448,\n        \"Left\": 395,\n        \"Width\": 130,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Numeric-Custom\",\n      \"ElementHelp\": \"Numeric-Custom  help\",\n      \"IsRequired\": true,\n      \"Validations\": [\n        {\n          \"Regex\": \"^.{1,}$\",\n          \"ErrorCode\": 11\n        },\n        {\n          \"Regex\": \"^.{0,3}$\",\n          \"ErrorCode\": 12\n        }\n      ],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"100\"\n        },\n        {\n          \"Key\": \"isSection\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"sectionName\",\n          \"Value\": \"Numeric\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 11,\n      \"ElementSubType\": 5,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 462,\n        \"Left\": 396,\n        \"Width\": 130,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Numeric-Identity Number\",\n      \"ElementHelp\": \"Numeric-Identity Number help\",\n      \"IsRequired\": false,\n      \"Validations\": [\n        {\n          \"Regex\": \"ID_NUMBER\",\n          \"ErrorCode\": 5\n        }\n      ],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"110\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 11,\n      \"ElementSubType\": 6,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 476,\n        \"Left\": 396,\n        \"Width\": 130,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Numeric-Phone Number\",\n      \"ElementHelp\": \"Numeric-Phone Number help\",\n      \"IsRequired\": true,\n      \"Validations\": [\n        {\n          \"Regex\": \"^[0-9][0-9]\\\\d{7}$|^[0-9][0-9][0-9]\\\\d{7}$\",\n          \"ErrorCode\": 6\n        }\n      ],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"120\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 11,\n      \"ElementSubType\": 7,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 490,\n        \"Left\": 396,\n        \"Width\": 130,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Numeric-License Plate\",\n      \"ElementHelp\": \"Numeric-License Plate\",\n      \"IsRequired\": false,\n      \"Validations\": [\n        {\n          \"Regex\": \"^([0-9]{2}-?[0-9]{3}-?[0-9]{2})?([0-9]{3}-?[0-9]{2}-?[0-9]{3})?$\",\n          \"ErrorCode\": 7\n        }\n      ],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"130\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 11,\n      \"ElementSubType\": 8,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 503,\n        \"Left\": 397,\n        \"Width\": 129,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Numeric-Postal Code\",\n      \"ElementHelp\": \"Numeric-Postal Code help\",\n      \"IsRequired\": false,\n      \"Validations\": [\n        {\n          \"Regex\": \"^[0-9.]{7}$\",\n          \"ErrorCode\": 8\n        }\n      ],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"140\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 12,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 516,\n        \"Left\": 397,\n        \"Width\": 14,\n        \"Height\": 14\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"Customer\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Radio\",\n      \"ElementHelp\": \"Radio1 help\",\n      \"ValueName\": \"1\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"150\"\n        },\n        {\n          \"Key\": \"isSection\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"sectionName\",\n          \"Value\": \"Radio\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 12,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 516,\n        \"Left\": 452,\n        \"Width\": 14,\n        \"Height\": 14\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"Customer\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Radio\",\n      \"ElementHelp\": \"Radio1 help\",\n      \"ValueName\": \"2\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"160\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 12,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 516,\n        \"Left\": 512,\n        \"Width\": 14,\n        \"Height\": 14\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"Customer\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Radio\",\n      \"ElementHelp\": \"Radio1 help\",\n      \"ValueName\": \"3\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"170\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 13,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 531,\n        \"Left\": 397,\n        \"Width\": 129,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"Dropdown\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Dropdown\",\n      \"ElementHelp\": \"Dropdown help\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [\n        {\n          \"Values\": [\n            {\n              \"Key\": \"value 1\",\n              \"Value\": \"value 1\"\n            },\n            {\n              \"Key\": \"value 2\",\n              \"Value\": \"value 2\"\n            },\n            {\n              \"Key\": \"value 3\",\n              \"Value\": \"value 3\"\n            }\n          ]\n        }\n      ],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"180\"\n        },\n        {\n          \"Key\": \"isSection\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"sectionName\",\n          \"Value\": \"Dropdown\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 1,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 349,\n        \"Left\": 394,\n        \"Width\": 132,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Text-Custom\",\n      \"ElementHelp\": \"Text-Custom help\",\n      \"IsRequired\": true,\n      \"Validations\": [\n        {\n          \"Regex\": \"^.{5,}$\",\n          \"ErrorCode\": 11\n        },\n        {\n          \"Regex\": \"^.{0,10}$\",\n          \"ErrorCode\": 12\n        }\n      ],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"10\"\n        },\n        {\n          \"Key\": \"isSection\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"sectionName\",\n          \"Value\": \"Text\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 14,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 545,\n        \"Left\": 396,\n        \"Width\": 131,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextSize\": 0,\n      \"ElementLabel\": \"Attachment\",\n      \"ElementHelp\": \"Attachment-help\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"FileType\",\n          \"Value\": \"1\"\n        },\n        {\n          \"Key\": \"order\",\n          \"Value\": \"190\"\n        },\n        {\n          \"Key\": \"isSection\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"sectionName\",\n          \"Value\": \"Attachment\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 1,\n      \"ElementSubType\": 1,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 364,\n        \"Left\": 394,\n        \"Width\": 132,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Text-Full Name\",\n      \"ElementHelp\": \"Text-Full Name help\",\n      \"IsRequired\": false,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"20\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 1,\n      \"ElementSubType\": 2,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 378,\n        \"Left\": 394,\n        \"Width\": 131,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Text-First Name\",\n      \"ElementHelp\": \"Text-First Name help\",\n      \"IsRequired\": false,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"30\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 1,\n      \"ElementSubType\": 3,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 392,\n        \"Left\": 394,\n        \"Width\": 131,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Text-Last Name\",\n      \"ElementHelp\": \"Text-Last Name help\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"40\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 1,\n      \"ElementSubType\": 4,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 406,\n        \"Left\": 394,\n        \"Width\": 132,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Text-Email\",\n      \"ElementHelp\": \"Text-Email help\",\n      \"IsRequired\": false,\n      \"Validations\": [\n        {\n          \"Regex\": \"^(?:[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+(?:\\\\.[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+)*|\\\"(?:[\\\\x01-\\\\x08\\\\x0b\\\\x0c\\\\x0e-\\\\x1f\\\\x21\\\\x23-\\\\x5b\\\\x5d-\\\\x7f]|\\\\[\\\\x01-\\\\x09\\\\x0b\\\\x0c\\\\x0e-\\\\x7f])*\\\")@(?:(?:[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?\\\\.)+[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?|\\\\[(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\\\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?|[a-zA-Z0-9-]*[a-zA-Z0-9]:(?:[\\\\x01-\\\\x08\\\\x0b\\\\x0c\\\\x0e-\\\\x1f\\\\x21-\\\\x5a\\\\x53-\\\\x7f]|\\\\[\\\\x01-\\\\x09\\\\x0b\\\\x0c\\\\x0e-\\\\x7f])+)\\\\])$\",\n          \"ErrorCode\": 4\n        }\n      ],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"50\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 2,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 419,\n        \"Left\": 430,\n        \"Width\": 58,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"18/02/2020 00:00\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Date & Hour\",\n      \"ElementHelp\": \"Date & Hour help\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DateTimeValidation\": {\n        \"DateTimeFormat\": \"DD/MM/YYYY HH:mm\",\n        \"IsCurrentDateTime\": false,\n        \"MinimumDate\": \"31/01/2020 22:00:00\",\n        \"MaximumDate\": \"31/12/2029 22:00:00\"\n      },\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"60\"\n        },\n        {\n          \"Key\": \"isSection\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"sectionName\",\n          \"Value\": \"Date\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 10,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 433,\n        \"Left\": 394,\n        \"Width\": 14,\n        \"Height\": 14\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"1\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Checkbox\",\n      \"ElementHelp\": \"Checkbox-help\",\n      \"ValueName\": \"1\",\n      \"IsRequired\": false,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"isMarked\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"order\",\n          \"Value\": \"70\"\n        },\n        {\n          \"Key\": \"isSection\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"sectionName\",\n          \"Value\": \"Checkbox\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 10,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 433,\n        \"Left\": 452,\n        \"Width\": 14,\n        \"Height\": 14\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"0\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Checkbox\",\n      \"ElementHelp\": \"Checkbox-help\",\n      \"ValueName\": \"2\",\n      \"IsRequired\": false,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"isMarked\",\n          \"Value\": \"false\"\n        },\n        {\n          \"Key\": \"order\",\n          \"Value\": \"80\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 0,\n      \"SignerIndex\": 0,\n      \"ElementType\": 3,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 559,\n        \"Left\": 390,\n        \"Width\": 147,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": true,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 0,\n      \"SignerIndex\": 0,\n      \"ElementType\": 5,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 573,\n        \"Left\": 390,\n        \"Width\": 147,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": true,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 0,\n      \"SignerIndex\": 0,\n      \"ElementType\": 1,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 586,\n        \"Left\": 430,\n        \"Width\": 54,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": true,\n      \"TextValue\": \"Editor Text\",\n      \"TextSize\": 14,\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    }\n  ],\n  \"Users\": [\n    {\n      \"UserIndex\": 1,\n      \"Title\": \"Customer\",\n      \"FixedSignerKey\": {\n        \"Key\": \"doxiUser@consist.co.il\",\n        \"Type\": 1\n      },\n      \"SignerType\": 1,\n      \"IsDisableAttachment\": false,\n      \"IsDisplayDownloadDocument\": false,\n      \"IsSendFromExternal\": false,\n      \"IsSuspended\": false,\n      \"IsNoDecline\": false,\n      \"IsChangable\": false,\n      \"ForceApprovalOnSignature\": false\n    }\n  ],\n  \"SendMethodType\": 0,\n  \"TemplateType\": 0,\n  \"CaptchaDisabled\": false,\n  \"IsAutomaticRemainder\": false,\n  \"DayesForAutomaticRemainder\": 0,\n  \"IsSendApprovalMailToAllSigners\": false,\n  \"DisableSBS\": false,\n  \"IsNoDecline\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/templates/:templateId","description":"<p>[V6] Update existing template with new configuration</p>\n<hr />\n<h2 id=\"templateid\">templateId:</h2>\n<h3 id=\"the-unique-identifier-guid-of-the-template-to-update\">The unique identifier (GUID) of the template to update</h3>\n<hr />\n<h2 id=\"exupdatetemplaterequest\">exUpdateTemplateRequest:</h2>\n<h3 id=\"request-containing-updated-template-configuration-including-document-optional-signature-elements-optional-form-fields-optional-and-other-template-properties-only-provided-fields-will-be-updated\">Request containing updated template configuration including document (optional), signature elements (optional), form fields (optional), and other template properties. Only provided fields will be updated.</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* TemplateName</td>\n<td>String</td>\n<td>The name of the template</td>\n</tr>\n<tr>\n<td>FlowElements</td>\n<td><em><strong>ExTemplatFlowElement[]</strong></em></td>\n<td>All the elements of the template</td>\n</tr>\n<tr>\n<td>Users</td>\n<td><em><strong>ExTemplateUser[]</strong></em></td>\n<td>The users of the template</td>\n</tr>\n<tr>\n<td>SendMethodType</td>\n<td><em><strong>SendMethodType</strong></em></td>\n<td>Distribution method of the template</td>\n</tr>\n<tr>\n<td>TemplateType</td>\n<td><em><strong>Nullable&lt;TemplateType&gt;</strong></em></td>\n<td>The type of the template : Standard=0,AnonymousEnable=1,AnonymousDisable=2</td>\n</tr>\n<tr>\n<td>CaptchaDisabled</td>\n<td>Boolean</td>\n<td>Disable/Enable captcha (only in anonymous template)</td>\n</tr>\n<tr>\n<td>PreliminaryText</td>\n<td>String</td>\n<td>Preliminary text of the flow - that will be created from this template (display only in side by side mode)</td>\n</tr>\n<tr>\n<td>SignFlowDescriptionMessage</td>\n<td>String</td>\n<td>Description of the document in the email</td>\n</tr>\n<tr>\n<td>IsAutomaticRemainder</td>\n<td>Boolean</td>\n<td>Enable/Disable send automatic remainder</td>\n</tr>\n<tr>\n<td>DayesForAutomaticRemainder</td>\n<td>Int32</td>\n<td>Number of the days for getting automatic remainder</td>\n</tr>\n<tr>\n<td>IsSendApprovalMailToAllSigners</td>\n<td>Boolean</td>\n<td>Enable/Disable send email to all signers (when the flow approved)</td>\n</tr>\n<tr>\n<td>Recipients</td>\n<td><em><strong>ParticipantKey&lt;ParticipantKeyType&gt;[]</strong></em></td>\n<td>All the CC users of the flow (that will be created from this template)</td>\n</tr>\n<tr>\n<td>DisableSBS</td>\n<td>Boolean</td>\n<td>Disable/Enable dispaly side by side mode in the flow (that will be created from this template)</td>\n</tr>\n<tr>\n<td>FlowTwoFactorEnabled</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Enable/Disable Two Factor on the flow (that will created from this template)</td>\n</tr>\n<tr>\n<td>FlowExpirationDate</td>\n<td>Nullable&lt;DateTime&gt;</td>\n<td>Expiration date of the flow (that will created from this template)</td>\n</tr>\n<tr>\n<td>ImagesList</td>\n<td>Dictionary&lt;String,String&gt;</td>\n<td>Dictionary of images for flow elements of type Image.</td>\n</tr>\n<tr>\n<td>SenderNotificationMailsToSend</td>\n<td><em><strong>NotificationMails[]</strong></em></td>\n<td>Types of notifications will be sent to the sender</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"templatetype\">TemplateType:</h3>\n<h3 id=\"types-of-templates\">Types of templates</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Standard</td>\n</tr>\n<tr>\n<td>1</td>\n<td>AnonymousEnable</td>\n</tr>\n<tr>\n<td>2</td>\n<td>AnonymousDisable</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Organizational</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"sendmethodtype\">SendMethodType:</h3>\n<h3 id=\"distribution-method-of-the-flow\">Distribution method of the flow</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>QueuedFlow</td>\n</tr>\n<tr>\n<td>1</td>\n<td>ParallelFlow</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"extemplateuser\">ExTemplateUser:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>UserIndex</td>\n<td>Int32</td>\n<td>The order of signer in the template</td>\n</tr>\n<tr>\n<td>Title</td>\n<td>String</td>\n<td>The title of the singer</td>\n</tr>\n<tr>\n<td>FixedSignerKey</td>\n<td><em><strong>ParticipantKey</strong></em></td>\n<td>The id of the fixed signer</td>\n</tr>\n<tr>\n<td>SignerType</td>\n<td><em><strong>Nullable&lt;SignerType&gt;</strong></em></td>\n<td>The type of the user</td>\n</tr>\n<tr>\n<td>IsDisableAttachment</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Disabled/Enabled add attachments to the flow (that will be created from the template)</td>\n</tr>\n<tr>\n<td>IsSuspended</td>\n<td>Boolean</td>\n<td>Set status flow to suspended (that will be created from the template)</td>\n</tr>\n<tr>\n<td>IsNoDecline</td>\n<td>Boolean</td>\n<td>Disable/Endable Decline the flow (that will be created from the template)</td>\n</tr>\n<tr>\n<td>MinimumSignatures</td>\n<td>Nullable&lt;Int32&gt;</td>\n<td></td>\n</tr>\n<tr>\n<td>ForceApprovalOnSignature</td>\n<td>Boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonalMessage</td>\n<td>String(300) Validation: The field cannot contain script, vbscript, or style tags.</td>\n<td></td>\n</tr>\n<tr>\n<td>NotificationMailsToSend</td>\n<td><em><strong>NotificationMails[]</strong></em></td>\n<td>Types of notifications will be sent to the signer</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"notificationmails\">NotificationMails[]:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>All</td>\n</tr>\n<tr>\n<td>1</td>\n<td>None</td>\n</tr>\n<tr>\n<td>2</td>\n<td>SignFlow</td>\n</tr>\n<tr>\n<td>3</td>\n<td>FlowApproved</td>\n</tr>\n<tr>\n<td>4</td>\n<td>FlowDeclined</td>\n</tr>\n<tr>\n<td>5</td>\n<td>FlowStart</td>\n</tr>\n<tr>\n<td>6</td>\n<td>ReminderToSignFlow</td>\n</tr>\n<tr>\n<td>7</td>\n<td>FlowStoppedToSender</td>\n</tr>\n<tr>\n<td>8</td>\n<td>FlowStoppedToSigner</td>\n</tr>\n<tr>\n<td>9</td>\n<td>KitCompleted</td>\n</tr>\n<tr>\n<td>10</td>\n<td>SignKit</td>\n</tr>\n<tr>\n<td>11</td>\n<td>ReminderToSignKit</td>\n</tr>\n<tr>\n<td>12</td>\n<td>KitCreated</td>\n</tr>\n<tr>\n<td>13</td>\n<td>FlowExpired</td>\n</tr>\n<tr>\n<td>14</td>\n<td>FlowCCApproved</td>\n</tr>\n<tr>\n<td>15</td>\n<td>FlowCCDeclined</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"signertype\">SignerType:</h3>\n<h3 id=\"types-of-signers\">Types of signers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Changeable</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Static</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Anonymous</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"participantkey\">ParticipantKey:</h3>\n<h3 id=\"allow-to-locate-doxi-user-byuseremail1userphone2\">Allow to locate Doxi user by:UserEmail=1UserPhone=2</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* Key</td>\n<td>String</td>\n<td>User search value</td>\n</tr>\n<tr>\n<td>Type</td>\n<td><em><strong>ParticipantKeyType</strong></em></td>\n<td>Search type:UserEmail=1,UserPhone=2</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"participantkeytype\">ParticipantKeyType:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>UserId</td>\n</tr>\n<tr>\n<td>1</td>\n<td>UserEmail</td>\n</tr>\n<tr>\n<td>2</td>\n<td>UserPhone</td>\n</tr>\n<tr>\n<td>3</td>\n<td>UserName</td>\n</tr>\n<tr>\n<td>4</td>\n<td>GroupId</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"extemplatflowelement\">ExTemplatFlowElement:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>UserIndex</td>\n<td>Int32</td>\n<td>The order of the user in the template</td>\n</tr>\n<tr>\n<td>* ElementType</td>\n<td><em><strong>ElementType</strong></em></td>\n<td>Type of element</td>\n</tr>\n<tr>\n<td>ElementSubType</td>\n<td><em><strong>ElementSubType</strong></em></td>\n<td>Type of subject element</td>\n</tr>\n<tr>\n<td>* PageNumber</td>\n<td>Int32</td>\n<td>The page number of the element</td>\n</tr>\n<tr>\n<td>* Position</td>\n<td><em><strong>ElementPosition</strong></em></td>\n<td>Position of the element on the page</td>\n</tr>\n<tr>\n<td>TextValue</td>\n<td>String(200)</td>\n<td>The text of the element</td>\n</tr>\n<tr>\n<td>TextSize</td>\n<td>Int32</td>\n<td>The size of the text element</td>\n</tr>\n<tr>\n<td>TextFont</td>\n<td>String</td>\n<td>The font of the text element</td>\n</tr>\n<tr>\n<td>ElementLabel</td>\n<td>String</td>\n<td>The label of the element</td>\n</tr>\n<tr>\n<td>ElementHelp</td>\n<td>String</td>\n<td>Information about the element (helps to know more about the element)</td>\n</tr>\n<tr>\n<td>ValueName</td>\n<td>String</td>\n<td>The value name of element (only on radio-button/checkbox elemets)</td>\n</tr>\n<tr>\n<td>HorizontalAlignment</td>\n<td><em><strong>Nullable&lt;ExHorizontalAlignment&gt;</strong></em></td>\n<td>Alignment the text of the element: Right=0,Center=1,Left=2</td>\n</tr>\n<tr>\n<td>IsRequired</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Set required to element</td>\n</tr>\n<tr>\n<td>Validations</td>\n<td><em><strong>ExValidation[]</strong></em></td>\n<td>Set validation to element</td>\n</tr>\n<tr>\n<td>DateTimeValidation</td>\n<td><em><strong>ExDateTimeValidation</strong></em></td>\n<td>Set Date validation to element (only on Date element)</td>\n</tr>\n<tr>\n<td>DropDownList</td>\n<td><em><strong>ExDropDownField[]</strong></em></td>\n<td>Values of drop list element</td>\n</tr>\n<tr>\n<td>AdditionalInfo</td>\n<td>KeyValuePair&lt;String,String&gt;[]</td>\n<td>Add additional data to the element</td>\n</tr>\n<tr>\n<td>DuplicateElementInfo</td>\n<td><em><strong>DuplicateElementInfo</strong></em></td>\n<td>Set element as duplicate (make the element to parent)</td>\n</tr>\n<tr>\n<td>DisplayValueInFlowDecription</td>\n<td>Boolean</td>\n<td>Display/Not dispaly the value of element in the flow decription</td>\n</tr>\n<tr>\n<td>ZIndex</td>\n<td>Nullable&lt;Int32&gt;</td>\n<td>The order of the element on the page</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"duplicateelementinfo\">DuplicateElementInfo:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>IsAllPagesFromCurrent</td>\n<td>Boolean</td>\n<td>Duplicate element at all pages</td>\n</tr>\n<tr>\n<td>PageRange</td>\n<td>String</td>\n<td>Duplicate element on a specific page (for example : 1,5,8 - the element will duplicated on these pages)</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exdropdownfield\">ExDropDownField:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Values</td>\n<td><em><strong>ExDropDownItem[]</strong></em></td>\n<td>List of values</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exdropdownitem\">ExDropDownItem:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Key</td>\n<td>String</td>\n<td>Key of Item</td>\n</tr>\n<tr>\n<td>Value</td>\n<td>String</td>\n<td>Value of Item</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exdatetimevalidation\">ExDateTimeValidation:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DateTimeFormat</td>\n<td>String</td>\n<td>Format of the date</td>\n</tr>\n<tr>\n<td>DateFormatLanguage</td>\n<td>String</td>\n<td>language : 'en-US','he-IL'</td>\n</tr>\n<tr>\n<td>IsCurrentDateTime</td>\n<td>Boolean</td>\n<td>Set the date to the current signing date</td>\n</tr>\n<tr>\n<td>MinimumDate</td>\n<td>Nullable&lt;DateTime&gt;</td>\n<td>Minimum value of date</td>\n</tr>\n<tr>\n<td>MaximumDate</td>\n<td>Nullable&lt;DateTime&gt;</td>\n<td>Maximum value of date</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exvalidation\">ExValidation:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Regex</td>\n<td>String</td>\n<td>The Regex on the value</td>\n</tr>\n<tr>\n<td>ErrorCode</td>\n<td><em><strong>ElementValidationError</strong></em></td>\n<td>Errors of regex</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"elementvalidationerror\">ElementValidationError:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>4</td>\n<td>Email</td>\n</tr>\n<tr>\n<td>5</td>\n<td>IdNumber</td>\n</tr>\n<tr>\n<td>6</td>\n<td>PhoneNumber</td>\n</tr>\n<tr>\n<td>7</td>\n<td>LicensePlate</td>\n</tr>\n<tr>\n<td>8</td>\n<td>PostalCode</td>\n</tr>\n<tr>\n<td>10</td>\n<td>MandatoryElements</td>\n</tr>\n<tr>\n<td>11</td>\n<td>smallChar</td>\n</tr>\n<tr>\n<td>12</td>\n<td>BigChar</td>\n</tr>\n<tr>\n<td>13</td>\n<td>SmallDate</td>\n</tr>\n<tr>\n<td>14</td>\n<td>BigDate</td>\n</tr>\n<tr>\n<td>15</td>\n<td>CreditCard</td>\n</tr>\n<tr>\n<td>16</td>\n<td>CwCredit</td>\n</tr>\n<tr>\n<td>17</td>\n<td>SmallNumber</td>\n</tr>\n<tr>\n<td>18</td>\n<td>BigNumber</td>\n</tr>\n<tr>\n<td>19</td>\n<td>RequiredElements</td>\n</tr>\n<tr>\n<td>20</td>\n<td>FieldValueMustBeNumeric</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exhorizontalalignment\">ExHorizontalAlignment:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Right</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Center</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Left</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"elementposition\">ElementPosition:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* Top</td>\n<td>Single</td>\n<td>Position of the element related to top of the page (in points)</td>\n</tr>\n<tr>\n<td>* Left</td>\n<td>Single</td>\n<td>Position of the element related to left of the page (in points)</td>\n</tr>\n<tr>\n<td>* Width</td>\n<td>Single</td>\n<td>Width of the element (in points)</td>\n</tr>\n<tr>\n<td>* Height</td>\n<td>Single</td>\n<td>Height of the element (in points)</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"elementsubtype\">ElementSubType:</h3>\n<h3 id=\"sub-type-of-element\">Sub type of element</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Custom</td>\n</tr>\n<tr>\n<td>1</td>\n<td>FullName</td>\n</tr>\n<tr>\n<td>2</td>\n<td>FirstName</td>\n</tr>\n<tr>\n<td>3</td>\n<td>LastName</td>\n</tr>\n<tr>\n<td>4</td>\n<td>Email</td>\n</tr>\n<tr>\n<td>5</td>\n<td>IdentityNumber</td>\n</tr>\n<tr>\n<td>6</td>\n<td>PhoneNumber</td>\n</tr>\n<tr>\n<td>7</td>\n<td>License</td>\n</tr>\n<tr>\n<td>8</td>\n<td>PostalCode</td>\n</tr>\n<tr>\n<td>9</td>\n<td>EditorText</td>\n</tr>\n<tr>\n<td>10</td>\n<td>Initials</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"elementtype\">ElementType:</h3>\n<h3 id=\"types-of-elements\">Types of Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Sign</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Text</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Date</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Erase</td>\n</tr>\n<tr>\n<td>4</td>\n<td>Highlight</td>\n</tr>\n<tr>\n<td>5</td>\n<td>Blackout</td>\n</tr>\n<tr>\n<td>9</td>\n<td>EditorText</td>\n</tr>\n<tr>\n<td>10</td>\n<td>Checkbox</td>\n</tr>\n<tr>\n<td>11</td>\n<td>Numeric</td>\n</tr>\n<tr>\n<td>12</td>\n<td>Radio</td>\n</tr>\n<tr>\n<td>13</td>\n<td>Dropdown</td>\n</tr>\n<tr>\n<td>14</td>\n<td>Attachment</td>\n</tr>\n<tr>\n<td>17</td>\n<td>Image</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","templates",":templateId"],"host":["/"],"query":[],"variable":[{"type":"any","value":"string","key":"templateId"}]}},"response":[{"id":"affffc50-1b38-442f-8d3b-1099f33a2285","name":"Template updated successfully","originalRequest":{"method":"PUT","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"TemplateName\": \"API Template Example\",\n  \"FlowElements\": [\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 0,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 291,\n        \"Left\": 401,\n        \"Width\": 114,\n        \"Height\": 38\n      },\n      \"IsEditorElement\": false,\n      \"TextSize\": 0,\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 10,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 433,\n        \"Left\": 513,\n        \"Width\": 14,\n        \"Height\": 14\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"0\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Checkbox\",\n      \"ElementHelp\": \"Checkbox-help\",\n      \"ValueName\": \"3\",\n      \"IsRequired\": false,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"isMarked\",\n          \"Value\": \"false\"\n        },\n        {\n          \"Key\": \"order\",\n          \"Value\": \"90\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 11,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 448,\n        \"Left\": 395,\n        \"Width\": 130,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Numeric-Custom\",\n      \"ElementHelp\": \"Numeric-Custom  help\",\n      \"IsRequired\": true,\n      \"Validations\": [\n        {\n          \"Regex\": \"^.{1,}$\",\n          \"ErrorCode\": 11\n        },\n        {\n          \"Regex\": \"^.{0,3}$\",\n          \"ErrorCode\": 12\n        }\n      ],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"100\"\n        },\n        {\n          \"Key\": \"isSection\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"sectionName\",\n          \"Value\": \"Numeric\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 11,\n      \"ElementSubType\": 5,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 462,\n        \"Left\": 396,\n        \"Width\": 130,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Numeric-Identity Number\",\n      \"ElementHelp\": \"Numeric-Identity Number help\",\n      \"IsRequired\": false,\n      \"Validations\": [\n        {\n          \"Regex\": \"ID_NUMBER\",\n          \"ErrorCode\": 5\n        }\n      ],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"110\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 11,\n      \"ElementSubType\": 6,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 476,\n        \"Left\": 396,\n        \"Width\": 130,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Numeric-Phone Number\",\n      \"ElementHelp\": \"Numeric-Phone Number help\",\n      \"IsRequired\": true,\n      \"Validations\": [\n        {\n          \"Regex\": \"^[0-9][0-9]\\\\d{7}$|^[0-9][0-9][0-9]\\\\d{7}$\",\n          \"ErrorCode\": 6\n        }\n      ],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"120\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 11,\n      \"ElementSubType\": 7,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 490,\n        \"Left\": 396,\n        \"Width\": 130,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Numeric-License Plate\",\n      \"ElementHelp\": \"Numeric-License Plate\",\n      \"IsRequired\": false,\n      \"Validations\": [\n        {\n          \"Regex\": \"^([0-9]{2}-?[0-9]{3}-?[0-9]{2})?([0-9]{3}-?[0-9]{2}-?[0-9]{3})?$\",\n          \"ErrorCode\": 7\n        }\n      ],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"130\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 11,\n      \"ElementSubType\": 8,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 503,\n        \"Left\": 397,\n        \"Width\": 129,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Numeric-Postal Code\",\n      \"ElementHelp\": \"Numeric-Postal Code help\",\n      \"IsRequired\": false,\n      \"Validations\": [\n        {\n          \"Regex\": \"^[0-9.]{7}$\",\n          \"ErrorCode\": 8\n        }\n      ],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"140\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 12,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 516,\n        \"Left\": 397,\n        \"Width\": 14,\n        \"Height\": 14\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"Customer\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Radio\",\n      \"ElementHelp\": \"Radio1 help\",\n      \"ValueName\": \"1\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"150\"\n        },\n        {\n          \"Key\": \"isSection\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"sectionName\",\n          \"Value\": \"Radio\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 12,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 516,\n        \"Left\": 452,\n        \"Width\": 14,\n        \"Height\": 14\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"Customer\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Radio\",\n      \"ElementHelp\": \"Radio1 help\",\n      \"ValueName\": \"2\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"160\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 12,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 516,\n        \"Left\": 512,\n        \"Width\": 14,\n        \"Height\": 14\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"Customer\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Radio\",\n      \"ElementHelp\": \"Radio1 help\",\n      \"ValueName\": \"3\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"170\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 13,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 531,\n        \"Left\": 397,\n        \"Width\": 129,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"Dropdown\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Dropdown\",\n      \"ElementHelp\": \"Dropdown help\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [\n        {\n          \"Values\": [\n            {\n              \"Key\": \"value 1\",\n              \"Value\": \"value 1\"\n            },\n            {\n              \"Key\": \"value 2\",\n              \"Value\": \"value 2\"\n            },\n            {\n              \"Key\": \"value 3\",\n              \"Value\": \"value 3\"\n            }\n          ]\n        }\n      ],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"180\"\n        },\n        {\n          \"Key\": \"isSection\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"sectionName\",\n          \"Value\": \"Dropdown\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 1,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 349,\n        \"Left\": 394,\n        \"Width\": 132,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Text-Custom\",\n      \"ElementHelp\": \"Text-Custom help\",\n      \"IsRequired\": true,\n      \"Validations\": [\n        {\n          \"Regex\": \"^.{5,}$\",\n          \"ErrorCode\": 11\n        },\n        {\n          \"Regex\": \"^.{0,10}$\",\n          \"ErrorCode\": 12\n        }\n      ],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"10\"\n        },\n        {\n          \"Key\": \"isSection\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"sectionName\",\n          \"Value\": \"Text\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 14,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 545,\n        \"Left\": 396,\n        \"Width\": 131,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextSize\": 0,\n      \"ElementLabel\": \"Attachment\",\n      \"ElementHelp\": \"Attachment-help\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"FileType\",\n          \"Value\": \"1\"\n        },\n        {\n          \"Key\": \"order\",\n          \"Value\": \"190\"\n        },\n        {\n          \"Key\": \"isSection\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"sectionName\",\n          \"Value\": \"Attachment\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 1,\n      \"ElementSubType\": 1,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 364,\n        \"Left\": 394,\n        \"Width\": 132,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Text-Full Name\",\n      \"ElementHelp\": \"Text-Full Name help\",\n      \"IsRequired\": false,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"20\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 1,\n      \"ElementSubType\": 2,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 378,\n        \"Left\": 394,\n        \"Width\": 131,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Text-First Name\",\n      \"ElementHelp\": \"Text-First Name help\",\n      \"IsRequired\": false,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"30\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 1,\n      \"ElementSubType\": 3,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 392,\n        \"Left\": 394,\n        \"Width\": 131,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Text-Last Name\",\n      \"ElementHelp\": \"Text-Last Name help\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"40\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 1,\n      \"ElementSubType\": 4,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 406,\n        \"Left\": 394,\n        \"Width\": 132,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Text-Email\",\n      \"ElementHelp\": \"Text-Email help\",\n      \"IsRequired\": false,\n      \"Validations\": [\n        {\n          \"Regex\": \"^(?:[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+(?:\\\\.[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+)*|\\\"(?:[\\\\x01-\\\\x08\\\\x0b\\\\x0c\\\\x0e-\\\\x1f\\\\x21\\\\x23-\\\\x5b\\\\x5d-\\\\x7f]|\\\\[\\\\x01-\\\\x09\\\\x0b\\\\x0c\\\\x0e-\\\\x7f])*\\\")@(?:(?:[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?\\\\.)+[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?|\\\\[(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\\\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?|[a-zA-Z0-9-]*[a-zA-Z0-9]:(?:[\\\\x01-\\\\x08\\\\x0b\\\\x0c\\\\x0e-\\\\x1f\\\\x21-\\\\x5a\\\\x53-\\\\x7f]|\\\\[\\\\x01-\\\\x09\\\\x0b\\\\x0c\\\\x0e-\\\\x7f])+)\\\\])$\",\n          \"ErrorCode\": 4\n        }\n      ],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"50\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 2,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 419,\n        \"Left\": 430,\n        \"Width\": 58,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"18/02/2020 00:00\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Date & Hour\",\n      \"ElementHelp\": \"Date & Hour help\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DateTimeValidation\": {\n        \"DateTimeFormat\": \"DD/MM/YYYY HH:mm\",\n        \"IsCurrentDateTime\": false,\n        \"MinimumDate\": \"31/01/2020 22:00:00\",\n        \"MaximumDate\": \"31/12/2029 22:00:00\"\n      },\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"60\"\n        },\n        {\n          \"Key\": \"isSection\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"sectionName\",\n          \"Value\": \"Date\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 10,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 433,\n        \"Left\": 394,\n        \"Width\": 14,\n        \"Height\": 14\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"1\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Checkbox\",\n      \"ElementHelp\": \"Checkbox-help\",\n      \"ValueName\": \"1\",\n      \"IsRequired\": false,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"isMarked\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"order\",\n          \"Value\": \"70\"\n        },\n        {\n          \"Key\": \"isSection\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"sectionName\",\n          \"Value\": \"Checkbox\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 10,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 433,\n        \"Left\": 452,\n        \"Width\": 14,\n        \"Height\": 14\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"0\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Checkbox\",\n      \"ElementHelp\": \"Checkbox-help\",\n      \"ValueName\": \"2\",\n      \"IsRequired\": false,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"isMarked\",\n          \"Value\": \"false\"\n        },\n        {\n          \"Key\": \"order\",\n          \"Value\": \"80\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 0,\n      \"SignerIndex\": 0,\n      \"ElementType\": 3,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 559,\n        \"Left\": 390,\n        \"Width\": 147,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": true,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 0,\n      \"SignerIndex\": 0,\n      \"ElementType\": 5,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 573,\n        \"Left\": 390,\n        \"Width\": 147,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": true,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 0,\n      \"SignerIndex\": 0,\n      \"ElementType\": 1,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 586,\n        \"Left\": 430,\n        \"Width\": 54,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": true,\n      \"TextValue\": \"Editor Text\",\n      \"TextSize\": 14,\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    }\n  ],\n  \"Users\": [\n    {\n      \"UserIndex\": 1,\n      \"Title\": \"Customer\",\n      \"FixedSignerKey\": {\n        \"Key\": \"doxiUser@consist.co.il\",\n        \"Type\": 1\n      },\n      \"SignerType\": 1,\n      \"IsDisableAttachment\": false,\n      \"IsDisplayDownloadDocument\": false,\n      \"IsSendFromExternal\": false,\n      \"IsSuspended\": false,\n      \"IsNoDecline\": false,\n      \"IsChangable\": false,\n      \"ForceApprovalOnSignature\": false\n    }\n  ],\n  \"SendMethodType\": 0,\n  \"TemplateType\": 0,\n  \"CaptchaDisabled\": false,\n  \"IsAutomaticRemainder\": false,\n  \"DayesForAutomaticRemainder\": 0,\n  \"IsSendApprovalMailToAllSigners\": false,\n  \"DisableSBS\": false,\n  \"IsNoDecline\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/templates/:templateId","host":["/"],"path":["v6","templates",":templateId"],"variable":[{"key":"templateId","value":"string"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"41b4c405-3c3d-47ff-96e3-0b012c6614c9","name":"Invalid template ID format or invalid update data","originalRequest":{"method":"PUT","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"TemplateName\": \"API Template Example\",\n  \"FlowElements\": [\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 0,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 291,\n        \"Left\": 401,\n        \"Width\": 114,\n        \"Height\": 38\n      },\n      \"IsEditorElement\": false,\n      \"TextSize\": 0,\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 10,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 433,\n        \"Left\": 513,\n        \"Width\": 14,\n        \"Height\": 14\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"0\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Checkbox\",\n      \"ElementHelp\": \"Checkbox-help\",\n      \"ValueName\": \"3\",\n      \"IsRequired\": false,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"isMarked\",\n          \"Value\": \"false\"\n        },\n        {\n          \"Key\": \"order\",\n          \"Value\": \"90\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 11,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 448,\n        \"Left\": 395,\n        \"Width\": 130,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Numeric-Custom\",\n      \"ElementHelp\": \"Numeric-Custom  help\",\n      \"IsRequired\": true,\n      \"Validations\": [\n        {\n          \"Regex\": \"^.{1,}$\",\n          \"ErrorCode\": 11\n        },\n        {\n          \"Regex\": \"^.{0,3}$\",\n          \"ErrorCode\": 12\n        }\n      ],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"100\"\n        },\n        {\n          \"Key\": \"isSection\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"sectionName\",\n          \"Value\": \"Numeric\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 11,\n      \"ElementSubType\": 5,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 462,\n        \"Left\": 396,\n        \"Width\": 130,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Numeric-Identity Number\",\n      \"ElementHelp\": \"Numeric-Identity Number help\",\n      \"IsRequired\": false,\n      \"Validations\": [\n        {\n          \"Regex\": \"ID_NUMBER\",\n          \"ErrorCode\": 5\n        }\n      ],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"110\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 11,\n      \"ElementSubType\": 6,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 476,\n        \"Left\": 396,\n        \"Width\": 130,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Numeric-Phone Number\",\n      \"ElementHelp\": \"Numeric-Phone Number help\",\n      \"IsRequired\": true,\n      \"Validations\": [\n        {\n          \"Regex\": \"^[0-9][0-9]\\\\d{7}$|^[0-9][0-9][0-9]\\\\d{7}$\",\n          \"ErrorCode\": 6\n        }\n      ],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"120\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 11,\n      \"ElementSubType\": 7,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 490,\n        \"Left\": 396,\n        \"Width\": 130,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Numeric-License Plate\",\n      \"ElementHelp\": \"Numeric-License Plate\",\n      \"IsRequired\": false,\n      \"Validations\": [\n        {\n          \"Regex\": \"^([0-9]{2}-?[0-9]{3}-?[0-9]{2})?([0-9]{3}-?[0-9]{2}-?[0-9]{3})?$\",\n          \"ErrorCode\": 7\n        }\n      ],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"130\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 11,\n      \"ElementSubType\": 8,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 503,\n        \"Left\": 397,\n        \"Width\": 129,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Numeric-Postal Code\",\n      \"ElementHelp\": \"Numeric-Postal Code help\",\n      \"IsRequired\": false,\n      \"Validations\": [\n        {\n          \"Regex\": \"^[0-9.]{7}$\",\n          \"ErrorCode\": 8\n        }\n      ],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"140\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 12,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 516,\n        \"Left\": 397,\n        \"Width\": 14,\n        \"Height\": 14\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"Customer\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Radio\",\n      \"ElementHelp\": \"Radio1 help\",\n      \"ValueName\": \"1\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"150\"\n        },\n        {\n          \"Key\": \"isSection\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"sectionName\",\n          \"Value\": \"Radio\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 12,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 516,\n        \"Left\": 452,\n        \"Width\": 14,\n        \"Height\": 14\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"Customer\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Radio\",\n      \"ElementHelp\": \"Radio1 help\",\n      \"ValueName\": \"2\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"160\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 12,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 516,\n        \"Left\": 512,\n        \"Width\": 14,\n        \"Height\": 14\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"Customer\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Radio\",\n      \"ElementHelp\": \"Radio1 help\",\n      \"ValueName\": \"3\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"170\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 13,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 531,\n        \"Left\": 397,\n        \"Width\": 129,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"Dropdown\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Dropdown\",\n      \"ElementHelp\": \"Dropdown help\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [\n        {\n          \"Values\": [\n            {\n              \"Key\": \"value 1\",\n              \"Value\": \"value 1\"\n            },\n            {\n              \"Key\": \"value 2\",\n              \"Value\": \"value 2\"\n            },\n            {\n              \"Key\": \"value 3\",\n              \"Value\": \"value 3\"\n            }\n          ]\n        }\n      ],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"180\"\n        },\n        {\n          \"Key\": \"isSection\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"sectionName\",\n          \"Value\": \"Dropdown\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 1,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 349,\n        \"Left\": 394,\n        \"Width\": 132,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Text-Custom\",\n      \"ElementHelp\": \"Text-Custom help\",\n      \"IsRequired\": true,\n      \"Validations\": [\n        {\n          \"Regex\": \"^.{5,}$\",\n          \"ErrorCode\": 11\n        },\n        {\n          \"Regex\": \"^.{0,10}$\",\n          \"ErrorCode\": 12\n        }\n      ],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"10\"\n        },\n        {\n          \"Key\": \"isSection\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"sectionName\",\n          \"Value\": \"Text\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 14,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 545,\n        \"Left\": 396,\n        \"Width\": 131,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextSize\": 0,\n      \"ElementLabel\": \"Attachment\",\n      \"ElementHelp\": \"Attachment-help\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"FileType\",\n          \"Value\": \"1\"\n        },\n        {\n          \"Key\": \"order\",\n          \"Value\": \"190\"\n        },\n        {\n          \"Key\": \"isSection\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"sectionName\",\n          \"Value\": \"Attachment\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 1,\n      \"ElementSubType\": 1,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 364,\n        \"Left\": 394,\n        \"Width\": 132,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Text-Full Name\",\n      \"ElementHelp\": \"Text-Full Name help\",\n      \"IsRequired\": false,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"20\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 1,\n      \"ElementSubType\": 2,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 378,\n        \"Left\": 394,\n        \"Width\": 131,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Text-First Name\",\n      \"ElementHelp\": \"Text-First Name help\",\n      \"IsRequired\": false,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"30\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 1,\n      \"ElementSubType\": 3,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 392,\n        \"Left\": 394,\n        \"Width\": 131,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Text-Last Name\",\n      \"ElementHelp\": \"Text-Last Name help\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"40\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 1,\n      \"ElementSubType\": 4,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 406,\n        \"Left\": 394,\n        \"Width\": 132,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Text-Email\",\n      \"ElementHelp\": \"Text-Email help\",\n      \"IsRequired\": false,\n      \"Validations\": [\n        {\n          \"Regex\": \"^(?:[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+(?:\\\\.[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+)*|\\\"(?:[\\\\x01-\\\\x08\\\\x0b\\\\x0c\\\\x0e-\\\\x1f\\\\x21\\\\x23-\\\\x5b\\\\x5d-\\\\x7f]|\\\\[\\\\x01-\\\\x09\\\\x0b\\\\x0c\\\\x0e-\\\\x7f])*\\\")@(?:(?:[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?\\\\.)+[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?|\\\\[(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\\\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?|[a-zA-Z0-9-]*[a-zA-Z0-9]:(?:[\\\\x01-\\\\x08\\\\x0b\\\\x0c\\\\x0e-\\\\x1f\\\\x21-\\\\x5a\\\\x53-\\\\x7f]|\\\\[\\\\x01-\\\\x09\\\\x0b\\\\x0c\\\\x0e-\\\\x7f])+)\\\\])$\",\n          \"ErrorCode\": 4\n        }\n      ],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"50\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 2,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 419,\n        \"Left\": 430,\n        \"Width\": 58,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"18/02/2020 00:00\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Date & Hour\",\n      \"ElementHelp\": \"Date & Hour help\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DateTimeValidation\": {\n        \"DateTimeFormat\": \"DD/MM/YYYY HH:mm\",\n        \"IsCurrentDateTime\": false,\n        \"MinimumDate\": \"31/01/2020 22:00:00\",\n        \"MaximumDate\": \"31/12/2029 22:00:00\"\n      },\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"60\"\n        },\n        {\n          \"Key\": \"isSection\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"sectionName\",\n          \"Value\": \"Date\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 10,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 433,\n        \"Left\": 394,\n        \"Width\": 14,\n        \"Height\": 14\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"1\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Checkbox\",\n      \"ElementHelp\": \"Checkbox-help\",\n      \"ValueName\": \"1\",\n      \"IsRequired\": false,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"isMarked\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"order\",\n          \"Value\": \"70\"\n        },\n        {\n          \"Key\": \"isSection\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"sectionName\",\n          \"Value\": \"Checkbox\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 10,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 433,\n        \"Left\": 452,\n        \"Width\": 14,\n        \"Height\": 14\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"0\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Checkbox\",\n      \"ElementHelp\": \"Checkbox-help\",\n      \"ValueName\": \"2\",\n      \"IsRequired\": false,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"isMarked\",\n          \"Value\": \"false\"\n        },\n        {\n          \"Key\": \"order\",\n          \"Value\": \"80\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 0,\n      \"SignerIndex\": 0,\n      \"ElementType\": 3,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 559,\n        \"Left\": 390,\n        \"Width\": 147,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": true,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 0,\n      \"SignerIndex\": 0,\n      \"ElementType\": 5,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 573,\n        \"Left\": 390,\n        \"Width\": 147,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": true,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 0,\n      \"SignerIndex\": 0,\n      \"ElementType\": 1,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 586,\n        \"Left\": 430,\n        \"Width\": 54,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": true,\n      \"TextValue\": \"Editor Text\",\n      \"TextSize\": 14,\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    }\n  ],\n  \"Users\": [\n    {\n      \"UserIndex\": 1,\n      \"Title\": \"Customer\",\n      \"FixedSignerKey\": {\n        \"Key\": \"doxiUser@consist.co.il\",\n        \"Type\": 1\n      },\n      \"SignerType\": 1,\n      \"IsDisableAttachment\": false,\n      \"IsDisplayDownloadDocument\": false,\n      \"IsSendFromExternal\": false,\n      \"IsSuspended\": false,\n      \"IsNoDecline\": false,\n      \"IsChangable\": false,\n      \"ForceApprovalOnSignature\": false\n    }\n  ],\n  \"SendMethodType\": 0,\n  \"TemplateType\": 0,\n  \"CaptchaDisabled\": false,\n  \"IsAutomaticRemainder\": false,\n  \"DayesForAutomaticRemainder\": 0,\n  \"IsSendApprovalMailToAllSigners\": false,\n  \"DisableSBS\": false,\n  \"IsNoDecline\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/templates/:templateId","host":["/"],"path":["v6","templates",":templateId"],"variable":[{"key":"templateId","value":"string"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"98de33e5-8947-4c97-af3f-e41c6e1e8f61","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"PUT","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"TemplateName\": \"API Template Example\",\n  \"FlowElements\": [\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 0,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 291,\n        \"Left\": 401,\n        \"Width\": 114,\n        \"Height\": 38\n      },\n      \"IsEditorElement\": false,\n      \"TextSize\": 0,\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 10,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 433,\n        \"Left\": 513,\n        \"Width\": 14,\n        \"Height\": 14\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"0\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Checkbox\",\n      \"ElementHelp\": \"Checkbox-help\",\n      \"ValueName\": \"3\",\n      \"IsRequired\": false,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"isMarked\",\n          \"Value\": \"false\"\n        },\n        {\n          \"Key\": \"order\",\n          \"Value\": \"90\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 11,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 448,\n        \"Left\": 395,\n        \"Width\": 130,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Numeric-Custom\",\n      \"ElementHelp\": \"Numeric-Custom  help\",\n      \"IsRequired\": true,\n      \"Validations\": [\n        {\n          \"Regex\": \"^.{1,}$\",\n          \"ErrorCode\": 11\n        },\n        {\n          \"Regex\": \"^.{0,3}$\",\n          \"ErrorCode\": 12\n        }\n      ],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"100\"\n        },\n        {\n          \"Key\": \"isSection\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"sectionName\",\n          \"Value\": \"Numeric\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 11,\n      \"ElementSubType\": 5,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 462,\n        \"Left\": 396,\n        \"Width\": 130,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Numeric-Identity Number\",\n      \"ElementHelp\": \"Numeric-Identity Number help\",\n      \"IsRequired\": false,\n      \"Validations\": [\n        {\n          \"Regex\": \"ID_NUMBER\",\n          \"ErrorCode\": 5\n        }\n      ],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"110\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 11,\n      \"ElementSubType\": 6,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 476,\n        \"Left\": 396,\n        \"Width\": 130,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Numeric-Phone Number\",\n      \"ElementHelp\": \"Numeric-Phone Number help\",\n      \"IsRequired\": true,\n      \"Validations\": [\n        {\n          \"Regex\": \"^[0-9][0-9]\\\\d{7}$|^[0-9][0-9][0-9]\\\\d{7}$\",\n          \"ErrorCode\": 6\n        }\n      ],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"120\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 11,\n      \"ElementSubType\": 7,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 490,\n        \"Left\": 396,\n        \"Width\": 130,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Numeric-License Plate\",\n      \"ElementHelp\": \"Numeric-License Plate\",\n      \"IsRequired\": false,\n      \"Validations\": [\n        {\n          \"Regex\": \"^([0-9]{2}-?[0-9]{3}-?[0-9]{2})?([0-9]{3}-?[0-9]{2}-?[0-9]{3})?$\",\n          \"ErrorCode\": 7\n        }\n      ],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"130\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 11,\n      \"ElementSubType\": 8,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 503,\n        \"Left\": 397,\n        \"Width\": 129,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Numeric-Postal Code\",\n      \"ElementHelp\": \"Numeric-Postal Code help\",\n      \"IsRequired\": false,\n      \"Validations\": [\n        {\n          \"Regex\": \"^[0-9.]{7}$\",\n          \"ErrorCode\": 8\n        }\n      ],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"140\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 12,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 516,\n        \"Left\": 397,\n        \"Width\": 14,\n        \"Height\": 14\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"Customer\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Radio\",\n      \"ElementHelp\": \"Radio1 help\",\n      \"ValueName\": \"1\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"150\"\n        },\n        {\n          \"Key\": \"isSection\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"sectionName\",\n          \"Value\": \"Radio\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 12,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 516,\n        \"Left\": 452,\n        \"Width\": 14,\n        \"Height\": 14\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"Customer\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Radio\",\n      \"ElementHelp\": \"Radio1 help\",\n      \"ValueName\": \"2\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"160\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 12,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 516,\n        \"Left\": 512,\n        \"Width\": 14,\n        \"Height\": 14\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"Customer\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Radio\",\n      \"ElementHelp\": \"Radio1 help\",\n      \"ValueName\": \"3\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"170\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 13,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 531,\n        \"Left\": 397,\n        \"Width\": 129,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"Dropdown\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Dropdown\",\n      \"ElementHelp\": \"Dropdown help\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [\n        {\n          \"Values\": [\n            {\n              \"Key\": \"value 1\",\n              \"Value\": \"value 1\"\n            },\n            {\n              \"Key\": \"value 2\",\n              \"Value\": \"value 2\"\n            },\n            {\n              \"Key\": \"value 3\",\n              \"Value\": \"value 3\"\n            }\n          ]\n        }\n      ],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"180\"\n        },\n        {\n          \"Key\": \"isSection\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"sectionName\",\n          \"Value\": \"Dropdown\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 1,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 349,\n        \"Left\": 394,\n        \"Width\": 132,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Text-Custom\",\n      \"ElementHelp\": \"Text-Custom help\",\n      \"IsRequired\": true,\n      \"Validations\": [\n        {\n          \"Regex\": \"^.{5,}$\",\n          \"ErrorCode\": 11\n        },\n        {\n          \"Regex\": \"^.{0,10}$\",\n          \"ErrorCode\": 12\n        }\n      ],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"10\"\n        },\n        {\n          \"Key\": \"isSection\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"sectionName\",\n          \"Value\": \"Text\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 14,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 545,\n        \"Left\": 396,\n        \"Width\": 131,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextSize\": 0,\n      \"ElementLabel\": \"Attachment\",\n      \"ElementHelp\": \"Attachment-help\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"FileType\",\n          \"Value\": \"1\"\n        },\n        {\n          \"Key\": \"order\",\n          \"Value\": \"190\"\n        },\n        {\n          \"Key\": \"isSection\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"sectionName\",\n          \"Value\": \"Attachment\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 1,\n      \"ElementSubType\": 1,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 364,\n        \"Left\": 394,\n        \"Width\": 132,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Text-Full Name\",\n      \"ElementHelp\": \"Text-Full Name help\",\n      \"IsRequired\": false,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"20\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 1,\n      \"ElementSubType\": 2,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 378,\n        \"Left\": 394,\n        \"Width\": 131,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Text-First Name\",\n      \"ElementHelp\": \"Text-First Name help\",\n      \"IsRequired\": false,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"30\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 1,\n      \"ElementSubType\": 3,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 392,\n        \"Left\": 394,\n        \"Width\": 131,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Text-Last Name\",\n      \"ElementHelp\": \"Text-Last Name help\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"40\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 1,\n      \"ElementSubType\": 4,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 406,\n        \"Left\": 394,\n        \"Width\": 132,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Text-Email\",\n      \"ElementHelp\": \"Text-Email help\",\n      \"IsRequired\": false,\n      \"Validations\": [\n        {\n          \"Regex\": \"^(?:[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+(?:\\\\.[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+)*|\\\"(?:[\\\\x01-\\\\x08\\\\x0b\\\\x0c\\\\x0e-\\\\x1f\\\\x21\\\\x23-\\\\x5b\\\\x5d-\\\\x7f]|\\\\[\\\\x01-\\\\x09\\\\x0b\\\\x0c\\\\x0e-\\\\x7f])*\\\")@(?:(?:[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?\\\\.)+[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?|\\\\[(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\\\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?|[a-zA-Z0-9-]*[a-zA-Z0-9]:(?:[\\\\x01-\\\\x08\\\\x0b\\\\x0c\\\\x0e-\\\\x1f\\\\x21-\\\\x5a\\\\x53-\\\\x7f]|\\\\[\\\\x01-\\\\x09\\\\x0b\\\\x0c\\\\x0e-\\\\x7f])+)\\\\])$\",\n          \"ErrorCode\": 4\n        }\n      ],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"50\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 2,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 419,\n        \"Left\": 430,\n        \"Width\": 58,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"18/02/2020 00:00\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Date & Hour\",\n      \"ElementHelp\": \"Date & Hour help\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DateTimeValidation\": {\n        \"DateTimeFormat\": \"DD/MM/YYYY HH:mm\",\n        \"IsCurrentDateTime\": false,\n        \"MinimumDate\": \"31/01/2020 22:00:00\",\n        \"MaximumDate\": \"31/12/2029 22:00:00\"\n      },\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"60\"\n        },\n        {\n          \"Key\": \"isSection\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"sectionName\",\n          \"Value\": \"Date\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 10,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 433,\n        \"Left\": 394,\n        \"Width\": 14,\n        \"Height\": 14\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"1\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Checkbox\",\n      \"ElementHelp\": \"Checkbox-help\",\n      \"ValueName\": \"1\",\n      \"IsRequired\": false,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"isMarked\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"order\",\n          \"Value\": \"70\"\n        },\n        {\n          \"Key\": \"isSection\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"sectionName\",\n          \"Value\": \"Checkbox\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 10,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 433,\n        \"Left\": 452,\n        \"Width\": 14,\n        \"Height\": 14\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"0\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Checkbox\",\n      \"ElementHelp\": \"Checkbox-help\",\n      \"ValueName\": \"2\",\n      \"IsRequired\": false,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"isMarked\",\n          \"Value\": \"false\"\n        },\n        {\n          \"Key\": \"order\",\n          \"Value\": \"80\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 0,\n      \"SignerIndex\": 0,\n      \"ElementType\": 3,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 559,\n        \"Left\": 390,\n        \"Width\": 147,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": true,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 0,\n      \"SignerIndex\": 0,\n      \"ElementType\": 5,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 573,\n        \"Left\": 390,\n        \"Width\": 147,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": true,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 0,\n      \"SignerIndex\": 0,\n      \"ElementType\": 1,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 586,\n        \"Left\": 430,\n        \"Width\": 54,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": true,\n      \"TextValue\": \"Editor Text\",\n      \"TextSize\": 14,\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    }\n  ],\n  \"Users\": [\n    {\n      \"UserIndex\": 1,\n      \"Title\": \"Customer\",\n      \"FixedSignerKey\": {\n        \"Key\": \"doxiUser@consist.co.il\",\n        \"Type\": 1\n      },\n      \"SignerType\": 1,\n      \"IsDisableAttachment\": false,\n      \"IsDisplayDownloadDocument\": false,\n      \"IsSendFromExternal\": false,\n      \"IsSuspended\": false,\n      \"IsNoDecline\": false,\n      \"IsChangable\": false,\n      \"ForceApprovalOnSignature\": false\n    }\n  ],\n  \"SendMethodType\": 0,\n  \"TemplateType\": 0,\n  \"CaptchaDisabled\": false,\n  \"IsAutomaticRemainder\": false,\n  \"DayesForAutomaticRemainder\": 0,\n  \"IsSendApprovalMailToAllSigners\": false,\n  \"DisableSBS\": false,\n  \"IsNoDecline\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/templates/:templateId","host":["/"],"path":["v6","templates",":templateId"],"variable":[{"key":"templateId","value":"string"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"a32f2e5f-91cc-4fc5-b12f-215ef18c8da9","name":"Template not found","originalRequest":{"method":"PUT","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"TemplateName\": \"API Template Example\",\n  \"FlowElements\": [\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 0,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 291,\n        \"Left\": 401,\n        \"Width\": 114,\n        \"Height\": 38\n      },\n      \"IsEditorElement\": false,\n      \"TextSize\": 0,\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 10,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 433,\n        \"Left\": 513,\n        \"Width\": 14,\n        \"Height\": 14\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"0\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Checkbox\",\n      \"ElementHelp\": \"Checkbox-help\",\n      \"ValueName\": \"3\",\n      \"IsRequired\": false,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"isMarked\",\n          \"Value\": \"false\"\n        },\n        {\n          \"Key\": \"order\",\n          \"Value\": \"90\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 11,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 448,\n        \"Left\": 395,\n        \"Width\": 130,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Numeric-Custom\",\n      \"ElementHelp\": \"Numeric-Custom  help\",\n      \"IsRequired\": true,\n      \"Validations\": [\n        {\n          \"Regex\": \"^.{1,}$\",\n          \"ErrorCode\": 11\n        },\n        {\n          \"Regex\": \"^.{0,3}$\",\n          \"ErrorCode\": 12\n        }\n      ],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"100\"\n        },\n        {\n          \"Key\": \"isSection\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"sectionName\",\n          \"Value\": \"Numeric\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 11,\n      \"ElementSubType\": 5,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 462,\n        \"Left\": 396,\n        \"Width\": 130,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Numeric-Identity Number\",\n      \"ElementHelp\": \"Numeric-Identity Number help\",\n      \"IsRequired\": false,\n      \"Validations\": [\n        {\n          \"Regex\": \"ID_NUMBER\",\n          \"ErrorCode\": 5\n        }\n      ],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"110\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 11,\n      \"ElementSubType\": 6,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 476,\n        \"Left\": 396,\n        \"Width\": 130,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Numeric-Phone Number\",\n      \"ElementHelp\": \"Numeric-Phone Number help\",\n      \"IsRequired\": true,\n      \"Validations\": [\n        {\n          \"Regex\": \"^[0-9][0-9]\\\\d{7}$|^[0-9][0-9][0-9]\\\\d{7}$\",\n          \"ErrorCode\": 6\n        }\n      ],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"120\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 11,\n      \"ElementSubType\": 7,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 490,\n        \"Left\": 396,\n        \"Width\": 130,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Numeric-License Plate\",\n      \"ElementHelp\": \"Numeric-License Plate\",\n      \"IsRequired\": false,\n      \"Validations\": [\n        {\n          \"Regex\": \"^([0-9]{2}-?[0-9]{3}-?[0-9]{2})?([0-9]{3}-?[0-9]{2}-?[0-9]{3})?$\",\n          \"ErrorCode\": 7\n        }\n      ],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"130\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 11,\n      \"ElementSubType\": 8,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 503,\n        \"Left\": 397,\n        \"Width\": 129,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Numeric-Postal Code\",\n      \"ElementHelp\": \"Numeric-Postal Code help\",\n      \"IsRequired\": false,\n      \"Validations\": [\n        {\n          \"Regex\": \"^[0-9.]{7}$\",\n          \"ErrorCode\": 8\n        }\n      ],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"140\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 12,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 516,\n        \"Left\": 397,\n        \"Width\": 14,\n        \"Height\": 14\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"Customer\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Radio\",\n      \"ElementHelp\": \"Radio1 help\",\n      \"ValueName\": \"1\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"150\"\n        },\n        {\n          \"Key\": \"isSection\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"sectionName\",\n          \"Value\": \"Radio\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 12,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 516,\n        \"Left\": 452,\n        \"Width\": 14,\n        \"Height\": 14\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"Customer\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Radio\",\n      \"ElementHelp\": \"Radio1 help\",\n      \"ValueName\": \"2\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"160\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 12,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 516,\n        \"Left\": 512,\n        \"Width\": 14,\n        \"Height\": 14\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"Customer\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Radio\",\n      \"ElementHelp\": \"Radio1 help\",\n      \"ValueName\": \"3\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"170\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 13,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 531,\n        \"Left\": 397,\n        \"Width\": 129,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"Dropdown\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Dropdown\",\n      \"ElementHelp\": \"Dropdown help\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [\n        {\n          \"Values\": [\n            {\n              \"Key\": \"value 1\",\n              \"Value\": \"value 1\"\n            },\n            {\n              \"Key\": \"value 2\",\n              \"Value\": \"value 2\"\n            },\n            {\n              \"Key\": \"value 3\",\n              \"Value\": \"value 3\"\n            }\n          ]\n        }\n      ],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"180\"\n        },\n        {\n          \"Key\": \"isSection\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"sectionName\",\n          \"Value\": \"Dropdown\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 1,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 349,\n        \"Left\": 394,\n        \"Width\": 132,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Text-Custom\",\n      \"ElementHelp\": \"Text-Custom help\",\n      \"IsRequired\": true,\n      \"Validations\": [\n        {\n          \"Regex\": \"^.{5,}$\",\n          \"ErrorCode\": 11\n        },\n        {\n          \"Regex\": \"^.{0,10}$\",\n          \"ErrorCode\": 12\n        }\n      ],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"10\"\n        },\n        {\n          \"Key\": \"isSection\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"sectionName\",\n          \"Value\": \"Text\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 14,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 545,\n        \"Left\": 396,\n        \"Width\": 131,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextSize\": 0,\n      \"ElementLabel\": \"Attachment\",\n      \"ElementHelp\": \"Attachment-help\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"FileType\",\n          \"Value\": \"1\"\n        },\n        {\n          \"Key\": \"order\",\n          \"Value\": \"190\"\n        },\n        {\n          \"Key\": \"isSection\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"sectionName\",\n          \"Value\": \"Attachment\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 1,\n      \"ElementSubType\": 1,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 364,\n        \"Left\": 394,\n        \"Width\": 132,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Text-Full Name\",\n      \"ElementHelp\": \"Text-Full Name help\",\n      \"IsRequired\": false,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"20\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 1,\n      \"ElementSubType\": 2,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 378,\n        \"Left\": 394,\n        \"Width\": 131,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Text-First Name\",\n      \"ElementHelp\": \"Text-First Name help\",\n      \"IsRequired\": false,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"30\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 1,\n      \"ElementSubType\": 3,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 392,\n        \"Left\": 394,\n        \"Width\": 131,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Text-Last Name\",\n      \"ElementHelp\": \"Text-Last Name help\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"40\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 1,\n      \"ElementSubType\": 4,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 406,\n        \"Left\": 394,\n        \"Width\": 132,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Text-Email\",\n      \"ElementHelp\": \"Text-Email help\",\n      \"IsRequired\": false,\n      \"Validations\": [\n        {\n          \"Regex\": \"^(?:[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+(?:\\\\.[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+)*|\\\"(?:[\\\\x01-\\\\x08\\\\x0b\\\\x0c\\\\x0e-\\\\x1f\\\\x21\\\\x23-\\\\x5b\\\\x5d-\\\\x7f]|\\\\[\\\\x01-\\\\x09\\\\x0b\\\\x0c\\\\x0e-\\\\x7f])*\\\")@(?:(?:[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?\\\\.)+[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?|\\\\[(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\\\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?|[a-zA-Z0-9-]*[a-zA-Z0-9]:(?:[\\\\x01-\\\\x08\\\\x0b\\\\x0c\\\\x0e-\\\\x1f\\\\x21-\\\\x5a\\\\x53-\\\\x7f]|\\\\[\\\\x01-\\\\x09\\\\x0b\\\\x0c\\\\x0e-\\\\x7f])+)\\\\])$\",\n          \"ErrorCode\": 4\n        }\n      ],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"50\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 2,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 419,\n        \"Left\": 430,\n        \"Width\": 58,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"18/02/2020 00:00\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Date & Hour\",\n      \"ElementHelp\": \"Date & Hour help\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DateTimeValidation\": {\n        \"DateTimeFormat\": \"DD/MM/YYYY HH:mm\",\n        \"IsCurrentDateTime\": false,\n        \"MinimumDate\": \"31/01/2020 22:00:00\",\n        \"MaximumDate\": \"31/12/2029 22:00:00\"\n      },\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"60\"\n        },\n        {\n          \"Key\": \"isSection\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"sectionName\",\n          \"Value\": \"Date\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 10,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 433,\n        \"Left\": 394,\n        \"Width\": 14,\n        \"Height\": 14\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"1\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Checkbox\",\n      \"ElementHelp\": \"Checkbox-help\",\n      \"ValueName\": \"1\",\n      \"IsRequired\": false,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"isMarked\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"order\",\n          \"Value\": \"70\"\n        },\n        {\n          \"Key\": \"isSection\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"sectionName\",\n          \"Value\": \"Checkbox\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 10,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 433,\n        \"Left\": 452,\n        \"Width\": 14,\n        \"Height\": 14\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"0\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Checkbox\",\n      \"ElementHelp\": \"Checkbox-help\",\n      \"ValueName\": \"2\",\n      \"IsRequired\": false,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"isMarked\",\n          \"Value\": \"false\"\n        },\n        {\n          \"Key\": \"order\",\n          \"Value\": \"80\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 0,\n      \"SignerIndex\": 0,\n      \"ElementType\": 3,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 559,\n        \"Left\": 390,\n        \"Width\": 147,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": true,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 0,\n      \"SignerIndex\": 0,\n      \"ElementType\": 5,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 573,\n        \"Left\": 390,\n        \"Width\": 147,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": true,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 0,\n      \"SignerIndex\": 0,\n      \"ElementType\": 1,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 586,\n        \"Left\": 430,\n        \"Width\": 54,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": true,\n      \"TextValue\": \"Editor Text\",\n      \"TextSize\": 14,\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    }\n  ],\n  \"Users\": [\n    {\n      \"UserIndex\": 1,\n      \"Title\": \"Customer\",\n      \"FixedSignerKey\": {\n        \"Key\": \"doxiUser@consist.co.il\",\n        \"Type\": 1\n      },\n      \"SignerType\": 1,\n      \"IsDisableAttachment\": false,\n      \"IsDisplayDownloadDocument\": false,\n      \"IsSendFromExternal\": false,\n      \"IsSuspended\": false,\n      \"IsNoDecline\": false,\n      \"IsChangable\": false,\n      \"ForceApprovalOnSignature\": false\n    }\n  ],\n  \"SendMethodType\": 0,\n  \"TemplateType\": 0,\n  \"CaptchaDisabled\": false,\n  \"IsAutomaticRemainder\": false,\n  \"DayesForAutomaticRemainder\": 0,\n  \"IsSendApprovalMailToAllSigners\": false,\n  \"DisableSBS\": false,\n  \"IsNoDecline\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/templates/:templateId","host":["/"],"path":["v6","templates",":templateId"],"variable":[{"key":"templateId","value":"string"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"b0b9fdc8-1812-4b6e-be04-54152b1936e8","name":"Internal server error","originalRequest":{"method":"PUT","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"TemplateName\": \"API Template Example\",\n  \"FlowElements\": [\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 0,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 291,\n        \"Left\": 401,\n        \"Width\": 114,\n        \"Height\": 38\n      },\n      \"IsEditorElement\": false,\n      \"TextSize\": 0,\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 10,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 433,\n        \"Left\": 513,\n        \"Width\": 14,\n        \"Height\": 14\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"0\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Checkbox\",\n      \"ElementHelp\": \"Checkbox-help\",\n      \"ValueName\": \"3\",\n      \"IsRequired\": false,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"isMarked\",\n          \"Value\": \"false\"\n        },\n        {\n          \"Key\": \"order\",\n          \"Value\": \"90\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 11,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 448,\n        \"Left\": 395,\n        \"Width\": 130,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Numeric-Custom\",\n      \"ElementHelp\": \"Numeric-Custom  help\",\n      \"IsRequired\": true,\n      \"Validations\": [\n        {\n          \"Regex\": \"^.{1,}$\",\n          \"ErrorCode\": 11\n        },\n        {\n          \"Regex\": \"^.{0,3}$\",\n          \"ErrorCode\": 12\n        }\n      ],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"100\"\n        },\n        {\n          \"Key\": \"isSection\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"sectionName\",\n          \"Value\": \"Numeric\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 11,\n      \"ElementSubType\": 5,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 462,\n        \"Left\": 396,\n        \"Width\": 130,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Numeric-Identity Number\",\n      \"ElementHelp\": \"Numeric-Identity Number help\",\n      \"IsRequired\": false,\n      \"Validations\": [\n        {\n          \"Regex\": \"ID_NUMBER\",\n          \"ErrorCode\": 5\n        }\n      ],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"110\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 11,\n      \"ElementSubType\": 6,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 476,\n        \"Left\": 396,\n        \"Width\": 130,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Numeric-Phone Number\",\n      \"ElementHelp\": \"Numeric-Phone Number help\",\n      \"IsRequired\": true,\n      \"Validations\": [\n        {\n          \"Regex\": \"^[0-9][0-9]\\\\d{7}$|^[0-9][0-9][0-9]\\\\d{7}$\",\n          \"ErrorCode\": 6\n        }\n      ],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"120\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 11,\n      \"ElementSubType\": 7,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 490,\n        \"Left\": 396,\n        \"Width\": 130,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Numeric-License Plate\",\n      \"ElementHelp\": \"Numeric-License Plate\",\n      \"IsRequired\": false,\n      \"Validations\": [\n        {\n          \"Regex\": \"^([0-9]{2}-?[0-9]{3}-?[0-9]{2})?([0-9]{3}-?[0-9]{2}-?[0-9]{3})?$\",\n          \"ErrorCode\": 7\n        }\n      ],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"130\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 11,\n      \"ElementSubType\": 8,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 503,\n        \"Left\": 397,\n        \"Width\": 129,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Numeric-Postal Code\",\n      \"ElementHelp\": \"Numeric-Postal Code help\",\n      \"IsRequired\": false,\n      \"Validations\": [\n        {\n          \"Regex\": \"^[0-9.]{7}$\",\n          \"ErrorCode\": 8\n        }\n      ],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"140\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 12,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 516,\n        \"Left\": 397,\n        \"Width\": 14,\n        \"Height\": 14\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"Customer\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Radio\",\n      \"ElementHelp\": \"Radio1 help\",\n      \"ValueName\": \"1\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"150\"\n        },\n        {\n          \"Key\": \"isSection\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"sectionName\",\n          \"Value\": \"Radio\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 12,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 516,\n        \"Left\": 452,\n        \"Width\": 14,\n        \"Height\": 14\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"Customer\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Radio\",\n      \"ElementHelp\": \"Radio1 help\",\n      \"ValueName\": \"2\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"160\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 12,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 516,\n        \"Left\": 512,\n        \"Width\": 14,\n        \"Height\": 14\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"Customer\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Radio\",\n      \"ElementHelp\": \"Radio1 help\",\n      \"ValueName\": \"3\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"170\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 13,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 531,\n        \"Left\": 397,\n        \"Width\": 129,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"Dropdown\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Dropdown\",\n      \"ElementHelp\": \"Dropdown help\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [\n        {\n          \"Values\": [\n            {\n              \"Key\": \"value 1\",\n              \"Value\": \"value 1\"\n            },\n            {\n              \"Key\": \"value 2\",\n              \"Value\": \"value 2\"\n            },\n            {\n              \"Key\": \"value 3\",\n              \"Value\": \"value 3\"\n            }\n          ]\n        }\n      ],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"180\"\n        },\n        {\n          \"Key\": \"isSection\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"sectionName\",\n          \"Value\": \"Dropdown\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 1,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 349,\n        \"Left\": 394,\n        \"Width\": 132,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Text-Custom\",\n      \"ElementHelp\": \"Text-Custom help\",\n      \"IsRequired\": true,\n      \"Validations\": [\n        {\n          \"Regex\": \"^.{5,}$\",\n          \"ErrorCode\": 11\n        },\n        {\n          \"Regex\": \"^.{0,10}$\",\n          \"ErrorCode\": 12\n        }\n      ],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"10\"\n        },\n        {\n          \"Key\": \"isSection\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"sectionName\",\n          \"Value\": \"Text\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 14,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 545,\n        \"Left\": 396,\n        \"Width\": 131,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextSize\": 0,\n      \"ElementLabel\": \"Attachment\",\n      \"ElementHelp\": \"Attachment-help\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"FileType\",\n          \"Value\": \"1\"\n        },\n        {\n          \"Key\": \"order\",\n          \"Value\": \"190\"\n        },\n        {\n          \"Key\": \"isSection\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"sectionName\",\n          \"Value\": \"Attachment\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 1,\n      \"ElementSubType\": 1,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 364,\n        \"Left\": 394,\n        \"Width\": 132,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Text-Full Name\",\n      \"ElementHelp\": \"Text-Full Name help\",\n      \"IsRequired\": false,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"20\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 1,\n      \"ElementSubType\": 2,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 378,\n        \"Left\": 394,\n        \"Width\": 131,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Text-First Name\",\n      \"ElementHelp\": \"Text-First Name help\",\n      \"IsRequired\": false,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"30\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 1,\n      \"ElementSubType\": 3,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 392,\n        \"Left\": 394,\n        \"Width\": 131,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Text-Last Name\",\n      \"ElementHelp\": \"Text-Last Name help\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"40\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 1,\n      \"ElementSubType\": 4,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 406,\n        \"Left\": 394,\n        \"Width\": 132,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Text-Email\",\n      \"ElementHelp\": \"Text-Email help\",\n      \"IsRequired\": false,\n      \"Validations\": [\n        {\n          \"Regex\": \"^(?:[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+(?:\\\\.[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+)*|\\\"(?:[\\\\x01-\\\\x08\\\\x0b\\\\x0c\\\\x0e-\\\\x1f\\\\x21\\\\x23-\\\\x5b\\\\x5d-\\\\x7f]|\\\\[\\\\x01-\\\\x09\\\\x0b\\\\x0c\\\\x0e-\\\\x7f])*\\\")@(?:(?:[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?\\\\.)+[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?|\\\\[(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\\\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?|[a-zA-Z0-9-]*[a-zA-Z0-9]:(?:[\\\\x01-\\\\x08\\\\x0b\\\\x0c\\\\x0e-\\\\x1f\\\\x21-\\\\x5a\\\\x53-\\\\x7f]|\\\\[\\\\x01-\\\\x09\\\\x0b\\\\x0c\\\\x0e-\\\\x7f])+)\\\\])$\",\n          \"ErrorCode\": 4\n        }\n      ],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"50\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 2,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 419,\n        \"Left\": 430,\n        \"Width\": 58,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"18/02/2020 00:00\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Date & Hour\",\n      \"ElementHelp\": \"Date & Hour help\",\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DateTimeValidation\": {\n        \"DateTimeFormat\": \"DD/MM/YYYY HH:mm\",\n        \"IsCurrentDateTime\": false,\n        \"MinimumDate\": \"31/01/2020 22:00:00\",\n        \"MaximumDate\": \"31/12/2029 22:00:00\"\n      },\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"order\",\n          \"Value\": \"60\"\n        },\n        {\n          \"Key\": \"isSection\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"sectionName\",\n          \"Value\": \"Date\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 10,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 433,\n        \"Left\": 394,\n        \"Width\": 14,\n        \"Height\": 14\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"1\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Checkbox\",\n      \"ElementHelp\": \"Checkbox-help\",\n      \"ValueName\": \"1\",\n      \"IsRequired\": false,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"isMarked\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"order\",\n          \"Value\": \"70\"\n        },\n        {\n          \"Key\": \"isSection\",\n          \"Value\": \"true\"\n        },\n        {\n          \"Key\": \"sectionName\",\n          \"Value\": \"Checkbox\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 10,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 433,\n        \"Left\": 452,\n        \"Width\": 14,\n        \"Height\": 14\n      },\n      \"IsEditorElement\": false,\n      \"TextValue\": \"0\",\n      \"TextSize\": 14,\n      \"ElementLabel\": \"Checkbox\",\n      \"ElementHelp\": \"Checkbox-help\",\n      \"ValueName\": \"2\",\n      \"IsRequired\": false,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [\n        {\n          \"Key\": \"isMarked\",\n          \"Value\": \"false\"\n        },\n        {\n          \"Key\": \"order\",\n          \"Value\": \"80\"\n        }\n      ],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 0,\n      \"SignerIndex\": 0,\n      \"ElementType\": 3,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 559,\n        \"Left\": 390,\n        \"Width\": 147,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": true,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 0,\n      \"SignerIndex\": 0,\n      \"ElementType\": 5,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 573,\n        \"Left\": 390,\n        \"Width\": 147,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": true,\n      \"TextValue\": \"\",\n      \"TextSize\": 14,\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    },\n    {\n      \"UserIndex\": 0,\n      \"SignerIndex\": 0,\n      \"ElementType\": 1,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 586,\n        \"Left\": 430,\n        \"Width\": 54,\n        \"Height\": 12\n      },\n      \"IsEditorElement\": true,\n      \"TextValue\": \"Editor Text\",\n      \"TextSize\": 14,\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    }\n  ],\n  \"Users\": [\n    {\n      \"UserIndex\": 1,\n      \"Title\": \"Customer\",\n      \"FixedSignerKey\": {\n        \"Key\": \"doxiUser@consist.co.il\",\n        \"Type\": 1\n      },\n      \"SignerType\": 1,\n      \"IsDisableAttachment\": false,\n      \"IsDisplayDownloadDocument\": false,\n      \"IsSendFromExternal\": false,\n      \"IsSuspended\": false,\n      \"IsNoDecline\": false,\n      \"IsChangable\": false,\n      \"ForceApprovalOnSignature\": false\n    }\n  ],\n  \"SendMethodType\": 0,\n  \"TemplateType\": 0,\n  \"CaptchaDisabled\": false,\n  \"IsAutomaticRemainder\": false,\n  \"DayesForAutomaticRemainder\": 0,\n  \"IsSendApprovalMailToAllSigners\": false,\n  \"DisableSBS\": false,\n  \"IsNoDecline\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/templates/:templateId","host":["/"],"path":["v6","templates",":templateId"],"variable":[{"key":"templateId","value":"string"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"9ecb46ce-c7da-4216-855d-06353eb87c8e"},{"name":"/v6/templates/:templateId","id":"b6ee5a26-28f4-42a3-8546-d6df2fccf87a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"UserKey\": {\n    \"Key\": \"template-owner@example.com\",\n    \"Type\": 1\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/templates/:templateId","description":"<p>[V6] Delete user template by template ID</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","templates",":templateId"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>The unique identifier (GUID) of the template to delete</p>\n","type":"text/plain"},"type":"any","value":"string","key":"templateId"}]}},"response":[{"id":"108760e4-6062-45a6-bb26-b87e626e33ff","name":"Template deleted successfully","originalRequest":{"method":"DELETE","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"UserKey\": {\n    \"Key\": \"template-owner@example.com\",\n    \"Type\": 1\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/templates/:templateId","host":["/"],"path":["v6","templates",":templateId"],"variable":[{"key":"templateId","value":"string","description":"The unique identifier (GUID) of the template to delete"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"af9deebb-7433-4763-8c2b-7dadc917ef8c","name":"Invalid template ID format or invalid user key","originalRequest":{"method":"DELETE","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"UserKey\": {\n    \"Key\": \"template-owner@example.com\",\n    \"Type\": 1\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/templates/:templateId","host":["/"],"path":["v6","templates",":templateId"],"variable":[{"key":"templateId","value":"string","description":"The unique identifier (GUID) of the template to delete"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"dfb49f0f-8c64-41ab-97e9-9ed84d0ee896","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"DELETE","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"UserKey\": {\n    \"Key\": \"template-owner@example.com\",\n    \"Type\": 1\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/templates/:templateId","host":["/"],"path":["v6","templates",":templateId"],"variable":[{"key":"templateId","value":"string","description":"The unique identifier (GUID) of the template to delete"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"6c87e284-b339-4288-a6fe-141223edd99a","name":"Forbidden - User is not the owner of the template","originalRequest":{"method":"DELETE","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"UserKey\": {\n    \"Key\": \"template-owner@example.com\",\n    \"Type\": 1\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/templates/:templateId","host":["/"],"path":["v6","templates",":templateId"],"variable":[{"key":"templateId","value":"string","description":"The unique identifier (GUID) of the template to delete"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"519f32b5-4866-4d61-a307-dbc4c4359a6f","name":"Template not found","originalRequest":{"method":"DELETE","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"UserKey\": {\n    \"Key\": \"template-owner@example.com\",\n    \"Type\": 1\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/templates/:templateId","host":["/"],"path":["v6","templates",":templateId"],"variable":[{"key":"templateId","value":"string","description":"The unique identifier (GUID) of the template to delete"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"4496cf00-3edd-49b7-a702-976ba4ee2d4a","name":"Internal server error","originalRequest":{"method":"DELETE","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"UserKey\": {\n    \"Key\": \"template-owner@example.com\",\n    \"Type\": 1\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/templates/:templateId","host":["/"],"path":["v6","templates",":templateId"],"variable":[{"key":"templateId","value":"string","description":"The unique identifier (GUID) of the template to delete"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"b6ee5a26-28f4-42a3-8546-d6df2fccf87a"},{"name":"/v6/templates","id":"3f9e8e7f-63d4-439f-a5ff-b54bb03da03d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"DocumentFileName\": \"API Example.pdf\",\n  \"SenderKey\": {\n    \"Key\": \"someuser\",\n    \"Type\": 3\n  },\n  \"Base64DocumentFile\": \"JVBERi0xLjANCjEgMCBvYmo8PC9UeXBlL0NhdGFsb2cvUGFnZXMgMiAwIFI+PmVuZG9iaiAyIDAgb2JqPDwvVHlwZS9QYWdlcy9LaWRzWzMgMCBSXS9Db3VudCAxPj5lbmRvYmogMyAwIG9iajw8L1R5cGUvUGFnZS9NZWRpYUJveFswIDAgMyAzXT4+ZW5kb2JqDQp4cmVmDQowIDQNCjAwMDAwMDAwMDAgNjU1MzUgZg0KMDAwMDAwMDAxMCAwMDAwMCBuDQowMDAwMDAwMDUzIDAwMDAwIG4NCjAwMDAwMDAxMDIgMDAwMDAgbg0KdHJhaWxlcjw8L1NpemUgNC9Sb290IDEgMCBSPj4NCnN0YXJ0eHJlZg0KMTQ5DQolRU9G\",\n  \"TemplateName\": \"API Template Example\",\n  \"FlowElements\": [\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 0,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 291,\n        \"Left\": 401,\n        \"Width\": 114,\n        \"Height\": 38\n      },\n      \"IsEditorElement\": false,\n      \"TextSize\": 0,\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    }\n  ],\n  \"Users\": [\n    {\n      \"UserIndex\": 1,\n      \"Title\": \"Customer\",\n      \"SignerType\": 0,\n      \"IsSuspended\": false,\n      \"IsNoDecline\": false,\n      \"IsChangable\": true,\n      \"ForceApprovalOnSignature\": false\n    }\n  ],\n  \"SendMethodType\": 0,\n  \"TemplateType\": 0,\n  \"CaptchaDisabled\": false,\n  \"IsAutomaticRemainder\": false,\n  \"DayesForAutomaticRemainder\": 0,\n  \"IsSendApprovalMailToAllSigners\": false,\n  \"DisableSBS\": false,\n  \"SenderUserName\": \"someuser\",\n  \"IsNoDecline\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/templates","description":"<p>[V6] Create a new template with document and signature elements</p>\n<h2 id=\"json-object-description\">JSON object description:</h2>\n<hr />\n<h2 id=\"exaddtemplaterequest\">exAddTemplateRequest:</h2>\n<h3 id=\"request-containing-template-configuration-including-document-base64-encoded-or-file-reference-signature-elements-positions-types-labels-form-fields-and-template-metadata\">Request containing template configuration including document (base64 encoded or file reference), signature elements (positions, types, labels), form fields, and template metadata</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* DocumentFileName</td>\n<td>String</td>\n<td>The name of the file</td>\n</tr>\n<tr>\n<td>* SenderKey</td>\n<td><em><strong>ParticipantKey</strong></em></td>\n<td>The Id of the sender</td>\n</tr>\n<tr>\n<td>* Base64DocumentFile</td>\n<td>String</td>\n<td>The file as base 64</td>\n</tr>\n<tr>\n<td>* TemplateName</td>\n<td>String</td>\n<td>The name of the template</td>\n</tr>\n<tr>\n<td>FlowElements</td>\n<td><em><strong>ExTemplatFlowElement[]</strong></em></td>\n<td>All the elements of the template</td>\n</tr>\n<tr>\n<td>Users</td>\n<td><em><strong>ExTemplateUser[]</strong></em></td>\n<td>The users of the template</td>\n</tr>\n<tr>\n<td>SendMethodType</td>\n<td><em><strong>SendMethodType</strong></em></td>\n<td>Distribution method of the template</td>\n</tr>\n<tr>\n<td>TemplateType</td>\n<td><em><strong>Nullable</strong></em></td>\n<td>The type of the template : Standard=0,AnonymousEnable=1,AnonymousDisable=2</td>\n</tr>\n<tr>\n<td>CaptchaDisabled</td>\n<td>Boolean</td>\n<td>Disable/Enable captcha (only in anonymous template)</td>\n</tr>\n<tr>\n<td>PreliminaryText</td>\n<td>String</td>\n<td>Preliminary text of the flow - that will be created from this template (display only in side by side mode)</td>\n</tr>\n<tr>\n<td>SignFlowDescriptionMessage</td>\n<td>String</td>\n<td>Description of the document in the email</td>\n</tr>\n<tr>\n<td>IsAutomaticRemainder</td>\n<td>Boolean</td>\n<td>Enable/Disable send automatic remainder</td>\n</tr>\n<tr>\n<td>DayesForAutomaticRemainder</td>\n<td>Int32</td>\n<td>Number of the days for getting automatic remainder</td>\n</tr>\n<tr>\n<td>IsSendApprovalMailToAllSigners</td>\n<td>Boolean</td>\n<td>Enable/Disable send email to all signers (when the flow approved)</td>\n</tr>\n<tr>\n<td>Recipients</td>\n<td><em><strong>ParticipantKey[]</strong></em></td>\n<td>All the CC users of the flow (that will be created from this template)</td>\n</tr>\n<tr>\n<td>DisableSBS</td>\n<td>Boolean</td>\n<td>Disable/Enable dispaly side by side mode in the flow (that will be created from this template)</td>\n</tr>\n<tr>\n<td>FlowTwoFactorEnabled</td>\n<td>Nullable</td>\n<td>Enable/Disable Two Factor on the flow (that will created from this template)</td>\n</tr>\n<tr>\n<td>FlowExpirationDate</td>\n<td>Nullable</td>\n<td>Expiration date of the flow (that will created from this template)</td>\n</tr>\n<tr>\n<td>ImagesList</td>\n<td>Dictionary</td>\n<td>Dictionary of images for flow elements of type Image.</td>\n</tr>\n<tr>\n<td>SenderNotificationMailsToSend</td>\n<td><em><strong>NotificationMails[]</strong></em></td>\n<td>Types of notifications will be sent to the sender</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"templatetype\">TemplateType:</h3>\n<h3 id=\"types-of-templates\">Types of templates</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Standard</td>\n</tr>\n<tr>\n<td>1</td>\n<td>AnonymousEnable</td>\n</tr>\n<tr>\n<td>2</td>\n<td>AnonymousDisable</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Organizational</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"sendmethodtype\">SendMethodType:</h3>\n<h3 id=\"distribution-method-of-the-flow\">Distribution method of the flow</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>QueuedFlow</td>\n</tr>\n<tr>\n<td>1</td>\n<td>ParallelFlow</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"extemplateuser\">ExTemplateUser:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>UserIndex</td>\n<td>Int32</td>\n<td>The order of signer in the template</td>\n</tr>\n<tr>\n<td>Title</td>\n<td>String</td>\n<td>The title of the singer</td>\n</tr>\n<tr>\n<td>FixedSignerKey</td>\n<td><em><strong>ParticipantKey</strong></em></td>\n<td>The id of the fixed signer</td>\n</tr>\n<tr>\n<td>SignerType</td>\n<td><em><strong>Nullable</strong></em></td>\n<td>The type of the user</td>\n</tr>\n<tr>\n<td>IsDisableAttachment</td>\n<td>Nullable</td>\n<td>Disabled/Enabled add attachments to the flow (that will be created from the template)</td>\n</tr>\n<tr>\n<td>IsSuspended</td>\n<td>Boolean</td>\n<td>Set status flow to suspended (that will be created from the template)</td>\n</tr>\n<tr>\n<td>IsNoDecline</td>\n<td>Boolean</td>\n<td>Disable/Endable Decline the flow (that will be created from the template)</td>\n</tr>\n<tr>\n<td>MinimumSignatures</td>\n<td>Nullable</td>\n<td></td>\n</tr>\n<tr>\n<td>ForceApprovalOnSignature</td>\n<td>Boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonalMessage</td>\n<td>String(300) Validation: The field cannot contain script, vbscript, or style tags.</td>\n<td></td>\n</tr>\n<tr>\n<td>NotificationMailsToSend</td>\n<td><em><strong>NotificationMails[]</strong></em></td>\n<td>Types of notifications will be sent to the signer</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"notificationmails\">NotificationMails[]:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>All</td>\n</tr>\n<tr>\n<td>1</td>\n<td>None</td>\n</tr>\n<tr>\n<td>2</td>\n<td>SignFlow</td>\n</tr>\n<tr>\n<td>3</td>\n<td>FlowApproved</td>\n</tr>\n<tr>\n<td>4</td>\n<td>FlowDeclined</td>\n</tr>\n<tr>\n<td>5</td>\n<td>FlowStart</td>\n</tr>\n<tr>\n<td>6</td>\n<td>ReminderToSignFlow</td>\n</tr>\n<tr>\n<td>7</td>\n<td>FlowStoppedToSender</td>\n</tr>\n<tr>\n<td>8</td>\n<td>FlowStoppedToSigner</td>\n</tr>\n<tr>\n<td>9</td>\n<td>KitCompleted</td>\n</tr>\n<tr>\n<td>10</td>\n<td>SignKit</td>\n</tr>\n<tr>\n<td>11</td>\n<td>ReminderToSignKit</td>\n</tr>\n<tr>\n<td>12</td>\n<td>KitCreated</td>\n</tr>\n<tr>\n<td>13</td>\n<td>FlowExpired</td>\n</tr>\n<tr>\n<td>14</td>\n<td>FlowCCApproved</td>\n</tr>\n<tr>\n<td>15</td>\n<td>FlowCCDeclined</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"signertype\">SignerType:</h3>\n<h3 id=\"types-of-signers\">Types of signers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Changeable</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Static</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Anonymous</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"extemplatflowelement\">ExTemplatFlowElement:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>UserIndex</td>\n<td>Int32</td>\n<td>The order of the user in the template</td>\n</tr>\n<tr>\n<td>* ElementType</td>\n<td><em><strong>ElementType</strong></em></td>\n<td>Type of element</td>\n</tr>\n<tr>\n<td>ElementSubType</td>\n<td><em><strong>ElementSubType</strong></em></td>\n<td>Type of subject element</td>\n</tr>\n<tr>\n<td>* PageNumber</td>\n<td>Int32</td>\n<td>The page number of the element</td>\n</tr>\n<tr>\n<td>* Position</td>\n<td><em><strong>ElementPosition</strong></em></td>\n<td>Position of the element on the page</td>\n</tr>\n<tr>\n<td>TextValue</td>\n<td>String(200)</td>\n<td>The text of the element</td>\n</tr>\n<tr>\n<td>TextSize</td>\n<td>Int32</td>\n<td>The size of the text element</td>\n</tr>\n<tr>\n<td>TextFont</td>\n<td>String</td>\n<td>The font of the text element</td>\n</tr>\n<tr>\n<td>ElementLabel</td>\n<td>String</td>\n<td>The label of the element</td>\n</tr>\n<tr>\n<td>ElementHelp</td>\n<td>String</td>\n<td>Information about the element (helps to know more about the element)</td>\n</tr>\n<tr>\n<td>ValueName</td>\n<td>String</td>\n<td>The value name of element (only on radio-button/checkbox elemets)</td>\n</tr>\n<tr>\n<td>HorizontalAlignment</td>\n<td><em><strong>Nullable</strong></em></td>\n<td>Alignment the text of the element: Right=0,Center=1,Left=2</td>\n</tr>\n<tr>\n<td>IsRequired</td>\n<td>Nullable</td>\n<td>Set required to element</td>\n</tr>\n<tr>\n<td>Validations</td>\n<td><em><strong>ExValidation[]</strong></em></td>\n<td>Set validation to element</td>\n</tr>\n<tr>\n<td>DateTimeValidation</td>\n<td><em><strong>ExDateTimeValidation</strong></em></td>\n<td>Set Date validation to element (only on Date element)</td>\n</tr>\n<tr>\n<td>DropDownList</td>\n<td><em><strong>ExDropDownField[]</strong></em></td>\n<td>Values of drop list element</td>\n</tr>\n<tr>\n<td>AdditionalInfo</td>\n<td>KeyValuePair[]</td>\n<td>Add additional data to the element</td>\n</tr>\n<tr>\n<td>DuplicateElementInfo</td>\n<td><em><strong>DuplicateElementInfo</strong></em></td>\n<td>Set element as duplicate (make the element to parent)</td>\n</tr>\n<tr>\n<td>DisplayValueInFlowDecription</td>\n<td>Boolean</td>\n<td>Display/Not dispaly the value of element in the flow decription</td>\n</tr>\n<tr>\n<td>ZIndex</td>\n<td>Nullable</td>\n<td>The order of the element on the page</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"duplicateelementinfo\">DuplicateElementInfo:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>IsAllPagesFromCurrent</td>\n<td>Boolean</td>\n<td>Duplicate element at all pages</td>\n</tr>\n<tr>\n<td>PageRange</td>\n<td>String</td>\n<td>Duplicate element on a specific page (for example : 1,5,8 - the element will duplicated on these pages)</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exdropdownfield\">ExDropDownField:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Values</td>\n<td><em><strong>ExDropDownItem[]</strong></em></td>\n<td>List of values</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exdropdownitem\">ExDropDownItem:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Key</td>\n<td>String</td>\n<td>Key of Item</td>\n</tr>\n<tr>\n<td>Value</td>\n<td>String</td>\n<td>Value of Item</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exdatetimevalidation\">ExDateTimeValidation:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DateTimeFormat</td>\n<td>String</td>\n<td>Format of the date</td>\n</tr>\n<tr>\n<td>DateFormatLanguage</td>\n<td>String</td>\n<td>language : 'en-US','he-IL'</td>\n</tr>\n<tr>\n<td>IsCurrentDateTime</td>\n<td>Boolean</td>\n<td>Set the date to the current signing date</td>\n</tr>\n<tr>\n<td>MinimumDate</td>\n<td>Nullable</td>\n<td>Minimum value of date</td>\n</tr>\n<tr>\n<td>MaximumDate</td>\n<td>Nullable</td>\n<td>Maximum value of date</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exvalidation\">ExValidation:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Regex</td>\n<td>String</td>\n<td>The Regex on the value</td>\n</tr>\n<tr>\n<td>ErrorCode</td>\n<td><em><strong>ElementValidationError</strong></em></td>\n<td>Errors of regex</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"elementvalidationerror\">ElementValidationError:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>4</td>\n<td>Email</td>\n</tr>\n<tr>\n<td>5</td>\n<td>IdNumber</td>\n</tr>\n<tr>\n<td>6</td>\n<td>PhoneNumber</td>\n</tr>\n<tr>\n<td>7</td>\n<td>LicensePlate</td>\n</tr>\n<tr>\n<td>8</td>\n<td>PostalCode</td>\n</tr>\n<tr>\n<td>10</td>\n<td>MandatoryElements</td>\n</tr>\n<tr>\n<td>11</td>\n<td>smallChar</td>\n</tr>\n<tr>\n<td>12</td>\n<td>BigChar</td>\n</tr>\n<tr>\n<td>13</td>\n<td>SmallDate</td>\n</tr>\n<tr>\n<td>14</td>\n<td>BigDate</td>\n</tr>\n<tr>\n<td>15</td>\n<td>CreditCard</td>\n</tr>\n<tr>\n<td>16</td>\n<td>CwCredit</td>\n</tr>\n<tr>\n<td>17</td>\n<td>SmallNumber</td>\n</tr>\n<tr>\n<td>18</td>\n<td>BigNumber</td>\n</tr>\n<tr>\n<td>19</td>\n<td>RequiredElements</td>\n</tr>\n<tr>\n<td>20</td>\n<td>FieldValueMustBeNumeric</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exhorizontalalignment\">ExHorizontalAlignment:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Right</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Center</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Left</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"elementposition\">ElementPosition:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* Top</td>\n<td>Single</td>\n<td>Position of the element related to top of the page (in points)</td>\n</tr>\n<tr>\n<td>* Left</td>\n<td>Single</td>\n<td>Position of the element related to left of the page (in points)</td>\n</tr>\n<tr>\n<td>* Width</td>\n<td>Single</td>\n<td>Width of the element (in points)</td>\n</tr>\n<tr>\n<td>* Height</td>\n<td>Single</td>\n<td>Height of the element (in points)</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"elementsubtype\">ElementSubType:</h3>\n<h3 id=\"sub-type-of-element\">Sub type of element</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Custom</td>\n</tr>\n<tr>\n<td>1</td>\n<td>FullName</td>\n</tr>\n<tr>\n<td>2</td>\n<td>FirstName</td>\n</tr>\n<tr>\n<td>3</td>\n<td>LastName</td>\n</tr>\n<tr>\n<td>4</td>\n<td>Email</td>\n</tr>\n<tr>\n<td>5</td>\n<td>IdentityNumber</td>\n</tr>\n<tr>\n<td>6</td>\n<td>PhoneNumber</td>\n</tr>\n<tr>\n<td>7</td>\n<td>License</td>\n</tr>\n<tr>\n<td>8</td>\n<td>PostalCode</td>\n</tr>\n<tr>\n<td>9</td>\n<td>EditorText</td>\n</tr>\n<tr>\n<td>10</td>\n<td>Initials</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"elementtype\">ElementType:</h3>\n<h3 id=\"types-of-elements\">Types of Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Sign</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Text</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Date</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Erase</td>\n</tr>\n<tr>\n<td>4</td>\n<td>Highlight</td>\n</tr>\n<tr>\n<td>5</td>\n<td>Blackout</td>\n</tr>\n<tr>\n<td>9</td>\n<td>EditorText</td>\n</tr>\n<tr>\n<td>10</td>\n<td>Checkbox</td>\n</tr>\n<tr>\n<td>11</td>\n<td>Numeric</td>\n</tr>\n<tr>\n<td>12</td>\n<td>Radio</td>\n</tr>\n<tr>\n<td>13</td>\n<td>Dropdown</td>\n</tr>\n<tr>\n<td>14</td>\n<td>Attachment</td>\n</tr>\n<tr>\n<td>17</td>\n<td>Image</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"participantkey\">ParticipantKey:</h3>\n<h3 id=\"allow-to-locate-doxi-user-byuseremail1userphone2\">Allow to locate Doxi user by:UserEmail=1UserPhone=2</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* Key</td>\n<td>String</td>\n<td>User search value</td>\n</tr>\n<tr>\n<td>Type</td>\n<td><em><strong>ParticipantKeyType</strong></em></td>\n<td>Search type:UserEmail=1,UserPhone=2</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"participantkeytype\">ParticipantKeyType:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>UserId</td>\n</tr>\n<tr>\n<td>1</td>\n<td>UserEmail</td>\n</tr>\n<tr>\n<td>2</td>\n<td>UserPhone</td>\n</tr>\n<tr>\n<td>3</td>\n<td>UserName</td>\n</tr>\n<tr>\n<td>4</td>\n<td>GroupId</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","templates"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"6b7fa2b5-9be5-437b-a417-60e88bcec01b","name":"Template created successfully","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"DocumentFileName\": \"API Example.pdf\",\n  \"SenderKey\": {\n    \"Key\": \"someuser\",\n    \"Type\": 3\n  },\n  \"Base64DocumentFile\": \"JVBERi0xLjANCjEgMCBvYmo8PC9UeXBlL0NhdGFsb2cvUGFnZXMgMiAwIFI+PmVuZG9iaiAyIDAgb2JqPDwvVHlwZS9QYWdlcy9LaWRzWzMgMCBSXS9Db3VudCAxPj5lbmRvYmogMyAwIG9iajw8L1R5cGUvUGFnZS9NZWRpYUJveFswIDAgMyAzXT4+ZW5kb2JqDQp4cmVmDQowIDQNCjAwMDAwMDAwMDAgNjU1MzUgZg0KMDAwMDAwMDAxMCAwMDAwMCBuDQowMDAwMDAwMDUzIDAwMDAwIG4NCjAwMDAwMDAxMDIgMDAwMDAgbg0KdHJhaWxlcjw8L1NpemUgNC9Sb290IDEgMCBSPj4NCnN0YXJ0eHJlZg0KMTQ5DQolRU9G\",\n  \"TemplateName\": \"API Template Example\",\n  \"FlowElements\": [\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 0,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 291,\n        \"Left\": 401,\n        \"Width\": 114,\n        \"Height\": 38\n      },\n      \"IsEditorElement\": false,\n      \"TextSize\": 0,\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    }\n  ],\n  \"Users\": [\n    {\n      \"UserIndex\": 1,\n      \"Title\": \"Customer\",\n      \"SignerType\": 0,\n      \"IsSuspended\": false,\n      \"IsNoDecline\": false,\n      \"IsChangable\": true,\n      \"ForceApprovalOnSignature\": false\n    }\n  ],\n  \"SendMethodType\": 0,\n  \"TemplateType\": 0,\n  \"CaptchaDisabled\": false,\n  \"IsAutomaticRemainder\": false,\n  \"DayesForAutomaticRemainder\": 0,\n  \"IsSendApprovalMailToAllSigners\": false,\n  \"DisableSBS\": false,\n  \"SenderUserName\": \"someuser\",\n  \"IsNoDecline\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/templates"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"string"},{"id":"af18923c-8702-4191-b7c1-90fb278c5c1a","name":"Invalid request - Missing required fields, invalid document format, or invalid signature elements","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"DocumentFileName\": \"API Example.pdf\",\n  \"SenderKey\": {\n    \"Key\": \"someuser\",\n    \"Type\": 3\n  },\n  \"Base64DocumentFile\": \"JVBERi0xLjANCjEgMCBvYmo8PC9UeXBlL0NhdGFsb2cvUGFnZXMgMiAwIFI+PmVuZG9iaiAyIDAgb2JqPDwvVHlwZS9QYWdlcy9LaWRzWzMgMCBSXS9Db3VudCAxPj5lbmRvYmogMyAwIG9iajw8L1R5cGUvUGFnZS9NZWRpYUJveFswIDAgMyAzXT4+ZW5kb2JqDQp4cmVmDQowIDQNCjAwMDAwMDAwMDAgNjU1MzUgZg0KMDAwMDAwMDAxMCAwMDAwMCBuDQowMDAwMDAwMDUzIDAwMDAwIG4NCjAwMDAwMDAxMDIgMDAwMDAgbg0KdHJhaWxlcjw8L1NpemUgNC9Sb290IDEgMCBSPj4NCnN0YXJ0eHJlZg0KMTQ5DQolRU9G\",\n  \"TemplateName\": \"API Template Example\",\n  \"FlowElements\": [\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 0,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 291,\n        \"Left\": 401,\n        \"Width\": 114,\n        \"Height\": 38\n      },\n      \"IsEditorElement\": false,\n      \"TextSize\": 0,\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    }\n  ],\n  \"Users\": [\n    {\n      \"UserIndex\": 1,\n      \"Title\": \"Customer\",\n      \"SignerType\": 0,\n      \"IsSuspended\": false,\n      \"IsNoDecline\": false,\n      \"IsChangable\": true,\n      \"ForceApprovalOnSignature\": false\n    }\n  ],\n  \"SendMethodType\": 0,\n  \"TemplateType\": 0,\n  \"CaptchaDisabled\": false,\n  \"IsAutomaticRemainder\": false,\n  \"DayesForAutomaticRemainder\": 0,\n  \"IsSendApprovalMailToAllSigners\": false,\n  \"DisableSBS\": false,\n  \"SenderUserName\": \"someuser\",\n  \"IsNoDecline\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/templates"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"9a327db0-1042-4b19-b2a0-1a3bb486282f","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"DocumentFileName\": \"API Example.pdf\",\n  \"SenderKey\": {\n    \"Key\": \"someuser\",\n    \"Type\": 3\n  },\n  \"Base64DocumentFile\": \"JVBERi0xLjANCjEgMCBvYmo8PC9UeXBlL0NhdGFsb2cvUGFnZXMgMiAwIFI+PmVuZG9iaiAyIDAgb2JqPDwvVHlwZS9QYWdlcy9LaWRzWzMgMCBSXS9Db3VudCAxPj5lbmRvYmogMyAwIG9iajw8L1R5cGUvUGFnZS9NZWRpYUJveFswIDAgMyAzXT4+ZW5kb2JqDQp4cmVmDQowIDQNCjAwMDAwMDAwMDAgNjU1MzUgZg0KMDAwMDAwMDAxMCAwMDAwMCBuDQowMDAwMDAwMDUzIDAwMDAwIG4NCjAwMDAwMDAxMDIgMDAwMDAgbg0KdHJhaWxlcjw8L1NpemUgNC9Sb290IDEgMCBSPj4NCnN0YXJ0eHJlZg0KMTQ5DQolRU9G\",\n  \"TemplateName\": \"API Template Example\",\n  \"FlowElements\": [\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 0,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 291,\n        \"Left\": 401,\n        \"Width\": 114,\n        \"Height\": 38\n      },\n      \"IsEditorElement\": false,\n      \"TextSize\": 0,\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    }\n  ],\n  \"Users\": [\n    {\n      \"UserIndex\": 1,\n      \"Title\": \"Customer\",\n      \"SignerType\": 0,\n      \"IsSuspended\": false,\n      \"IsNoDecline\": false,\n      \"IsChangable\": true,\n      \"ForceApprovalOnSignature\": false\n    }\n  ],\n  \"SendMethodType\": 0,\n  \"TemplateType\": 0,\n  \"CaptchaDisabled\": false,\n  \"IsAutomaticRemainder\": false,\n  \"DayesForAutomaticRemainder\": 0,\n  \"IsSendApprovalMailToAllSigners\": false,\n  \"DisableSBS\": false,\n  \"SenderUserName\": \"someuser\",\n  \"IsNoDecline\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/templates"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"3e36dc65-b365-4413-8c92-1c27c77b2e6e","name":"Internal server error","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"DocumentFileName\": \"API Example.pdf\",\n  \"SenderKey\": {\n    \"Key\": \"someuser\",\n    \"Type\": 3\n  },\n  \"Base64DocumentFile\": \"JVBERi0xLjANCjEgMCBvYmo8PC9UeXBlL0NhdGFsb2cvUGFnZXMgMiAwIFI+PmVuZG9iaiAyIDAgb2JqPDwvVHlwZS9QYWdlcy9LaWRzWzMgMCBSXS9Db3VudCAxPj5lbmRvYmogMyAwIG9iajw8L1R5cGUvUGFnZS9NZWRpYUJveFswIDAgMyAzXT4+ZW5kb2JqDQp4cmVmDQowIDQNCjAwMDAwMDAwMDAgNjU1MzUgZg0KMDAwMDAwMDAxMCAwMDAwMCBuDQowMDAwMDAwMDUzIDAwMDAwIG4NCjAwMDAwMDAxMDIgMDAwMDAgbg0KdHJhaWxlcjw8L1NpemUgNC9Sb290IDEgMCBSPj4NCnN0YXJ0eHJlZg0KMTQ5DQolRU9G\",\n  \"TemplateName\": \"API Template Example\",\n  \"FlowElements\": [\n    {\n      \"UserIndex\": 1,\n      \"SignerIndex\": 1,\n      \"ElementType\": 0,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n        \"Top\": 291,\n        \"Left\": 401,\n        \"Width\": 114,\n        \"Height\": 38\n      },\n      \"IsEditorElement\": false,\n      \"TextSize\": 0,\n      \"IsRequired\": true,\n      \"Validations\": [],\n      \"DropDownList\": [],\n      \"AdditionalInfo\": [],\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false\n    }\n  ],\n  \"Users\": [\n    {\n      \"UserIndex\": 1,\n      \"Title\": \"Customer\",\n      \"SignerType\": 0,\n      \"IsSuspended\": false,\n      \"IsNoDecline\": false,\n      \"IsChangable\": true,\n      \"ForceApprovalOnSignature\": false\n    }\n  ],\n  \"SendMethodType\": 0,\n  \"TemplateType\": 0,\n  \"CaptchaDisabled\": false,\n  \"IsAutomaticRemainder\": false,\n  \"DayesForAutomaticRemainder\": 0,\n  \"IsSendApprovalMailToAllSigners\": false,\n  \"DisableSBS\": false,\n  \"SenderUserName\": \"someuser\",\n  \"IsNoDecline\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/templates"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"3f9e8e7f-63d4-439f-a5ff-b54bb03da03d"},{"name":"/v6/templates/:templateId/attachments","id":"52abb40e-ca09-4fe4-8b64-285ef516357d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"description":"<p>The file to attach to the template. Supported file types: PDF, DOCX, DOC, XLSX, XLS, JPG, JPEG, PNG, and other common document formats</p>\n","key":"file","type":"file","value":null},{"description":"<p>Request containing attachment metadata including the user who added the file (UserAddedTheFile participant key)</p>\n","key":"addAttachmentRequest","value":"{\n  \"SignFlowId\": null,\n  \"UserMail\": null,\n  \"UserAddedTheFile\": {\n    \"Key\": \"user@example.com\",\n    \"Type\": 1\n  },\n  \"IsSignerAttachment\": false\n}","type":"text"}]},"url":"//v6/templates/:templateId/attachments","description":"<p>[V6] Upload file attachment to existing template</p>\n<hr />\n<h2 id=\"templateid\">templateId:</h2>\n<h3 id=\"the-unique-identifier-guid-of-the-template\">The unique identifier (GUID) of the template</h3>\n<hr />\n<h2 id=\"file\">file:</h2>\n<h3 id=\"the-file-to-attach-to-the-template-supported-file-types-pdf-docx-doc-xlsx-xls-jpg-jpeg-png-and-other-common-document-formats\">The file to attach to the template. Supported file types: PDF, DOCX, DOC, XLSX, XLS, JPG, JPEG, PNG, and other common document formats</h3>\n<hr />\n<h2 id=\"addattachmentrequest\">addAttachmentRequest:</h2>\n<h3 id=\"request-containing-attachment-metadata-including-the-user-who-added-the-file-useraddedthefile-participant-key\">Request containing attachment metadata including the user who added the file (UserAddedTheFile participant key)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>UserAddedTheFile</td>\n<td><em><strong>ParticipantKey</strong></em></td>\n<td>User that add the file to the flow</td>\n</tr>\n<tr>\n<td>IsSignerAttachment</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>An indication of whether the attachment was added to the flow in creation mode,or assigned to a specific signer.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"participantkey\">ParticipantKey:</h3>\n<h3 id=\"allow-to-locate-doxi-user-byuseremail1userphone2\">Allow to locate Doxi user by:UserEmail=1UserPhone=2</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* Key</td>\n<td>String</td>\n<td>User search value</td>\n</tr>\n<tr>\n<td>Type</td>\n<td><em><strong>ParticipantKeyType</strong></em></td>\n<td>Search type:UserEmail=1,UserPhone=2</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"participantkeytype\">ParticipantKeyType:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>UserId</td>\n</tr>\n<tr>\n<td>1</td>\n<td>UserEmail</td>\n</tr>\n<tr>\n<td>2</td>\n<td>UserPhone</td>\n</tr>\n<tr>\n<td>3</td>\n<td>UserName</td>\n</tr>\n<tr>\n<td>4</td>\n<td>GroupId</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","templates",":templateId","attachments"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>The unique identifier (GUID) of the template</p>\n","type":"text/plain"},"type":"any","value":"string","key":"templateId"}]}},"response":[{"id":"eb47e9cd-29c1-437b-b548-50f4634f8ed8","name":"File attached successfully to template","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"description":"The file to attach to the template. Supported file types: PDF, DOCX, DOC, XLSX, XLS, JPG, JPEG, PNG, and other common document formats","key":"file","type":"file","src":[]},{"description":"Request containing attachment metadata including the user who added the file (UserAddedTheFile participant key)","key":"addAttachmentRequest","value":"{\n  \"SignFlowId\": null,\n  \"UserMail\": null,\n  \"UserAddedTheFile\": {\n    \"Key\": \"user@example.com\",\n    \"Type\": 1\n  },\n  \"IsSignerAttachment\": false\n}","type":"text"}]},"url":{"raw":"//v6/templates/:templateId/attachments","host":["/"],"path":["v6","templates",":templateId","attachments"],"variable":[{"key":"templateId","value":"string","description":"The unique identifier (GUID) of the template"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"string"},{"id":"77e1b0a2-36c6-4267-8c94-b3356cda4db5","name":"Invalid template ID format, invalid file, or invalid request data","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"description":"The file to attach to the template. Supported file types: PDF, DOCX, DOC, XLSX, XLS, JPG, JPEG, PNG, and other common document formats","key":"file","type":"file","src":[]},{"description":"Request containing attachment metadata including the user who added the file (UserAddedTheFile participant key)","key":"addAttachmentRequest","value":"{\n  \"SignFlowId\": null,\n  \"UserMail\": null,\n  \"UserAddedTheFile\": {\n    \"Key\": \"user@example.com\",\n    \"Type\": 1\n  },\n  \"IsSignerAttachment\": false\n}","type":"text"}]},"url":{"raw":"//v6/templates/:templateId/attachments","host":["/"],"path":["v6","templates",":templateId","attachments"],"variable":[{"key":"templateId","value":"string","description":"The unique identifier (GUID) of the template"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"f4f3389b-5ad3-40fa-b8eb-70ae2374db53","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"multipart/form-data"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"description":"The file to attach to the template. Supported file types: PDF, DOCX, DOC, XLSX, XLS, JPG, JPEG, PNG, and other common document formats","key":"file","type":"file","src":[]},{"description":"Request containing attachment metadata including the user who added the file (UserAddedTheFile participant key)","key":"addAttachmentRequest","value":"{\n  \"SignFlowId\": null,\n  \"UserMail\": null,\n  \"UserAddedTheFile\": {\n    \"Key\": \"user@example.com\",\n    \"Type\": 1\n  },\n  \"IsSignerAttachment\": false\n}","type":"text"}]},"url":{"raw":"//v6/templates/:templateId/attachments","host":["/"],"path":["v6","templates",":templateId","attachments"],"variable":[{"key":"templateId","value":"string","description":"The unique identifier (GUID) of the template"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"0ae5c282-9780-4173-8e07-b665aced1418","name":"Template not found","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"multipart/form-data"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"description":"The file to attach to the template. Supported file types: PDF, DOCX, DOC, XLSX, XLS, JPG, JPEG, PNG, and other common document formats","key":"file","type":"file","src":[]},{"description":"Request containing attachment metadata including the user who added the file (UserAddedTheFile participant key)","key":"addAttachmentRequest","value":"{\n  \"SignFlowId\": null,\n  \"UserMail\": null,\n  \"UserAddedTheFile\": {\n    \"Key\": \"user@example.com\",\n    \"Type\": 1\n  },\n  \"IsSignerAttachment\": false\n}","type":"text"}]},"url":{"raw":"//v6/templates/:templateId/attachments","host":["/"],"path":["v6","templates",":templateId","attachments"],"variable":[{"key":"templateId","value":"string","description":"The unique identifier (GUID) of the template"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"b84a35c6-00a6-4f0f-b552-0f343569f5fc","name":"Internal server error","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"multipart/form-data"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"description":"The file to attach to the template. Supported file types: PDF, DOCX, DOC, XLSX, XLS, JPG, JPEG, PNG, and other common document formats","key":"file","type":"file","src":[]},{"description":"Request containing attachment metadata including the user who added the file (UserAddedTheFile participant key)","key":"addAttachmentRequest","value":"{\n  \"SignFlowId\": null,\n  \"UserMail\": null,\n  \"UserAddedTheFile\": {\n    \"Key\": \"user@example.com\",\n    \"Type\": 1\n  },\n  \"IsSignerAttachment\": false\n}","type":"text"}]},"url":{"raw":"//v6/templates/:templateId/attachments","host":["/"],"path":["v6","templates",":templateId","attachments"],"variable":[{"key":"templateId","value":"string","description":"The unique identifier (GUID) of the template"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"52abb40e-ca09-4fe4-8b64-285ef516357d"},{"name":"/v6/templates/:templateId/attachments/:attachmentId","id":"93d2f257-7fc0-4752-bd5e-fddfb2fb0e48","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Accept","value":"text/plain"}],"url":"//v6/templates/:templateId/attachments/:attachmentId","description":"<p>[V6] Delete file attachment from existing template</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","templates",":templateId","attachments",":attachmentId"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>The unique identifier (GUID) of the template</p>\n","type":"text/plain"},"type":"any","value":"string","key":"templateId"},{"description":{"content":"<p>The unique identifier (GUID) of the attached file to delete</p>\n","type":"text/plain"},"type":"any","value":"string","key":"attachmentId"}]}},"response":[{"id":"365745b0-ad75-4de6-affe-351c68539c62","name":"Attachment deleted successfully","originalRequest":{"method":"DELETE","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/templates/:templateId/attachments/:attachmentId","host":["/"],"path":["v6","templates",":templateId","attachments",":attachmentId"],"variable":[{"key":"templateId","value":"string","description":"The unique identifier (GUID) of the template"},{"key":"attachmentId","value":"string","description":"The unique identifier (GUID) of the attached file to delete"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"3456c788-150e-4355-88e3-f95004d24bd2","name":"Invalid template ID or attachment ID format","originalRequest":{"method":"DELETE","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/templates/:templateId/attachments/:attachmentId","host":["/"],"path":["v6","templates",":templateId","attachments",":attachmentId"],"variable":[{"key":"templateId","value":"string","description":"The unique identifier (GUID) of the template"},{"key":"attachmentId","value":"string","description":"The unique identifier (GUID) of the attached file to delete"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"59e35fb0-b1bb-4066-bc63-a8985e5fb99f","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"DELETE","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/templates/:templateId/attachments/:attachmentId","host":["/"],"path":["v6","templates",":templateId","attachments",":attachmentId"],"variable":[{"key":"templateId","value":"string","description":"The unique identifier (GUID) of the template"},{"key":"attachmentId","value":"string","description":"The unique identifier (GUID) of the attached file to delete"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"bed7fc51-463c-415c-814e-ea3b1df7c6f9","name":"Template not found or attachment not found","originalRequest":{"method":"DELETE","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/templates/:templateId/attachments/:attachmentId","host":["/"],"path":["v6","templates",":templateId","attachments",":attachmentId"],"variable":[{"key":"templateId","value":"string","description":"The unique identifier (GUID) of the template"},{"key":"attachmentId","value":"string","description":"The unique identifier (GUID) of the attached file to delete"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"77b581e9-57c7-4279-9486-be2d3583e677","name":"Internal server error","originalRequest":{"method":"DELETE","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/templates/:templateId/attachments/:attachmentId","host":["/"],"path":["v6","templates",":templateId","attachments",":attachmentId"],"variable":[{"key":"templateId","value":"string","description":"The unique identifier (GUID) of the template"},{"key":"attachmentId","value":"string","description":"The unique identifier (GUID) of the attached file to delete"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"93d2f257-7fc0-4752-bd5e-fddfb2fb0e48"}],"id":"9da65ce6-0d9c-4a84-9b18-527cf994cc0a","_postman_id":"9da65ce6-0d9c-4a84-9b18-527cf994cc0a","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}}},{"name":"User","item":[{"name":"/v6/users/groups","id":"3f841ea1-9820-47fe-ab3f-0d7e907d1b34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Accept","value":"application/json"}],"url":"//v6/users/groups?sreachType=UserPhone&searchValue=string","description":"<p>[V6] Get all groups that a user belongs to</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","users","groups"],"host":["/"],"query":[{"description":{"content":"<p>The type of search key to identify the user. Valid values: UserName, UserEmail, UserId, etc. (from ParticipantKeyType enum)</p>\n","type":"text/plain"},"key":"sreachType","value":"UserPhone"},{"description":{"content":"<p>The value to search for corresponding to the search type (e.g., username string, email address, or user ID)</p>\n","type":"text/plain"},"key":"searchValue","value":"string"}],"variable":[]}},"response":[{"id":"d39c89cf-1ed0-4df0-b0ab-040cc9680074","name":"User groups retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/users/groups?sreachType=UserPhone&searchValue=string","host":["/"],"path":["v6","users","groups"],"query":[{"description":"The type of search key to identify the user. Valid values: UserName, UserEmail, UserId, etc. (from ParticipantKeyType enum)","key":"sreachType","value":"UserPhone"},{"description":"The value to search for corresponding to the search type (e.g., username string, email address, or user ID)","key":"searchValue","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"UsersKey\": [\n      {\n        \"Key\": \"user1@example.com\",\n        \"Type\": 1\n      },\n      {\n        \"Key\": \"user2@example.com\",\n        \"Type\": 1\n      },\n      {\n        \"Key\": \"user-id-123\",\n        \"Type\": 2\n      }\n    ],\n    \"Id\": \"group-001\",\n    \"Name\": \"Sales Team\",\n    \"IsEditable\": true\n  },\n  {\n    \"UsersKey\": [\n      {\n        \"Key\": \"manager@example.com\",\n        \"Type\": 1\n      }\n    ],\n    \"Id\": \"group-002\",\n    \"Name\": \"Management\",\n    \"IsEditable\": false\n  }\n]"},{"id":"ab5b539a-858c-417a-8cfa-a0988c79c4dd","name":"Invalid search type or search value","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/users/groups?sreachType=UserPhone&searchValue=string","host":["/"],"path":["v6","users","groups"],"query":[{"description":"The type of search key to identify the user. Valid values: UserName, UserEmail, UserId, etc. (from ParticipantKeyType enum)","key":"sreachType","value":"UserPhone"},{"description":"The value to search for corresponding to the search type (e.g., username string, email address, or user ID)","key":"searchValue","value":"string"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"09e3c3dd-2ceb-4905-a0cc-283c51b1aab6","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/users/groups?sreachType=UserPhone&searchValue=string","host":["/"],"path":["v6","users","groups"],"query":[{"description":"The type of search key to identify the user. Valid values: UserName, UserEmail, UserId, etc. (from ParticipantKeyType enum)","key":"sreachType","value":"UserPhone"},{"description":"The value to search for corresponding to the search type (e.g., username string, email address, or user ID)","key":"searchValue","value":"string"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"161b438c-a5db-4bb0-81ba-0ae4f7bc0489","name":"User not found","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/users/groups?sreachType=UserPhone&searchValue=string","host":["/"],"path":["v6","users","groups"],"query":[{"description":"The type of search key to identify the user. Valid values: UserName, UserEmail, UserId, etc. (from ParticipantKeyType enum)","key":"sreachType","value":"UserPhone"},{"description":"The value to search for corresponding to the search type (e.g., username string, email address, or user ID)","key":"searchValue","value":"string"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"061f7ce0-4d18-4590-9b59-af1a55789b4e","name":"Internal server error","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/users/groups?sreachType=UserPhone&searchValue=string","host":["/"],"path":["v6","users","groups"],"query":[{"description":"The type of search key to identify the user. Valid values: UserName, UserEmail, UserId, etc. (from ParticipantKeyType enum)","key":"sreachType","value":"UserPhone"},{"description":"The value to search for corresponding to the search type (e.g., username string, email address, or user ID)","key":"searchValue","value":"string"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"3f841ea1-9820-47fe-ab3f-0d7e907d1b34"},{"name":"/v6/users/templates","id":"2101c7f7-c522-4e3f-976e-caae96e9971a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Accept","value":"application/json"}],"url":"//v6/users/templates?sreachType=UserPhone&searchValue=string","description":"<p>[V6] Get all templates owned by a user</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","users","templates"],"host":["/"],"query":[{"description":{"content":"<p>The type of search key to identify the user. Valid values: UserName, UserEmail, UserId, etc. (from ParticipantKeyType enum)</p>\n","type":"text/plain"},"key":"sreachType","value":"UserPhone"},{"description":{"content":"<p>The value to search for corresponding to the search type (e.g., username string, email address, or user ID)</p>\n","type":"text/plain"},"key":"searchValue","value":"string"}],"variable":[]}},"response":[{"id":"2814e04f-3717-4435-bfef-4c171f76d59d","name":"User templates retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/users/templates?sreachType=UserPhone&searchValue=string","host":["/"],"path":["v6","users","templates"],"query":[{"description":"The type of search key to identify the user. Valid values: UserName, UserEmail, UserId, etc. (from ParticipantKeyType enum)","key":"sreachType","value":"UserPhone"},{"description":"The value to search for corresponding to the search type (e.g., username string, email address, or user ID)","key":"searchValue","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"TemplateId\": \"74561664-05ca-4c0d-b14e-437abdd6de61\",\n    \"TemplateName\": \"\",\n    \"TemplateType\": 0,\n    \"CreateDate\": \"01/01/0001 00:00:00\",\n    \"IsTemplateStartedByForm\": false\n  },\n  {\n    \"TemplateId\": \"db4a84a0-e4ca-4c62-bbd8-71336ab37818\",\n    \"TemplateName\": \"Template 2\",\n    \"TemplateType\": 0,\n    \"CreateDate\": \"01/01/0001 00:00:00\",\n    \"IsTemplateStartedByForm\": false\n  },\n  {\n    \"TemplateId\": \"c1620129-e403-4a20-ae15-32229111a247\",\n    \"TemplateName\": \"Template 3\",\n    \"TemplateType\": 0,\n    \"CreateDate\": \"01/01/0001 00:00:00\",\n    \"IsTemplateStartedByForm\": false\n  }\n]"},{"id":"782740e8-f836-45f9-a262-254e8825e9ee","name":"Invalid search type or search value","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/users/templates?sreachType=UserPhone&searchValue=string","host":["/"],"path":["v6","users","templates"],"query":[{"description":"The type of search key to identify the user. Valid values: UserName, UserEmail, UserId, etc. (from ParticipantKeyType enum)","key":"sreachType","value":"UserPhone"},{"description":"The value to search for corresponding to the search type (e.g., username string, email address, or user ID)","key":"searchValue","value":"string"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"85ba405f-dfc0-46f2-adef-07f5ccf03fa6","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/users/templates?sreachType=UserPhone&searchValue=string","host":["/"],"path":["v6","users","templates"],"query":[{"description":"The type of search key to identify the user. Valid values: UserName, UserEmail, UserId, etc. (from ParticipantKeyType enum)","key":"sreachType","value":"UserPhone"},{"description":"The value to search for corresponding to the search type (e.g., username string, email address, or user ID)","key":"searchValue","value":"string"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"8cba6822-afe5-4f85-9507-74e6e905a03e","name":"User not found","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/users/templates?sreachType=UserPhone&searchValue=string","host":["/"],"path":["v6","users","templates"],"query":[{"description":"The type of search key to identify the user. Valid values: UserName, UserEmail, UserId, etc. (from ParticipantKeyType enum)","key":"sreachType","value":"UserPhone"},{"description":"The value to search for corresponding to the search type (e.g., username string, email address, or user ID)","key":"searchValue","value":"string"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"daf68965-0630-4f81-9aca-adfd9f41b05e","name":"Internal server error","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/users/templates?sreachType=UserPhone&searchValue=string","host":["/"],"path":["v6","users","templates"],"query":[{"description":"The type of search key to identify the user. Valid values: UserName, UserEmail, UserId, etc. (from ParticipantKeyType enum)","key":"sreachType","value":"UserPhone"},{"description":"The value to search for corresponding to the search type (e.g., username string, email address, or user ID)","key":"searchValue","value":"string"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"2101c7f7-c522-4e3f-976e-caae96e9971a"}],"id":"e89c03d6-94c8-4d20-adb8-78da9b39dae7","_postman_id":"e89c03d6-94c8-4d20-adb8-78da9b39dae7","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}}},{"name":"Webhook","item":[{"name":"/v6/webhooks","id":"3e57ee67-d26d-4a83-879c-a64ba12af160","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"WebhookUri\": \"https://example.com/webhooks/doxi\",\n  \"IsActive\": true,\n  \"Webhooks\": [],\n  \"WebhookEvents\": [\n    {\n      \"WebhookEventType\": 0,\n      \"SignFlowEventFilter\": {\n        \"SignatureFlowStatus\": 1,\n        \"CustomFieldsKeys\": [\n          \"ContractId\",\n          \"InvoiceNumber\"\n        ]\n      }\n    },\n    {\n      \"WebhookEventType\": 1,\n      \"SignerEventFilter\": {\n        \"SignStatus\": 1,\n        \"CustomFieldsKeys\": []\n      }\n    }\n  ],\n  \"Headers\": {\n    \"Authorization\": \"Bearer your-token-here\",\n    \"X-Custom-Header\": \"value\"\n  },\n  \"IsEncryptData\": true,\n  \"WebhookConsumer\": {\n    \"Company\": \"Example Corp\",\n    \"Description\": \"Production webhook endpoint\",\n    \"ContactInfo\": \"admin@example.com\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/webhooks","description":"<p>[V6] Create a new webhook subscription</p>\n<h2 id=\"json-object-description\">JSON object description:</h2>\n<hr />\n<h2 id=\"webhooksubscription\">webhookSubscription:</h2>\n<h3 id=\"webhook-subscription-configuration-including-webhook-url-webhookuri-events-to-subscribe-to-webhookevents-array-authentication-headers-headers-object-encryption-settings-isencryptdata-and-consumer-information-webhookconsumer\">Webhook subscription configuration including webhook URL (webhookUri), events to subscribe to (webhookEvents array), authentication headers (headers object), encryption settings (isEncryptData), and consumer information (webhookConsumer)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>WebhookUri</td>\n<td>String</td>\n<td>Subscription webhook endpoint</td>\n</tr>\n<tr>\n<td>IsActive</td>\n<td>Boolean</td>\n<td>Is subscription active</td>\n</tr>\n<tr>\n<td>WebhookEvents</td>\n<td><em><strong>WebhookEvent[]</strong></em></td>\n<td>Publish the event with filter is matching</td>\n</tr>\n<tr>\n<td>Headers</td>\n<td>IDictionary</td>\n<td>Gets a set of additional HTTP headers. That headers will be sent with the webhook.</td>\n</tr>\n<tr>\n<td>IsEncryptData</td>\n<td>Boolean</td>\n<td>If to make the data encrypted</td>\n</tr>\n<tr>\n<td>WebhookConsumer</td>\n<td><em><strong>WebhookConsumer</strong></em></td>\n<td>Webhook consumer details</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"webhookconsumer\">WebhookConsumer:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Company</td>\n<td>String</td>\n<td>The company of the consumer</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>String</td>\n<td>The description of the consumer</td>\n</tr>\n<tr>\n<td>ContactInfo</td>\n<td>String</td>\n<td>The contact info of the consumer</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"webhookevent\">WebhookEvent:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>WebhookEventType</td>\n<td><em><strong>WebhookEventType</strong></em></td>\n<td></td>\n</tr>\n<tr>\n<td>SignFlowEventFilter</td>\n<td><em><strong>SignFlowEventFilter</strong></em></td>\n<td>Flow event filter parameters:Only then WebhookEventType=SignFlowStatusChanged.</td>\n</tr>\n<tr>\n<td>SignerEventFilter</td>\n<td><em><strong>SignerEventFilter</strong></em></td>\n<td>Signer event filter parameters :Only then WebhookEventType=SignerStatusChanged.</td>\n</tr>\n<tr>\n<td>OpenFlowEventFilter</td>\n<td><em><strong>OpenFlowEventFilter</strong></em></td>\n<td>Open flow event filter:Only then WebhookEventType=OpenFlowFirstTime.</td>\n</tr>\n<tr>\n<td>KitEventFilter</td>\n<td><em><strong>KitEventFilter</strong></em></td>\n<td>Kit event filter parameters :Only then WebhookEventType=KitStatusChanged.</td>\n</tr>\n<tr>\n<td>UserEventFilter</td>\n<td><em><strong>UserEventFilter</strong></em></td>\n<td>User event filter parameters :Only then WebhookEventType=UsersChanged.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"usereventfilter\">UserEventFilter:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>UserType</td>\n<td><em><strong>Nullable</strong></em></td>\n<td>User's type</td>\n</tr>\n<tr>\n<td>Company</td>\n<td>String</td>\n<td>User's company</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"usertype\">UserType:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Administrator</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Creator</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Signer</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"kiteventfilter\">KitEventFilter:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>KitStatus</td>\n<td><em><strong>Nullable</strong></em></td>\n<td>Status of the kit</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"kitstatustype\">KitStatusType:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Open</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Completed</td>\n</tr>\n<tr>\n<td>2</td>\n<td>NotSend</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Deleted</td>\n</tr>\n<tr>\n<td>4</td>\n<td>InProgress</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"openfloweventfilter\">OpenFlowEventFilter:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomFieldsKeys</td>\n<td>String[]</td>\n<td>Additional data keys</td>\n</tr>\n<tr>\n<td>SourceTemplateId</td>\n<td>String</td>\n<td>The template id the flow was created from</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"signereventfilter\">SignerEventFilter:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SignStatus</td>\n<td><em><strong>Nullable</strong></em></td>\n<td>Status of the signer</td>\n</tr>\n<tr>\n<td>CustomFieldsKeys</td>\n<td>String[]</td>\n<td>Additional data keys</td>\n</tr>\n<tr>\n<td>SourceTemplateId</td>\n<td>String</td>\n<td>The template id the flow was created from</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"signstatus\">SignStatus:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>NotSend</td>\n</tr>\n<tr>\n<td>1</td>\n<td>WaitingForApproval</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Approved</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Declined</td>\n</tr>\n<tr>\n<td>4</td>\n<td>Stopped</td>\n</tr>\n<tr>\n<td>5</td>\n<td>FailedToSent</td>\n</tr>\n<tr>\n<td>6</td>\n<td>Suspended</td>\n</tr>\n<tr>\n<td>7</td>\n<td>Expired</td>\n</tr>\n<tr>\n<td>8</td>\n<td>InProgress</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"signfloweventfilter\">SignFlowEventFilter:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SignatureFlowStatus</td>\n<td><em><strong>Nullable</strong></em></td>\n<td>Status of the flow</td>\n</tr>\n<tr>\n<td>CustomFieldsKeys</td>\n<td>String[]</td>\n<td>Additional data keys</td>\n</tr>\n<tr>\n<td>SourceTemplateId</td>\n<td>String</td>\n<td>The template id the flow was created from</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"signatureflowstatus\">SignatureFlowStatus:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Open</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Approved</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Declined</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Stopped</td>\n</tr>\n<tr>\n<td>4</td>\n<td>Suspended</td>\n</tr>\n<tr>\n<td>5</td>\n<td>Expired</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"webhookeventtype\">WebhookEventType:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>FlowStatusChangedEvent</td>\n</tr>\n<tr>\n<td>1</td>\n<td>SignerStatusChangedEvent</td>\n</tr>\n<tr>\n<td>2</td>\n<td>FlowOpenedEvent</td>\n</tr>\n<tr>\n<td>3</td>\n<td>KitStatusChangedEvent</td>\n</tr>\n<tr>\n<td>4</td>\n<td>AddUserEvent</td>\n</tr>\n<tr>\n<td>5</td>\n<td>FlowsLimitEvent</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","webhooks"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"67f677aa-bf1d-41a9-8414-241fcdb5f86c","name":"Webhook subscription created successfully","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"WebhookUri\": \"https://example.com/webhooks/doxi\",\n  \"IsActive\": true,\n  \"Webhooks\": [],\n  \"WebhookEvents\": [\n    {\n      \"WebhookEventType\": 0,\n      \"SignFlowEventFilter\": {\n        \"SignatureFlowStatus\": 1,\n        \"CustomFieldsKeys\": [\n          \"ContractId\",\n          \"InvoiceNumber\"\n        ]\n      }\n    },\n    {\n      \"WebhookEventType\": 1,\n      \"SignerEventFilter\": {\n        \"SignStatus\": 1,\n        \"CustomFieldsKeys\": []\n      }\n    }\n  ],\n  \"Headers\": {\n    \"Authorization\": \"Bearer your-token-here\",\n    \"X-Custom-Header\": \"value\"\n  },\n  \"IsEncryptData\": true,\n  \"WebhookConsumer\": {\n    \"Company\": \"Example Corp\",\n    \"Description\": \"Production webhook endpoint\",\n    \"ContactInfo\": \"admin@example.com\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/webhooks"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"SubscriptionId\": \"a1b2c3d4-e5f6-7890-abcd-ef1234567890\",\n  \"Secret\": \"WebhookSubscriptionSecretPrefix-a1b2c3d4e5f67890abcdef1234567890\"\n}"},{"id":"56a9922d-073f-4fe9-8ede-b10b8ceb0f84","name":"Invalid request - Missing required fields, invalid URL format, or invalid event configuration","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"WebhookUri\": \"https://example.com/webhooks/doxi\",\n  \"IsActive\": true,\n  \"Webhooks\": [],\n  \"WebhookEvents\": [\n    {\n      \"WebhookEventType\": 0,\n      \"SignFlowEventFilter\": {\n        \"SignatureFlowStatus\": 1,\n        \"CustomFieldsKeys\": [\n          \"ContractId\",\n          \"InvoiceNumber\"\n        ]\n      }\n    },\n    {\n      \"WebhookEventType\": 1,\n      \"SignerEventFilter\": {\n        \"SignStatus\": 1,\n        \"CustomFieldsKeys\": []\n      }\n    }\n  ],\n  \"Headers\": {\n    \"Authorization\": \"Bearer your-token-here\",\n    \"X-Custom-Header\": \"value\"\n  },\n  \"IsEncryptData\": true,\n  \"WebhookConsumer\": {\n    \"Company\": \"Example Corp\",\n    \"Description\": \"Production webhook endpoint\",\n    \"ContactInfo\": \"admin@example.com\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/webhooks"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"485110a2-3aae-4a08-90c7-897b780f8678","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"WebhookUri\": \"https://example.com/webhooks/doxi\",\n  \"IsActive\": true,\n  \"Webhooks\": [],\n  \"WebhookEvents\": [\n    {\n      \"WebhookEventType\": 0,\n      \"SignFlowEventFilter\": {\n        \"SignatureFlowStatus\": 1,\n        \"CustomFieldsKeys\": [\n          \"ContractId\",\n          \"InvoiceNumber\"\n        ]\n      }\n    },\n    {\n      \"WebhookEventType\": 1,\n      \"SignerEventFilter\": {\n        \"SignStatus\": 1,\n        \"CustomFieldsKeys\": []\n      }\n    }\n  ],\n  \"Headers\": {\n    \"Authorization\": \"Bearer your-token-here\",\n    \"X-Custom-Header\": \"value\"\n  },\n  \"IsEncryptData\": true,\n  \"WebhookConsumer\": {\n    \"Company\": \"Example Corp\",\n    \"Description\": \"Production webhook endpoint\",\n    \"ContactInfo\": \"admin@example.com\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/webhooks"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"2281fadf-2388-4471-9598-032c6fa5a8e2","name":"Internal server error","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"WebhookUri\": \"https://example.com/webhooks/doxi\",\n  \"IsActive\": true,\n  \"Webhooks\": [],\n  \"WebhookEvents\": [\n    {\n      \"WebhookEventType\": 0,\n      \"SignFlowEventFilter\": {\n        \"SignatureFlowStatus\": 1,\n        \"CustomFieldsKeys\": [\n          \"ContractId\",\n          \"InvoiceNumber\"\n        ]\n      }\n    },\n    {\n      \"WebhookEventType\": 1,\n      \"SignerEventFilter\": {\n        \"SignStatus\": 1,\n        \"CustomFieldsKeys\": []\n      }\n    }\n  ],\n  \"Headers\": {\n    \"Authorization\": \"Bearer your-token-here\",\n    \"X-Custom-Header\": \"value\"\n  },\n  \"IsEncryptData\": true,\n  \"WebhookConsumer\": {\n    \"Company\": \"Example Corp\",\n    \"Description\": \"Production webhook endpoint\",\n    \"ContactInfo\": \"admin@example.com\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/webhooks"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"3e57ee67-d26d-4a83-879c-a64ba12af160"},{"name":"/v6/webhooks","id":"b1572c5e-d4b4-474c-9f94-1c656f218919","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Accept","value":"application/json"}],"url":"//v6/webhooks","description":"<p>[V6] Get list of all webhook subscriptions for the authenticated user</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","webhooks"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"a4b9e073-e156-4515-afb9-a3297f06a75a","name":"Webhook subscriptions retrieved successfully","originalRequest":{"method":"GET","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"Tenant Name"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":"//v6/webhooks"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"SubscriptionId\": \"4f150d3d8b0945c48d3a72f83b55015c\",\n        \"WebhookUri\": \"https://example.com/webhooks/doxi\",\n        \"IsActive\": true,\n        \"Webhooks\": [],\n        \"WebhookEvents\": [\n            {\n                \"WebhookEventType\": 0,\n                \"SignFlowEventFilter\": {\n                    \"SignatureFlowStatus\": 1,\n                    \"CustomFieldsKeys\": [\n                        \"ContractId\",\n                        \"InvoiceNumber\"\n                    ]\n                }\n            },\n            {\n                \"WebhookEventType\": 1,\n                \"SignerEventFilter\": {\n                    \"SignStatus\": 1,\n                    \"CustomFieldsKeys\": []\n                }\n            }\n        ],\n        \"Headers\": {\n            \"Authorization\": \"Bearer your-token-here\",\n            \"X-Custom-Header\": \"value\"\n        },\n        \"IsEncryptData\": true,\n        \"WebhookConsumer\": {\n            \"Company\": \"Example Corp\",\n            \"Description\": \"Production webhook endpoint\",\n            \"ContactInfo\": \"admin@example.com\"\n        }\n    }\n]"},{"id":"b39c374a-c336-4c3f-a131-f659cc554f0a","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"//v6/webhooks"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"40f05564-b1e4-4d38-8cbf-07e89d9b24c2","name":"Internal server error","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"//v6/webhooks"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"b1572c5e-d4b4-474c-9f94-1c656f218919"},{"name":"/v6/webhooks/test","id":"92fee3a8-6559-4673-a7aa-e9e12751e259","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"WebhookUri\": \"https://example.com/webhooks/doxi\",\n  \"IsActive\": true,\n  \"Webhooks\": [],\n  \"WebhookEvents\": [\n    {\n      \"WebhookEventType\": 0,\n      \"SignFlowEventFilter\": {\n        \"SignatureFlowStatus\": 1,\n        \"CustomFieldsKeys\": [\n          \"ContractId\",\n          \"InvoiceNumber\"\n        ]\n      }\n    },\n    {\n      \"WebhookEventType\": 1,\n      \"SignerEventFilter\": {\n        \"SignStatus\": 1,\n        \"CustomFieldsKeys\": []\n      }\n    }\n  ],\n  \"Headers\": {\n    \"Authorization\": \"Bearer your-token-here\",\n    \"X-Custom-Header\": \"value\"\n  },\n  \"IsEncryptData\": true,\n  \"WebhookConsumer\": {\n    \"Company\": \"Example Corp\",\n    \"Description\": \"Production webhook endpoint\",\n    \"ContactInfo\": \"admin@example.com\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/webhooks/test","description":"<p>[V6] Test webhook subscription configuration (similar to \"Trigger test\" in Zapier)</p>\n<h2 id=\"json-object-description\">JSON object description:</h2>\n<hr />\n<h2 id=\"webhooksubscription\">webhookSubscription:</h2>\n<h3 id=\"webhook-subscription-configuration-to-test-including-webhook-url-events-and-authentication-settings-this-simulates-a-webhook-call-without-actually-sending-it\">Webhook subscription configuration to test including webhook URL, events, and authentication settings. This simulates a webhook call without actually sending it.</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>WebhookUri</td>\n<td>String</td>\n<td>Subscription webhook endpoint</td>\n</tr>\n<tr>\n<td>IsActive</td>\n<td>Boolean</td>\n<td>Is subscription active</td>\n</tr>\n<tr>\n<td>WebhookEvents</td>\n<td><em><strong>WebhookEvent[]</strong></em></td>\n<td>Publish the event with filter is matching</td>\n</tr>\n<tr>\n<td>Headers</td>\n<td>IDictionary&lt;String,String&gt;</td>\n<td>Gets a set of additional HTTP headers. That headers will be sent with the webhook.</td>\n</tr>\n<tr>\n<td>IsEncryptData</td>\n<td>Boolean</td>\n<td>If to make the data encrypted</td>\n</tr>\n<tr>\n<td>WebhookConsumer</td>\n<td><em><strong>WebhookConsumer</strong></em></td>\n<td>Webhook consumer details</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"webhookconsumer\">WebhookConsumer:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Company</td>\n<td>String</td>\n<td>The company of the consumer</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>String</td>\n<td>The description of the  consumer</td>\n</tr>\n<tr>\n<td>ContactInfo</td>\n<td>String</td>\n<td>The contact info of the consumer</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"webhookevent\">WebhookEvent:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>WebhookEventType</td>\n<td><em><strong>WebhookEventType</strong></em></td>\n<td></td>\n</tr>\n<tr>\n<td>SignFlowEventFilter</td>\n<td><em><strong>SignFlowEventFilter</strong></em></td>\n<td>Flow event filter parameters:Only then WebhookEventType=SignFlowStatusChanged.</td>\n</tr>\n<tr>\n<td>SignerEventFilter</td>\n<td><em><strong>SignerEventFilter</strong></em></td>\n<td>Signer event filter parameters :Only then WebhookEventType=SignerStatusChanged.</td>\n</tr>\n<tr>\n<td>OpenFlowEventFilter</td>\n<td><em><strong>OpenFlowEventFilter</strong></em></td>\n<td>Open flow event filter:Only then WebhookEventType=OpenFlowFirstTime.</td>\n</tr>\n<tr>\n<td>KitEventFilter</td>\n<td><em><strong>KitEventFilter</strong></em></td>\n<td>Kit event filter parameters :Only then WebhookEventType=KitStatusChanged.</td>\n</tr>\n<tr>\n<td>UserEventFilter</td>\n<td><em><strong>UserEventFilter</strong></em></td>\n<td>User event filter parameters :Only then WebhookEventType=UsersChanged.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"usereventfilter\">UserEventFilter:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>UserType</td>\n<td><em><strong>Nullable&lt;UserType&gt;</strong></em></td>\n<td>User's type</td>\n</tr>\n<tr>\n<td>Company</td>\n<td>String</td>\n<td>User's company</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"usertype\">UserType:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Administrator</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Creator</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Signer</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"kiteventfilter\">KitEventFilter:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>KitStatus</td>\n<td><em><strong>Nullable&lt;KitStatusType&gt;</strong></em></td>\n<td>Status of the kit</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"kitstatustype\">KitStatusType:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Open</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Completed</td>\n</tr>\n<tr>\n<td>2</td>\n<td>NotSend</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Deleted</td>\n</tr>\n<tr>\n<td>4</td>\n<td>InProgress</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"openfloweventfilter\">OpenFlowEventFilter:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomFieldsKeys</td>\n<td>String[]</td>\n<td>Additional data keys</td>\n</tr>\n<tr>\n<td>SourceTemplateId</td>\n<td>String</td>\n<td>The template id the flow was created from</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"signereventfilter\">SignerEventFilter:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SignStatus</td>\n<td><em><strong>Nullable&lt;SignStatus&gt;</strong></em></td>\n<td>Status of the signer</td>\n</tr>\n<tr>\n<td>CustomFieldsKeys</td>\n<td>String[]</td>\n<td>Additional data keys</td>\n</tr>\n<tr>\n<td>SourceTemplateId</td>\n<td>String</td>\n<td>The template id the flow was created from</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"signstatus\">SignStatus:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>NotSend</td>\n</tr>\n<tr>\n<td>1</td>\n<td>WaitingForApproval</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Approved</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Declined</td>\n</tr>\n<tr>\n<td>4</td>\n<td>Stopped</td>\n</tr>\n<tr>\n<td>5</td>\n<td>FailedToSent</td>\n</tr>\n<tr>\n<td>6</td>\n<td>Suspended</td>\n</tr>\n<tr>\n<td>7</td>\n<td>Expired</td>\n</tr>\n<tr>\n<td>8</td>\n<td>InProgress</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"signfloweventfilter\">SignFlowEventFilter:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SignatureFlowStatus</td>\n<td><em><strong>Nullable&lt;SignatureFlowStatus&gt;</strong></em></td>\n<td>Status of the flow</td>\n</tr>\n<tr>\n<td>CustomFieldsKeys</td>\n<td>String[]</td>\n<td>Additional data keys</td>\n</tr>\n<tr>\n<td>SourceTemplateId</td>\n<td>String</td>\n<td>The template id the flow was created from</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"signatureflowstatus\">SignatureFlowStatus:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Open</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Approved</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Declined</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Stopped</td>\n</tr>\n<tr>\n<td>4</td>\n<td>Suspended</td>\n</tr>\n<tr>\n<td>5</td>\n<td>Expired</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"webhookeventtype\">WebhookEventType:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>FlowStatusChangedEvent</td>\n</tr>\n<tr>\n<td>1</td>\n<td>SignerStatusChangedEvent</td>\n</tr>\n<tr>\n<td>2</td>\n<td>FlowOpenedEvent</td>\n</tr>\n<tr>\n<td>3</td>\n<td>KitStatusChangedEvent</td>\n</tr>\n<tr>\n<td>4</td>\n<td>AddUserEvent</td>\n</tr>\n<tr>\n<td>5</td>\n<td>FlowsLimitEvent</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","webhooks","test"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"58feb5d8-2896-4a69-a7bd-0afcd5a0a59e","name":"Webhook test completed successfully","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"WebhookUri\": \"https://example.com/webhooks/doxi\",\n  \"IsActive\": true,\n  \"Webhooks\": [],\n  \"WebhookEvents\": [\n    {\n      \"WebhookEventType\": 0,\n      \"SignFlowEventFilter\": {\n        \"SignatureFlowStatus\": 1,\n        \"CustomFieldsKeys\": [\n          \"ContractId\",\n          \"InvoiceNumber\"\n        ]\n      }\n    },\n    {\n      \"WebhookEventType\": 1,\n      \"SignerEventFilter\": {\n        \"SignStatus\": 1,\n        \"CustomFieldsKeys\": []\n      }\n    }\n  ],\n  \"Headers\": {\n    \"Authorization\": \"Bearer your-token-here\",\n    \"X-Custom-Header\": \"value\"\n  },\n  \"IsEncryptData\": true,\n  \"WebhookConsumer\": {\n    \"Company\": \"Example Corp\",\n    \"Description\": \"Production webhook endpoint\",\n    \"ContactInfo\": \"admin@example.com\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/webhooks/test"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Id\": \"webhook-payload-001\",\n  \"WebhookEvent\": \"SignFlowStatusChanged\",\n  \"Attempt\": 1,\n  \"Data\": {\n    \"SignFlowId\": \"1909058d-f59b-42b2-9994-20fbfb154d63\",\n    \"Status\": \"Approved\",\n    \"StatusChangedDate\": \"15/01/2024 10:30:00\"\n  },\n  \"CreationTimeUtc\": \"15/01/2024 10:30:00\"\n}"},{"id":"31ae2f58-4228-47ea-a6e9-96eb0f6878ac","name":"Invalid webhook configuration","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"WebhookUri\": \"https://example.com/webhooks/doxi\",\n  \"IsActive\": true,\n  \"Webhooks\": [],\n  \"WebhookEvents\": [\n    {\n      \"WebhookEventType\": 0,\n      \"SignFlowEventFilter\": {\n        \"SignatureFlowStatus\": 1,\n        \"CustomFieldsKeys\": [\n          \"ContractId\",\n          \"InvoiceNumber\"\n        ]\n      }\n    },\n    {\n      \"WebhookEventType\": 1,\n      \"SignerEventFilter\": {\n        \"SignStatus\": 1,\n        \"CustomFieldsKeys\": []\n      }\n    }\n  ],\n  \"Headers\": {\n    \"Authorization\": \"Bearer your-token-here\",\n    \"X-Custom-Header\": \"value\"\n  },\n  \"IsEncryptData\": true,\n  \"WebhookConsumer\": {\n    \"Company\": \"Example Corp\",\n    \"Description\": \"Production webhook endpoint\",\n    \"ContactInfo\": \"admin@example.com\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/webhooks/test"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"87821858-08c8-4187-a180-ea708a9b998f","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"WebhookUri\": \"https://example.com/webhooks/doxi\",\n  \"IsActive\": true,\n  \"Webhooks\": [],\n  \"WebhookEvents\": [\n    {\n      \"WebhookEventType\": 0,\n      \"SignFlowEventFilter\": {\n        \"SignatureFlowStatus\": 1,\n        \"CustomFieldsKeys\": [\n          \"ContractId\",\n          \"InvoiceNumber\"\n        ]\n      }\n    },\n    {\n      \"WebhookEventType\": 1,\n      \"SignerEventFilter\": {\n        \"SignStatus\": 1,\n        \"CustomFieldsKeys\": []\n      }\n    }\n  ],\n  \"Headers\": {\n    \"Authorization\": \"Bearer your-token-here\",\n    \"X-Custom-Header\": \"value\"\n  },\n  \"IsEncryptData\": true,\n  \"WebhookConsumer\": {\n    \"Company\": \"Example Corp\",\n    \"Description\": \"Production webhook endpoint\",\n    \"ContactInfo\": \"admin@example.com\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/webhooks/test"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"4cfaae7f-617e-4d92-9c20-6936c2ba3786","name":"Internal server error","originalRequest":{"method":"POST","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"WebhookUri\": \"https://example.com/webhooks/doxi\",\n  \"IsActive\": true,\n  \"Webhooks\": [],\n  \"WebhookEvents\": [\n    {\n      \"WebhookEventType\": 0,\n      \"SignFlowEventFilter\": {\n        \"SignatureFlowStatus\": 1,\n        \"CustomFieldsKeys\": [\n          \"ContractId\",\n          \"InvoiceNumber\"\n        ]\n      }\n    },\n    {\n      \"WebhookEventType\": 1,\n      \"SignerEventFilter\": {\n        \"SignStatus\": 1,\n        \"CustomFieldsKeys\": []\n      }\n    }\n  ],\n  \"Headers\": {\n    \"Authorization\": \"Bearer your-token-here\",\n    \"X-Custom-Header\": \"value\"\n  },\n  \"IsEncryptData\": true,\n  \"WebhookConsumer\": {\n    \"Company\": \"Example Corp\",\n    \"Description\": \"Production webhook endpoint\",\n    \"ContactInfo\": \"admin@example.com\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/webhooks/test"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"92fee3a8-6559-4673-a7aa-e9e12751e259"},{"name":"/v6/webhooks/:subscriptionId/logs","id":"4f6c52bb-dd0f-4168-85b6-99f1f0742ea0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Accept","value":"application/json"}],"url":"//v6/webhooks/:subscriptionId/logs?fromDateTime=20/04/2025&toDateTime=20/04/2026&isFailed=false","description":"<p>[V6] Get webhook call logs by subscription ID and search parameters</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","webhooks",":subscriptionId","logs"],"host":["/"],"query":[{"description":{"content":"<p>Search by WebhookSenderLog create date - from. Format: dd/mm/yyyy in UTC. Optional.</p>\n","type":"text/plain"},"key":"fromDateTime","value":"20/04/2025"},{"description":{"content":"<p>Search by WebhookSenderLog create date - to. Format: dd/mm/yyyy in UTC. Optional.</p>\n","type":"text/plain"},"key":"toDateTime","value":"20/04/2026"},{"description":{"content":"<p>The filter parameter for the success status of records: true for failed, false for successful, null for all. Optional.</p>\n","type":"text/plain"},"key":"isFailed","value":"false"}],"variable":[{"description":{"content":"<p>The unique identifier (GUID) of the webhook subscription</p>\n","type":"text/plain"},"type":"any","value":"string","key":"subscriptionId"}]}},"response":[{"id":"f91b7c23-4436-42fd-a127-c71ea827cf70","name":"Webhook call logs retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/webhooks/:subscriptionId/logs?fromDateTime=1960-01-04T13:50:20.359Z&toDateTime=1960-01-04T13:50:20.359Z&isFailed=false","host":["/"],"path":["v6","webhooks",":subscriptionId","logs"],"query":[{"description":"Search by WebhookSenderLog create date - from. Format: dd/mm/yyyy. Optional.","key":"fromDateTime","value":"1960-01-04T13:50:20.359Z"},{"description":"Search by WebhookSenderLog create date - to. Format: dd/mm/yyyy. Optional.","key":"toDateTime","value":"1960-01-04T13:50:20.359Z"},{"description":"The filter parameter for the success status of records: true for failed, false for successful, null for all. Optional.","key":"isFailed","value":"false"}],"variable":[{"key":"subscriptionId","value":"string","description":"The unique identifier (GUID) of the webhook subscription"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"WebhookSendId\": \"send-001\",\n    \"Attempt\": 1,\n    \"WebhookSubscriptionId\": \"a1b2c3d4-e5f6-7890-abcd-ef1234567890\",\n    \"TenantId\": \"tenant-123\",\n    \"WebhookEventId\": \"550e8400-e29b-41d4-a716-446655440000\",\n    \"WebhookName\": \"SignFlowStatusChanged\",\n    \"Data\": \"{\\\"SignFlowId\\\":\\\"1909058d-f59b-42b2-9994-20fbfb154d63\\\",\\\"Status\\\":\\\"Approved\\\"}\",\n    \"WebhookUri\": \"https://example.com/webhooks/doxi\",\n    \"Secret\": \"WebhookSubscriptionSecretPrefix-a1b2c3d4e5f67890abcdef1234567890\",\n    \"Headers\": {\n      \"Authorization\": \"{{vault:bearer-token}}\"\n    },\n    \"SendDate\": \"15/01/2024 10:30:00\",\n    \"ResponseDate\": \"15/01/2024 10:30:01\",\n    \"ResponseCode\": 200,\n    \"ResponseMsg\": \"OK\"\n  },\n  {\n    \"WebhookSendId\": \"send-002\",\n    \"Attempt\": 1,\n    \"WebhookSubscriptionId\": \"a1b2c3d4-e5f6-7890-abcd-ef1234567890\",\n    \"TenantId\": \"tenant-123\",\n    \"WebhookEventId\": \"550e8400-e29b-41d4-a716-446655440001\",\n    \"WebhookName\": \"SignerStatusChanged\",\n    \"Data\": \"{\\\"SignFlowId\\\":\\\"1909058d-f59b-42b2-9994-20fbfb154d63\\\",\\\"SignerEmail\\\":\\\"signer@example.com\\\",\\\"Status\\\":\\\"Signed\\\"}\",\n    \"WebhookUri\": \"https://example.com/webhooks/doxi\",\n    \"Secret\": \"WebhookSubscriptionSecretPrefix-a1b2c3d4e5f67890abcdef1234567890\",\n    \"Headers\": {\n      \"Authorization\": \"{{vault:bearer-token}}\"\n    },\n    \"SendDate\": \"15/01/2024 11:00:00\",\n    \"ResponseDate\": \"15/01/2024 11:00:05\",\n    \"ResponseCode\": 500,\n    \"ResponseMsg\": \"Internal Server Error\"\n  }\n]"},{"id":"88f10fbf-851b-4de7-81e6-6e5fd87fa833","name":"Invalid subscription ID format or invalid search parameters","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/webhooks/:subscriptionId/logs?fromDateTime=1960-01-04T13:50:20.359Z&toDateTime=1960-01-04T13:50:20.359Z&isFailed=false","host":["/"],"path":["v6","webhooks",":subscriptionId","logs"],"query":[{"description":"Search by WebhookSenderLog create date - from. Format: dd/mm/yyyy. Optional.","key":"fromDateTime","value":"1960-01-04T13:50:20.359Z"},{"description":"Search by WebhookSenderLog create date - to. Format: dd/mm/yyyy. Optional.","key":"toDateTime","value":"1960-01-04T13:50:20.359Z"},{"description":"The filter parameter for the success status of records: true for failed, false for successful, null for all. Optional.","key":"isFailed","value":"false"}],"variable":[{"key":"subscriptionId","value":"string","description":"The unique identifier (GUID) of the webhook subscription"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"5ae07b82-7281-4d0a-8730-2e8a83d484b4","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/webhooks/:subscriptionId/logs?fromDateTime=1960-01-04T13:50:20.359Z&toDateTime=1960-01-04T13:50:20.359Z&isFailed=false","host":["/"],"path":["v6","webhooks",":subscriptionId","logs"],"query":[{"description":"Search by WebhookSenderLog create date - from. Format: dd/mm/yyyy. Optional.","key":"fromDateTime","value":"1960-01-04T13:50:20.359Z"},{"description":"Search by WebhookSenderLog create date - to. Format: dd/mm/yyyy. Optional.","key":"toDateTime","value":"1960-01-04T13:50:20.359Z"},{"description":"The filter parameter for the success status of records: true for failed, false for successful, null for all. Optional.","key":"isFailed","value":"false"}],"variable":[{"key":"subscriptionId","value":"string","description":"The unique identifier (GUID) of the webhook subscription"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"66819377-a8c7-42e6-9629-0f599f6f8e5e","name":"Webhook subscription not found","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/webhooks/:subscriptionId/logs?fromDateTime=1960-01-04T13:50:20.359Z&toDateTime=1960-01-04T13:50:20.359Z&isFailed=false","host":["/"],"path":["v6","webhooks",":subscriptionId","logs"],"query":[{"description":"Search by WebhookSenderLog create date - from. Format: dd/mm/yyyy. Optional.","key":"fromDateTime","value":"1960-01-04T13:50:20.359Z"},{"description":"Search by WebhookSenderLog create date - to. Format: dd/mm/yyyy. Optional.","key":"toDateTime","value":"1960-01-04T13:50:20.359Z"},{"description":"The filter parameter for the success status of records: true for failed, false for successful, null for all. Optional.","key":"isFailed","value":"false"}],"variable":[{"key":"subscriptionId","value":"string","description":"The unique identifier (GUID) of the webhook subscription"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"426094cf-7732-41c9-b576-8026a49eaf40","name":"Internal server error","originalRequest":{"method":"GET","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/webhooks/:subscriptionId/logs?fromDateTime=1960-01-04T13:50:20.359Z&toDateTime=1960-01-04T13:50:20.359Z&isFailed=false","host":["/"],"path":["v6","webhooks",":subscriptionId","logs"],"query":[{"description":"Search by WebhookSenderLog create date - from. Format: dd/mm/yyyy. Optional.","key":"fromDateTime","value":"1960-01-04T13:50:20.359Z"},{"description":"Search by WebhookSenderLog create date - to. Format: dd/mm/yyyy. Optional.","key":"toDateTime","value":"1960-01-04T13:50:20.359Z"},{"description":"The filter parameter for the success status of records: true for failed, false for successful, null for all. Optional.","key":"isFailed","value":"false"}],"variable":[{"key":"subscriptionId","value":"string","description":"The unique identifier (GUID) of the webhook subscription"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"4f6c52bb-dd0f-4168-85b6-99f1f0742ea0"},{"name":"/v6/webhooks/:subscriptionId","id":"77727304-418b-41a3-bd76-ad7b22a37519","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"WebhookUri\": \"https://example.com/webhooks/doxi\",\n  \"IsActive\": true,\n  \"Webhooks\": [],\n  \"WebhookEvents\": [\n    {\n      \"WebhookEventType\": 0,\n      \"SignFlowEventFilter\": {\n        \"SignatureFlowStatus\": 1,\n        \"CustomFieldsKeys\": [\n          \"ContractId\",\n          \"InvoiceNumber\"\n        ]\n      }\n    },\n    {\n      \"WebhookEventType\": 1,\n      \"SignerEventFilter\": {\n        \"SignStatus\": 1,\n        \"CustomFieldsKeys\": []\n      }\n    }\n  ],\n  \"Headers\": {\n    \"Authorization\": \"Bearer your-token-here\",\n    \"X-Custom-Header\": \"value\"\n  },\n  \"IsEncryptData\": true,\n  \"WebhookConsumer\": {\n    \"Company\": \"Example Corp\",\n    \"Description\": \"Production webhook endpoint\",\n    \"ContactInfo\": \"admin@example.com\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v6/webhooks/:subscriptionId","description":"<p>[V6] Update webhook subscription configuration</p>\n<hr />\n<h2 id=\"subscriptionid\">subscriptionId:</h2>\n<h3 id=\"the-unique-identifier-guid-of-the-webhook-subscription-to-update\">The unique identifier (GUID) of the webhook subscription to update</h3>\n<hr />\n<h2 id=\"webhooksubscription\">webhookSubscription:</h2>\n<h3 id=\"updated-webhook-subscription-configuration-including-webhook-url-events-to-subscribe-to-authentication-headers-encryption-settings-and-consumer-information-only-provided-fields-will-be-updated\">Updated webhook subscription configuration including webhook URL, events to subscribe to, authentication headers, encryption settings, and consumer information. Only provided fields will be updated.</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>WebhookUri</td>\n<td>String</td>\n<td>Subscription webhook endpoint</td>\n</tr>\n<tr>\n<td>IsActive</td>\n<td>Boolean</td>\n<td>Is subscription active</td>\n</tr>\n<tr>\n<td>WebhookEvents</td>\n<td><em><strong>WebhookEvent[]</strong></em></td>\n<td>Publish the event with filter is matching</td>\n</tr>\n<tr>\n<td>Headers</td>\n<td>IDictionary&lt;String,String&gt;</td>\n<td>Gets a set of additional HTTP headers. That headers will be sent with the webhook.</td>\n</tr>\n<tr>\n<td>IsEncryptData</td>\n<td>Boolean</td>\n<td>If to make the data encrypted</td>\n</tr>\n<tr>\n<td>WebhookConsumer</td>\n<td><em><strong>WebhookConsumer</strong></em></td>\n<td>Webhook consumer details</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"webhookconsumer\">WebhookConsumer:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Company</td>\n<td>String</td>\n<td>The company of the consumer</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>String</td>\n<td>The description of the  consumer</td>\n</tr>\n<tr>\n<td>ContactInfo</td>\n<td>String</td>\n<td>The contact info of the consumer</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"webhookevent\">WebhookEvent:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>WebhookEventType</td>\n<td><em><strong>WebhookEventType</strong></em></td>\n<td></td>\n</tr>\n<tr>\n<td>SignFlowEventFilter</td>\n<td><em><strong>SignFlowEventFilter</strong></em></td>\n<td>Flow event filter parameters:Only then WebhookEventType=SignFlowStatusChanged.</td>\n</tr>\n<tr>\n<td>SignerEventFilter</td>\n<td><em><strong>SignerEventFilter</strong></em></td>\n<td>Signer event filter parameters :Only then WebhookEventType=SignerStatusChanged.</td>\n</tr>\n<tr>\n<td>OpenFlowEventFilter</td>\n<td><em><strong>OpenFlowEventFilter</strong></em></td>\n<td>Open flow event filter:Only then WebhookEventType=OpenFlowFirstTime.</td>\n</tr>\n<tr>\n<td>KitEventFilter</td>\n<td><em><strong>KitEventFilter</strong></em></td>\n<td>Kit event filter parameters :Only then WebhookEventType=KitStatusChanged.</td>\n</tr>\n<tr>\n<td>UserEventFilter</td>\n<td><em><strong>UserEventFilter</strong></em></td>\n<td>User event filter parameters :Only then WebhookEventType=UsersChanged.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"usereventfilter\">UserEventFilter:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>UserType</td>\n<td><em><strong>Nullable&lt;UserType&gt;</strong></em></td>\n<td>User's type</td>\n</tr>\n<tr>\n<td>Company</td>\n<td>String</td>\n<td>User's company</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"usertype\">UserType:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Administrator</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Creator</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Signer</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"kiteventfilter\">KitEventFilter:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>KitStatus</td>\n<td><em><strong>Nullable&lt;KitStatusType&gt;</strong></em></td>\n<td>Status of the kit</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"kitstatustype\">KitStatusType:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Open</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Completed</td>\n</tr>\n<tr>\n<td>2</td>\n<td>NotSend</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Deleted</td>\n</tr>\n<tr>\n<td>4</td>\n<td>InProgress</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"openfloweventfilter\">OpenFlowEventFilter:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomFieldsKeys</td>\n<td>String[]</td>\n<td>Additional data keys</td>\n</tr>\n<tr>\n<td>SourceTemplateId</td>\n<td>String</td>\n<td>The template id the flow was created from</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"signereventfilter\">SignerEventFilter:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SignStatus</td>\n<td><em><strong>Nullable&lt;SignStatus&gt;</strong></em></td>\n<td>Status of the signer</td>\n</tr>\n<tr>\n<td>CustomFieldsKeys</td>\n<td>String[]</td>\n<td>Additional data keys</td>\n</tr>\n<tr>\n<td>SourceTemplateId</td>\n<td>String</td>\n<td>The template id the flow was created from</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"signstatus\">SignStatus:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>NotSend</td>\n</tr>\n<tr>\n<td>1</td>\n<td>WaitingForApproval</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Approved</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Declined</td>\n</tr>\n<tr>\n<td>4</td>\n<td>Stopped</td>\n</tr>\n<tr>\n<td>5</td>\n<td>FailedToSent</td>\n</tr>\n<tr>\n<td>6</td>\n<td>Suspended</td>\n</tr>\n<tr>\n<td>7</td>\n<td>Expired</td>\n</tr>\n<tr>\n<td>8</td>\n<td>InProgress</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"signfloweventfilter\">SignFlowEventFilter:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SignatureFlowStatus</td>\n<td><em><strong>Nullable&lt;SignatureFlowStatus&gt;</strong></em></td>\n<td>Status of the flow</td>\n</tr>\n<tr>\n<td>CustomFieldsKeys</td>\n<td>String[]</td>\n<td>Additional data keys</td>\n</tr>\n<tr>\n<td>SourceTemplateId</td>\n<td>String</td>\n<td>The template id the flow was created from</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"signatureflowstatus\">SignatureFlowStatus:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Open</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Approved</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Declined</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Stopped</td>\n</tr>\n<tr>\n<td>4</td>\n<td>Suspended</td>\n</tr>\n<tr>\n<td>5</td>\n<td>Expired</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"webhookeventtype\">WebhookEventType:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>value</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>FlowStatusChangedEvent</td>\n</tr>\n<tr>\n<td>1</td>\n<td>SignerStatusChangedEvent</td>\n</tr>\n<tr>\n<td>2</td>\n<td>FlowOpenedEvent</td>\n</tr>\n<tr>\n<td>3</td>\n<td>KitStatusChangedEvent</td>\n</tr>\n<tr>\n<td>4</td>\n<td>AddUserEvent</td>\n</tr>\n<tr>\n<td>5</td>\n<td>FlowsLimitEvent</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","webhooks",":subscriptionId"],"host":["/"],"query":[],"variable":[{"type":"any","value":"string","key":"subscriptionId"}]}},"response":[{"id":"bd6df1ec-8092-4e7f-b875-04df174ce345","name":"Webhook subscription updated successfully","originalRequest":{"method":"PUT","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"WebhookUri\": \"https://example.com/webhooks/doxi\",\n  \"IsActive\": true,\n  \"Webhooks\": [],\n  \"WebhookEvents\": [\n    {\n      \"WebhookEventType\": 0,\n      \"SignFlowEventFilter\": {\n        \"SignatureFlowStatus\": 1,\n        \"CustomFieldsKeys\": [\n          \"ContractId\",\n          \"InvoiceNumber\"\n        ]\n      }\n    },\n    {\n      \"WebhookEventType\": 1,\n      \"SignerEventFilter\": {\n        \"SignStatus\": 1,\n        \"CustomFieldsKeys\": []\n      }\n    }\n  ],\n  \"Headers\": {\n    \"Authorization\": \"Bearer your-token-here\",\n    \"X-Custom-Header\": \"value\"\n  },\n  \"IsEncryptData\": true,\n  \"WebhookConsumer\": {\n    \"Company\": \"Example Corp\",\n    \"Description\": \"Production webhook endpoint\",\n    \"ContactInfo\": \"admin@example.com\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/webhooks/:subscriptionId","host":["/"],"path":["v6","webhooks",":subscriptionId"],"variable":[{"key":"subscriptionId","value":"string"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"fc6a0568-9d65-4454-8af2-1842315ddb89","name":"Invalid subscription ID format or invalid update data","originalRequest":{"method":"PUT","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"WebhookUri\": \"https://example.com/webhooks/doxi\",\n  \"IsActive\": true,\n  \"Webhooks\": [],\n  \"WebhookEvents\": [\n    {\n      \"WebhookEventType\": 0,\n      \"SignFlowEventFilter\": {\n        \"SignatureFlowStatus\": 1,\n        \"CustomFieldsKeys\": [\n          \"ContractId\",\n          \"InvoiceNumber\"\n        ]\n      }\n    },\n    {\n      \"WebhookEventType\": 1,\n      \"SignerEventFilter\": {\n        \"SignStatus\": 1,\n        \"CustomFieldsKeys\": []\n      }\n    }\n  ],\n  \"Headers\": {\n    \"Authorization\": \"Bearer your-token-here\",\n    \"X-Custom-Header\": \"value\"\n  },\n  \"IsEncryptData\": true,\n  \"WebhookConsumer\": {\n    \"Company\": \"Example Corp\",\n    \"Description\": \"Production webhook endpoint\",\n    \"ContactInfo\": \"admin@example.com\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/webhooks/:subscriptionId","host":["/"],"path":["v6","webhooks",":subscriptionId"],"variable":[{"key":"subscriptionId","value":"string"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"b348c224-3cc5-4ccc-8665-e477ce3e996d","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"PUT","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"WebhookUri\": \"https://example.com/webhooks/doxi\",\n  \"IsActive\": true,\n  \"Webhooks\": [],\n  \"WebhookEvents\": [\n    {\n      \"WebhookEventType\": 0,\n      \"SignFlowEventFilter\": {\n        \"SignatureFlowStatus\": 1,\n        \"CustomFieldsKeys\": [\n          \"ContractId\",\n          \"InvoiceNumber\"\n        ]\n      }\n    },\n    {\n      \"WebhookEventType\": 1,\n      \"SignerEventFilter\": {\n        \"SignStatus\": 1,\n        \"CustomFieldsKeys\": []\n      }\n    }\n  ],\n  \"Headers\": {\n    \"Authorization\": \"Bearer your-token-here\",\n    \"X-Custom-Header\": \"value\"\n  },\n  \"IsEncryptData\": true,\n  \"WebhookConsumer\": {\n    \"Company\": \"Example Corp\",\n    \"Description\": \"Production webhook endpoint\",\n    \"ContactInfo\": \"admin@example.com\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/webhooks/:subscriptionId","host":["/"],"path":["v6","webhooks",":subscriptionId"],"variable":[{"key":"subscriptionId","value":"string"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"891aae4e-0ac3-417f-835c-1020bfe460ed","name":"Webhook subscription not found","originalRequest":{"method":"PUT","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"WebhookUri\": \"https://example.com/webhooks/doxi\",\n  \"IsActive\": true,\n  \"Webhooks\": [],\n  \"WebhookEvents\": [\n    {\n      \"WebhookEventType\": 0,\n      \"SignFlowEventFilter\": {\n        \"SignatureFlowStatus\": 1,\n        \"CustomFieldsKeys\": [\n          \"ContractId\",\n          \"InvoiceNumber\"\n        ]\n      }\n    },\n    {\n      \"WebhookEventType\": 1,\n      \"SignerEventFilter\": {\n        \"SignStatus\": 1,\n        \"CustomFieldsKeys\": []\n      }\n    }\n  ],\n  \"Headers\": {\n    \"Authorization\": \"Bearer your-token-here\",\n    \"X-Custom-Header\": \"value\"\n  },\n  \"IsEncryptData\": true,\n  \"WebhookConsumer\": {\n    \"Company\": \"Example Corp\",\n    \"Description\": \"Production webhook endpoint\",\n    \"ContactInfo\": \"admin@example.com\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/webhooks/:subscriptionId","host":["/"],"path":["v6","webhooks",":subscriptionId"],"variable":[{"key":"subscriptionId","value":"string"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"b4a87522-de42-44d4-a6fe-9dfdfa0012a6","name":"Internal server error","originalRequest":{"method":"PUT","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"WebhookUri\": \"https://example.com/webhooks/doxi\",\n  \"IsActive\": true,\n  \"Webhooks\": [],\n  \"WebhookEvents\": [\n    {\n      \"WebhookEventType\": 0,\n      \"SignFlowEventFilter\": {\n        \"SignatureFlowStatus\": 1,\n        \"CustomFieldsKeys\": [\n          \"ContractId\",\n          \"InvoiceNumber\"\n        ]\n      }\n    },\n    {\n      \"WebhookEventType\": 1,\n      \"SignerEventFilter\": {\n        \"SignStatus\": 1,\n        \"CustomFieldsKeys\": []\n      }\n    }\n  ],\n  \"Headers\": {\n    \"Authorization\": \"Bearer your-token-here\",\n    \"X-Custom-Header\": \"value\"\n  },\n  \"IsEncryptData\": true,\n  \"WebhookConsumer\": {\n    \"Company\": \"Example Corp\",\n    \"Description\": \"Production webhook endpoint\",\n    \"ContactInfo\": \"admin@example.com\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v6/webhooks/:subscriptionId","host":["/"],"path":["v6","webhooks",":subscriptionId"],"variable":[{"key":"subscriptionId","value":"string"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"77727304-418b-41a3-bd76-ad7b22a37519"},{"name":"/v6/webhooks/:subscriptionId","id":"a926b7a2-f8af-43a9-afa8-8ecd4e49a5e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Accept","value":"text/plain"}],"url":"//v6/webhooks/:subscriptionId","description":"<p>[V6] Delete webhook subscription by subscription ID</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}},"urlObject":{"path":["v6","webhooks",":subscriptionId"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>The unique identifier (GUID) of the webhook subscription to delete</p>\n","type":"text/plain"},"type":"any","value":"string","key":"subscriptionId"}]}},"response":[{"id":"20e529dc-95a1-4d5a-8a43-eb51f460023a","name":"Webhook subscription deleted successfully","originalRequest":{"method":"DELETE","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/webhooks/:subscriptionId","host":["/"],"path":["v6","webhooks",":subscriptionId"],"variable":[{"key":"subscriptionId","value":"string","description":"The unique identifier (GUID) of the webhook subscription to delete"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"0db3e0be-c26c-47dd-bfd2-4e5a001e2fee","name":"Invalid subscription ID format","originalRequest":{"method":"DELETE","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/webhooks/:subscriptionId","host":["/"],"path":["v6","webhooks",":subscriptionId"],"variable":[{"key":"subscriptionId","value":"string","description":"The unique identifier (GUID) of the webhook subscription to delete"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Code\": 1001,\n  \"Type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n  \"Title\": \"One or more validation errors occurred.\",\n  \"Status\": 400,\n  \"Detail\": \"The request parameter is invalid or missing.\",\n  \"Instance\": \"/some-api-method\",\n  \"Extensions\": {}\n}"},{"id":"59c64881-0016-480b-81a8-807f5f489152","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"DELETE","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/webhooks/:subscriptionId","host":["/"],"path":["v6","webhooks",":subscriptionId"],"variable":[{"key":"subscriptionId","value":"string","description":"The unique identifier (GUID) of the webhook subscription to delete"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"1edd4277-5e48-4b6d-ae13-9854ccfe4d4c","name":"Webhook subscription not found","originalRequest":{"method":"DELETE","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/webhooks/:subscriptionId","host":["/"],"path":["v6","webhooks",":subscriptionId"],"variable":[{"key":"subscriptionId","value":"string","description":"The unique identifier (GUID) of the webhook subscription to delete"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"6a8553be-3c6d-4ba0-aa85-1e170143c704","name":"Internal server error","originalRequest":{"method":"DELETE","header":[{"description":"Tenant Name","key":"X-Tenant","value":"{{Tenant}}"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v6/webhooks/:subscriptionId","host":["/"],"path":["v6","webhooks",":subscriptionId"],"variable":[{"key":"subscriptionId","value":"string","description":"The unique identifier (GUID) of the webhook subscription to delete"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"a926b7a2-f8af-43a9-afa8-8ecd4e49a5e3"}],"id":"a4757351-5e99-48d5-9ee9-bb0791087c83","_postman_id":"a4757351-5e99-48d5-9ee9-bb0791087c83","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e1dba953-786e-4367-89aa-46f0c565ea31","id":"e1dba953-786e-4367-89aa-46f0c565ea31","name":"Consist.DoxiAPI v6.0","type":"collection"}}},{"name":"GetToken","event":[{"listen":"test","script":{"id":"dcd45db5-7a13-4aa1-95be-a4c3a7a34c8f","exec":["var token = pm.response.json().access_token;\r","pm.environment.set(\"token\",token)\r","\r","var token = pm.response.json().refresh_token;\r","pm.environment.set(\"refresh_token\",token)"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"6083f431-09e3-4ef8-b5f6-cb5f7816ec3e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"password","type":"text"},{"key":"username","value":"{{username}}","type":"text"},{"key":"password","value":"{{password}}","type":"text"},{"key":"client_id","value":"doxi","type":"text"}]},"url":"{{IDPUrl}}/auth/realms/{{Tenant}}/protocol/openid-connect/token","description":"<p>{{IDPUrl}} is: <a href=\"https://login.doxi-sign.com\">https://login.doxi-sign.com</a>\n{{username}} needs to be the API user for Doxi. API user can access all flow information for all the company users</p>\n","urlObject":{"path":["auth","realms","{{Tenant}}","protocol","openid-connect","token"],"host":["{{IDPUrl}}"],"query":[],"variable":[]}},"response":[{"id":"6d44c010-8c37-4cc1-8ff8-e4b54b2ed7db","name":"GetToken successfully","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"password","type":"text"},{"key":"username","value":"someUser@someCompany.com","type":"text"},{"key":"password","value":"123456","type":"text"},{"key":"client_id","value":"doxi","type":"text"}]},"url":"{{IDPUrl}}/auth/realms/{{Tenant}}/protocol/openid-connect/token"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"access_token\": \"eyJhbGciOiJSUzI1NiIsInR5cCIgOiAiSldUIiwia2lkIiA6ICJDQ0NZQk44NTNwTFNjZEk0cmFkMFBMNnRLNWhtRWlaLUpOTjd5LVJVbHhnIn0.eyJleHAiOjE3Njk0NDA1NzUsImlhdCI6MTc2OTQ0MDI3NSwianRpIjoiYTdjOGM4ODAtZTM0OS00M2NiLWEwMDAtNjk3MTI3MmU3MTI1IiwiaXNzIjoiaHR0cDovL2tleWNsb2FrOjgwODAvYXV0aC9yZWFsbXMvdGVzdDEiLCJhdWQiOlsicmVhbG0tbWFuYWdlbWVudCIsImFjY291bnQiXSwic3ViIjoiNmNhZmNmNjItYWM3YS00YzY0LTgyYjYtM2YyNzJmNjgxM2M2IiwidHlwIjoiQmVhcmVyIiwiYXpwIjoiZG94aSIsInNpZCI6ImEyZDk2ZGRjLTdiYTgtNDE0NC05NDI3LTRiNWEwMWYyNTcwZSIsImFjciI6IjEiLCJhbGxvd2VkLW9yaWdpbnMiOlsiaHR0cDovL2xvY2FsaG9zdDo0MjAyIiwiaHR0cDovL2tleWNsb2FrOjgwODAiLCJodHRwOi8vbG9jYWxob3N0OjQyMDEiLCJodHRwczovL3ZydGVzdC5kb3hpLXNpZ24uY29tIiwiaHR0cDovL2xvY2FsaG9zdDo0MDgwIiwiaHR0cDovL2xvY2FsaG9zdDo0MDkwIiwiaHR0cDovL2xvY2FsaG9zdDo0MjAwIiwiaHR0cDovL2xvY2FsaG9zdDo4MDAwIl0sInJlYWxtX2FjY2VzcyI6eyJyb2xlcyI6WyJvZmZsaW5lX2FjY2VzcyIsInVtYV9hdXRob3JpemF0aW9uIiwiZGVmYXVsdC1yb2xlcy10ZXN0MSJdfSwicmVzb3VyY2VfYWNjZXNzIjp7InJlYWxtLW1hbmFnZW1lbnQiOnsicm9sZXMiOlsibWFuYWdlLXVzZXJzIiwidmlldy11c2VycyIsInF1ZXJ5LWdyb3VwcyIsInF1ZXJ5LXVzZXJzIl19LCJkb3hpIjp7InJvbGVzIjpbIkNyZWF0ZUZsb3ciLCJQdWJsaWNUZW1wbGF0ZUVkaXRvciIsIlNpZ24iLCJBUEkiLCJWaWV3Rmxvd3MiLCJBZG1pbiJdfSwiYWNjb3VudCI6eyJyb2xlcyI6WyJtYW5hZ2UtYWNjb3VudCIsIm1hbmFnZS1hY2NvdW50LWxpbmtzIiwidmlldy1wcm9maWxlIl19fSwic2NvcGUiOiIiLCJyb2xlcyI6WyJtYW5hZ2UtdXNlcnMiLCJ2aWV3LXVzZXJzIiwicXVlcnktZ3JvdXBzIiwicXVlcnktdXNlcnMiLCJDcmVhdGVGbG93IiwiUHVibGljVGVtcGxhdGVFZGl0b3IiLCJTaWduIiwiQVBJIiwiVmlld0Zsb3dzIiwiQWRtaW4iLCJtYW5hZ2UtYWNjb3VudCIsIm1hbmFnZS1hY2NvdW50LWxpbmtzIiwidmlldy1wcm9maWxlIl19.eCeqPrT6ZbC3KgS8q3PT7YBi7b0du8mr0twTNlZNVCXlaFHS4F-SgrGoZvefmAzMzeMrKNd1YWtpsmm4SVfcWKgoUfa9mr6PWzfjXkH0XZJsMdG-K9haMFwqYvvbIfkYIE0GsQYhVZsjF0Xp-Ek9SDzZLpkXUMgqg5AXQlvrazyaCJe6qh79lwF-_ypxDMHq31g89Vb8SV5J0ThTQokhWxK4JfuQO-wbqTzAxDTxnpIGe8sgVimRvvDQLKJC_v-G7P_k95_MJRpbYJ8wAbEmlSzt3fxwgSgXLPo_1SoL3fCPX0pCglr5k_cZcQfKPz1BhAuebY3hknNpS6Bj-AGejg\",\r\n    \"expires_in\": 300,\r\n    \"refresh_expires_in\": 10800,\r\n    \"refresh_token\": \"{{vault:json-web-token}}\",\r\n    \"token_type\": \"Bearer\",\r\n    \"not-before-policy\": 0,\r\n    \"session_state\": \"a2d96ddc-7ba8-4144-9427-4b5a01f2570e\",\r\n    \"scope\": \"\"\r\n}"},{"id":"19fd007a-0bdf-47ec-a372-2797886e125e","name":"GetToken","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"password","type":"text"},{"key":"username","value":"someUser@someCompany.com","type":"text"},{"key":"password","value":"1111111","type":"text"},{"key":"client_id","value":"doxi","type":"text"}]},"url":"{{IDPUrl}}/auth/realms/{{Tenant}}/protocol/openid-connect/token"},"_postman_previewlanguage":"Text","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n    \"error\": \"invalid_grant\",\r\n    \"error_description\": \"Invalid user credentials\"\r\n}"}],"_postman_id":"6083f431-09e3-4ef8-b5f6-cb5f7816ec3e"},{"name":"GetToken Refresh","event":[{"listen":"test","script":{"id":"64a1c3bf-099f-424f-aca8-5c80d7e18b04","exec":["var token = pm.response.json().access_token;\r","pm.environment.set(\"token\",token)"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"ef028840-6e5d-48d8-b43c-e24029384a30","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"refresh_token","type":"text"},{"key":"refresh_token","value":"{{vault:json-web-token}}","type":"text"},{"key":"client_id","value":"doxi","type":"text"}]},"url":"{{IDPUrl}}/auth/realms/{{Tenant}}/protocol/openid-connect/token","description":"<p>{{IDPUrl}} is: <a href=\"https://login.doxi-sign.com\">https://login.doxi-sign.com</a>\n{{username}} needs to be the API user for Doxi. API user can access all flow information for all the company users</p>\n","urlObject":{"path":["auth","realms","{{Tenant}}","protocol","openid-connect","token"],"host":["{{IDPUrl}}"],"query":[],"variable":[]}},"response":[{"id":"b70b2e9a-7b5b-49e1-bec8-b468d9023ccd","name":"GetToken Refresh successfully","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"refresh_token","type":"text"},{"key":"refresh_token","value":"eyJhbGciOiJIUzUxMiIsInR5cCIgOiAiSldUIiwia2lkIiA6ICJiMTU5MWQzNy0zNzRmLTRkZTUtYjY1NS1kNzUzMDQ2MTIzNDUifQ.eyJleHAiOjE3Njk0NTE1NjMsImlhdCI6MTc2OTQ0MDc2MywianRpIjoiMDdmNTg4YzEtZGE2Zi00NTRhLWFkMDAtOWM4ZGNhODZhZjc2IiwiaXNzIjoiaHR0cHM6Ly9sb2dpbnRlc3QuZG94aS1zaWduLmNvbS9hdXRoL3JlYWxtcy9jb25zaXN0LXRlc3QtMiIsImF1ZCI6Imh0dHBzOi8vbG9naW50ZXN0LmRveGktc2lnbi5jb20vYXV0aC9yZWFsbXMvY29uc2lzdC10ZXN0LTIiLCJzdWIiOiIzZGUzNzFhYi04ZjZiLTRlZTItOGE4Yi0wNjU3YWQyMjhlNDMiLCJ0eXAiOiJSZWZyZXNoIiwiYXpwIjoiZG94aSIsInNpZCI6IjVjOGRhODk2LTA5NTQtNDFkYy04ZWYxLTY0NDQ2OTFjMDk5YiIsInNjb3BlIjoid2ViLW9yaWdpbnMgcm9sZXMgYmFzaWMifQ.Qm2T81HkNfzmrKej0yMaBOlZxs31yjTFrH17ORxkjIZYkri-lXPl-JMhOg5ubh6iFpo6OZ9W2vKQZUV_8kMWwQ","type":"text"},{"key":"client_id","value":"doxi","type":"text"}]},"url":"{{IDPUrl}}/auth/realms/{{Tenant}}/protocol/openid-connect/token"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"access_token\": \"eyJhbGciOiJSUzI1NiIsInR5cCIgOiAiSldUIiwia2lkIiA6ICJDQ0NZQk44NTNwTFNjZEk0cmFkMFBMNnRLNWhtRWlaLUpOTjd5LVJVbHhnIn0.eyJleHAiOjE3Njk0NDA4MjIsImlhdCI6MTc2OTQ0MDUyMiwianRpIjoiOTY0OTQwOGMtMGYxYS00ODY2LTg1ZWMtNTRhZmE5YzlkYzcwIiwiaXNzIjoiaHR0cDovL2tleWNsb2FrOjgwODAvYXV0aC9yZWFsbXMvdGVzdDEiLCJhdWQiOlsicmVhbG0tbWFuYWdlbWVudCIsImFjY291bnQiXSwic3ViIjoiNmNhZmNmNjItYWM3YS00YzY0LTgyYjYtM2YyNzJmNjgxM2M2IiwidHlwIjoiQmVhcmVyIiwiYXpwIjoiZG94aSIsInNpZCI6ImEyZDk2ZGRjLTdiYTgtNDE0NC05NDI3LTRiNWEwMWYyNTcwZSIsImFjciI6IjEiLCJhbGxvd2VkLW9yaWdpbnMiOlsiaHR0cDovL2xvY2FsaG9zdDo0MjAyIiwiaHR0cDovL2tleWNsb2FrOjgwODAiLCJodHRwOi8vbG9jYWxob3N0OjQyMDEiLCJodHRwczovL3ZydGVzdC5kb3hpLXNpZ24uY29tIiwiaHR0cDovL2xvY2FsaG9zdDo0MDgwIiwiaHR0cDovL2xvY2FsaG9zdDo0MDkwIiwiaHR0cDovL2xvY2FsaG9zdDo0MjAwIiwiaHR0cDovL2xvY2FsaG9zdDo4MDAwIl0sInJlYWxtX2FjY2VzcyI6eyJyb2xlcyI6WyJvZmZsaW5lX2FjY2VzcyIsInVtYV9hdXRob3JpemF0aW9uIiwiZGVmYXVsdC1yb2xlcy10ZXN0MSJdfSwicmVzb3VyY2VfYWNjZXNzIjp7InJlYWxtLW1hbmFnZW1lbnQiOnsicm9sZXMiOlsibWFuYWdlLXVzZXJzIiwidmlldy11c2VycyIsInF1ZXJ5LWdyb3VwcyIsInF1ZXJ5LXVzZXJzIl19LCJkb3hpIjp7InJvbGVzIjpbIkNyZWF0ZUZsb3ciLCJQdWJsaWNUZW1wbGF0ZUVkaXRvciIsIlNpZ24iLCJBUEkiLCJWaWV3Rmxvd3MiLCJBZG1pbiJdfSwiYWNjb3VudCI6eyJyb2xlcyI6WyJtYW5hZ2UtYWNjb3VudCIsIm1hbmFnZS1hY2NvdW50LWxpbmtzIiwidmlldy1wcm9maWxlIl19fSwic2NvcGUiOiIiLCJyb2xlcyI6WyJtYW5hZ2UtdXNlcnMiLCJ2aWV3LXVzZXJzIiwicXVlcnktZ3JvdXBzIiwicXVlcnktdXNlcnMiLCJDcmVhdGVGbG93IiwiUHVibGljVGVtcGxhdGVFZGl0b3IiLCJTaWduIiwiQVBJIiwiVmlld0Zsb3dzIiwiQWRtaW4iLCJtYW5hZ2UtYWNjb3VudCIsIm1hbmFnZS1hY2NvdW50LWxpbmtzIiwidmlldy1wcm9maWxlIl19.UEG_bIFSbmYP9gZuAxKmclyRSUsjHiHs0UlJBpAR9STqexPZwDcujrCVm16e8TLBqvyONHTULXgugxz3fniO6E3tqFxoHRtUqBkrUVIIQK4J4doGYjlI5PH5vKh0ySKRYjcWLLazsgvPEeMVCD5X5VlYrPXQAYJn-0r-kuO5AAlIUv2ljmii4BOIFBw8TCc9Uz-UmjjKwsUhONgAEgXuMwm1rj6Ac-s4bmG4MlfsBuAfcePaX89JWXglimnPXb5EE2VIud7mU4B5r-XP5ivq0H4jj7K-e-8KWAzyXdwnFHfOUzDZfJYaoj9ovdTw1sSwjPP6ySAxcJ0bHo7kDui-YA\",\r\n    \"expires_in\": 300,\r\n    \"refresh_expires_in\": 10800,\r\n    \"refresh_token\": \"{{vault:json-web-token}}\",\r\n    \"token_type\": \"Bearer\",\r\n    \"not-before-policy\": 0,\r\n    \"session_state\": \"a2d96ddc-7ba8-4144-9427-4b5a01f2570e\",\r\n    \"scope\": \"\"\r\n}"},{"id":"43666955-25cb-4b2c-add6-e2adcc27e53a","name":"GetToken Refresh - 400","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"refresh_token","type":"text"},{"key":"refresh_token","value":"eyJhbGciOiJIUzUxMiIsI","type":"text"},{"key":"client_id","value":"doxi","type":"text"}]},"url":"{{IDPUrl}}/auth/realms/{{Tenant}}/protocol/openid-connect/token"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"error\": \"invalid_grant\",\r\n    \"error_description\": \"Invalid refresh token\"\r\n}"}],"_postman_id":"ef028840-6e5d-48d8-b43c-e24029384a30"}],"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]}},"event":[{"listen":"prerequest","script":{"id":"3576ce5a-6459-4b0b-97c2-211699aa9499","type":"text/javascript","packages":{},"requests":{},"exec":[""]}},{"listen":"test","script":{"id":"1f261ac4-2414-43c1-9c3c-48cc56582ccc","type":"text/javascript","packages":{},"requests":{},"exec":[""]}}],"variable":[{"key":"baseUrl","value":"/"}]}