{"info":{"_postman_id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","description":"<html><head></head><body><h1 id=\"getting-started\">Getting Started</h1>\n<p>Welcome to the <strong>Doxi Sign API</strong>!</p>\n<p>This guide explains how to authenticate and use key endpoints like creating flows and using templates.<br>Swagger: <a href=\"https://doxi-sign.com/api/swagger\">https://doxi-sign.com/api/swagger</a></p>\n<p>OpenAPI: <a href=\"https://doxi-sign.com/api/swagger/v6/swagger.json\">https://doxi-sign.com/api/swagger/v6/swagger.json</a></p>\n<hr>\n<h2 id=\"get-access-token-login\">Get Access Token (Login)</h2>\n<p>All API requests require a valid access token.</p>\n<h3 id=\"token-endpoint-format\">Token Endpoint Format</h3>\n<p>POST <a href=\"https://login.doxi-sign.com/realms/%7Btenant%7D/protocol/openid-connect/token\">https://login.doxi-sign.com/auth/realms/{tenant}/protocol/openid-connect/token</a></p>\n<blockquote>\n<p>Replace <code>{tenant}</code> with your actual company name.<br>For example, if your Doxi URL is <code>https://doxi-sign.com/mycompany</code>, then:<br>POST <a href=\"https://login.doxi-sign.com/realms/mycompany/protocol/openid-connect/token\">https://login.doxi-sign.com/auth/realms/mycompany/protocol/openid-connect/token</a> </p>\n</blockquote>\n<h3 id=\"headers\">Headers</h3>\n<h3 id=\"body-parameters\">Body Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>grant_type</td>\n<td>password</td>\n</tr>\n<tr>\n<td>client_id</td>\n<td>doxi</td>\n</tr>\n<tr>\n<td>username</td>\n<td><a href=\"https://mailto:your@email.com\">your@email.com</a></td>\n</tr>\n<tr>\n<td>password</td>\n<td>your_password</td>\n</tr>\n<tr>\n<td>scope</td>\n<td>openid</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p>Only <code>username</code>, <code>password</code>, and <code>{tenant}</code> need to be changed.<br><code>client_id</code> is always <code>doxi</code>. </p>\n</blockquote>\n<h3 id=\"sample-response\">Sample Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"access_token\": \"eyJhbGciOiJSUzI1NiIsInR5cCI6Ikp...\",\n  \"expires_in\": 300,\n  \"refresh_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6Ikp...\",\n  \"token_type\": \"Bearer\"\n}\n\n</code></pre>\n<h2 id=\"required-headers-for-all-api-calls\">Required Headers for All API Calls</h2>\n<p>Every request to the Doxi API must include the following headers:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td><code>Bearer {access_token}</code> – the token obtained from the login step</td>\n</tr>\n<tr>\n<td>X-Tenant</td>\n<td>Your tenant name (e.g., <code>mycompany</code>)</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example\">Example:</h3>\n<p>Authorization: {{vault:bearer_token}}<br>X-Tenant: mycompany</p>\n<blockquote>\n<p>Your tenant name appears in your Doxi URL:<br>If your portal is <code>https://doxi-sign.com/mycompany</code>, your <code>X-Tenant</code> is <code>mycompany</code>. </p>\n</blockquote>\n<h2 id=\"refresh-token\">Refresh Token</h2>\n<p>When your access token expires, you can use the <code>refresh_token</code> to obtain a new access token without logging in again.</p>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p>POST <a href=\"https://login.doxi-sign.com/realms/%7Btenant%7D/protocol/openid-connect/token\">https://login.doxi-sign.com/realms/{tenant}/protocol/openid-connect/token</a></p>\n<blockquote>\n<p>Replace <code>{tenant}</code> with your actual tenant name (e.g., <code>mycompany</code>). </p>\n</blockquote>\n<h3 id=\"headers-1\">Headers</h3>\n<h3 id=\"body-parameters-1\">Body Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>grant_type</td>\n<td>refresh_token</td>\n</tr>\n<tr>\n<td>client_id</td>\n<td>doxi</td>\n</tr>\n<tr>\n<td>refresh_token</td>\n<td>your_refresh_token</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"sample-request\">Sample Request</h3>\n<p>POST <a href=\"https://login.doxi-sign.com/realms/mycompany/protocol/openid-connect/token\">https://login.doxi-sign.com/realms/mycompany/protocol/openid-connect/token</a><br>Content-Type: application/x-www-form-urlencoded</p>\n<p>grant_type=refresh_token&amp;<br>client_id=doxi&amp;<br>refresh_token=eyJhbGciOiJIUzI1NiIsInR5cCI6Ikp...</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"access_token\": \"new-access-token\",\n  \"refresh_token\": \"new-refresh-token\",\n  \"expires_in\": 300,\n  \"token_type\": \"Bearer\"\n}\n\n</code></pre>\n<p>Make sure to update the Authorization header in future API calls with the new access_token</p>\n<h2 id=\"create-a-new-flow\">Create a New Flow</h2>\n<p>This method creates a signature flow in the Doxi system by uploading a PDF document and defining the process using a JSON payload.</p>\n<hr>\n<h3 id=\"endpoint-1\">Endpoint</h3>\n<p>POST <a href=\"https://doxi-sign.com/api/ex/flow\">https://doxi-sign.com/api/v6/flow</a></p>\n<hr>\n<h3 id=\"required-headers\">Required Headers</h3>\n<p>X-Tenant: mycompany<br>Content-Type:</p>\n<hr>\n<h3 id=\"body-parameters-multipartform-data\">Body Parameters (multipart/form-data)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>File</code></td>\n<td>File (PDF)</td>\n<td>The PDF document to be signed, uploaded as binary stream</td>\n</tr>\n<tr>\n<td><code>CreateFlowJsonRequest</code></td>\n<td>String (JSON)</td>\n<td>The full flow configuration in JSON format</td>\n</tr>\n</tbody>\n</table>\n</div><hr>\n<h3 id=\"example-request\">Example Request</h3>\n<p><strong>Form Data Fields:</strong></p>\n<ul>\n<li><p><code>File</code>: Upload the actual PDF file (<code>application/pdf</code>)</p>\n</li>\n<li><p><code>CreateFlowJsonRequest</code>: Paste this JSON string:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"DocumentFileName\": \"API Example.pdf\",\n  \"SenderKey\": {\n    \"Key\": \"someUser@SomeDomain.com\",\n    \"Type\": 1\n  },\n  \"Description\": \"API Example test\",\n  \"FlowElements\": [\n    {\n      \"SignerKey\": {\n        \"Key\": \"someUser@SomeDomain.com\",\n        \"Type\": 1\n      },\n      \"ElementType\": 0,\n      \"ElementSubType\": 0,\n      \"PageNumber\": 1,\n      \"Position\": {\n            \"Top\": 440.2,\n            \"Left\": 62.0,\n            \"Width\": 78.8,\n            \"Height\": 37.5\n        }\n    }\n  ],\n  \"Recipients\": [\n    {\n      \"UserKey\": {\n        \"Key\": \"david@doxi-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":"8758f53b-2d08-4568-852b-c8477400b87a","publishedId":"2sBXwqqqD1","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2026-06-09T18:24:11.000Z"},"item":[{"name":"Kits","item":[{"name":"/v6/kits/constant","id":"19868fdc-4681-475e-bc9b-51536d4c103a","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","kits","constant"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"9da33bf6-bc55-4523-a047-f46b353e5f7c","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":"132bd104-9f8f-45b5-9732-0f4507b5472d","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":"b0905b12-0941-4195-ae2d-f7e7fb3f7941","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":"a6b66be7-ce3d-410e-ba76-c7e03ff9d8b4","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":"19868fdc-4681-475e-bc9b-51536d4c103a"},{"name":"/v6/kits/constant","id":"aafa11cf-4f65-44cd-9538-c569c4a4f9c5","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","kits","constant"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"bfe6f555-5f0c-4d4a-8295-b77f324acadd","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":"573d6106-5c50-4967-9ca3-be8b32a288d0","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":"47c7241e-172a-43f5-89f4-dd523e47025a","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":"8c35fefe-f1f6-4877-b05f-71b1004686e7","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":"aafa11cf-4f65-44cd-9538-c569c4a4f9c5"},{"name":"/v6/kits/constant/:kitId","id":"2b14ac64-58e0-47c9-b3f2-eeb2716050c3","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","kits","constant",":kitId"],"host":["/"],"query":[],"variable":[{"type":"any","value":"string","key":"kitId"}]}},"response":[{"id":"dba24b98-c451-44eb-8510-7381213b5255","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":"15bd3917-34b3-4764-8eec-a3f2a513b6e6","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":"82f651be-3f2d-4214-9694-c8c0f074fe0e","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":"699a59c2-42f9-48c2-b168-059a2d40dc63","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":"2b14ac64-58e0-47c9-b3f2-eeb2716050c3"},{"name":"/v6/kits/constant/:kitId","id":"63f0c214-0eaf-4146-956b-1aed459442f3","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","kits","constant",":kitId"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>The unique identifier (GUID) of the constant kit</p>\n","type":"text/plain"},"type":"any","value":"string","key":"kitId"}]}},"response":[{"id":"dbd01f13-86f9-468f-86f7-de59e3cd8ba1","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":"97b7e060-7529-4d8e-b5b3-ce844ed29cdf","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":"b7a68cd0-22b0-4ef6-a9ef-c281dfd242cd","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":"f26c8d3b-e1e5-4693-bdcf-98fd1aeab168","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":"63f0c214-0eaf-4146-956b-1aed459442f3"},{"name":"/v6/kits/constant/:kitId","id":"2beb27ec-4f75-441d-aa52-81fd410f56af","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","kits","constant",":kitId"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>The unique identifier (GUID) of the constant kit to delete</p>\n","type":"text/plain"},"type":"any","value":"string","key":"kitId"}]}},"response":[{"id":"80b3961a-57bd-4e5a-aedf-aa84afbb1ee6","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":"721b0e2d-c150-47ba-a8c2-7b9fc40147f4","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":"997de882-28be-4abe-ad3e-796e5b805a31","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":"4e67d067-6ce7-476d-83a2-baee58d7483e","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":"2beb27ec-4f75-441d-aa52-81fd410f56af"},{"name":"/v6/kits/constant/:kitId/send","id":"b117146a-0351-4d8e-abf9-83771bd6c6ba","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","kits","constant",":kitId","send"],"host":["/"],"query":[],"variable":[{"type":"any","value":"string","key":"kitId"}]}},"response":[{"id":"fb697841-94d5-414c-9318-a3a33d4617c1","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":"05e7df8c-f9e8-4545-827b-a10db2b01970","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":"a26b1ec7-631b-4feb-8820-ab223a5ae82f","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":"fd0341c9-a533-438f-99c0-89bb5afe6c1f","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":"b117146a-0351-4d8e-abf9-83771bd6c6ba"},{"name":"/v6/kits/single","id":"f5b5a35a-d29c-46cb-9cff-70c7276dd472","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","kits","single"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"5ab568df-5926-4219-9787-ada4a3b20cdd","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":"10f56b5e-a029-4ac9-bf68-f9db83cff60e","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":"876710db-fad1-47c5-ae49-f349e6b2bfa7","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":"3c217904-4fc8-4be1-b0d7-88f07df9d534","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":"f5b5a35a-d29c-46cb-9cff-70c7276dd472"},{"name":"/v6/kits/single","id":"26a26493-9d8f-4598-a194-605c4c4b37d9","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","kits","single"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"9442d7b2-4ffa-44ae-afac-2a667cade33f","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":"d04678b7-e9e6-4e73-ad32-90d4538b3170","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":"c84538bd-5b56-4fee-aba2-76121a538306","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":"26a26493-9d8f-4598-a194-605c4c4b37d9"},{"name":"/v6/kits/single/:kitId","id":"cde12cb2-e53f-4561-862e-4110cdb54e55","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","kits","single",":kitId"],"host":["/"],"query":[],"variable":[{"type":"any","value":"string","key":"kitId"}]}},"response":[{"id":"ab61ab65-4788-41e9-8549-30888be16d7e","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":"519d24ec-f368-4f18-acae-9a88de142b42","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":"02cd0ab4-0bc8-45a8-a366-a240ee26ed48","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":"1d43e369-1a1d-46fd-9979-01b7d2a48d7d","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":"cde12cb2-e53f-4561-862e-4110cdb54e55"},{"name":"/v6/kits/single/:kitId","id":"b37a5fbe-616c-4b9f-9309-3abc8571c575","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","kits","single",":kitId"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>The unique identifier (GUID) of the kit</p>\n","type":"text/plain"},"type":"any","value":"string","key":"kitId"}]}},"response":[{"id":"cb18bd63-cc40-4d65-a5c4-5fc7e1b85f66","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":"90229b38-5781-451d-9e39-52d7bbceb713","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":"f6f38fed-a196-4584-9d38-563c5c9de332","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":"7a5afdb2-b692-4f02-873e-422d68375ac2","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":"b37a5fbe-616c-4b9f-9309-3abc8571c575"},{"name":"/v6/kits/single/:kitId","id":"3ccc6466-6761-4fea-a226-cd472d45b764","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","kits","single",":kitId"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>The unique identifier (GUID) of the kit to delete</p>\n","type":"text/plain"},"type":"any","value":"string","key":"kitId"}]}},"response":[{"id":"429d7767-27c4-4f94-b21e-4c75ab794fad","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":"ac9068c9-686b-4d4f-af0c-b987c6e54b10","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":"ff8c19f3-e2c4-4ba5-86cf-6c3c533f87e2","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":"610a7a8c-17ca-4cb6-8b75-3ff805f2f4da","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":"3ccc6466-6761-4fea-a226-cd472d45b764"},{"name":"/v6/kits/single/search","id":"5396fd46-311d-4a88-b91d-6f92c5821d76","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","kits","single","search"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"45098008-a2f2-48b7-adc9-96fb642dff47","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":"1250904a-e3d3-415f-a97f-a24e19ef240d","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":"9dd05998-ae62-456c-be0a-fcb0c74d5e73","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":"5396fd46-311d-4a88-b91d-6f92c5821d76"},{"name":"/v6/kits/single/:kitId/send","id":"43a31364-dfb8-4937-a780-dbf18e9844e7","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","kits","single",":kitId","send"],"host":["/"],"query":[],"variable":[{"type":"any","value":"string","key":"kitId"}]}},"response":[{"id":"715309e8-d56b-4a27-904d-7d632f8aa2ca","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":"9322f09a-696c-43e4-849b-c98451a71380","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":"391c66ba-bb83-40c3-ba15-bb3796fa7ded","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":"07b25b1c-1a2c-4db9-8d97-cdf624cafa93","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":"43a31364-dfb8-4937-a780-dbf18e9844e7"},{"name":"/v6/kits/single/:kitId/stop","id":"293cdde8-9e3e-49a5-a6a2-0240df3dbe7c","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=true","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","kits","single",":kitId","stop"],"host":["/"],"query":[{"key":"isSendEmailAfterStop","value":"true"}],"variable":[{"type":"any","value":"string","key":"kitId"}]}},"response":[{"id":"11c5b8f8-2c0d-4b70-84dd-b2e7029be1bd","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=true","host":["/"],"path":["v6","kits","single",":kitId","stop"],"query":[{"key":"isSendEmailAfterStop","value":"true"}],"variable":[{"key":"kitId","value":"string"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"a1dfff3e-b009-4ef6-9f6f-0bf268f7999e","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=true","host":["/"],"path":["v6","kits","single",":kitId","stop"],"query":[{"key":"isSendEmailAfterStop","value":"true"}],"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":"e2362403-8bb6-4357-8adb-80e3ac2c995e","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=true","host":["/"],"path":["v6","kits","single",":kitId","stop"],"query":[{"key":"isSendEmailAfterStop","value":"true"}],"variable":[{"key":"kitId","value":"string"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"95eb6434-8d29-42ee-9504-8a18c3c0e34e","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=true","host":["/"],"path":["v6","kits","single",":kitId","stop"],"query":[{"key":"isSendEmailAfterStop","value":"true"}],"variable":[{"key":"kitId","value":"string"}]}},"status":"Payment Required","code":402,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"293cdde8-9e3e-49a5-a6a2-0240df3dbe7c"},{"name":"/v6/kits/single/:kitId/link","id":"70bee97a-0610-41ee-a2fc-f881072f80e6","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","kits","single",":kitId","link"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>The unique identifier (GUID) of the kit</p>\n","type":"text/plain"},"type":"any","value":"string","key":"kitId"}]}},"response":[{"id":"b00f9d12-0d01-4679-819f-95e617cb20dc","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":"2952cf4f-687f-4794-91ea-33d463648cf7","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":"a43844b8-6d84-4e54-8442-e3f5e0665bce","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":"7ae2788d-e567-4884-935f-af17c1964293","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":"70bee97a-0610-41ee-a2fc-f881072f80e6"},{"name":"/v6/kits/single/:kitId/Reminder","id":"e7c01c79-0958-4041-9121-3374a349b8e9","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","kits","single",":kitId","Reminder"],"host":["/"],"query":[],"variable":[{"type":"any","value":"string","key":"kitId"}]}},"response":[{"id":"a830f7b4-144e-4bdf-bdec-cbfe696fc9ce","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":"b42e687e-8294-4066-945b-db1d6ff80a25","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":"a3324703-30d3-47b5-9c59-6814654827e3","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":"9e1dff70-c320-4ca3-97a2-35d3a076a8a9","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":"e7c01c79-0958-4041-9121-3374a349b8e9"},{"name":"/v6/kits/single/:kitId/attachments","id":"9a1d6090-3625-481c-86b3-6fba0ea54157","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","kits","single",":kitId","attachments"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>The unique identifier (GUID) of the kit</p>\n","type":"text/plain"},"type":"any","value":"string","key":"kitId"}]}},"response":[{"id":"cd660787-2b4a-4cc2-8495-68c1511061f6","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":"9bae108e-7c20-469b-92cf-6ee36e487354","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":"5bd3ffe3-57df-4f6d-a8bc-5212d0aaf61a","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":"33120e7b-1b22-4f19-a029-1183369947c5","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":"9a1d6090-3625-481c-86b3-6fba0ea54157"},{"name":"/v6/kits/single/:kitId/documents","id":"051bc6fa-8c37-4adf-abfe-869e379eec71","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","kits","single",":kitId","documents"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>The unique identifier (GUID) of the kit</p>\n","type":"text/plain"},"type":"any","value":"string","key":"kitId"}]}},"response":[{"id":"a0e49160-47f2-4bc1-b305-cffed82e1ad0","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":"cfc17773-ddcb-475b-8c43-85366ce1cb93","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":"3972b0d2-d9a0-44ba-afe8-0be039ab7165","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":"7b9142ce-1e6d-4248-9efb-a82c9c931f2d","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":"051bc6fa-8c37-4adf-abfe-869e379eec71"}],"id":"79187974-5382-4d56-98e3-84af74916452","_postman_id":"79187974-5382-4d56-98e3-84af74916452","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}}},{"name":"Document","item":[{"name":"/v6/documents/analyze","id":"3c25a100-e058-49b2-917f-2e5e9db17ff3","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","documents","analyze"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"0218c65b-862e-46dd-8c3a-891eef570392","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":"6955657c-8226-4565-884f-97eee43dd402","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":"4cc50e6c-dd75-4382-8b3b-31866a930445","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":"3c25a100-e058-49b2-917f-2e5e9db17ff3"},{"name":"/v6/documents/analyze-base64","id":"f38bad80-b05c-4a45-8da2-1fe8ee6cb35e","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","documents","analyze-base64"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"8ac9f4cf-62b7-4029-88bf-83377cd03572","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":"a4f4839d-c920-4d81-8c85-97dc0a0926c2","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":"e8b03e8a-a644-4b11-a91f-7df53f9ca8dc","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":"f38bad80-b05c-4a45-8da2-1fe8ee6cb35e"},{"name":"/v6/documents/search","id":"4d9d4a9b-837a-46b8-a70f-a7413325859f","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","documents","search"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"02978f8b-7c04-4de2-b3a9-349c30da41e2","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":"cebb5b4e-9bef-424b-9d0e-a6cbd7c1517e","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":"132d64a1-265a-49f3-a785-adca34a80400","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":"4d9d4a9b-837a-46b8-a70f-a7413325859f"},{"name":"/v6/documents/merge","id":"f6ca5ee0-0707-488e-befd-03bf0ea36d37","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","documents","merge"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"d52d4f4f-66ca-46e3-b8c5-38c2874bb128","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":"e3a6f28c-075d-485a-8e61-7e9f37263395","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":"949a6846-be24-42ed-ba95-35feee3d1881","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":"f6ca5ee0-0707-488e-befd-03bf0ea36d37"}],"id":"7a062750-4744-44ef-96fc-f97e2ce96fba","_postman_id":"7a062750-4744-44ef-96fc-f97e2ce96fba","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}}},{"name":"ExternalDoxiAPI","item":[{"name":"/ExternalDoxiAPI/AddNewSignFlow","id":"143e48ff-99e8-4b94-a20c-ef369e9f1f07","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  \"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":"//ExternalDoxiAPI/AddNewSignFlow","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["ExternalDoxiAPI","AddNewSignFlow"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"5a057456-9907-4272-ad3d-ae8b13b96599","name":"OK","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  \"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":"//ExternalDoxiAPI/AddNewSignFlow"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"string"}],"_postman_id":"143e48ff-99e8-4b94-a20c-ef369e9f1f07"},{"name":"/ExternalDoxiAPI/AddNewSignatursFlow","id":"48a1d915-e9ce-4162-a20a-8e5a15351ff2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"description\": \"Btq\",\n  \"flowElements\": [\n    {\n      \"elementId\": \"string\",\n      \"signerIndex\": 3946,\n      \"groupId\": \"string\",\n      \"signer\": {\n        \"id\": \"string\",\n        \"type\": null\n      },\n      \"elementType\": null,\n      \"elementSubType\": null,\n      \"pageNumber\": 4321,\n      \"topRelative\": 5103.54823938567,\n      \"leftRelative\": 7445.068543516282,\n      \"signWidth\": 6012.604648435172,\n      \"signHeight\": 8389.961180487451,\n      \"editorText\": \"string\",\n      \"textSize\": 3822,\n      \"fontName\": \"string\",\n      \"isExternal\": false,\n      \"elementLabel\": \"string\",\n      \"elementHelp\": \"string\",\n      \"valueName\": \"string\",\n      \"isDisableAttachment\": false,\n      \"horizontalAlignment\": 1,\n      \"isRequired\": false,\n      \"validations\": [\n        {\n          \"regex\": \"string\",\n          \"errorCode\": 2401\n        },\n        {\n          \"regex\": \"string\",\n          \"errorCode\": 202\n        }\n      ],\n      \"dateTimeValidation\": {\n        \"dateTimeFormat\": \"string\",\n        \"isCurrentDateTime\": false,\n        \"minimumDate\": \"1997-08-31T02:23:52.027Z\",\n        \"maximumDate\": \"2019-07-07T12:45:23.540Z\",\n        \"dateFormatLanguage\": \"string\"\n      },\n      \"dropDownList\": [\n        {\n          \"values\": [\n            {\n              \"key\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"key\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"values\": [\n            {\n              \"key\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"key\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"additionalInfo\": [\n        {\n          \"key\": \"string\",\n          \"value\": \"string\"\n        },\n        {\n          \"key\": \"string\",\n          \"value\": \"string\"\n        }\n      ],\n      \"displayValueInFlowDecription\": false,\n      \"zIndex\": 8396,\n      \"userEmail\": \"string\"\n    },\n    {\n      \"elementId\": \"string\",\n      \"signerIndex\": 2023,\n      \"groupId\": \"string\",\n      \"signer\": {\n        \"id\": \"string\",\n        \"type\": null\n      },\n      \"elementType\": null,\n      \"elementSubType\": null,\n      \"pageNumber\": 3802,\n      \"topRelative\": 790.3521954348869,\n      \"leftRelative\": 9527.372915197806,\n      \"signWidth\": 6795.72444250735,\n      \"signHeight\": 9035.440415919975,\n      \"editorText\": \"string\",\n      \"textSize\": 9501,\n      \"fontName\": \"string\",\n      \"isExternal\": false,\n      \"elementLabel\": \"string\",\n      \"elementHelp\": \"string\",\n      \"valueName\": \"string\",\n      \"isDisableAttachment\": true,\n      \"horizontalAlignment\": 0,\n      \"isRequired\": true,\n      \"validations\": [\n        {\n          \"regex\": \"string\",\n          \"errorCode\": 8194\n        },\n        {\n          \"regex\": \"string\",\n          \"errorCode\": 3226\n        }\n      ],\n      \"dateTimeValidation\": {\n        \"dateTimeFormat\": \"string\",\n        \"isCurrentDateTime\": true,\n        \"minimumDate\": \"1949-03-30T02:25:38.212Z\",\n        \"maximumDate\": \"2008-11-30T07:03:36.416Z\",\n        \"dateFormatLanguage\": \"string\"\n      },\n      \"dropDownList\": [\n        {\n          \"values\": [\n            {\n              \"key\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"key\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"values\": [\n            {\n              \"key\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"key\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"additionalInfo\": [\n        {\n          \"key\": \"string\",\n          \"value\": \"string\"\n        },\n        {\n          \"key\": \"string\",\n          \"value\": \"string\"\n        }\n      ],\n      \"displayValueInFlowDecription\": false,\n      \"zIndex\": 3056,\n      \"userEmail\": \"string\"\n    }\n  ],\n  \"signFlowId\": \"string\",\n  \"preliminaryText\": \"stringstringstringstring\",\n  \"sendMethodType\": 0,\n  \"sendSmsUsers\": [\n    \"string\",\n    \"string\"\n  ],\n  \"isSendApprovalMailToAllSigners\": false,\n  \"isAutomaticRemainder\": false,\n  \"dayesForAutomaticRemainder\": 5772,\n  \"signFlowDescriptionMessage\": \"string\",\n  \"pinCode\": \"string\",\n  \"recipients\": [\n    \"string\",\n    \"string\"\n  ],\n  \"sourceTemplateId\": \"string\",\n  \"attachedFiles\": [\n    \"string\",\n    \"string\"\n  ],\n  \"packageId\": \"string\",\n  \"packageName\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//ExternalDoxiAPI/AddNewSignatursFlow","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["ExternalDoxiAPI","AddNewSignatursFlow"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"db21808a-a84d-4ef4-89aa-8bed1e0d2a82","name":"OK","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\": \"Btq\",\n  \"flowElements\": [\n    {\n      \"elementId\": \"string\",\n      \"signerIndex\": 3946,\n      \"groupId\": \"string\",\n      \"signer\": {\n        \"id\": \"string\",\n        \"type\": null\n      },\n      \"elementType\": null,\n      \"elementSubType\": null,\n      \"pageNumber\": 4321,\n      \"topRelative\": 5103.54823938567,\n      \"leftRelative\": 7445.068543516282,\n      \"signWidth\": 6012.604648435172,\n      \"signHeight\": 8389.961180487451,\n      \"editorText\": \"string\",\n      \"textSize\": 3822,\n      \"fontName\": \"string\",\n      \"isExternal\": false,\n      \"elementLabel\": \"string\",\n      \"elementHelp\": \"string\",\n      \"valueName\": \"string\",\n      \"isDisableAttachment\": false,\n      \"horizontalAlignment\": 1,\n      \"isRequired\": false,\n      \"validations\": [\n        {\n          \"regex\": \"string\",\n          \"errorCode\": 2401\n        },\n        {\n          \"regex\": \"string\",\n          \"errorCode\": 202\n        }\n      ],\n      \"dateTimeValidation\": {\n        \"dateTimeFormat\": \"string\",\n        \"isCurrentDateTime\": false,\n        \"minimumDate\": \"1997-08-31T02:23:52.027Z\",\n        \"maximumDate\": \"2019-07-07T12:45:23.540Z\",\n        \"dateFormatLanguage\": \"string\"\n      },\n      \"dropDownList\": [\n        {\n          \"values\": [\n            {\n              \"key\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"key\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"values\": [\n            {\n              \"key\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"key\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"additionalInfo\": [\n        {\n          \"key\": \"string\",\n          \"value\": \"string\"\n        },\n        {\n          \"key\": \"string\",\n          \"value\": \"string\"\n        }\n      ],\n      \"displayValueInFlowDecription\": false,\n      \"zIndex\": 8396,\n      \"userEmail\": \"string\"\n    },\n    {\n      \"elementId\": \"string\",\n      \"signerIndex\": 2023,\n      \"groupId\": \"string\",\n      \"signer\": {\n        \"id\": \"string\",\n        \"type\": null\n      },\n      \"elementType\": null,\n      \"elementSubType\": null,\n      \"pageNumber\": 3802,\n      \"topRelative\": 790.3521954348869,\n      \"leftRelative\": 9527.372915197806,\n      \"signWidth\": 6795.72444250735,\n      \"signHeight\": 9035.440415919975,\n      \"editorText\": \"string\",\n      \"textSize\": 9501,\n      \"fontName\": \"string\",\n      \"isExternal\": false,\n      \"elementLabel\": \"string\",\n      \"elementHelp\": \"string\",\n      \"valueName\": \"string\",\n      \"isDisableAttachment\": true,\n      \"horizontalAlignment\": 0,\n      \"isRequired\": true,\n      \"validations\": [\n        {\n          \"regex\": \"string\",\n          \"errorCode\": 8194\n        },\n        {\n          \"regex\": \"string\",\n          \"errorCode\": 3226\n        }\n      ],\n      \"dateTimeValidation\": {\n        \"dateTimeFormat\": \"string\",\n        \"isCurrentDateTime\": true,\n        \"minimumDate\": \"1949-03-30T02:25:38.212Z\",\n        \"maximumDate\": \"2008-11-30T07:03:36.416Z\",\n        \"dateFormatLanguage\": \"string\"\n      },\n      \"dropDownList\": [\n        {\n          \"values\": [\n            {\n              \"key\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"key\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"values\": [\n            {\n              \"key\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"key\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"additionalInfo\": [\n        {\n          \"key\": \"string\",\n          \"value\": \"string\"\n        },\n        {\n          \"key\": \"string\",\n          \"value\": \"string\"\n        }\n      ],\n      \"displayValueInFlowDecription\": false,\n      \"zIndex\": 3056,\n      \"userEmail\": \"string\"\n    }\n  ],\n  \"signFlowId\": \"string\",\n  \"preliminaryText\": \"stringstringstringstring\",\n  \"sendMethodType\": 0,\n  \"sendSmsUsers\": [\n    \"string\",\n    \"string\"\n  ],\n  \"isSendApprovalMailToAllSigners\": false,\n  \"isAutomaticRemainder\": false,\n  \"dayesForAutomaticRemainder\": 5772,\n  \"signFlowDescriptionMessage\": \"string\",\n  \"pinCode\": \"string\",\n  \"recipients\": [\n    \"string\",\n    \"string\"\n  ],\n  \"sourceTemplateId\": \"string\",\n  \"attachedFiles\": [\n    \"string\",\n    \"string\"\n  ],\n  \"packageId\": \"string\",\n  \"packageName\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//ExternalDoxiAPI/AddNewSignatursFlow"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"48a1d915-e9ce-4162-a20a-8e5a15351ff2"},{"name":"/ExternalDoxiAPI/AddSignFlow","id":"0a62fe6c-3eee-455f-a578-d5fcceff149d","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  \"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":"//ExternalDoxiAPI/AddSignFlow","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["ExternalDoxiAPI","AddSignFlow"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"3d613ac6-06d8-4fcd-9b22-f199778ae649","name":"OK","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  \"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":"//ExternalDoxiAPI/AddSignFlow"},"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":"0a62fe6c-3eee-455f-a578-d5fcceff149d"},{"name":"/ExternalDoxiAPI/GetFlowFromTemplateInfo","id":"e458232d-6754-4690-8460-55cd43d12b64","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"},{"key":"Accept","value":"application/json"}],"url":"//ExternalDoxiAPI/GetFlowFromTemplateInfo?templateId=string","description":"<p>Get a new flow information from a template by template id</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["ExternalDoxiAPI","GetFlowFromTemplateInfo"],"host":["/"],"query":[{"key":"templateId","value":"string"}],"variable":[]}},"response":[{"id":"04e8e524-f670-4e1f-9684-f56a8c10811f","name":"OK","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":"//ExternalDoxiAPI/GetFlowFromTemplateInfo?templateId=string","host":["/"],"path":["ExternalDoxiAPI","GetFlowFromTemplateInfo"],"query":[{"key":"templateId","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"description\": \"string\",\n  \"documentFileName\": \"string\",\n  \"flowElements\": [\n    {\n      \"elementType\": null,\n      \"pageNumber\": 5433,\n      \"position\": {\n        \"height\": 6270.4266687029385,\n        \"left\": 6578.371369118823,\n        \"top\": 378.8224618737224,\n        \"width\": 4024.4019667064467\n      },\n      \"elementId\": \"string\",\n      \"signerIndex\": 6221,\n      \"elementSubType\": null,\n      \"textValue\": \"string\",\n      \"textSize\": 7381,\n      \"textFont\": \"string\",\n      \"elementLabel\": \"string\",\n      \"elementHelp\": \"string\",\n      \"valueName\": \"string\",\n      \"horizontalAlignment\": 2,\n      \"isRequired\": true,\n      \"validations\": [\n        {\n          \"regex\": \"string\",\n          \"errorCode\": null\n        },\n        {\n          \"regex\": \"string\",\n          \"errorCode\": null\n        }\n      ],\n      \"dateTimeValidation\": {\n        \"dateTimeFormat\": \"string\",\n        \"dateFormatLanguage\": \"string\",\n        \"isCurrentDateTime\": false,\n        \"minimumDate\": \"2019-03-17T22:58:30.922Z\",\n        \"maximumDate\": \"1978-10-13T08:11:55.596Z\"\n      },\n      \"dropDownList\": [\n        {\n          \"values\": [\n            {\n              \"key\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"key\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"values\": [\n            {\n              \"key\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"key\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"additionalInfo\": [\n        {\n          \"key\": \"string\",\n          \"value\": \"string\"\n        },\n        {\n          \"key\": \"string\",\n          \"value\": \"string\"\n        }\n      ],\n      \"duplicateElementInfo\": {\n        \"isAllPagesFromCurrent\": false,\n        \"pageRange\": \"string\"\n      },\n      \"displayValueInFlowDecription\": true,\n      \"zIndex\": 3379,\n      \"signerKey\": {\n        \"key\": \"string\",\n        \"type\": null\n      }\n    },\n    {\n      \"elementType\": null,\n      \"pageNumber\": 2960,\n      \"position\": {\n        \"height\": 5365.1977499402,\n        \"left\": 4664.227033436073,\n        \"top\": 8495.990824207598,\n        \"width\": 1784.3140897836506\n      },\n      \"elementId\": \"string\",\n      \"signerIndex\": 4776,\n      \"elementSubType\": null,\n      \"textValue\": \"string\",\n      \"textSize\": 9183,\n      \"textFont\": \"string\",\n      \"elementLabel\": \"string\",\n      \"elementHelp\": \"string\",\n      \"valueName\": \"string\",\n      \"horizontalAlignment\": 2,\n      \"isRequired\": false,\n      \"validations\": [\n        {\n          \"regex\": \"string\",\n          \"errorCode\": null\n        },\n        {\n          \"regex\": \"string\",\n          \"errorCode\": null\n        }\n      ],\n      \"dateTimeValidation\": {\n        \"dateTimeFormat\": \"string\",\n        \"dateFormatLanguage\": \"string\",\n        \"isCurrentDateTime\": true,\n        \"minimumDate\": \"1963-05-29T05:25:42.098Z\",\n        \"maximumDate\": \"1966-10-19T22:53:50.110Z\"\n      },\n      \"dropDownList\": [\n        {\n          \"values\": [\n            {\n              \"key\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"key\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"values\": [\n            {\n              \"key\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"key\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"additionalInfo\": [\n        {\n          \"key\": \"string\",\n          \"value\": \"string\"\n        },\n        {\n          \"key\": \"string\",\n          \"value\": \"string\"\n        }\n      ],\n      \"duplicateElementInfo\": {\n        \"isAllPagesFromCurrent\": true,\n        \"pageRange\": \"string\"\n      },\n      \"displayValueInFlowDecription\": true,\n      \"zIndex\": 8363,\n      \"signerKey\": {\n        \"key\": \"string\",\n        \"type\": null\n      }\n    }\n  ],\n  \"senderKey\": {\n    \"key\": \"string\",\n    \"type\": null\n  },\n  \"users\": [\n    {\n      \"userKey\": {\n        \"key\": \"string\",\n        \"type\": null\n      },\n      \"isDisableAttachment\": true,\n      \"isSuspended\": false,\n      \"isNoDecline\": false,\n      \"notificationMailsToSend\": [\n        null,\n        null\n      ],\n      \"minimumSignatures\": 5806,\n      \"forceApprovalOnSignature\": true,\n      \"personalMessage\": \"=i\",\n      \"userPasswordDescription\": [\n        {\n          \"language\": \"string\",\n          \"value\": \"string\"\n        },\n        {\n          \"language\": \"string\",\n          \"value\": \"string\"\n        }\n      ],\n      \"email\": \"IdWiuGZJIgT@SOXhELsVjgTr.gnom\",\n      \"firstName\": \"string\",\n      \"lastName\": \"string\",\n      \"smsPhoneNumber\": \"string\",\n      \"userPassword\": \"XCVE_=2cuQb\",\n      \"company\": \"string\",\n      \"title\": \"string\",\n      \"signerRole\": 1\n    },\n    {\n      \"userKey\": {\n        \"key\": \"string\",\n        \"type\": null\n      },\n      \"isDisableAttachment\": true,\n      \"isSuspended\": true,\n      \"isNoDecline\": false,\n      \"notificationMailsToSend\": [\n        null,\n        null\n      ],\n      \"minimumSignatures\": 6667,\n      \"forceApprovalOnSignature\": true,\n      \"personalMessage\": \"0{Vs\\\"',60\",\n      \"userPasswordDescription\": [\n        {\n          \"language\": \"string\",\n          \"value\": \"string\"\n        },\n        {\n          \"language\": \"string\",\n          \"value\": \"string\"\n        }\n      ],\n      \"email\": \"ArQ@rSoPnPQKuvwGDbddDufjZ.uxtn\",\n      \"firstName\": \"\",\n      \"lastName\": \"string\",\n      \"smsPhoneNumber\": \"string\",\n      \"userPassword\": \"ULN%u\",\n      \"company\": \"string\",\n      \"title\": \"string\",\n      \"signerRole\": 0\n    }\n  ],\n  \"sendMethodType\": 0,\n  \"recipients\": [\n    {\n      \"userKey\": {\n        \"key\": \"string\",\n        \"type\": null\n      },\n      \"isDisableAttachment\": false,\n      \"isSuspended\": false,\n      \"isNoDecline\": false,\n      \"notificationMailsToSend\": [\n        null,\n        null\n      ],\n      \"minimumSignatures\": 6138,\n      \"forceApprovalOnSignature\": false,\n      \"personalMessage\": \"p\",\n      \"userPasswordDescription\": [\n        {\n          \"language\": \"string\",\n          \"value\": \"string\"\n        },\n        {\n          \"language\": \"string\",\n          \"value\": \"string\"\n        }\n      ],\n      \"email\": \"fgx@yequpWWfFIOdECkIipPXlHGrvYg.lqq\",\n      \"firstName\": \"\",\n      \"lastName\": \"string\",\n      \"smsPhoneNumber\": \"string\",\n      \"userPassword\": \"uA[.M\",\n      \"company\": \"string\",\n      \"title\": \"string\",\n      \"signerRole\": 0\n    },\n    {\n      \"userKey\": {\n        \"key\": \"string\",\n        \"type\": null\n      },\n      \"isDisableAttachment\": false,\n      \"isSuspended\": true,\n      \"isNoDecline\": false,\n      \"notificationMailsToSend\": [\n        null,\n        null\n      ],\n      \"minimumSignatures\": 4568,\n      \"forceApprovalOnSignature\": true,\n      \"personalMessage\": \"G`wj\\\\id)r\",\n      \"userPasswordDescription\": [\n        {\n          \"language\": \"string\",\n          \"value\": \"string\"\n        },\n        {\n          \"language\": \"string\",\n          \"value\": \"string\"\n        }\n      ],\n      \"email\": \"QSD@RpeznDhpNkeuBlGmTSCrI.io\",\n      \"firstName\": \"string\",\n      \"lastName\": \"string\",\n      \"smsPhoneNumber\": \"string\",\n      \"userPassword\": \"FugJH)]\\\"%~B\",\n      \"company\": \"string\",\n      \"title\": \"string\",\n      \"signerRole\": 0\n    }\n  ],\n  \"isSendApprovalMailToAllSigners\": true,\n  \"isAutomaticRemainder\": true,\n  \"dayesForAutomaticRemainder\": 2419,\n  \"signFlowDescriptionMessage\": \"string\",\n  \"customFields\": [\n    {\n      \"key\": \"string\",\n      \"value\": \"string\"\n    },\n    {\n      \"key\": \"string\",\n      \"value\": \"string\"\n    }\n  ],\n  \"packageId\": \"string\",\n  \"packageName\": \"string\",\n  \"disableSBS\": false,\n  \"preliminaryText\": \"string\",\n  \"flowTwoFactorEnabled\": true,\n  \"senderNotificationMailsToSend\": [\n    null,\n    null\n  ],\n  \"flowExpirationDate\": \"1962-10-26T21:53:08.453Z\",\n  \"kitId\": \"string\",\n  \"imagesList\": {\n    \"key_0\": \"string\",\n    \"key_1\": \"string\",\n    \"key_2\": \"string\"\n  },\n  \"base64DocumentFile\": \"string\",\n  \"templateId\": \"string\"\n}"}],"_postman_id":"e458232d-6754-4690-8460-55cd43d12b64"},{"name":"/ExternalDoxiAPI/DeleteTemplate","id":"d7095a27-3ceb-4bf2-8168-3e2676ddce04","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Tenant","value":"{{Tenant}}","description":"<p>Tenant Name</p>\n"}],"url":"//ExternalDoxiAPI/DeleteTemplate?userName=string&templateId=string","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["ExternalDoxiAPI","DeleteTemplate"],"host":["/"],"query":[{"key":"userName","value":"string"},{"key":"templateId","value":"string"}],"variable":[]}},"response":[{"id":"d7c680bc-5c58-4141-82dc-3b800fa50ca5","name":"OK","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":"//ExternalDoxiAPI/DeleteTemplate?userName=string&templateId=string","host":["/"],"path":["ExternalDoxiAPI","DeleteTemplate"],"query":[{"key":"userName","value":"string"},{"key":"templateId","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"d7095a27-3ceb-4bf2-8168-3e2676ddce04"}],"id":"7a04732d-6431-4608-963b-0297029dfff4","_postman_id":"7a04732d-6431-4608-963b-0297029dfff4","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}}},{"name":"Flow","item":[{"name":"/v2/flow/edit","id":"9781ba6e-d8d3-4150-b1b4-8f9e02084eb9","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v2","flow","edit"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"a48e9a05-6486-4357-99b0-4920ef87c11c","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":"9781ba6e-d8d3-4150-b1b4-8f9e02084eb9"},{"name":"/v5/flowbase64","id":"24f27572-03dc-46aa-a9e5-391fe0cc3adc","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</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</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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v5","flowbase64"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"149b33e2-d09c-4ae7-b160-21c3762c3f99","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":"24f27572-03dc-46aa-a9e5-391fe0cc3adc"},{"name":"/v6/flows/:signFlowId/attachments","id":"4787b6d8-9bc4-4ac7-92b8-d563d3469500","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","flows",":signFlowId","attachments"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>The unique identifier (GUID) of the flow</p>\n","type":"text/plain"},"type":"any","value":"string","key":"signFlowId"}]}},"response":[{"id":"5c9f0644-ded4-4cc7-bb09-5a244714fbb3","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":"372f7c07-a9d0-4201-b91f-1dc3166ad170","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":"26fb5509-9431-4b54-9aae-091b30a4d321","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":"c7ed9e28-db3e-408c-874e-95cd8705e7f8","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":"96347268-39b2-4d66-b59f-69192d883440","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":"4787b6d8-9bc4-4ac7-92b8-d563d3469500"},{"name":"/v6/flows/:signFlowId/attachments","id":"5ab2dd97-6dab-4506-81e3-72eaa4e62a4d","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","flows",":signFlowId","attachments"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>The unique identifier (GUID) of the flow</p>\n","type":"text/plain"},"type":"any","value":"string","key":"signFlowId"}]}},"response":[{"id":"0fc3d59d-650a-4160-9d05-6af56bc51f25","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":"bd42c886-65ff-43a1-b35b-4e258f32b4b9","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":"a7a4eeed-88d4-4ed9-be2d-9b76e3a0f001","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":"231010d7-88cb-4386-bfa9-bf54b97fe071","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":"5ab2dd97-6dab-4506-81e3-72eaa4e62a4d"},{"name":"/v6/flows/:signFlowId/attachments/base64","id":"d4fe39c3-81e2-46bc-8967-fbaf511c5dab","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","flows",":signFlowId","attachments","base64"],"host":["/"],"query":[],"variable":[{"type":"any","value":"string","key":"signFlowId"}]}},"response":[{"id":"881c6ca3-5a2c-4d3d-8473-c22f83f9e4d2","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":"518378ba-b519-4f40-8fb1-a5ccc8747e76","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":"87082433-cbe3-46ea-9791-562d3f915a4f","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":"5478d68a-aca2-4a10-9458-d9d412904731","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":"d4fe39c3-81e2-46bc-8967-fbaf511c5dab"},{"name":"/v6/flows/:signFlowId/attachment-field","id":"0f931644-c7cd-4f67-9b91-7c2c8c30f694","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","flows",":signFlowId","attachment-field"],"host":["/"],"query":[],"variable":[{"type":"any","value":"string","key":"signFlowId"}]}},"response":[{"id":"e0f51084-b6b6-4f6a-aed4-7d001969100b","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":"2992287c-63a0-466a-821c-2f908c86487f","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":"c6ff9de7-c54b-4dcf-bffd-72b9e7b7e2d3","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":"223d17e2-4545-47eb-a289-07034ce32e43","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":"542dec68-c3b0-4b74-a948-37cc8ba07103","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":"0f931644-c7cd-4f67-9b91-7c2c8c30f694"},{"name":"/v6/flows","id":"68d66ab8-5ca3-48d4-9926-5979cdc10b11","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","flows"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"205f32c9-680f-4741-b8b3-01a21530d224","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":"5497b5f7-6342-473a-94e4-30aa20c5bcb0","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":"68d66ab8-5ca3-48d4-9926-5979cdc10b11"},{"name":"/v6/flows","id":"685113c9-d560-4610-a28c-7fcf6b4a05b1","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","src":"/C:/Users/ronenr/Desktop/pdfs/empty-300pages.pdf"},{"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\": \"someuser@doxi-sign.com\",\n    \"Type\": 1\n  },\n  \"SenderUserName\": null,\n  \"Description\": \"API Example\",\n  \"FlowElements\": [\n    {\n      \"SignerKey\": {\n        \"Key\": \"someuser@doxi-sign.com\",\n        \"Type\": 1\n      },\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      \"TextSize\": 0,\n      \"IsRequired\": true,\n      \"DuplicateElementInfo\": {\n        \"IsAllPagesFromCurrent\": true,\n      },\n      \"DisplayValueInFlowDecription\": false,\n      \"IsDisableAttachment\": false,\n    },\n\t{\n      \"ElementType\": 3,\n      \"PageNumber\": 1,\n      \"Position\": { \"Top\": 80, \"Left\": 50, \"Width\": 120, \"Height\": 20 },\n      \"IsRequired\": false,\n      \"ZIndex\": 2,\n      \"DuplicateElementInfo\": {\n        \"IsAllPagesFromCurrent\": true,\n        \"PageRange\": \"\"\n      }\n    },\n    {\n      \"ElementType\": 4,\n      \"PageNumber\": 1,\n      \"Position\": { \"Top\": 120, \"Left\": 50, \"Width\": 150, \"Height\": 20 },\n      \"IsRequired\": false,\n      \"ZIndex\": 3,\n      \"DuplicateElementInfo\": {\n        \"IsAllPagesFromCurrent\": false,\n        \"PageRange\": \"2,3\"\n      }\n    },\n    {\n      \"ElementType\": 5,\n      \"PageNumber\": 1,\n      \"Position\": { \"Top\": 160, \"Left\": 50, \"Width\": 200, \"Height\": 25 },\n      \"IsRequired\": false,\n      \"ZIndex\": 4,\n      \"DuplicateElementInfo\": {\n        \"IsAllPagesFromCurrent\": true,\n        \"PageRange\": \"\"\n      }\n    },\n    {\n      \"ElementType\": 9,\n      \"PageNumber\": 1,\n      \"Position\": { \"Top\": 210, \"Left\": 80, \"Width\": 100, \"Height\": 15 },\n      \"TextValue\": \"Fixed text\",\n      \"TextSize\": 10,\n      \"IsRequired\": false,\n      \"ZIndex\": 5,\n      \"DuplicateElementInfo\": {\n        \"IsAllPagesFromCurrent\": false,\n        \"PageRange\": \"2\"\n      }\n    },\n    {\n      \"ElementType\": 17,\n      \"PageNumber\": 1,\n      \"Position\": { \"Top\": 250, \"Left\": 60, \"Width\": 90, \"Height\": 60 },\n      \"IsRequired\": false,\n      \"ZIndex\": 6,\n      \"AdditionalInfo\": [\n        { \"Key\": \"image-src\", \"Value\": \"img-001\" }\n      ],\n      \"DuplicateElementInfo\": {\n        \"IsAllPagesFromCurrent\": true,\n        \"PageRange\": \"\"\n      }\n    },\n    {\n      \"ElementType\": 21,\n      \"SignerIndex\": 0,\n       \"SignerKey\": {\n        \"Key\": \"someuser@doxi-sign.com\",\n        \"Type\": 1\n      },\n      \"PageNumber\": 1,\n      \"Position\": { \"Top\": 330, \"Left\": 80, \"Width\": 120, \"Height\": 15 },\n      \"TextValue\": \"Click here\",\n      \"IsRequired\": false,\n      \"ZIndex\": 7,\n      \"DuplicateElementInfo\": {\n        \"IsAllPagesFromCurrent\": false,\n        \"PageRange\": \"2,3\"\n      }\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\": \"someuser@doxi-sign.com\",\n        \"Type\": 1\n      },\n      \"Email\": \"someuser@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\": {\n    \"img-001\": \"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNk+M9QDwADhgGAWjR9awAAAABJRU5ErkJggg==\"\n  }\n}","type":"text"}]},"url":"//v6/flows","description":"<p>[V6] Create a new signature flow with document file upload</p>\n<hr />\n<h2 id=\"file\">file:</h2>\n<h3 id=\"the-document-file-to-upload-pdf-docx-doc-jpg-jpeg-png-the-file-extension-must-match-the-documentfilename-in-the-request\">The document file to upload (PDF, DOCX, DOC, JPG, JPEG, PNG). The file extension must match the DocumentFileName in the request.</h3>\n<hr />\n<h2 id=\"createflowjsonrequest\">createFlowJsonRequest:</h2>\n<h3 id=\"flow-creation-request-containing-flow-configuration-including-signers-signature-elements-form-fields-and-document-metadata\">Flow creation request containing flow configuration including signers, signature elements, form fields, and document metadata\"</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* DocumentFileName</td>\n<td>String</td>\n<td>The name of the document</td>\n</tr>\n<tr>\n<td>* SenderKey</td>\n<td><em><strong>ParticipantKey</strong></em></td>\n<td>Id of the Sender</td>\n</tr>\n<tr>\n<td>* Description</td>\n<td>String(200)</td>\n<td>The description/name of the flow</td>\n</tr>\n<tr>\n<td>* FlowElements</td>\n<td><em><strong>ExFlowElement[]</strong></em></td>\n<td>All the elements of the flow</td>\n</tr>\n<tr>\n<td>SendMethodType</td>\n<td><em><strong>SendMethodType</strong></em></td>\n<td>Distribution method of the flow</td>\n</tr>\n<tr>\n<td>Recipients</td>\n<td><em><strong>ExUser[]</strong></em></td>\n<td>All the CC users of the flow</td>\n</tr>\n<tr>\n<td>IsSendApprovalMailToAllSigners</td>\n<td>Boolean</td>\n<td>Enabled/Diabaled send email to all signers (when the flow approved)</td>\n</tr>\n<tr>\n<td>IsAutomaticRemainder</td>\n<td>Boolean</td>\n<td>Enabled/Disabled send automatic remainder</td>\n</tr>\n<tr>\n<td>DayesForAutomaticRemainder</td>\n<td>Int32</td>\n<td>Number of the days for getting automatic remainder</td>\n</tr>\n<tr>\n<td>SignFlowDescriptionMessage</td>\n<td>String</td>\n<td>Description of the document in the email</td>\n</tr>\n<tr>\n<td>CustomFields</td>\n<td>KeyValuePair&lt;String,String&gt;[]</td>\n<td>Add additional data in the flow</td>\n</tr>\n<tr>\n<td>* Users</td>\n<td><em><strong>ExUser[]</strong></em></td>\n<td>The changable users of the flow</td>\n</tr>\n<tr>\n<td>PackageId</td>\n<td>String</td>\n<td>Id of the package (the flow will be in package)</td>\n</tr>\n<tr>\n<td>PackageName</td>\n<td>String</td>\n<td>Name of the package</td>\n</tr>\n<tr>\n<td>DisableSBS</td>\n<td>Boolean</td>\n<td>Disabled/Enabled dispaly side by side mode in the flow</td>\n</tr>\n<tr>\n<td>PreliminaryText</td>\n<td>String</td>\n<td>Preliminary text of the flow (display only in side by side mode)</td>\n</tr>\n<tr>\n<td>FlowTwoFactorEnabled</td>\n<td>Nullable&lt;Boolean&gt;</td>\n<td>Enabled/Disabled Two Factor on the flow</td>\n</tr>\n<tr>\n<td>SenderNotificationMailsToSend</td>\n<td><em><strong>NotificationMails[]</strong></em></td>\n<td>Types of emails notification (for the sender and CC), Allowed values: 0,1,3,4,5,7,9,12,13,14,15</td>\n</tr>\n<tr>\n<td>FlowExpirationDate</td>\n<td>Nullable&lt;DateTime&gt;</td>\n<td>Expiration date of the flow</td>\n</tr>\n<tr>\n<td>KitId</td>\n<td>String</td>\n<td>Create flow under kit</td>\n</tr>\n<tr>\n<td>ImagesList</td>\n<td>Dictionary&lt;String,String&gt;</td>\n<td>Dictionary of images for flow elements of type Image.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"exuser\">ExUser:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em><strong>filed</strong></em></th>\n<th><em><strong>type</strong></em></th>\n<th><em><strong>description</strong></em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>* UserKey</td>\n<td><em><strong>ParticipantKey</strong></em></td>\n<td>Id of user</td>\n</tr>\n<tr>\n<td>Email</td>\n<td>String(77)</td>\n<td>Email of user</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td>String(50)</td>\n<td>First name of user</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td>String(50)</td>\n<td>Last name of user</td>\n</tr>\n<tr>\n<td>SmsPhoneNumber</td>\n<td>String(80)</td>\n<td>Phone Number of user (if empty, the user will not receive sms)</td>\n</tr>\n<tr>\n<td>UserPassword</td>\n<td>String Validation: Only letters, numbers, and special characters are allowed.</td>\n<td>Password for opening the sign link 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</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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","flows"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"2269460f-a58b-4433-ba7e-c9c69d3c37dd","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}","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":"c61c5604-f9bd-4523-9e31-8ac93236feaf","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}","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":"8fe85322-25b1-4da1-971d-62c0896f32c2","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}","type":"text"}]},"url":"//v6/flows"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"685113c9-d560-4610-a28c-7fcf6b4a05b1"},{"name":"/v6/flows/search","id":"117a66b1-df79-4494-8f3f-4fc2d440c9f2","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","flows","search"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"38eaf45a-275d-451b-8751-15a2eaff756b","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":"b287a0a8-5d72-4bc1-a578-cb1207220c97","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":"b4b553e1-dd5e-4926-bae6-48348d5fb150","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":"117a66b1-df79-4494-8f3f-4fc2d440c9f2"},{"name":"/v6/flows/:signFlowId/document","id":"a85d2c5a-7ecb-4162-a524-613ae83d49f9","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","flows",":signFlowId","document"],"host":["/"],"query":[{"description":{"content":"<p>If true, return the PDF with digital signatures; if false, return without digital signatures (default: true)</p>\n","type":"text/plain"},"key":"withSigns","value":"true"}],"variable":[{"description":{"content":"<p>The unique identifier (GUID) of the flow</p>\n","type":"text/plain"},"type":"any","value":"string","key":"signFlowId"}]}},"response":[{"id":"b4c6412c-d50f-451a-9d69-5d3a8ce33bcf","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":"584f5209-58db-43bc-8e49-ddae2da3a8de","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":"64018782-f3bc-47de-94e1-8754bf697d4b","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":"dec66e52-2f32-402d-b63c-911856292aed","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":"a85d2c5a-7ecb-4162-a524-613ae83d49f9"},{"name":"/v6/flows/:signFlowId/document-info","id":"a248d298-ab2b-4287-8cd4-55bb73835de2","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","flows",":signFlowId","document-info"],"host":["/"],"query":[{"description":{"content":"<p>If true, include the PDF document in the response as a file stream; if false, return only metadata (default: false)</p>\n","type":"text/plain"},"key":"includeDocument","value":"false"}],"variable":[{"description":{"content":"<p>The unique identifier (GUID) of the flow</p>\n","type":"text/plain"},"type":"any","value":"string","key":"signFlowId"}]}},"response":[{"id":"3c8b72f1-38d5-479d-9fe4-a2590946bf70","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":"644f9450-73e0-402e-aae9-915e3a52ab55","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":"de48397d-afa4-4828-9dae-bbd7d8790b7f","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":"970c61b7-9515-4629-b4ff-9753a0c4ab50","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":"a248d298-ab2b-4287-8cd4-55bb73835de2"},{"name":"/v6/flows/:signFlowId/action","id":"23abe487-f5b5-4e3f-8bc4-f310a55b9e80","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","flows",":signFlowId","action"],"host":["/"],"query":[],"variable":[{"type":"any","value":"string","key":"signFlowId"}]}},"response":[{"id":"02590557-7edd-4beb-a643-9118f23294b5","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":"d2741134-dd42-459b-b0a5-ad0ac45b65f2","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":"fbeafa09-7647-4d74-9688-4e6fa1b6b7e9","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":"483bb5d5-7d4b-4d81-bb6c-cc7e05601e5f","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":"23abe487-f5b5-4e3f-8bc4-f310a55b9e80"},{"name":"/v6/flows/:signFlowId","id":"04952aac-cb0f-4f14-a1b5-b796d38f09db","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","flows",":signFlowId"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>The unique identifier (GUID) of the flow</p>\n","type":"text/plain"},"type":"any","value":"string","key":"signFlowId"}]}},"response":[{"id":"2daf476c-3e59-4c57-ac13-5db0bd5cb6b7","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":"c10b48ce-de93-4da7-bed3-8853a29e1b63","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":"42c83f77-b131-4100-b3ed-9901b1c928ae","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":"fcb86647-635f-4631-995f-0d360fef935b","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":"04952aac-cb0f-4f14-a1b5-b796d38f09db"},{"name":"/v6/flows/searchstatus","id":"b4ee65e0-f8d9-4f6d-aa44-ca70fccf3789","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","flows","searchstatus"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"a610efb6-93f0-4674-b2d9-b23fe7dffb3b","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":"cc248243-80be-4585-b4f1-59c4719feea1","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":"ebd98f8a-a666-4138-988b-ae4888c3256f","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":"b4ee65e0-f8d9-4f6d-aa44-ca70fccf3789"},{"name":"/v6/flows/:signFlowId/status","id":"c37a2843-17ac-4bcc-af82-8cb42a8fb1fd","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","flows",":signFlowId","status"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>The unique identifier (GUID) of the flow</p>\n","type":"text/plain"},"type":"any","value":"string","key":"signFlowId"}]}},"response":[{"id":"0374cde1-548c-4720-89c5-e9925b617995","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":"e6a96db3-d45e-49b0-927b-7ef360cfb5f9","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":"635794e6-5711-48e4-8f86-76db34f7af2a","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":"e41185e3-a0c2-48b1-97b6-4ae8dd68c4f9","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":"c37a2843-17ac-4bcc-af82-8cb42a8fb1fd"},{"name":"/v6/flows/:signFlowId/signatures","id":"ceaad512-9cb5-4238-abb8-051089fb75e0","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","flows",":signFlowId","signatures"],"host":["/"],"query":[],"variable":[{"type":"any","value":"string","key":"signFlowId"}]}},"response":[{"id":"548e107a-492d-403a-b5cc-3f59ae4f4aa1","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":"961a4181-9e15-41ab-bdee-5b5fce70ab1e","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":"253ac50d-7abf-4553-bcac-63f126504d45","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":"765f150c-ea50-4e2e-b194-9f096f8cebba","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":"ceaad512-9cb5-4238-abb8-051089fb75e0"},{"name":"/v6/flows/replace-signer","id":"c3c68174-03cf-497f-938c-33f84d4f6ab0","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","flows","replace-signer"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"35c403c1-4a93-4cb5-8d95-8b1bbc8c8b52","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":"351cbc18-796b-49d0-aa88-db1d404a21aa","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":"7d0f44b4-c457-4348-89d1-2673ad37a128","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":"081ecd39-f49e-4747-b4d7-f2c0e4aad48a","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":"c3c68174-03cf-497f-938c-33f84d4f6ab0"},{"name":"/v6/flows/:signFlowId/sign-url","id":"39e5ecf1-bfdf-4a69-8d4e-cbf408cfdda6","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","flows",":signFlowId","sign-url"],"host":["/"],"query":[],"variable":[{"type":"any","value":"string","key":"signFlowId"}]}},"response":[{"id":"dedc6307-4504-42a0-a8b6-821ea1cbfa5b","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":"8def9056-4406-4ff1-8eec-2cba44af290e","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":"305c9ac0-d131-457a-95f4-db0cfb1b8e46","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":"ef870973-b2d6-4d6b-ab93-450cb9d2ca5e","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":"39e5ecf1-bfdf-4a69-8d4e-cbf408cfdda6"}],"id":"3997dcf8-d8d8-4003-af74-7263c57a5262","_postman_id":"3997dcf8-d8d8-4003-af74-7263c57a5262","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}}},{"name":"Template","item":[{"name":"/v6/templates/:templateId/flow","id":"40f8f96f-d1d0-40f5-9268-2c81e6f095c2","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</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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","templates",":templateId","flow"],"host":["/"],"query":[],"variable":[{"type":"any","value":"string","key":"templateId"}]}},"response":[{"id":"82c4cd84-b747-4311-b92b-1eacf4fb7c76","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":"102fd1b5-5e16-4b4a-ac5e-16ceb4f69b8b","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":"b51f795b-93e2-4420-b48c-c5402f330430","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":"9114a562-6aa1-4ca1-84fb-6745dee66fc4","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":"40f8f96f-d1d0-40f5-9268-2c81e6f095c2"},{"name":"/v6/templates/:templateId","id":"b9f0283c-eae0-40a7-adde-586b461df95b","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","templates",":templateId"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>The unique identifier (GUID) of the template</p>\n","type":"text/plain"},"type":"any","value":"string","key":"templateId"}]}},"response":[{"id":"704776ec-4cfa-46cb-973c-391de451b6da","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":"883c755e-53d9-4acc-90a6-d174d0dbd8f2","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":"8d079e80-28f1-4798-8bac-ccd1babffead","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":"8be69e02-0b7a-4dce-899e-8fc4694b8249","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":"b9f0283c-eae0-40a7-adde-586b461df95b"},{"name":"/v6/templates/:templateId","id":"049f8d2e-4e7d-4d34-9423-d2086891f8a4","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</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</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","templates",":templateId"],"host":["/"],"query":[],"variable":[{"type":"any","value":"string","key":"templateId"}]}},"response":[{"id":"2506ad16-98da-48a4-b17b-4578b5ba818e","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":"8646279c-d4bb-4733-8af8-1cc7fad2006a","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":"b2d5eee8-c348-4a9d-a630-efc0b8f8cea2","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":"8c617613-ec4b-438d-b4f2-61f45986cc7d","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":"049f8d2e-4e7d-4d34-9423-d2086891f8a4"},{"name":"/v6/templates/:templateId","id":"12980dce-81db-4ce0-a069-d353c9ead2db","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","templates",":templateId"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>The unique identifier (GUID) of the template to delete</p>\n","type":"text/plain"},"type":"any","value":"string","key":"templateId"}]}},"response":[{"id":"bdd5e3ae-ca6b-4b59-a637-fc2bd1890803","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":"99b81a38-8a5a-4bbb-8cfc-85786b7a3306","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":"e46f4c12-91b0-49c0-84a1-23ab03c15131","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":"a6121811-4ea1-4fbb-b352-b93d67baee46","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":"6cbdc944-9759-40fe-a6f0-610f927ab83d","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":"12980dce-81db-4ce0-a069-d353c9ead2db"},{"name":"/v6/templates","id":"03363050-c53a-4bb2-81c8-b7954c6ecf0a","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</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</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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","templates"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"b2357ac3-acf1-460a-b12f-133f386d72e7","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":"2ac72ae9-02cd-4ccb-a52f-06440a46facd","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":"a2bae1d9-0b1c-41ad-bde6-37bf0ad9bdaa","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":"03363050-c53a-4bb2-81c8-b7954c6ecf0a"},{"name":"/v6/templates/:templateId/attachments","id":"de031bd9-488b-4bc1-8b21-80b0e4841545","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","templates",":templateId","attachments"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>The unique identifier (GUID) of the template</p>\n","type":"text/plain"},"type":"any","value":"string","key":"templateId"}]}},"response":[{"id":"c7058331-489d-4b39-a42a-4bbb7d1025e9","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":"b517b4e7-a105-4244-aef1-d1fa53026d6b","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":"70766062-541f-4ae6-96e3-039a76c71b5c","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":"021e97e6-8e5d-43da-b982-c02c25dfa553","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":"de031bd9-488b-4bc1-8b21-80b0e4841545"},{"name":"/v6/templates/:templateId/attachments/:attachmentId","id":"d5380b3f-1506-4511-abb6-126d427bbcad","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","templates",":templateId","attachments",":attachmentId"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>The unique identifier (GUID) of the template</p>\n","type":"text/plain"},"type":"any","value":"string","key":"templateId"},{"description":{"content":"<p>The unique identifier (GUID) of the attached file to delete</p>\n","type":"text/plain"},"type":"any","value":"string","key":"attachmentId"}]}},"response":[{"id":"81c6befa-18e9-47d0-8409-acbd0982e101","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":"c95efb67-0a0e-4505-a2a0-6e19df0de754","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":"a0fd8ebf-5aca-42f2-9b99-59874766ec79","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":"b984c6c1-a9a5-470c-b801-170a9e1cbdbc","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":"d5380b3f-1506-4511-abb6-126d427bbcad"}],"id":"1579c926-47f7-4694-be57-c79404a2d0c6","_postman_id":"1579c926-47f7-4694-be57-c79404a2d0c6","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}}},{"name":"User","item":[{"name":"/v6/users/groups","id":"fb6fb239-7232-472f-b9b7-774adad2af61","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=UserName&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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","users","groups"],"host":["/"],"query":[{"description":{"content":"<p>The type of search key to identify the user. Valid values: UserName, UserEmail, UserId, etc. (from ParticipantKeyType enum)</p>\n","type":"text/plain"},"key":"sreachType","value":"UserName"},{"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":"30976c62-709e-465f-a9cf-1cc49933da32","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=UserName&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":"UserName"},{"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":"79ea7d0f-e4ad-4221-ae62-e4cc8ffc4abb","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=UserName&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":"UserName"},{"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":"87ae7a1d-6e3a-45cf-82d1-0baf6025da7d","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=UserName&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":"UserName"},{"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":"e4824538-ce96-4163-9ca7-592ecd3e9746","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=UserName&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":"UserName"},{"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":"fb6fb239-7232-472f-b9b7-774adad2af61"},{"name":"/v6/users/templates","id":"b996b2a9-4b90-4290-8d43-30e2423f6223","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=UserName&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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","users","templates"],"host":["/"],"query":[{"description":{"content":"<p>The type of search key to identify the user. Valid values: UserName, UserEmail, UserId, etc. (from ParticipantKeyType enum)</p>\n","type":"text/plain"},"key":"sreachType","value":"UserName"},{"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":"9863679a-eaba-4335-9e47-3173c1b57d99","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=UserName&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":"UserName"},{"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":"865ec4f7-6410-4a7a-a5fd-5440e4304eea","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=UserName&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":"UserName"},{"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":"de16707e-ad65-4938-a943-c87fcc18310e","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=UserName&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":"UserName"},{"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":"72efa8ab-3bb3-45c2-89ce-e35cc651b6ed","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=UserName&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":"UserName"},{"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":"b996b2a9-4b90-4290-8d43-30e2423f6223"}],"id":"1f70c163-4f40-4529-8893-a2a4c88c491f","_postman_id":"1f70c163-4f40-4529-8893-a2a4c88c491f","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}}},{"name":"Webhook","item":[{"name":"/v6/webhooks","id":"e10e5078-e1a0-46f9-be18-c8a63da6b8cb","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","webhooks"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"8198352b-db30-4f2c-821d-5e5647cd1f49","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":"7c8a48bc-2338-4f27-aec5-af0733d37119","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":"220861b6-5b53-46b0-9ece-266cc4c98904","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":"e10e5078-e1a0-46f9-be18-c8a63da6b8cb"},{"name":"/v6/webhooks","id":"d426137c-3420-4629-9d3e-1606a9f5382c","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","webhooks"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"30a6bd21-f243-4ec3-9ca2-6971b1391f5a","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":"0d5cc6a2-95d6-43f7-a6d3-ee8571d44170","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":"d426137c-3420-4629-9d3e-1606a9f5382c"},{"name":"/v6/webhooks/test","id":"1a79427a-1fad-47af-8e51-4827c7567ead","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","webhooks","test"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"979c2f4c-b2a5-4f30-b442-f4b05290988e","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":"8aa92d9c-1073-4cbd-b02f-8abc9608851e","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":"398342d7-bda1-434b-9487-f57e186d6024","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":"1a79427a-1fad-47af-8e51-4827c7567ead"},{"name":"/v6/webhooks/:subscriptionId/logs","id":"2d9d6aad-6d1d-42d6-b4a7-79e15efd7b62","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=1983-10-25T08:02:50.668Z&toDateTime=1983-10-25T08:02:50.668Z&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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","webhooks",":subscriptionId","logs"],"host":["/"],"query":[{"description":{"content":"<p>Search by WebhookSenderLog create date - from. Format: dd/mm/yyyy in UTC. Optional.</p>\n","type":"text/plain"},"key":"fromDateTime","value":"1983-10-25T08:02:50.668Z"},{"description":{"content":"<p>Search by WebhookSenderLog create date - to. Format: dd/mm/yyyy in UTC. Optional.</p>\n","type":"text/plain"},"key":"toDateTime","value":"1983-10-25T08:02:50.668Z"},{"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":[{"description":{"content":"<p>The unique identifier (GUID) of the webhook subscription</p>\n","type":"text/plain"},"type":"any","value":"string","key":"subscriptionId"}]}},"response":[{"id":"25af3cc0-6377-4081-beb1-9c2bee2b0b62","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=1983-10-25T08:02:50.668Z&toDateTime=1983-10-25T08:02:50.668Z&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":"1983-10-25T08:02:50.668Z"},{"description":"Search by WebhookSenderLog create date - to. Format: dd/mm/yyyy in UTC. Optional.","key":"toDateTime","value":"1983-10-25T08:02:50.668Z"},{"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\": \"{{vault:bearer_token}}\"\n    },\n    \"SendDate\": \"15/01/2024 10:30:00\",\n    \"ResponseDate\": \"15/01/2024 10:30:01\",\n    \"ResponseCode\": 200,\n    \"ResponseMsg\": \"OK\"\n  },\n  {\n    \"WebhookSendId\": \"send-002\",\n    \"Attempt\": 1,\n    \"WebhookSubscriptionId\": \"a1b2c3d4-e5f6-7890-abcd-ef1234567890\",\n    \"TenantId\": \"tenant-123\",\n    \"WebhookEventId\": \"550e8400-e29b-41d4-a716-446655440001\",\n    \"WebhookName\": \"SignerStatusChanged\",\n    \"Data\": \"{\\\"SignFlowId\\\":\\\"1909058d-f59b-42b2-9994-20fbfb154d63\\\",\\\"SignerEmail\\\":\\\"signer@example.com\\\",\\\"Status\\\":\\\"Signed\\\"}\",\n    \"WebhookUri\": \"https://example.com/webhooks/doxi\",\n    \"Secret\": \"WebhookSubscriptionSecretPrefix-a1b2c3d4e5f67890abcdef1234567890\",\n    \"Headers\": {\n      \"Authorization\": \"{{vault:bearer_token}}\"\n    },\n    \"SendDate\": \"15/01/2024 11:00:00\",\n    \"ResponseDate\": \"15/01/2024 11:00:05\",\n    \"ResponseCode\": 500,\n    \"ResponseMsg\": \"Internal Server Error\"\n  }\n]"},{"id":"dfbf5baa-262a-4658-80ef-71638fc5cc03","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=1983-10-25T08:02:50.668Z&toDateTime=1983-10-25T08:02:50.668Z&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":"1983-10-25T08:02:50.668Z"},{"description":"Search by WebhookSenderLog create date - to. Format: dd/mm/yyyy in UTC. Optional.","key":"toDateTime","value":"1983-10-25T08:02:50.668Z"},{"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":"ee789110-1916-407f-90c7-fef8d8ab3342","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=1983-10-25T08:02:50.668Z&toDateTime=1983-10-25T08:02:50.668Z&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":"1983-10-25T08:02:50.668Z"},{"description":"Search by WebhookSenderLog create date - to. Format: dd/mm/yyyy in UTC. Optional.","key":"toDateTime","value":"1983-10-25T08:02:50.668Z"},{"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":"d3882d5a-6cab-49e5-ad2c-bfff4778c9c3","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=1983-10-25T08:02:50.668Z&toDateTime=1983-10-25T08:02:50.668Z&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":"1983-10-25T08:02:50.668Z"},{"description":"Search by WebhookSenderLog create date - to. Format: dd/mm/yyyy in UTC. Optional.","key":"toDateTime","value":"1983-10-25T08:02:50.668Z"},{"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":"2d9d6aad-6d1d-42d6-b4a7-79e15efd7b62"},{"name":"/v6/webhooks/:subscriptionId","id":"b309c5a4-510d-4162-ab94-d4278bca3e72","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","webhooks",":subscriptionId"],"host":["/"],"query":[],"variable":[{"type":"any","value":"string","key":"subscriptionId"}]}},"response":[{"id":"e4e199cb-794c-4a90-80c3-ec84a3061b12","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":"09b6c656-cc75-48e7-a1cc-c346a3e7c4d6","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":"a66cfbd2-d17a-4d86-bb1e-226a88e1c551","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":"e47ab7a4-0cc0-4269-90a5-faeaca46b9a9","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":"b309c5a4-510d-4162-ab94-d4278bca3e72"},{"name":"/v6/webhooks/:subscriptionId","id":"cee6c419-b288-48a8-b7bd-1436058fbd92","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":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}},"urlObject":{"path":["v6","webhooks",":subscriptionId"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>The unique identifier (GUID) of the webhook subscription to delete</p>\n","type":"text/plain"},"type":"any","value":"string","key":"subscriptionId"}]}},"response":[{"id":"5d2f4bf1-2846-417e-b788-577bc8c7b1e8","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":"7bb80e2e-86ca-4bf7-aee6-04800d6fd137","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":"19a9382a-f0a5-43ea-9dbb-1bc755c9d130","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":"38d19834-1d1a-400b-80c3-a67a671a5530","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":"cee6c419-b288-48a8-b7bd-1436058fbd92"}],"id":"23bb90af-3b46-4698-a921-ce80bd9088b3","_postman_id":"23bb90af-3b46-4698-a921-ce80bd9088b3","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"8758f53b-2d08-4568-852b-c8477400b87a","id":"8758f53b-2d08-4568-852b-c8477400b87a","name":"Consist.DoxiAPI v6.1.0","type":"collection"}}},{"name":"GetToken","event":[{"listen":"test","script":{"id":"dcd45db5-7a13-4aa1-95be-a4c3a7a34c8f","exec":["var token = pm.response.json().access_token;\r","pm.environment.set(\"token\",token)\r","\r","var token = pm.response.json().refresh_token;\r","pm.environment.set(\"refresh_token\",token)"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"69b5cfb4-dd3c-4f75-95b7-2cabef3d3c99","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":"78f9ac7c-d7bd-4a09-8689-b991f26209ac","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":"f613f505-8d82-4325-b5bf-878a2b4a3dea","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":"69b5cfb4-dd3c-4f75-95b7-2cabef3d3c99"},{"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":"751ee339-81f3-4363-878a-4fdd8d646e88","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":"ff5584f8-b657-4a2a-a600-0c7244ca04de","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":"3ad2da2f-47e3-43c9-87e0-68c2c84d1ec5","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":"751ee339-81f3-4363-878a-4fdd8d646e88"}],"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]}},"event":[{"listen":"prerequest","script":{"id":"8e958da3-34fb-48e9-ba75-4881ba20d798","type":"text/javascript","packages":{},"requests":{},"exec":[""]}},{"listen":"test","script":{"id":"4ce1f791-3223-445f-9a3e-badd88789856","type":"text/javascript","packages":{},"requests":{},"exec":[""]}}],"variable":[{"key":"baseUrl","value":"/"}]}