{"info":{"_postman_id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","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\": \"...\",\n  \"expires_in\": 300,\n  \"refresh_token\": \"...\",\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:<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=...</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-sign.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"david@doxi-sign.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":"8270933e-3406-486b-b49e-37b75e02ec75","publishedId":"2sBY4Mvgj9","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2026-08-02T20:35:50.000Z"},"item":[{"name":"Kits","item":[{"name":"/v6/kits/constant","id":"2b0e58ba-3c41-42b2-84a3-02dfffdf3b49","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 this property become the 2FA password of the user if the \"FlowTwoFactorEnabled\" property is True:</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>SignerRole</td>\n<td><em><strong>Nullable&lt;SignerRole&gt;</strong></em></td>\n<td>The signing role of this participant. 0 = Signer (default), 1 = Approver.Approvers may not have signature or initials elements assigned to them.When omitted, Sign is assumed (no change to existing behaviour).</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(1000) 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=\"signerrole\">SignerRole:</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>The participant must fill at least one element (typically a signature element).This is the default when the field is omitted.</td>\n</tr>\n<tr>\n<td>1</td>\n<td>The participant reviews and approves the document without placing a physical signature.Signature and initials elements are not permitted for this role.</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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","kits","constant"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"89ae5cdb-cad5-416d-b202-9ed0275c1358","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":"1f964063-76e4-4c2b-a2f1-8f59a24c6e6d","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":"29856d22-9593-46f8-b0f0-45f1c1873e24","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":"7adf38b5-a17b-4b1f-a07f-a90917c442c8","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":""}],"_postman_id":"2b0e58ba-3c41-42b2-84a3-02dfffdf3b49"},{"name":"/v6/kits/constant","id":"e344ba88-a55e-4c12-abcf-2d8e891c30fc","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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","kits","constant"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"34b38676-8b90-4404-8bcd-f8e8b6034ea7","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":"188d3a2e-7e17-4072-9cc7-17cca0845a8b","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":"cbf745ca-0d00-4930-aaa9-18ea0cd0af05","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":"b4321e57-31aa-41f9-b19d-2089a3454e3d","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":""}],"_postman_id":"e344ba88-a55e-4c12-abcf-2d8e891c30fc"},{"name":"/v6/kits/constant/:kitId","id":"7ecb566c-fbc8-4f27-be4e-b46ea809936d","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 this property become the 2FA password of the user if the \"FlowTwoFactorEnabled\" property is True:</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>SignerRole</td>\n<td><em><strong>Nullable&lt;SignerRole&gt;</strong></em></td>\n<td>The signing role of this participant. 0 = Signer (default), 1 = Approver.Approvers may not have signature or initials elements assigned to them.When omitted, Sign is assumed (no change to existing behaviour).</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(1000) 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=\"signerrole\">SignerRole:</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>The participant must fill at least one element (typically a signature element).This is the default when the field is omitted.</td>\n</tr>\n<tr>\n<td>1</td>\n<td>The participant reviews and approves the document without placing a physical signature.Signature and initials elements are not permitted for this role.</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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","kits","constant",":kitId"],"host":["/"],"query":[],"variable":[{"id":"5a0543d0-5ab9-4e7b-9ed3-4ae3174a2d4b","type":"any","value":"string","key":"kitId"}]}},"response":[{"id":"e10b3bf6-d62f-4122-8119-b1822ebb0591","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":"ba3f4eae-584d-4c34-a153-279bd29815a2","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":"5b71a497-3d74-499a-bf4a-6ebfc7ce6337","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":"15ebff2c-883c-4b3a-8b8d-9bb09536eba3","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":""}],"_postman_id":"7ecb566c-fbc8-4f27-be4e-b46ea809936d"},{"name":"/v6/kits/constant/:kitId","id":"f3ec55fb-c6eb-47b2-9678-b8891cd57a34","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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","kits","constant",":kitId"],"host":["/"],"query":[],"variable":[{"id":"5e7d67ca-e367-4e4a-9c49-f3ef81900ca8","description":{"content":"<p>The unique identifier (GUID) of the constant kit</p>\n","type":"text/plain"},"type":"any","value":"string","key":"kitId"}]}},"response":[{"id":"f5e3f124-8970-4301-a3e1-4c318f4ab679","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":"f4df5306-62e7-4d28-ab11-c4aaa0666a81","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":"4305cdb7-4ed6-4f6c-9b0c-54a9bbebebf0","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":"3808b030-1e65-4e4e-a8c6-fe4bc7999999","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":""}],"_postman_id":"f3ec55fb-c6eb-47b2-9678-b8891cd57a34"},{"name":"/v6/kits/constant/:kitId","id":"175bdb57-4e75-4d1d-b1e5-842cf518492c","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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","kits","constant",":kitId"],"host":["/"],"query":[],"variable":[{"id":"78198ce3-302f-42be-8094-e9d65faaa923","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":"a1a8f506-544a-410a-a17e-97c49c03af45","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":"03456e6d-6a6f-4286-afd5-3cbc94aa89f8","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":"ed4595a7-cafe-4613-8d81-7de3adbab98d","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":"cb3d0ce6-b3a9-414d-9d8b-be5cfd265066","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":""}],"_postman_id":"175bdb57-4e75-4d1d-b1e5-842cf518492c"},{"name":"/v6/kits/constant/:kitId/send","id":"745f19d1-cdfd-4a76-8a7b-56851f5f11e1","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(1000) 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 this property become the 2FA password of the user if the \"FlowTwoFactorEnabled\" property is True:</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>SignerRole</td>\n<td><em><strong>Nullable&lt;SignerRole&gt;</strong></em></td>\n<td>The signing role of this participant. 0 = Signer (default), 1 = Approver.Approvers may not have signature or initials elements assigned to them.When omitted, Sign is assumed (no change to existing behaviour).</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(1000) 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=\"signerrole\">SignerRole:</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>The participant must fill at least one element (typically a signature element).This is the default when the field is omitted.</td>\n</tr>\n<tr>\n<td>1</td>\n<td>The participant reviews and approves the document without placing a physical signature.Signature and initials elements are not permitted for this role.</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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","kits","constant",":kitId","send"],"host":["/"],"query":[],"variable":[{"id":"4f355047-d799-4982-b5e1-3eb789a06607","type":"any","value":"string","key":"kitId"}]}},"response":[{"id":"325aef67-3e79-4aee-a193-d4f0a539ec69","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":"ac92693c-4cc3-4416-9a02-312229f2731f","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":"8ce3a00e-9e8a-4e79-8616-3db0307b4854","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":"34643e5b-4772-49a8-a61b-904d8f69be13","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":""}],"_postman_id":"745f19d1-cdfd-4a76-8a7b-56851f5f11e1"},{"name":"/v6/kits/single","id":"bc253a55-7fe6-4252-a5c9-f0e4d0c8b7f6","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\": \"8469f1e2-4178-46e3-b54c-f19d2ce1a37a\",\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\": \"3ae038bb-1d74-4042-b6df-8f41ba00bb7f\",\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(1000) 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 this property become the 2FA password of the user if the \"FlowTwoFactorEnabled\" property is True:</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>SignerRole</td>\n<td><em><strong>Nullable&lt;SignerRole&gt;</strong></em></td>\n<td>The signing role of this participant. 0 = Signer (default), 1 = Approver.Approvers may not have signature or initials elements assigned to them.When omitted, Sign is assumed (no change to existing behaviour).</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(1000) 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=\"signerrole\">SignerRole:</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>The participant must fill at least one element (typically a signature element).This is the default when the field is omitted.</td>\n</tr>\n<tr>\n<td>1</td>\n<td>The participant reviews and approves the document without placing a physical signature.Signature and initials elements are not permitted for this role.</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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","kits","single"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"70c04e3e-9ada-44e8-a526-d896413e995a","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\": \"8469f1e2-4178-46e3-b54c-f19d2ce1a37a\",\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\": \"3ae038bb-1d74-4042-b6df-8f41ba00bb7f\",\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":"28802074-f6c9-48c4-abf3-38e667654f17","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\": \"8469f1e2-4178-46e3-b54c-f19d2ce1a37a\",\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\": \"3ae038bb-1d74-4042-b6df-8f41ba00bb7f\",\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":"5952c454-124e-4274-bc4a-fbd39defd0a5","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\": \"8469f1e2-4178-46e3-b54c-f19d2ce1a37a\",\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\": \"3ae038bb-1d74-4042-b6df-8f41ba00bb7f\",\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":"339d4f04-79bd-47cc-b12c-6d25c65aa61c","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\": \"8469f1e2-4178-46e3-b54c-f19d2ce1a37a\",\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\": \"3ae038bb-1d74-4042-b6df-8f41ba00bb7f\",\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":""}],"_postman_id":"bc253a55-7fe6-4252-a5c9-f0e4d0c8b7f6"},{"name":"/v6/kits/single","id":"b9c6e7e0-7bce-41f5-be3e-cd7e84cc6b63","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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","kits","single"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"369a5c19-ef7a-4afe-bb00-be76e9894316","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":"//v6/kits/single"},"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":"156016ff-1aa4-469a-98b0-1e93faca5f9e","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/single"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"c8c10894-d6a6-4ff5-86b5-2d717d2e7db2","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":"//v6/kits/single"},"status":"Payment Required","code":402,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"b9c6e7e0-7bce-41f5-be3e-cd7e84cc6b63"},{"name":"/v6/kits/single/:kitId","id":"ba6310b6-0d18-4931-afb2-21caef6abee6","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\": \"8469f1e2-4178-46e3-b54c-f19d2ce1a37a\",\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\": \"3ae038bb-1d74-4042-b6df-8f41ba00bb7f\",\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(1000) 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 this property become the 2FA password of the user if the \"FlowTwoFactorEnabled\" property is True:</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>SignerRole</td>\n<td><em><strong>Nullable&lt;SignerRole&gt;</strong></em></td>\n<td>The signing role of this participant. 0 = Signer (default), 1 = Approver.Approvers may not have signature or initials elements assigned to them.When omitted, Sign is assumed (no change to existing behaviour).</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(1000) 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=\"signerrole\">SignerRole:</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>The participant must fill at least one element (typically a signature element).This is the default when the field is omitted.</td>\n</tr>\n<tr>\n<td>1</td>\n<td>The participant reviews and approves the document without placing a physical signature.Signature and initials elements are not permitted for this role.</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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","kits","single",":kitId"],"host":["/"],"query":[],"variable":[{"id":"6153f5b4-c908-46a9-be08-8d058b6e6353","type":"any","value":"string","key":"kitId"}]}},"response":[{"id":"3477df6a-2ac1-478e-be33-305d053447be","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\": \"8469f1e2-4178-46e3-b54c-f19d2ce1a37a\",\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\": \"3ae038bb-1d74-4042-b6df-8f41ba00bb7f\",\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":"d64ba0db-6e5f-494d-b5a8-eb8b4800d162","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\": \"8469f1e2-4178-46e3-b54c-f19d2ce1a37a\",\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\": \"3ae038bb-1d74-4042-b6df-8f41ba00bb7f\",\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":"e155bce8-5fdc-4671-86fe-17dbf104aad6","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\": \"8469f1e2-4178-46e3-b54c-f19d2ce1a37a\",\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\": \"3ae038bb-1d74-4042-b6df-8f41ba00bb7f\",\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":"5ebb1412-4dd7-4cbc-b321-d9a31a4ce100","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\": \"8469f1e2-4178-46e3-b54c-f19d2ce1a37a\",\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\": \"3ae038bb-1d74-4042-b6df-8f41ba00bb7f\",\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":""}],"_postman_id":"ba6310b6-0d18-4931-afb2-21caef6abee6"},{"name":"/v6/kits/single/:kitId","id":"7d363087-d446-46ae-bb18-44267a215778","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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","kits","single",":kitId"],"host":["/"],"query":[],"variable":[{"id":"8dbe3b42-deda-4fb8-b72d-90a4ee8c53d0","description":{"content":"<p>The unique identifier (GUID) of the kit</p>\n","type":"text/plain"},"type":"any","value":"string","key":"kitId"}]}},"response":[{"id":"d5aa7cfc-74f5-415f-9dc4-7d92e429b6c1","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":"26ccaa47-461f-46e1-a2fd-b0d22710515f","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":"e403e80b-5d73-413f-8e25-096cb9d74d48","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":"95ec70d9-9d80-457a-addc-eb95277c0b7c","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":""}],"_postman_id":"7d363087-d446-46ae-bb18-44267a215778"},{"name":"/v6/kits/single/:kitId","id":"dd920664-eda0-47ca-9a6c-6b095222dc83","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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","kits","single",":kitId"],"host":["/"],"query":[],"variable":[{"id":"79f7954f-3ec8-4a80-af94-a4afafc8a8ab","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":"362f04d3-f41b-4f0a-bfc1-2a5e36bac52d","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":"b6cb348d-b7db-498c-a5f9-70622499aa7c","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":"ab07e126-6f31-42a4-a777-168d8e8705ef","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":"f475ea34-b98f-4cc5-90e2-4b0196ce36dd","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":""}],"_postman_id":"dd920664-eda0-47ca-9a6c-6b095222dc83"},{"name":"/v6/kits/single/search","id":"1535f932-1590-4625-8ffb-88525968f7f5","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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","kits","single","search"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"a144a661-8057-49be-be7f-9362f2efd6a2","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":"f4c6f12c-4b45-4b37-ac86-e3a510dc99c6","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":"f6a5f413-de61-42d0-bfe8-037adc3615ce","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":""}],"_postman_id":"1535f932-1590-4625-8ffb-88525968f7f5"},{"name":"/v6/kits/single/:kitId/send","id":"0383f53e-5e9f-4d4e-9131-cccbcc12d834","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<h2 id=\"json-object-description\">JSON object description:</h2>\n<hr />\n<h2 id=\"kitid\">kitId:</h2>\n<h3 id=\"the-unique-identifier-guid-of-the-kit-to-send\">The unique identifier (GUID) of the kit to send</h3>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","kits","single",":kitId","send"],"host":["/"],"query":[],"variable":[{"id":"bfcd6a19-e3a7-48b1-808d-4f65015b2b38","type":"any","value":"string","key":"kitId"}]}},"response":[{"id":"317b2b22-2c83-4247-a128-d376b3a85c5c","name":"Kit sent successfully","originalRequest":{"method":"POST","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"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"2042a77c-02a2-4682-9559-69a00e084cf0","name":"Kit not found","originalRequest":{"method":"POST","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"}]}},"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":"ce5a3766-9de1-4c9c-8e3d-f5039c184310","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"POST","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"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"f6220e82-9fd6-43de-9a7a-083d533b2b75","name":"Payment Required - Kit API license not available","originalRequest":{"method":"POST","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"}]}},"status":"Payment Required","code":402,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"0383f53e-5e9f-4d4e-9131-cccbcc12d834"},{"name":"/v6/kits/single/:kitId/stop","id":"af81351c-79e9-435f-af65-88abeb013a24","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<hr />\n<h2 id=\"kitid\">kitId:</h2>\n<h3 id=\"the-unique-identifier-guid-of-the-kit-to-stop\">The unique identifier (GUID) of the kit to stop</h3>\n<hr />\n<h2 id=\"issendemailafterstop\">isSendEmailAfterStop:</h2>\n<h3 id=\"whether-to-send-an-email-notification-after-stopping-the-kit\">Whether to send an email notification after stopping the kit</h3>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","kits","single",":kitId","stop"],"host":["/"],"query":[{"key":"isSendEmailAfterStop","value":"false"}],"variable":[{"id":"5da6e2a7-3f22-4f41-8c75-93f3532455e9","type":"any","value":"string","key":"kitId"}]}},"response":[{"id":"6f290ff0-4d5b-41a5-957b-67573b08c0f1","name":"Kit stopped successfully","originalRequest":{"method":"POST","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":[{"key":"isSendEmailAfterStop","value":"false"}],"variable":[{"key":"kitId","value":"string"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"d585b5aa-086b-4553-9ae9-f7fd0ec72829","name":"Kit not found","originalRequest":{"method":"POST","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":[{"key":"isSendEmailAfterStop","value":"false"}],"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":"de0bd101-b2d5-405d-b670-3be55b23fd0a","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"POST","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":[{"key":"isSendEmailAfterStop","value":"false"}],"variable":[{"key":"kitId","value":"string"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"0b9beb15-3493-4bd7-a71d-b1b9b77294ec","name":"Payment Required - Kit API license not available","originalRequest":{"method":"POST","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":[{"key":"isSendEmailAfterStop","value":"false"}],"variable":[{"key":"kitId","value":"string"}]}},"status":"Payment Required","code":402,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"af81351c-79e9-435f-af65-88abeb013a24"},{"name":"/v6/kits/single/:kitId/link","id":"9fc6fd2f-f550-48da-82b7-2131b4a36011","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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","kits","single",":kitId","link"],"host":["/"],"query":[],"variable":[{"id":"21643357-6772-4da0-9d55-1d9056e5cbb4","description":{"content":"<p>The unique identifier (GUID) of the kit</p>\n","type":"text/plain"},"type":"any","value":"string","key":"kitId"}]}},"response":[{"id":"8869f386-e6d5-4fb0-9060-bc53eba0a314","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":"a9348663-d44e-4347-bdf0-aa5602f2aecc","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":"29a22f9c-2d92-491b-bb7d-02106e6fe93a","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":"6b628e98-5233-4b77-bd56-8503d6f6e438","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":""}],"_postman_id":"9fc6fd2f-f550-48da-82b7-2131b4a36011"},{"name":"/v6/kits/single/:kitId/Reminder","id":"98b5e5b4-aa18-4132-bc0e-d946dae4b072","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<h2 id=\"json-object-description\">JSON object description:</h2>\n<hr />\n<h2 id=\"kitid\">kitId:</h2>\n<h3 id=\"the-unique-identifier-guid-of-the-kit-to-send-reminder-for\">The unique identifier (GUID) of the kit to send reminder for</h3>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","kits","single",":kitId","Reminder"],"host":["/"],"query":[],"variable":[{"id":"c45940d0-868b-4738-a63c-b87a9ff7d6b6","type":"any","value":"string","key":"kitId"}]}},"response":[{"id":"6170299a-e32b-4a95-9eb2-60c5e11f6ad4","name":"Reminder sent successfully","originalRequest":{"method":"POST","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"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"cbe16a74-b04e-4d9f-a765-db8577f0d6e1","name":"Kit not found","originalRequest":{"method":"POST","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"}]}},"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":"d94c9be1-b6db-45bc-a1ac-2b69531c918d","name":"Unauthorized - Missing or invalid authentication token","originalRequest":{"method":"POST","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"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"589e613a-c2f0-4c76-bf7f-9c7bc76646f0","name":"Payment Required - Kit API license not available","originalRequest":{"method":"POST","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"}]}},"status":"Payment Required","code":402,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"98b5e5b4-aa18-4132-bc0e-d946dae4b072"},{"name":"/v6/kits/single/:kitId/attachments","id":"1ee0be63-e4b8-490b-8867-e7b7d70a25c7","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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","kits","single",":kitId","attachments"],"host":["/"],"query":[],"variable":[{"id":"15412bd3-6a14-4c5f-a256-9d9e0e24fb18","description":{"content":"<p>The unique identifier (GUID) of the kit</p>\n","type":"text/plain"},"type":"any","value":"string","key":"kitId"}]}},"response":[{"id":"be3f67af-64f2-4a09-a6aa-246307a0294e","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":"e50df1d6-1c5a-4cb2-9457-66304932fff5","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":"a18852dc-afdf-4cdc-87f0-80a397c5dfb8","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":"eabac4ee-ec45-427b-bba9-24ddc691a058","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":""}],"_postman_id":"1ee0be63-e4b8-490b-8867-e7b7d70a25c7"},{"name":"/v6/kits/single/:kitId/documents","id":"b8c044f0-ad8b-4c4e-bfe0-b37fb3bcca6b","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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","kits","single",":kitId","documents"],"host":["/"],"query":[],"variable":[{"id":"a4fa7d2e-5dbb-45c4-9ac9-3b831e5f008f","description":{"content":"<p>The unique identifier (GUID) of the kit</p>\n","type":"text/plain"},"type":"any","value":"string","key":"kitId"}]}},"response":[{"id":"8817614d-ee54-4b6a-bd86-eb11f9568075","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":"c0223c5a-5c1a-4338-b917-3b4f4ac85d39","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":"5714ad14-b33f-4bd1-9cd9-908e9dab65cd","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":"052f4438-9196-4676-bd4e-ee5dc1185a22","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":""}],"_postman_id":"b8c044f0-ad8b-4c4e-bfe0-b37fb3bcca6b"}],"id":"a440c65c-3d4a-4062-87d9-7e3980a18504","_postman_id":"a440c65c-3d4a-4062-87d9-7e3980a18504","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}}},{"name":"Document","item":[{"name":"/v6/documents/analyze","id":"0feb4598-48e7-4bd3-a077-494ffd5f0922","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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","documents","analyze"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"e31ea8b0-65fc-406c-9c68-bfb2c733e8e5","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":"4255749d-1ec5-4ccb-9b00-2dadbb07fb1d","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":"d6ac5d44-6ac9-44f6-b60c-5f5f0bcc46f4","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":""}],"_postman_id":"0feb4598-48e7-4bd3-a077-494ffd5f0922"},{"name":"/v6/documents/analyze-base64","id":"fedb4011-d525-4f4a-b167-f298964a6eb3","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\": \"string\"\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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","documents","analyze-base64"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"9e2faded-7304-4a6c-8d88-19946f8b6da9","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":"d319a718-4054-4f7a-881d-7def86c6f29a","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":"7a60ef99-cfb4-4d13-8bea-0dea5f417919","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":"fedb4011-d525-4f4a-b167-f298964a6eb3"},{"name":"/v6/documents/search","id":"f45cf274-4749-4318-9c7e-82ee099a7fea","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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","documents","search"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"f5febfa7-cedb-4ea3-b780-b2e00219eb33","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":"aa5a77ac-6091-42ec-a46e-6e426fa0b423","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":"19d235df-ebcb-4653-84e1-9d699d739645","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":""}],"_postman_id":"f45cf274-4749-4318-9c7e-82ee099a7fea"},{"name":"/v6/documents/merge","id":"45d1381a-0e17-42b6-b3e4-f3a889f06893","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","value":"string,string","type":"text"}]},"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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","documents","merge"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"b9e7c784-ab42-44f2-8698-882149b7c4fb","name":"Documents merged successfully","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":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/pdf"}],"cookie":[],"responseTime":null,"body":"string"},{"id":"961b4759-3378-4e58-8f2f-963f375de87c","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":"99e630b7-0921-48b2-b170-73bcacc60c49","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":""}],"_postman_id":"45d1381a-0e17-42b6-b3e4-f3a889f06893"}],"id":"934153b7-9a8d-4395-8499-553a51d1ac58","_postman_id":"934153b7-9a8d-4395-8499-553a51d1ac58","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}}},{"name":"Flow","item":[{"name":"/v2/flow/edit","id":"50b779ad-e75f-41a9-8fa0-6bc81dfb70c0","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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v2","flow","edit"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"7e9d8d9d-dc4a-410d-8029-a9aca0cdb69f","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":"50b779ad-e75f-41a9-8fa0-6bc81dfb70c0"},{"name":"/v5/flowbase64","id":"2bdf91c2-080e-4b4f-a99b-ea232fa9866c","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-sign.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-sign.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-sign.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-sign.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"david@doxi-sign.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-sign.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"marty@doxi-sign.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<tr>\n<td>AutoReplicateSignature</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Enable/Disable auto-replication of signature across all matching signature fields in the flow</td>\n</tr>\n<tr>\n<td>ApprovedFlowByMaxSigners</td>\n<td>Nullable&lt;Int32&gt;</td>\n<td>Minimum number of signers that must approve for the flow to be automatically approved.When the number of approved signers reaches this threshold, the flow is approved andremaining signers (WaitingForApproval or NotSend) are set to Stopped.Must be null or less than or equal to the total number of signers in the flow.</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 this property become the 2FA password of the user if the \"FlowTwoFactorEnabled\" property is True:</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>SignerRole</td>\n<td><em><strong>Nullable&lt;SignerRole&gt;</strong></em></td>\n<td>The signing role of this participant. 0 = Signer (default), 1 = Approver.Approvers may not have signature or initials elements assigned to them.When omitted, Sign is assumed (no change to existing behaviour).</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(1000) 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=\"signerrole\">SignerRole:</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>The participant must fill at least one element (typically a signature element).This is the default when the field is omitted.</td>\n</tr>\n<tr>\n<td>1</td>\n<td>The participant reviews and approves the document without placing a physical signature.Signature and initials elements are not permitted for this role.</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<tr>\n<td>11</td>\n<td>StampOnly</td>\n</tr>\n<tr>\n<td>12</td>\n<td>DrawOnly</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<tr>\n<td>18</td>\n<td>Approval</td>\n</tr>\n<tr>\n<td>21</td>\n<td>Link</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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v5","flowbase64"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"12d2d546-344c-4856-a187-c67abe3bb326","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-sign.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-sign.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-sign.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-sign.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"david@doxi-sign.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-sign.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"marty@doxi-sign.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-sign.com\",\n      \"Link\": \"https://DoxiDMZServer/DoxiSign/sign/1909058d-f59b-42b2-9994-20fbfb154d63/0XyVpZxuN0dI2Bb0ORB4bg%253d%253d\"\n    }\n  ]\n}"}],"_postman_id":"2bdf91c2-080e-4b4f-a99b-ea232fa9866c"},{"name":"/v6/flows/:signFlowId/attachments","id":"4c493f79-a310-42c0-8e74-e5139204bfe3","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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","flows",":signFlowId","attachments"],"host":["/"],"query":[],"variable":[{"id":"c291af29-8a79-4f9b-95fc-6c2e01284985","description":{"content":"<p>The unique identifier (GUID) of the flow</p>\n","type":"text/plain"},"type":"any","value":"string","key":"signFlowId"}]}},"response":[{"id":"65920226-ab8b-419b-9675-1cf629a5cd0e","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":"c6a2d2d7-8211-4623-8154-28fca13fa881","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":"30bdcfed-0104-4e41-aa49-8dfe0e6d11e0","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":"39a3e668-3ba7-46ea-b184-4f60bc876700","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":"9223da0c-ebd7-492e-b47a-a918a1f82605","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":""}],"_postman_id":"4c493f79-a310-42c0-8e74-e5139204bfe3"},{"name":"/v6/flows/:signFlowId/attachments","id":"c99d4892-e0c3-41a7-978b-461cb53a911e","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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","flows",":signFlowId","attachments"],"host":["/"],"query":[],"variable":[{"id":"3eb74bce-0258-4b00-a8a3-883bed4dd918","description":{"content":"<p>The unique identifier (GUID) of the flow</p>\n","type":"text/plain"},"type":"any","value":"string","key":"signFlowId"}]}},"response":[{"id":"c1cc0bc7-71ab-4152-a99a-023e238fb56a","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":"c4c9f9c2-a4dd-4604-8b40-0d0d249e8711","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":"2f50dca7-0fbb-4937-8620-c5d8e370b5eb","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":"0caa4979-1a2e-4936-ad14-89de3e389f62","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":""}],"_postman_id":"c99d4892-e0c3-41a7-978b-461cb53a911e"},{"name":"/v6/flows/:signFlowId/attachments/base64","id":"6c0c6e67-c29e-4917-9f91-6a93ae85db91","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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","flows",":signFlowId","attachments","base64"],"host":["/"],"query":[],"variable":[{"id":"1e72318e-7430-4d36-a1e2-53f6faecf007","type":"any","value":"string","key":"signFlowId"}]}},"response":[{"id":"53f94935-102c-4a63-a669-e2633f94582b","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":"844fcc6e-b199-48b9-986d-5e194dc6bd8c","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":"82c43cd3-bc5c-4125-b9e6-e6737fa870f0","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":"eeb487a3-da7e-48f6-be13-65b40010dea9","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":""}],"_postman_id":"6c0c6e67-c29e-4917-9f91-6a93ae85db91"},{"name":"/v6/flows/:signFlowId/attachment-field","id":"3ca68ace-387f-48a7-9cee-6e8f9c8b0b3e","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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","flows",":signFlowId","attachment-field"],"host":["/"],"query":[],"variable":[{"id":"13fc7c2d-1a28-402e-9952-826f42911fc3","type":"any","value":"string","key":"signFlowId"}]}},"response":[{"id":"55189dc5-681f-4f0e-b1e4-11d9a73d2e85","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":"c232c14d-60c0-4965-9d1c-e24e8f7ff525","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":"325638ab-03af-41ec-b1a5-7c46c88e4180","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":"9e178b6d-8151-48b6-93c5-815cc472ad53","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":"75534116-a9c7-43ae-a081-021825533228","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":""}],"_postman_id":"3ca68ace-387f-48a7-9cee-6e8f9c8b0b3e"},{"name":"/v6/flows","id":"17d78026-2a5b-41ec-86fb-0eb4040fc165","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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","flows"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"65fe4062-b88b-40d1-9803-964656f7e4ea","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":"f3f4d439-920b-4a64-80bb-18a57d81799c","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":""}],"_postman_id":"17d78026-2a5b-41ec-86fb-0eb4040fc165"},{"name":"/v6/flows","id":"f42bdf53-3743-40e2-ad59-be9a751846fa","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-sign.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-sign.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-sign.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"david@doxi-sign.com\",\n      \"FirstName\": \"David\",\n      \"LastName\": \"White\",\n      \"SmsPhoneNumber\": null,\n      \"UserPassword\": null,\n      \"Company\": null,\n      \"Title\": null,\n      \"SignerRole\": 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-sign.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"marty@doxi-sign.com\",\n      \"FirstName\": \"Marty\",\n      \"LastName\": \"Braun\",\n      \"SmsPhoneNumber\": \"0501234567\",\n      \"UserPassword\": \"0018\",\n      \"Company\": null,\n      \"Title\": null,\n      \"SignerRole\": 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  \"AutoReplicateSignature\": null,\n  \"ApprovedFlowByMaxSigners\": 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<tr>\n<td>AutoReplicateSignature</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Enable/Disable auto-replication of signature across all matching signature fields in the flow</td>\n</tr>\n<tr>\n<td>ApprovedFlowByMaxSigners</td>\n<td>Nullable&lt;Int32&gt;</td>\n<td>Minimum number of signers that must approve for the flow to be automatically approved.When the number of approved signers reaches this threshold, the flow is approved andremaining signers (WaitingForApproval or NotSend) are set to Stopped.Must be null or less than or equal to the total number of signers in the flow.</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 this property become the 2FA password of the user if the \"FlowTwoFactorEnabled\" property is True:</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>SignerRole</td>\n<td><em><strong>Nullable&lt;SignerRole&gt;</strong></em></td>\n<td>The signing role of this participant. 0 = Signer (default), 1 = Approver.Approvers may not have signature or initials elements assigned to them.When omitted, Sign is assumed (no change to existing behaviour).</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(1000) 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=\"signerrole\">SignerRole:</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>The participant must fill at least one element (typically a signature element).This is the default when the field is omitted.</td>\n</tr>\n<tr>\n<td>1</td>\n<td>The participant reviews and approves the document without placing a physical signature.Signature and initials elements are not permitted for this role.</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<tr>\n<td>11</td>\n<td>StampOnly</td>\n</tr>\n<tr>\n<td>12</td>\n<td>DrawOnly</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<tr>\n<td>18</td>\n<td>Approval</td>\n</tr>\n<tr>\n<td>21</td>\n<td>Link</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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","flows"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"50990ed1-c88f-4844-9a59-0645dfbd30eb","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-sign.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-sign.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-sign.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"david@doxi-sign.com\",\n      \"FirstName\": \"David\",\n      \"LastName\": \"White\",\n      \"SmsPhoneNumber\": null,\n      \"UserPassword\": null,\n      \"Company\": null,\n      \"Title\": null,\n      \"SignerRole\": 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-sign.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"marty@doxi-sign.com\",\n      \"FirstName\": \"Marty\",\n      \"LastName\": \"Braun\",\n      \"SmsPhoneNumber\": \"0501234567\",\n      \"UserPassword\": \"0018\",\n      \"Company\": null,\n      \"Title\": null,\n      \"SignerRole\": 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  \"AutoReplicateSignature\": null,\n  \"ApprovedFlowByMaxSigners\": 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-sign.com\",\n      \"Link\": \"https://DoxiDMZServer/DoxiSign/sign/1909058d-f59b-42b2-9994-20fbfb154d63/0XyVpZxuN0dI2Bb0ORB4bg%253d%253d\"\n    }\n  ]\n}"},{"id":"64b1c836-ffd2-4aed-84e0-c5cce78577ee","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-sign.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-sign.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-sign.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"david@doxi-sign.com\",\n      \"FirstName\": \"David\",\n      \"LastName\": \"White\",\n      \"SmsPhoneNumber\": null,\n      \"UserPassword\": null,\n      \"Company\": null,\n      \"Title\": null,\n      \"SignerRole\": 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-sign.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"marty@doxi-sign.com\",\n      \"FirstName\": \"Marty\",\n      \"LastName\": \"Braun\",\n      \"SmsPhoneNumber\": \"0501234567\",\n      \"UserPassword\": \"0018\",\n      \"Company\": null,\n      \"Title\": null,\n      \"SignerRole\": 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  \"AutoReplicateSignature\": null,\n  \"ApprovedFlowByMaxSigners\": 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":"6421bf13-04a2-4edc-8dc1-485dff8e5e46","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-sign.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-sign.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-sign.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"david@doxi-sign.com\",\n      \"FirstName\": \"David\",\n      \"LastName\": \"White\",\n      \"SmsPhoneNumber\": null,\n      \"UserPassword\": null,\n      \"Company\": null,\n      \"Title\": null,\n      \"SignerRole\": 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-sign.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"marty@doxi-sign.com\",\n      \"FirstName\": \"Marty\",\n      \"LastName\": \"Braun\",\n      \"SmsPhoneNumber\": \"0501234567\",\n      \"UserPassword\": \"0018\",\n      \"Company\": null,\n      \"Title\": null,\n      \"SignerRole\": 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  \"AutoReplicateSignature\": null,\n  \"ApprovedFlowByMaxSigners\": null\n}","type":"text"}]},"url":"//v6/flows"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"f42bdf53-3743-40e2-ad59-be9a751846fa"},{"name":"/v6/flows/search","id":"7c9c0902-fae5-4011-9063-210047831de3","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&lt;String,String&gt;[]</td>\n<td>Search flows be CustomFields property Key+Value</td>\n</tr>\n<tr>\n<td>SignatureFlowStatus</td>\n<td><em><strong>Nullable&lt;SignatureFlowStatus&gt;</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&lt;DateTime&gt;</td>\n<td>Search by flow create date - from</td>\n</tr>\n<tr>\n<td>ToDate</td>\n<td>Nullable&lt;DateTime&gt;</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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","flows","search"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"94c34ba6-a99c-4a37-bd91-deb9e591520a","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":"1b127d67-cccd-4796-afd3-bfbd76f95e32","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":"f8f048e7-185f-4265-afd5-1880794f87a5","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":""}],"_postman_id":"7c9c0902-fae5-4011-9063-210047831de3"},{"name":"/v6/flows/:signFlowId/document","id":"9bdc61aa-d60b-4421-9366-46139d610481","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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","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":[{"id":"66765ec9-df33-449a-af54-d85a5fc03636","description":{"content":"<p>The unique identifier (GUID) of the flow</p>\n","type":"text/plain"},"type":"any","value":"string","key":"signFlowId"}]}},"response":[{"id":"3b3a2bb3-6b69-4a0a-ade6-533d3d45c9d9","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":"ecbd7791-02d0-4bed-a560-03511bd755c0","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":"1f56a266-9bb3-4fd6-b058-40c06bd7ee3a","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":"b28cef21-e0d1-4234-b8c9-95acd0a0e7e8","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":""}],"_postman_id":"9bdc61aa-d60b-4421-9366-46139d610481"},{"name":"/v6/flows/:signFlowId/document-info","id":"8702e9cb-7191-42bb-b3fa-14875539d30c","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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","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":[{"id":"1ed33edb-eca6-480d-a212-61f7aa89fcb0","description":{"content":"<p>The unique identifier (GUID) of the flow</p>\n","type":"text/plain"},"type":"any","value":"string","key":"signFlowId"}]}},"response":[{"id":"b905e198-42cb-468c-8b9b-7fde8c211db0","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":"f8859de0-8171-44a1-a802-f0e7a2adc635","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":"e871a06e-288d-479e-8207-826a87950520","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":"27d2f2d7-7a02-4c61-aa55-62e58b970c5c","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":""}],"_postman_id":"8702e9cb-7191-42bb-b3fa-14875539d30c"},{"name":"/v6/flows/:signFlowId/action","id":"f6522081-c413-451c-a63e-96dbbd5ccabd","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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","flows",":signFlowId","action"],"host":["/"],"query":[],"variable":[{"id":"61301cae-cf70-4d4b-a8c9-a3e8a30d1d14","type":"any","value":"string","key":"signFlowId"}]}},"response":[{"id":"02c3b142-5ae5-4091-a3c1-5be9d3a52bd2","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":"e7a4e44e-644f-423c-a3f3-803264a6bab0","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":"47d99e9c-1025-458c-a974-fe446c3661be","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":"1031e543-eee5-4484-aeb0-e4b2a076a122","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":""}],"_postman_id":"f6522081-c413-451c-a63e-96dbbd5ccabd"},{"name":"/v6/flows/:signFlowId","id":"b88f4543-e8fc-4016-8948-44a383b5e8d9","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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","flows",":signFlowId"],"host":["/"],"query":[],"variable":[{"id":"105980f6-fadb-4612-8fee-9921706b4219","description":{"content":"<p>The unique identifier (GUID) of the flow</p>\n","type":"text/plain"},"type":"any","value":"string","key":"signFlowId"}]}},"response":[{"id":"e2364457-36e6-47ca-8317-497c7eb77138","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":"2b4af5fb-98e2-4557-8420-d28e0e365dea","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":"06ae827f-295e-429a-a234-a9d1604ea84d","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":"8817698f-35bc-44c6-987b-a68690d1face","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":""}],"_postman_id":"b88f4543-e8fc-4016-8948-44a383b5e8d9"},{"name":"/v6/flows/searchstatus","id":"c53bf42e-1a05-4abc-b435-0a58aa0e441c","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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","flows","searchstatus"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"4f72ee20-760c-4f5b-af62-2723432c3bdf","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":"ebeb0b75-daeb-4fc4-a7d1-66d07ed01ecf","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":"f6003553-cf96-4162-9269-ed12691d062e","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":""}],"_postman_id":"c53bf42e-1a05-4abc-b435-0a58aa0e441c"},{"name":"/v6/flows/:signFlowId/status","id":"eabc551b-4a68-4566-987e-3385d01c4cab","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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","flows",":signFlowId","status"],"host":["/"],"query":[],"variable":[{"id":"8987411e-4b15-4395-930e-7e22e958e707","description":{"content":"<p>The unique identifier (GUID) of the flow</p>\n","type":"text/plain"},"type":"any","value":"string","key":"signFlowId"}]}},"response":[{"id":"e2243f3b-9378-4827-b3fb-f4892b54807a","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-sign.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":"be4775dc-f5f2-4064-9aee-77c1653d9063","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":"2f973c52-4d03-4752-8095-507cc89946c1","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":"a0087d74-fedb-4d8e-92cc-b79cb258cc7a","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":""}],"_postman_id":"eabc551b-4a68-4566-987e-3385d01c4cab"},{"name":"/v6/flows/:signFlowId/signatures","id":"04352297-0f75-448e-b5a5-84cd8b03bb71","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>InitialsImageBase64</td>\n<td>String</td>\n<td>Base-64 image of the initial signature - Only in Sign action (signAction=0)</td>\n</tr>\n<tr>\n<td>StampOnlyImageBase64</td>\n<td>String</td>\n<td>Base-64 image of the stamp only signature - Only in Sign action (signAction=0)</td>\n</tr>\n<tr>\n<td>DrawOnlyImageBase64</td>\n<td>String</td>\n<td>Base-64 image of the draw only 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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","flows",":signFlowId","signatures"],"host":["/"],"query":[],"variable":[{"id":"d9ac5a72-d04b-4a3a-8053-c1c924fb7dcc","type":"any","value":"string","key":"signFlowId"}]}},"response":[{"id":"9df46cf5-79a9-49d5-b01f-b84e497c8c7b","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":"3bc66dbf-7f59-42c8-8036-9404413ab1fc","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":"5643679b-485d-4456-bb22-690cf0b327c0","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":"e74643f8-a7cd-4d79-b203-ef73dda6ce94","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":""}],"_postman_id":"04352297-0f75-448e-b5a5-84cd8b03bb71"},{"name":"/v6/flows/replace-signer","id":"76afb479-a800-4080-857d-90870f9a2557","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 this property become the 2FA password of the user if the \"FlowTwoFactorEnabled\" property is True:</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>SignerRole</td>\n<td><em><strong>Nullable&lt;SignerRole&gt;</strong></em></td>\n<td>The signing role of this participant. 0 = Signer (default), 1 = Approver.Approvers may not have signature or initials elements assigned to them.When omitted, Sign is assumed (no change to existing behaviour).</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(1000) 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=\"signerrole\">SignerRole:</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>The participant must fill at least one element (typically a signature element).This is the default when the field is omitted.</td>\n</tr>\n<tr>\n<td>1</td>\n<td>The participant reviews and approves the document without placing a physical signature.Signature and initials elements are not permitted for this role.</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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","flows","replace-signer"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"064e596e-c94e-4ed3-9dc6-f98e46b3675f","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":"2f92809e-5a75-4072-af55-5e66b80017a3","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":"e386142e-e04d-43ac-879d-22cf85bab279","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":"8d29eaad-8de8-4038-b31e-0a5de49e1d1d","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":""}],"_postman_id":"76afb479-a800-4080-857d-90870f9a2557"},{"name":"/v6/flows/:signFlowId/sign-url","id":"275125ef-403c-4b0e-a359-56523ec720b6","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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","flows",":signFlowId","sign-url"],"host":["/"],"query":[],"variable":[{"id":"7456e5a5-1a1e-46ec-b494-60bf09548872","type":"any","value":"string","key":"signFlowId"}]}},"response":[{"id":"ac5ab2b7-31c9-472d-9f21-82b6b613c083","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":"5f40ce7d-6175-44a4-9cf6-4510b61263aa","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":"09087f85-dce2-4416-9c4e-3e14623c4c6a","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":"7a43eed0-3410-401f-bda7-54f7c56a528a","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":""}],"_postman_id":"275125ef-403c-4b0e-a359-56523ec720b6"}],"id":"279122f9-758e-42ed-b525-30681ee0aa69","_postman_id":"279122f9-758e-42ed-b525-30681ee0aa69","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}}},{"name":"Template","item":[{"name":"/v6/templates/:templateId/flow","id":"ec750513-b0a8-4cb6-a53c-1ed6e04bf7c2","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-sign.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"marty@doxi-sign.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-sign.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"david@doxi-sign.com\",\n      \"FirstName\": \"David\",\n      \"LastName\": \"White\"\n    }\n  ],\n  \"IsNoSend\": false,\n  \"IsNoNotificationMails\": false,\n  \"ReadOnlyFields\": [\n    {\n      \"SignerEmail\": \"marty@doxi-sign.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<tr>\n<td>AutoReplicateSignature</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Enable/Disable auto-replication of signature across all matching signature fields in the flow.If not provided, the value from the template is used.</td>\n</tr>\n<tr>\n<td>ApprovedFlowByMaxSigners</td>\n<td>Nullable&lt;Int32&gt;</td>\n<td>Minimum number of signers that must approve for the flow to be automatically approved.If not provided, the value from the template is used.</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(1000) 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 this property become the 2FA password of the user if the \"FlowTwoFactorEnabled\" property is True:</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>SignerRole</td>\n<td><em><strong>Nullable&lt;SignerRole&gt;</strong></em></td>\n<td>The signing role of this participant. 0 = Signer (default), 1 = Approver.Approvers may not have signature or initials elements assigned to them.When omitted, Sign is assumed (no change to existing behaviour).</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(1000) 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=\"signerrole\">SignerRole:</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>The participant must fill at least one element (typically a signature element).This is the default when the field is omitted.</td>\n</tr>\n<tr>\n<td>1</td>\n<td>The participant reviews and approves the document without placing a physical signature.Signature and initials elements are not permitted for this role.</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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","templates",":templateId","flow"],"host":["/"],"query":[],"variable":[{"id":"9f996228-352d-4b10-b330-49a75a519949","type":"any","value":"string","key":"templateId"}]}},"response":[{"id":"4614e4c9-fc0d-4202-81f5-41cd9c43732a","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  \"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-sign.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"marty@doxi-sign.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-sign.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"david@doxi-sign.com\",\n      \"FirstName\": \"David\",\n      \"LastName\": \"White\"\n    }\n  ],\n  \"IsNoSend\": false,\n  \"IsNoNotificationMails\": false,\n  \"ReadOnlyFields\": [\n    {\n      \"SignerEmail\": \"marty@doxi-sign.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-sign.com\",\n      \"Link\": \"https://DoxiDMZServer/DoxiSign/sign/1909058d-f59b-42b2-9994-20fbfb154d63/0XyVpZxuN0dI2Bb0ORB4bg%253d%253d\"\n    }\n  ]\n}"},{"id":"c29e76c5-2b5f-4d0e-98e9-aeb5d8d2b972","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  \"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-sign.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"marty@doxi-sign.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-sign.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"david@doxi-sign.com\",\n      \"FirstName\": \"David\",\n      \"LastName\": \"White\"\n    }\n  ],\n  \"IsNoSend\": false,\n  \"IsNoNotificationMails\": false,\n  \"ReadOnlyFields\": [\n    {\n      \"SignerEmail\": \"marty@doxi-sign.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":"8f265814-baab-482f-956a-800064c8c6d8","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  \"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-sign.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"marty@doxi-sign.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-sign.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"david@doxi-sign.com\",\n      \"FirstName\": \"David\",\n      \"LastName\": \"White\"\n    }\n  ],\n  \"IsNoSend\": false,\n  \"IsNoNotificationMails\": false,\n  \"ReadOnlyFields\": [\n    {\n      \"SignerEmail\": \"marty@doxi-sign.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":"3a645d08-b99f-48ea-98c1-2901b69f0ed8","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  \"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-sign.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"marty@doxi-sign.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-sign.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"david@doxi-sign.com\",\n      \"FirstName\": \"David\",\n      \"LastName\": \"White\"\n    }\n  ],\n  \"IsNoSend\": false,\n  \"IsNoNotificationMails\": false,\n  \"ReadOnlyFields\": [\n    {\n      \"SignerEmail\": \"marty@doxi-sign.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":""}],"_postman_id":"ec750513-b0a8-4cb6-a53c-1ed6e04bf7c2"},{"name":"/v6/templates/:templateId","id":"7e316b75-d0ab-428d-b50d-63ae246bfcd2","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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","templates",":templateId"],"host":["/"],"query":[],"variable":[{"id":"8489c03d-c1eb-49a7-8f7a-c982e58a5233","description":{"content":"<p>The unique identifier (GUID) of the template</p>\n","type":"text/plain"},"type":"any","value":"string","key":"templateId"}]}},"response":[{"id":"64834c97-0c51-43ad-9a4e-8a12d249d690","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      \"SignerRole\": 0\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":"9c3cf8b8-ae25-4367-9b2b-b4469bbefe4d","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":"2590bb8c-4bde-438e-8851-62b3c2cc0593","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":"0c49a08c-4947-48dd-ab91-6d87798b3dfa","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":""}],"_postman_id":"7e316b75-d0ab-428d-b50d-63ae246bfcd2"},{"name":"/v6/templates/:templateId","id":"8b27a77c-42a5-4a47-bf20-5c855b33c097","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      \"SignerRole\": 0\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>RecipientsData</td>\n<td><em><strong>ExRecipientData[]</strong></em></td>\n<td></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<tr>\n<td>CustomFields</td>\n<td>KeyValuePair&lt;String,String&gt;[]</td>\n<td></td>\n</tr>\n<tr>\n<td>AutoReplicateSignature</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Enable/Disable auto-replication of signature across all matching signature fields in the flow</td>\n</tr>\n<tr>\n<td>ApprovedFlowByMaxSigners</td>\n<td>Nullable&lt;Int32&gt;</td>\n<td>Minimum number of signers that must approve for the flow to be automatically approved.Must be null or less than or equal to the total number of signers in the flow.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exrecipientdata\">ExRecipientData:</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>Participant</td>\n<td><em><strong>ParticipantKey</strong></em></td>\n<td></td>\n</tr>\n<tr>\n<td>NotificationMailsToSend</td>\n<td><em><strong>NotificationMails[]</strong></em></td>\n<td></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(1000) 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<tr>\n<td>SignerRole</td>\n<td><em><strong>SignerRole</strong></em></td>\n<td>The signing role of this participant. 0 = Signer (default), 1 = Approver.Approvers may not have signature or initials elements assigned to them.When omitted, Sign is assumed (no change to existing behaviour).</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"signerrole\">SignerRole:</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>The participant must fill at least one element (typically a signature element).This is the default when the field is omitted.</td>\n</tr>\n<tr>\n<td>1</td>\n<td>The participant reviews and approves the document without placing a physical signature.Signature and initials elements are not permitted for this role.</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<tr>\n<td>11</td>\n<td>StampOnly</td>\n</tr>\n<tr>\n<td>12</td>\n<td>DrawOnly</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<tr>\n<td>18</td>\n<td>Approval</td>\n</tr>\n<tr>\n<td>21</td>\n<td>Link</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","templates",":templateId"],"host":["/"],"query":[],"variable":[{"id":"ada8180b-fa8e-4800-b0cb-e9b1dd4a731b","type":"any","value":"string","key":"templateId"}]}},"response":[{"id":"b6649176-1139-423f-9ee3-60972061216e","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      \"SignerRole\": 0\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":"ab91d8a2-185f-46f9-ac2b-dc0cdd31e33b","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      \"SignerRole\": 0\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":"bb2d10b6-02df-4512-88a0-3fcd68b7704d","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      \"SignerRole\": 0\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":"99a224f3-615e-4cbd-92a5-2442dfbe6961","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      \"SignerRole\": 0\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":""}],"_postman_id":"8b27a77c-42a5-4a47-bf20-5c855b33c097"},{"name":"/v6/templates/:templateId","id":"aa148e59-08e1-47c8-83e0-0f8f31093bfc","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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","templates",":templateId"],"host":["/"],"query":[],"variable":[{"id":"26a4da3c-5384-4ea5-8fcd-e9ab3c1e938e","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":"bed9193a-bcc6-413f-821e-ed519d3b0d9d","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":"f0042e1a-3c51-4c8a-b00a-590fef9739c7","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":"fb755229-231c-415c-8c0a-34173ed8f128","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":"832006d7-f4e7-42a2-97e6-dbff22d71b66","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":"278f041b-b2e8-4cd2-af09-b3ffbce9366c","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":""}],"_postman_id":"aa148e59-08e1-47c8-83e0-0f8f31093bfc"},{"name":"/v6/templates","id":"e6720a70-7d22-4a66-a4cc-5987252cad68","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      \"SignerRole\": 0\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&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>RecipientsData</td>\n<td><em><strong>ExRecipientData[]</strong></em></td>\n<td></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<tr>\n<td>CustomFields</td>\n<td>KeyValuePair&lt;String,String&gt;[]</td>\n<td></td>\n</tr>\n<tr>\n<td>AutoReplicateSignature</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Enable/Disable auto-replication of signature across all matching signature fields in the flow</td>\n</tr>\n<tr>\n<td>ApprovedFlowByMaxSigners</td>\n<td>Nullable&lt;Int32&gt;</td>\n<td>Minimum number of signers that must approve for the flow to be automatically approved.Must be null or less than or equal to the total number of signers in the flow.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exrecipientdata\">ExRecipientData:</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>Participant</td>\n<td><em><strong>ParticipantKey</strong></em></td>\n<td></td>\n</tr>\n<tr>\n<td>NotificationMailsToSend</td>\n<td><em><strong>NotificationMails[]</strong></em></td>\n<td></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(1000) 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<tr>\n<td>SignerRole</td>\n<td><em><strong>SignerRole</strong></em></td>\n<td>The signing role of this participant. 0 = Signer (default), 1 = Approver.Approvers may not have signature or initials elements assigned to them.When omitted, Sign is assumed (no change to existing behaviour).</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"signerrole\">SignerRole:</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>The participant must fill at least one element (typically a signature element).This is the default when the field is omitted.</td>\n</tr>\n<tr>\n<td>1</td>\n<td>The participant reviews and approves the document without placing a physical signature.Signature and initials elements are not permitted for this role.</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&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<tr>\n<td>11</td>\n<td>StampOnly</td>\n</tr>\n<tr>\n<td>12</td>\n<td>DrawOnly</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<tr>\n<td>18</td>\n<td>Approval</td>\n</tr>\n<tr>\n<td>21</td>\n<td>Link</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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","templates"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"61f7bb37-5aa9-4263-b317-d833667c05ad","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      \"SignerRole\": 0\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":"b6f5c59a-d8f1-4495-9dc7-33ecb3b915b5","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      \"SignerRole\": 0\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":"e5464328-b59b-461c-b5d5-604da83cf829","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      \"SignerRole\": 0\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":""}],"_postman_id":"e6720a70-7d22-4a66-a4cc-5987252cad68"},{"name":"/v6/templates/:templateId/attachments","id":"391802b1-185a-4175-a397-d954c5e91724","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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","templates",":templateId","attachments"],"host":["/"],"query":[],"variable":[{"id":"614f7179-56d3-4ef0-ab2e-fab7f500168f","description":{"content":"<p>The unique identifier (GUID) of the template</p>\n","type":"text/plain"},"type":"any","value":"string","key":"templateId"}]}},"response":[{"id":"0ea9a360-1a3b-400d-8444-e68693e32518","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":"dc603301-92bf-480a-8485-25a8486ee559","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":"c5beb36c-9c35-4047-b9bd-4519784118c7","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":"c628d7b9-0342-4728-8a35-5d1cc39fdc7f","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":""}],"_postman_id":"391802b1-185a-4175-a397-d954c5e91724"},{"name":"/v6/templates/:templateId/attachments/:attachmentId","id":"b116f554-2d00-4178-ad60-ed33b6d29a54","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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","templates",":templateId","attachments",":attachmentId"],"host":["/"],"query":[],"variable":[{"id":"f1b1ca2a-a948-4193-bcfa-ba5ece50b690","description":{"content":"<p>The unique identifier (GUID) of the template</p>\n","type":"text/plain"},"type":"any","value":"string","key":"templateId"},{"id":"d5f0ec48-e2d3-4f09-9de7-6e277af13786","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":"0c8291b5-5b55-4cb8-9c32-331559cdce75","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":"3097e420-c03f-4f5c-9250-bd144b3bdc80","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":"5ca69016-3c72-4559-8193-b38efade65db","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":"8fc11049-aff0-4224-8e44-18cac359360d","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":""}],"_postman_id":"b116f554-2d00-4178-ad60-ed33b6d29a54"}],"id":"1d29c1a3-44e4-4977-9c86-4b64176c22e3","_postman_id":"1d29c1a3-44e4-4977-9c86-4b64176c22e3","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}}},{"name":"User","item":[{"name":"/v6/users/groups","id":"ae3ef237-ffd4-42a5-b3b2-31e8009938aa","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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","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":"b8221c88-e3e6-4add-8212-1fd85be52482","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":"f43a0c07-d9c7-4016-9f21-cf15e0f9e172","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":"53167abf-bbda-4490-ad67-adefe03c1a31","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":"eae93222-7ab7-4527-b212-af0373c0bd94","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":""}],"_postman_id":"ae3ef237-ffd4-42a5-b3b2-31e8009938aa"},{"name":"/v6/users/templates","id":"923e15ae-6ff9-45fa-9781-b9656c47762a","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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","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":"bf201961-cf81-4da7-895f-70a66866be99","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":"00667b31-eb41-431f-ac82-362957dedf1a","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":"6f01b26f-51f1-4863-9f0d-8ae6a7baf89e","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":"82a6f7e8-4f8f-44c2-afd9-4f2a645b9eb3","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":""}],"_postman_id":"923e15ae-6ff9-45fa-9781-b9656c47762a"}],"id":"e8cf3e86-0c90-4013-a114-bb16e5fd73e0","_postman_id":"e8cf3e86-0c90-4013-a114-bb16e5fd73e0","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}}},{"name":"Webhook","item":[{"name":"/v6/webhooks","id":"698774b9-77fa-4a98-97b8-9806c4e428a2","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&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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","webhooks"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"2f44f093-3755-4726-9e81-c007ac25847e","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":"60028a29-f8f6-4db1-bc57-543be7aaf589","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":"49104264-af5e-4137-b302-f6c66a201a55","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":""}],"_postman_id":"698774b9-77fa-4a98-97b8-9806c4e428a2"},{"name":"/v6/webhooks","id":"062c928b-d447-4605-bd8a-dcc0b2e2fc09","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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","webhooks"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"b7dfa31a-68d4-4999-ad9f-038f6a75399b","name":"Webhook subscriptions 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/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":"47c8e125-8152-423d-8ce6-9a0ddc854fc6","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":""}],"_postman_id":"062c928b-d447-4605-bd8a-dcc0b2e2fc09"},{"name":"/v6/webhooks/test","id":"6e605240-2afe-45cf-8ed9-ff6cf5aaf1a3","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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","webhooks","test"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"64b2c876-8d82-49a0-b37e-b5399d28765a","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":"0cdc04fe-9353-48b4-8660-ac4c3abb4e61","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":"0bd21510-d5d4-4aa4-af52-3d0abf3989c0","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":""}],"_postman_id":"6e605240-2afe-45cf-8ed9-ff6cf5aaf1a3"},{"name":"/v6/webhooks/:subscriptionId/logs","id":"886b319b-6de8-4a3e-9347-96e1fda617cd","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=1967-01-29T22:12:25.112Z&toDateTime=1967-01-29T22:12:25.112Z&isFailed=true","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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","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":"1967-01-29T22:12:25.112Z"},{"description":{"content":"<p>Search by WebhookSenderLog create date - to. Format: dd/mm/yyyy in UTC. Optional.</p>\n","type":"text/plain"},"key":"toDateTime","value":"1967-01-29T22:12:25.112Z"},{"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":"true"}],"variable":[{"id":"f982df0d-48c3-4c86-96a9-4bd7dce3e917","description":{"content":"<p>The unique identifier (GUID) of the webhook subscription</p>\n","type":"text/plain"},"type":"any","value":"string","key":"subscriptionId"}]}},"response":[{"id":"ff01db7b-deae-4353-a1ef-b7231c7085d5","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=1967-01-29T22:12:25.112Z&toDateTime=1967-01-29T22:12:25.112Z&isFailed=true","host":["/"],"path":["v6","webhooks",":subscriptionId","logs"],"query":[{"description":"Search by WebhookSenderLog create date - from. Format: dd/mm/yyyy in UTC. Optional.","key":"fromDateTime","value":"1967-01-29T22:12:25.112Z"},{"description":"Search by WebhookSenderLog create date - to. Format: dd/mm/yyyy in UTC. Optional.","key":"toDateTime","value":"1967-01-29T22:12:25.112Z"},{"description":"The filter parameter for the success status of records: true for failed, false for successful, null for all. Optional.","key":"isFailed","value":"true"}],"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\": \"\"\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\": \"\"\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":"931bf8f8-8394-4760-bbf1-99238b1909fd","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=1967-01-29T22:12:25.112Z&toDateTime=1967-01-29T22:12:25.112Z&isFailed=true","host":["/"],"path":["v6","webhooks",":subscriptionId","logs"],"query":[{"description":"Search by WebhookSenderLog create date - from. Format: dd/mm/yyyy in UTC. Optional.","key":"fromDateTime","value":"1967-01-29T22:12:25.112Z"},{"description":"Search by WebhookSenderLog create date - to. Format: dd/mm/yyyy in UTC. Optional.","key":"toDateTime","value":"1967-01-29T22:12:25.112Z"},{"description":"The filter parameter for the success status of records: true for failed, false for successful, null for all. Optional.","key":"isFailed","value":"true"}],"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":"ce869a8b-e769-41dd-a668-1c6e214a63cc","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=1967-01-29T22:12:25.112Z&toDateTime=1967-01-29T22:12:25.112Z&isFailed=true","host":["/"],"path":["v6","webhooks",":subscriptionId","logs"],"query":[{"description":"Search by WebhookSenderLog create date - from. Format: dd/mm/yyyy in UTC. Optional.","key":"fromDateTime","value":"1967-01-29T22:12:25.112Z"},{"description":"Search by WebhookSenderLog create date - to. Format: dd/mm/yyyy in UTC. Optional.","key":"toDateTime","value":"1967-01-29T22:12:25.112Z"},{"description":"The filter parameter for the success status of records: true for failed, false for successful, null for all. Optional.","key":"isFailed","value":"true"}],"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":"0fe49986-c32f-418c-96a7-d2bf3e3a901e","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=1967-01-29T22:12:25.112Z&toDateTime=1967-01-29T22:12:25.112Z&isFailed=true","host":["/"],"path":["v6","webhooks",":subscriptionId","logs"],"query":[{"description":"Search by WebhookSenderLog create date - from. Format: dd/mm/yyyy in UTC. Optional.","key":"fromDateTime","value":"1967-01-29T22:12:25.112Z"},{"description":"Search by WebhookSenderLog create date - to. Format: dd/mm/yyyy in UTC. Optional.","key":"toDateTime","value":"1967-01-29T22:12:25.112Z"},{"description":"The filter parameter for the success status of records: true for failed, false for successful, null for all. Optional.","key":"isFailed","value":"true"}],"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":""}],"_postman_id":"886b319b-6de8-4a3e-9347-96e1fda617cd"},{"name":"/v6/webhooks/:subscriptionId","id":"f5c20ed4-c114-44f0-8409-81cbd579e2ea","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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","webhooks",":subscriptionId"],"host":["/"],"query":[],"variable":[{"id":"a3bc8101-539d-4270-814f-213fa8d3772f","type":"any","value":"string","key":"subscriptionId"}]}},"response":[{"id":"2d78ed81-7aa7-468d-9449-4379416ed55a","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":"2609710b-27ee-455d-bd71-eee55ada5505","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":"7f8a2d87-4005-49a9-95ff-6df67f45810d","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":"f18950b3-8909-41ef-8ac4-5b430eaa6a75","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":""}],"_postman_id":"f5c20ed4-c114-44f0-8409-81cbd579e2ea"},{"name":"/v6/webhooks/:subscriptionId","id":"66c00aa5-f794-4d37-8411-0800a8f08cff","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":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","type":"collection"}},"urlObject":{"path":["v6","webhooks",":subscriptionId"],"host":["/"],"query":[],"variable":[{"id":"61bb6e96-6779-46ae-8cdf-4d4f6e797bdf","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":"a6edfd09-0880-4b37-8b24-71d95cab80ee","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":"b5225fa2-b652-484e-8f3c-eed44a129c77","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":"d4fc7496-fad9-4640-89b1-56af59cf82ef","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":"18169746-3517-4b29-9604-0a8d73dbd61b","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":""}],"_postman_id":"66c00aa5-f794-4d37-8411-0800a8f08cff"}],"id":"e070d7a1-70fe-4953-beec-408d47bfd6f1","_postman_id":"e070d7a1-70fe-4953-beec-408d47bfd6f1","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"8270933e-3406-486b-b49e-37b75e02ec75","id":"8270933e-3406-486b-b49e-37b75e02ec75","name":"Consist.DoxiAPI v6.2","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":"08d08c8c-584c-4bfe-8b2a-34ca6882ca07","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":"d31d1db3-2a3d-4839-84f1-1ce539f8e55f","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":"fcc547d6-95b9-4f74-a3c0-e99b86e3c3ae","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":"08d08c8c-584c-4bfe-8b2a-34ca6882ca07"},{"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":"5ccbb654-4e73-4035-af4f-a026bbdd8d11","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":"3da2c4d5-7990-4959-80e9-cab303a83d3a","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":"24157445-5cfa-4269-a9cd-c5f6ea7de58d","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":"5ccbb654-4e73-4035-af4f-a026bbdd8d11"}],"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]}},"event":[{"listen":"prerequest","script":{"id":"5a223b67-b346-4ced-8dfd-99abf68dd830","type":"text/javascript","packages":{},"requests":{},"exec":[""]}},{"listen":"test","script":{"id":"5303fcbc-569e-4967-aac5-c73c2552ab91","type":"text/javascript","packages":{},"requests":{},"exec":[""]}}],"variable":[{"key":"baseUrl","value":"/"}]}