### List all templates The API endpoint provides the ability to retrieve a list of available document templates. ```csharp var client = new RestClient("https://api.docuseal.com/templates"); var request = new RestRequest("", Method.Get); request.AddHeader("X-Auth-Token", "API_KEY"); var response = client.Execute(request); ``` ```json { "security": [ { "AuthToken": [] } ], "tags": [ "Templates" ], "summary": "List all templates", "operationId": "getTemplates", "parameters": [ { "name": "q", "in": "query", "required": false, "schema": { "type": "string" }, "description": "Filter templates based on the name partial match." }, { "name": "slug", "in": "query", "required": false, "schema": { "type": "string" }, "description": "Filter templates by unique slug.", "example": "opaKWh8WWTAcVG" }, { "name": "external_id", "in": "query", "required": false, "schema": { "type": "string" }, "description": "The unique applications-specific identifier provided for the template via API or Embedded template form builder. It allows you to receive only templates with your specified external id." }, { "name": "folder", "in": "query", "required": false, "schema": { "type": "string" }, "description": "Filter templates by folder name." }, { "name": "archived", "in": "query", "required": false, "schema": { "type": "boolean" }, "description": "Get only archived templates instead of active ones." }, { "name": "limit", "in": "query", "required": false, "schema": { "type": "integer" }, "description": "The number of templates to return. Default value is 10. Maximum value is 100." }, { "name": "after", "in": "query", "required": false, "schema": { "type": "integer" }, "description": "The unique identifier of the template to start the list from. It allows you to receive only templates with id greater than the specified value. Pass ID value from the `pagination.next` response to load the next batch of templates." }, { "name": "before", "in": "query", "required": false, "schema": { "type": "integer" }, "description": "The unique identifier of the template to end the list with. It allows you to receive only templates with id less than the specified value." } ] } ``` ### Get a template The API endpoint provides the functionality to retrieve information about a document template. ```csharp var client = new RestClient("https://api.docuseal.com/templates/1000001"); var request = new RestRequest("", Method.Get); request.AddHeader("X-Auth-Token", "API_KEY"); var response = client.Execute(request); ``` ```json { "security": [ { "AuthToken": [] } ], "tags": [ "Templates" ], "summary": "Get a template", "operationId": "getTemplate", "parameters": [ { "name": "id", "in": "path", "required": true, "schema": { "type": "integer" }, "description": "The unique identifier of the document template.", "example": 1000001 } ] } ``` ### Archive a template The API endpoint allows you to archive a document template. ```csharp var client = new RestClient("https://api.docuseal.com/templates/1000001"); var request = new RestRequest("", Method.Delete); request.AddHeader("X-Auth-Token", "API_KEY"); var response = client.Execute(request); ``` ```json { "security": [ { "AuthToken": [] } ], "tags": [ "Templates" ], "summary": "Archive a template", "operationId": "archiveTemplate", "parameters": [ { "name": "id", "in": "path", "required": true, "schema": { "type": "integer" }, "description": "The unique identifier of the document template.", "example": 1000001 } ] } ``` ### Update a template The API endpoint provides the functionality to move a document template to a different folder and update the name of the template. ```csharp var client = new RestClient("https://api.docuseal.com/templates/1000001"); var request = new RestRequest("", Method.Put); request.AddHeader("X-Auth-Token", "API_KEY"); request.AddHeader("content-type", "application/json"); request.AddParameter("application/json", "{\"name\":\"New Document Name\",\"folder_name\":\"New Folder\"}", ParameterType.RequestBody); var response = client.Execute(request); ``` ```json { "security": [ { "AuthToken": [] } ], "tags": [ "Templates" ], "summary": "Update a template", "operationId": "updateTemplate", "parameters": [ { "name": "id", "in": "path", "required": true, "schema": { "type": "integer" }, "description": "The unique identifier of the document template.", "example": 1000001 } ], "requestBody": { "required": true, "content": { "application/json": { "schema": { "type": "object", "properties": { "name": { "type": "string", "description": "The name of the template", "example": "New Document Name" }, "folder_name": { "type": "string", "description": "The folder's name to which the template should be moved.", "example": "New Folder" }, "roles": { "type": "array", "description": "An array of submitter role names to update the template with.", "items": { "type": "string" }, "example": [ "Agent", "Customer" ] }, "archived": { "type": "boolean", "description": "Set `false` to unarchive template." } } } } } } } ``` ### List all submissions The API endpoint provides the ability to retrieve a list of available submissions. ```csharp var client = new RestClient("https://api.docuseal.com/submissions"); var request = new RestRequest("", Method.Get); request.AddHeader("X-Auth-Token", "API_KEY"); var response = client.Execute(request); ``` ```json { "security": [ { "AuthToken": [] } ], "tags": [ "Submissions" ], "summary": "List all submissions", "operationId": "getSubmissions", "parameters": [ { "name": "template_id", "in": "query", "required": false, "schema": { "type": "integer" }, "description": "The template ID allows you to receive only the submissions created from that specific template." }, { "name": "status", "in": "query", "required": false, "schema": { "type": "string", "enum": [ "pending", "completed", "declined", "expired" ] }, "description": "Filter submissions by status." }, { "name": "q", "in": "query", "required": false, "schema": { "type": "string" }, "description": "Filter submissions based on submitters name, email or phone partial match." }, { "name": "slug", "in": "query", "required": false, "schema": { "type": "string" }, "description": "Filter submissions by unique slug.", "example": "NtLDQM7eJX2ZMd" }, { "name": "template_folder", "in": "query", "required": false, "schema": { "type": "string" }, "description": "Filter submissions by template folder name." }, { "name": "archived", "in": "query", "required": false, "schema": { "type": "boolean" }, "description": "Returns only archived submissions when `true` and only active submissions when `false`." }, { "name": "limit", "in": "query", "required": false, "schema": { "type": "integer" }, "description": "The number of submissions to return. Default value is 10. Maximum value is 100." }, { "name": "after", "in": "query", "required": false, "schema": { "type": "integer" }, "description": "The unique identifier of the submission to start the list from. It allows you to receive only submissions with an ID greater than the specified value. Pass ID value from the `pagination.next` response to load the next batch of submissions." }, { "name": "before", "in": "query", "required": false, "schema": { "type": "integer" }, "description": "The unique identifier of the submission that marks the end of the list. It allows you to receive only submissions with an ID less than the specified value." } ] } ``` ### Create a submission This API endpoint allows you to create signature requests (submissions) for a document template and send them to the specified submitters (signers).
Related Guides
Send documents for signature via API
Pre-fill PDF document form fields with API ```csharp var client = new RestClient("https://api.docuseal.com/submissions"); var request = new RestRequest("", Method.Post); request.AddHeader("X-Auth-Token", "API_KEY"); request.AddHeader("content-type", "application/json"); request.AddParameter("application/json", "{\"template_id\":1000001,\"send_email\":true,\"submitters\":[{\"role\":\"First Party\",\"email\":\"john.doe@example.com\"}]}", ParameterType.RequestBody); var response = client.Execute(request); ``` ```json { "security": [ { "AuthToken": [] } ], "tags": [ "Submissions" ], "summary": "Create a submission", "operationId": "createSubmission", "parameters": [], "requestBody": { "required": true, "content": { "application/json": { "schema": { "type": "object", "required": [ "template_id", "submitters" ], "properties": { "template_id": { "type": "integer", "description": "The unique identifier of the template. Document template forms can be created via the Web UI, PDF and DOCX API, or HTML API.", "example": 1000001 }, "send_email": { "type": "boolean", "description": "Set `false` to disable signature request emails sending.", "default": true }, "send_sms": { "type": "boolean", "description": "Set `true` to send signature request via phone number and SMS.", "default": false }, "order": { "type": "string", "description": "Pass 'random' to send signature request emails to all parties right away. The order is 'preserved' by default so the second party will receive a signature request email only after the document is signed by the first party.", "default": "preserved", "enum": [ "preserved", "random" ] }, "completed_redirect_url": { "type": "string", "description": "Specify URL to redirect to after the submission completion." }, "bcc_completed": { "type": "string", "description": "Specify BCC address to send signed documents to after the completion." }, "reply_to": { "type": "string", "description": "Specify Reply-To address to use in the notification emails." }, "expire_at": { "type": "string", "description": "Specify the expiration date and time after which the submission becomes unavailable for signature.", "example": "2024-09-01 12:00:00 UTC" }, "message": { "type": "object", "properties": { "subject": { "type": "string", "description": "Custom signature request email subject." }, "body": { "type": "string", "description": "Custom signature request email body. Can include the following variables: {{template.name}}, {{submitter.link}}, {{account.name}}." } } }, "submitters": { "type": "array", "description": "The list of submitters for the submission.", "items": { "type": "object", "required": [ "email" ], "properties": { "name": { "type": "string", "description": "The name of the submitter." }, "role": { "type": "string", "description": "The role name or title of the submitter.", "example": "First Party" }, "email": { "type": "string", "description": "The email address of the submitter.", "format": "email", "example": "john.doe@example.com" }, "phone": { "type": "string", "description": "The phone number of the submitter, formatted according to the E.164 standard.", "example": "+1234567890" }, "values": { "type": "object", "description": "An object with pre-filled values for the submission. Use field names for keys of the object. For more configurations see `fields` param." }, "external_id": { "type": "string", "description": "Your application-specific unique string key to identify this submitter within your app." }, "completed": { "type": "boolean", "description": "Pass `true` to mark submitter as completed and auto-signed via API." }, "metadata": { "type": "object", "description": "Metadata object with additional submitter information.", "example": "{ \"customField\": \"value\" }" }, "send_email": { "type": "boolean", "description": "Set `false` to disable signature request emails sending only for this submitter.", "default": true }, "send_sms": { "type": "boolean", "description": "Set `true` to send signature request via phone number and SMS.", "default": false }, "reply_to": { "type": "string", "description": "Specify Reply-To address to use in the notification emails for this submitter." }, "completed_redirect_url": { "type": "string", "description": "Submitter specific URL to redirect to after the submission completion." }, "order": { "type": "integer", "description": "The order of the submitter in the workflow (e.g., 0 for the first signer, 1 for the second, etc.). Use the same order number to create order groups. By default, submitters are ordered as in the submitters array." }, "require_phone_2fa": { "type": "boolean", "description": "Set to `true` to require phone 2FA verification via a one-time code sent to the phone number in order to access the documents.", "default": false }, "message": { "type": "object", "properties": { "subject": { "type": "string", "description": "Custom signature request email subject for the submitter." }, "body": { "type": "string", "description": "Custom signature request email body for the submitter. Can include the following variables: {{template.name}}, {{submitter.link}}, {{account.name}}." } } }, "fields": { "type": "array", "description": "A list of configurations for template document form fields.", "items": { "type": "object", "required": [ "name" ], "properties": { "name": { "type": "string", "description": "Document template field name.", "example": "First Name" }, "default_value": { "oneOf": [ { "type": "string" }, { "type": "number" }, { "type": "boolean" }, { "type": "array", "items": { "oneOf": [ { "type": "string" }, { "type": "number" }, { "type": "boolean" } ] } } ], "description": "Default value of the field. Use base64 encoded file or a public URL to the image file to set default signature or image fields.", "example": "Acme" }, "readonly": { "type": "boolean", "description": "Set `true` to make it impossible for the submitter to edit predefined field value.", "default": false }, "required": { "type": "boolean", "description": "Set `true` to make the field required." }, "title": { "type": "string", "description": "Field title displayed to the user instead of the name, shown on the signing form. Supports Markdown." }, "description": { "type": "string", "description": "Field description displayed on the signing form. Supports Markdown." }, "validation": { "type": "object", "properties": { "pattern": { "type": "string", "description": "HTML field validation pattern string based on https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/pattern specification.", "example": "[A-Z]{4}" }, "message": { "type": "string", "description": "A custom error message to display on validation failure." }, "min": { "oneOf": [ { "type": "number" }, { "type": "string" } ], "description": "Minimum allowed number value or date depending on field type." }, "max": { "oneOf": [ { "type": "number" }, { "type": "string" } ], "description": "Maximum allowed number value or date depending on field type." }, "step": { "type": "number", "description": "Increment step for number field. Pass 1 to accept only integers, or 0.01 to accept decimal currency." } } }, "preferences": { "type": "object", "properties": { "font_size": { "type": "integer", "description": "Font size of the field value in pixels.", "example": 12 }, "font_type": { "type": "string", "description": "Font type of the field value.", "enum": [ "bold", "italic", "bold_italic" ] }, "font": { "type": "string", "description": "Font family of the field value.", "enum": [ "Times", "Helvetica", "Courier" ] }, "color": { "type": "string", "description": "Font color of the field value.", "enum": [ "black", "white", "blue" ], "default": "black" }, "align": { "type": "string", "description": "Horizontal alignment of the field text value.", "enum": [ "left", "center", "right" ], "default": "left" }, "valign": { "type": "string", "description": "Vertical alignment of the field text value.", "enum": [ "top", "center", "bottom" ], "default": "center" }, "format": { "type": "string", "description": "The data format for different field types.
- Date field: accepts formats such as DD/MM/YYYY (default: MM/DD/YYYY).
- Signature field: accepts drawn, typed, drawn_or_typed (default), or upload.
- Number field: accepts currency formats such as usd, eur, gbp.", "example": "DD/MM/YYYY" }, "price": { "type": "number", "description": "Price value of the payment field. Only for payment fields.", "example": 99.99 }, "currency": { "type": "string", "description": "Currency value of the payment field. Only for payment fields.", "enum": [ "USD", "EUR", "GBP", "CAD", "AUD" ], "default": "USD" }, "mask": { "description": "Set `true` to make sensitive data masked on the document.", "oneOf": [ { "type": "integer" }, { "type": "boolean" } ], "default": false } } } } } }, "roles": { "type": "array", "description": "A list of roles for the submitter. Use this param to merge multiple roles into one submitter.", "items": { "type": "string" } } } } } } } } } } } ``` ### Get a submission The API endpoint provides the functionality to retrieve information about a submission. ```csharp var client = new RestClient("https://api.docuseal.com/submissions/1001"); var request = new RestRequest("", Method.Get); request.AddHeader("X-Auth-Token", "API_KEY"); var response = client.Execute(request); ``` ```json { "security": [ { "AuthToken": [] } ], "tags": [ "Submissions" ], "summary": "Get a submission", "operationId": "getSubmission", "parameters": [ { "name": "id", "in": "path", "required": true, "schema": { "type": "integer" }, "description": "The unique identifier of the submission.", "example": 1001 } ] } ``` ### Archive a submission The API endpoint allows you to archive a submission. ```csharp var client = new RestClient("https://api.docuseal.com/submissions/1001"); var request = new RestRequest("", Method.Delete); request.AddHeader("X-Auth-Token", "API_KEY"); var response = client.Execute(request); ``` ```json { "security": [ { "AuthToken": [] } ], "tags": [ "Submissions" ], "summary": "Archive a submission", "operationId": "archiveSubmission", "parameters": [ { "name": "id", "in": "path", "required": true, "schema": { "type": "integer" }, "description": "The unique identifier of the submission.", "example": 1001 } ] } ``` ### Get submission documents This endpoint returns a list of partially filled documents for a submission. If the submission has been completed, the final signed documents are returned. ```csharp var client = new RestClient("https://api.docuseal.com/submissions/1001/documents"); var request = new RestRequest("", Method.Get); request.AddHeader("X-Auth-Token", "API_KEY"); var response = client.Execute(request); ``` ```json { "security": [ { "AuthToken": [] } ], "tags": [ "Submissions" ], "summary": "Get submission documents", "operationId": "getSubmissionDocuments", "parameters": [ { "name": "id", "in": "path", "required": true, "schema": { "type": "integer" }, "description": "The unique identifier of the submission.", "example": 1001 } ] } ``` ### Create submissions from emails This API endpoint allows you to create submissions for a document template and send them to the specified email addresses. This is a simplified version of the POST /submissions API to be used with Zapier or other automation tools. ```csharp var client = new RestClient("https://api.docuseal.com/submissions/emails"); var request = new RestRequest("", Method.Post); request.AddHeader("X-Auth-Token", "API_KEY"); request.AddHeader("content-type", "application/json"); request.AddParameter("application/json", "{\"template_id\":1000001,\"emails\":\"hi@docuseal.com, example@docuseal.com\"}", ParameterType.RequestBody); var response = client.Execute(request); ``` ```json { "security": [ { "AuthToken": [] } ], "tags": [ "Submissions" ], "summary": "Create submissions from emails", "operationId": "createSubmissionsFromEmails", "parameters": [], "requestBody": { "required": true, "content": { "application/json": { "schema": { "type": "object", "required": [ "template_id", "emails" ], "properties": { "template_id": { "type": "integer", "description": "The unique identifier of the template.", "example": 1000001 }, "emails": { "type": "string", "description": "A comma-separated list of email addresses to send the submission to.", "example": "{{emails}}" }, "send_email": { "type": "boolean", "description": "Set `false` to disable signature request emails sending.", "default": true }, "message": { "type": "object", "properties": { "subject": { "type": "string", "description": "Custom signature request email subject." }, "body": { "type": "string", "description": "Custom signature request email body. Can include the following variables: {{template.name}}, {{submitter.link}}, {{account.name}}." } } } } } } } } } ``` ### Get a submitter The API endpoint provides functionality to retrieve information about a submitter, along with the submitter documents and field values. ```csharp var client = new RestClient("https://api.docuseal.com/submitters/500001"); var request = new RestRequest("", Method.Get); request.AddHeader("X-Auth-Token", "API_KEY"); var response = client.Execute(request); ``` ```json { "security": [ { "AuthToken": [] } ], "tags": [ "Submitters" ], "summary": "Get a submitter", "operationId": "getSubmitter", "parameters": [ { "name": "id", "in": "path", "required": true, "schema": { "type": "integer" }, "description": "The unique identifier of the submitter.", "example": 500001 } ] } ``` ### Update a submitter The API endpoint allows you to update submitter details, pre-fill or update field values and re-send emails.
Related Guides
Automatically sign documents via API ```csharp var client = new RestClient("https://api.docuseal.com/submitters/500001"); var request = new RestRequest("", Method.Put); request.AddHeader("X-Auth-Token", "API_KEY"); request.AddHeader("content-type", "application/json"); request.AddParameter("application/json", "{\"email\":\"john.doe@example.com\",\"fields\":[{\"name\":\"First Name\",\"default_value\":\"Acme\"}]}", ParameterType.RequestBody); var response = client.Execute(request); ``` ```json { "security": [ { "AuthToken": [] } ], "tags": [ "Submitters" ], "summary": "Update a submitter", "operationId": "updateSubmitter", "parameters": [ { "name": "id", "in": "path", "required": true, "schema": { "type": "integer" }, "description": "The unique identifier of the submitter.", "example": 500001 } ], "requestBody": { "required": true, "content": { "application/json": { "schema": { "type": "object", "properties": { "name": { "type": "string", "description": "The name of the submitter." }, "email": { "type": "string", "description": "The email address of the submitter.", "format": "email", "example": "john.doe@example.com" }, "phone": { "type": "string", "description": "The phone number of the submitter, formatted according to the E.164 standard.", "example": "+1234567890" }, "values": { "type": "object", "description": "An object with pre-filled values for the submission. Use field names for keys of the object. For more configurations see `fields` param." }, "external_id": { "type": "string", "description": "Your application-specific unique string key to identify this submitter within your app." }, "send_email": { "type": "boolean", "description": "Set `true` to re-send signature request emails." }, "send_sms": { "type": "boolean", "description": "Set `true` to re-send signature request via phone number SMS.", "default": false }, "reply_to": { "type": "string", "description": "Specify Reply-To address to use in the notification emails." }, "completed": { "type": "boolean", "description": "Pass `true` to mark submitter as completed and auto-signed via API." }, "metadata": { "type": "object", "description": "Metadata object with additional submitter information.", "example": "{ \"customField\": \"value\" }" }, "completed_redirect_url": { "type": "string", "description": "Submitter specific URL to redirect to after the submission completion." }, "require_phone_2fa": { "type": "boolean", "description": "Set to `true` to require phone 2FA verification via a one-time code sent to the phone number in order to access the documents.", "default": false }, "message": { "type": "object", "properties": { "subject": { "type": "string", "description": "Custom signature request email subject." }, "body": { "type": "string", "description": "Custom signature request email body. Can include the following variables: {{template.name}}, {{submitter.link}}, {{account.name}}." } } }, "fields": { "type": "array", "description": "A list of configurations for template document form fields.", "items": { "type": "object", "required": [ "name" ], "properties": { "name": { "type": "string", "description": "Document template field name.", "example": "First Name" }, "default_value": { "oneOf": [ { "type": "string" }, { "type": "number" }, { "type": "boolean" }, { "type": "array", "items": { "oneOf": [ { "type": "string" }, { "type": "number" }, { "type": "boolean" } ] } } ], "description": "Default value of the field. Use base64 encoded file or a public URL to the image file to set default signature or image fields.", "example": "Acme" }, "readonly": { "type": "boolean", "description": "Set `true` to make it impossible for the submitter to edit predefined field value.", "default": false }, "required": { "type": "boolean", "description": "Set `true` to make the field required." }, "validation": { "type": "object", "properties": { "pattern": { "type": "string", "description": "HTML field validation pattern string based on https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/pattern specification.", "example": "[A-Z]{4}" }, "message": { "type": "string", "description": "A custom error message to display on validation failure." }, "min": { "oneOf": [ { "type": "number" }, { "type": "string" } ], "description": "Minimum allowed number value or date depending on field type." }, "max": { "oneOf": [ { "type": "number" }, { "type": "string" } ], "description": "Maximum allowed number value or date depending on field type." }, "step": { "type": "number", "description": "Increment step for number field. Pass 1 to accept only integers, or 0.01 to accept decimal currency." } } }, "preferences": { "type": "object", "properties": { "font_size": { "type": "integer", "description": "Font size of the field value in pixels.", "example": 12 }, "font_type": { "type": "string", "description": "Font type of the field value.", "enum": [ "bold", "italic", "bold_italic" ] }, "font": { "type": "string", "description": "Font family of the field value.", "enum": [ "Times", "Helvetica", "Courier" ] }, "color": { "type": "string", "description": "Font color of the field value.", "enum": [ "black", "white", "blue" ], "default": "black" }, "align": { "type": "string", "description": "Horizontal alignment of the field text value.", "enum": [ "left", "center", "right" ], "default": "left" }, "valign": { "type": "string", "description": "Vertical alignment of the field text value.", "enum": [ "top", "center", "bottom" ], "default": "center" }, "format": { "type": "string", "description": "The data format for different field types.
- Date field: accepts formats such as DD/MM/YYYY (default: MM/DD/YYYY).
- Signature field: accepts drawn, typed, drawn_or_typed (default), or upload.
- Number field: accepts currency formats such as usd, eur, gbp.", "example": "DD/MM/YYYY" }, "price": { "type": "number", "description": "Price value of the payment field. Only for payment fields.", "example": 99.99 }, "currency": { "type": "string", "description": "Currency value of the payment field. Only for payment fields.", "enum": [ "USD", "EUR", "GBP", "CAD", "AUD" ], "default": "USD" }, "mask": { "description": "Set `true` to make sensitive data masked on the document.", "oneOf": [ { "type": "integer" }, { "type": "boolean" } ], "default": false } } } } } } } } } } } } ``` ### List all submitters The API endpoint provides the ability to retrieve a list of submitters. ```csharp var client = new RestClient("https://api.docuseal.com/submitters"); var request = new RestRequest("", Method.Get); request.AddHeader("X-Auth-Token", "API_KEY"); var response = client.Execute(request); ``` ```json { "security": [ { "AuthToken": [] } ], "tags": [ "Submitters" ], "summary": "List all submitters", "operationId": "getSubmitters", "parameters": [ { "name": "submission_id", "in": "query", "required": false, "schema": { "type": "integer" }, "description": "The submission ID allows you to receive only the submitters related to that specific submission." }, { "name": "q", "in": "query", "required": false, "schema": { "type": "string" }, "description": "Filter submitters on name, email or phone partial match." }, { "name": "slug", "in": "query", "required": false, "schema": { "type": "string" }, "description": "Filter submitters by unique slug.", "example": "zAyL9fH36Havvm" }, { "name": "completed_after", "in": "query", "required": false, "schema": { "type": "string", "format": "date-time" }, "example": "2024-03-05 9:32:20", "description": "The date and time string value to filter submitters that completed the submission after the specified date and time." }, { "name": "completed_before", "in": "query", "required": false, "schema": { "type": "string", "format": "date-time" }, "example": "2024-03-06 19:32:20", "description": "The date and time string value to filter submitters that completed the submission before the specified date and time." }, { "name": "external_id", "in": "query", "required": false, "schema": { "type": "string" }, "description": "The unique applications-specific identifier provided for a submitter when initializing a signature request. It allows you to receive only submitters with a specified external id." }, { "name": "limit", "in": "query", "required": false, "schema": { "type": "integer" }, "description": "The number of submitters to return. Default value is 10. Maximum value is 100." }, { "name": "after", "in": "query", "required": false, "schema": { "type": "integer" }, "description": "The unique identifier of the submitter to start the list from. It allows you to receive only submitters with id greater than the specified value. Pass ID value from the `pagination.next` response to load the next batch of submitters." }, { "name": "before", "in": "query", "required": false, "schema": { "type": "integer" }, "description": "The unique identifier of the submitter to end the list with. It allows you to receive only submitters with id less than the specified value." } ] } ``` ### Update template documents The API endpoint allows you to add, remove or replace documents in the template with provided PDF/DOCX file or HTML content. ```csharp var client = new RestClient("https://api.docuseal.com/templates/1000001/documents"); var request = new RestRequest("", Method.Put); request.AddHeader("X-Auth-Token", "API_KEY"); request.AddHeader("content-type", "application/json"); request.AddParameter("application/json", "{\"documents\":[{\"file\":\"string\"}]}", ParameterType.RequestBody); var response = client.Execute(request); ``` ```json { "security": [ { "AuthToken": [] } ], "tags": [ "Templates" ], "summary": "Update template documents", "operationId": "addDocumentToTemplate", "parameters": [ { "name": "id", "in": "path", "required": true, "schema": { "type": "integer" }, "description": "The unique identifier of the documents template.", "example": 1000001 } ], "requestBody": { "required": true, "content": { "application/json": { "schema": { "type": "object", "properties": { "documents": { "type": "array", "description": "The list of documents to add or replace in the template.", "items": { "type": "object", "properties": { "name": { "type": "string", "description": "Document name. Random uuid will be assigned when not specified.", "example": "Test Template" }, "file": { "type": "string", "format": "base64", "description": "Base64-encoded content of the PDF or DOCX file or downloadable file URL. Leave it empty if you create a new document using HTML param." }, "html": { "type": "string", "description": "HTML template with field tags. Leave it empty if you add a document via PDF or DOCX base64 encoded file param or URL." }, "position": { "type": "integer", "description": "Position of the document. By default will be added as the last document in the template.", "example": 0 }, "replace": { "type": "boolean", "default": false, "description": "Set to `true` to replace existing document with a new file at `position`. Existing document fields will be transferred to the new document if it doesn't contain any fields." }, "remove": { "type": "boolean", "default": false, "description": "Set to `true` to remove existing document at given `position` or with given `name`." } } } }, "merge": { "type": "boolean", "default": false, "description": "Set to `true` to merge all existing and new documents into a single PDF document in the template." } } } } } } } ``` ### Clone a template The API endpoint allows you to clone existing template into a new template. ```csharp var client = new RestClient("https://api.docuseal.com/templates/1000001/clone"); var request = new RestRequest("", Method.Post); request.AddHeader("X-Auth-Token", "API_KEY"); request.AddHeader("content-type", "application/json"); request.AddParameter("application/json", "{\"name\":\"Cloned Template\"}", ParameterType.RequestBody); var response = client.Execute(request); ``` ```json { "security": [ { "AuthToken": [] } ], "tags": [ "Templates" ], "summary": "Clone a template", "operationId": "cloneTemplate", "parameters": [ { "name": "id", "in": "path", "required": true, "schema": { "type": "integer" }, "description": "The unique identifier of the documents template.", "example": 1000001 } ], "requestBody": { "required": true, "content": { "application/json": { "schema": { "type": "object", "properties": { "name": { "type": "string", "description": "Template name. Existing name with (Clone) suffix will be used if not specified.", "example": "Cloned Template" }, "folder_name": { "type": "string", "description": "The folder's name to which the template should be cloned." }, "external_id": { "type": "string", "description": "Your application-specific unique string key to identify this template within your app." } } } } } } } ``` ### Create a template from HTML The API endpoint provides the functionality to seamlessly generate a PDF document template by utilizing the provided HTML content while incorporating pre-defined fields.
Related Guides
Create PDF document fillable form with HTML ```csharp var client = new RestClient("https://api.docuseal.com/templates/html"); var request = new RestRequest("", Method.Post); request.AddHeader("X-Auth-Token", "API_KEY"); request.AddHeader("content-type", "application/json"); request.AddParameter("application/json", "{\"html\":\"

Lorem Ipsum is simply dummy text of the\\n\\n\\nand typesetting industry

\\n\",\"name\":\"Test Template\"}", ParameterType.RequestBody); var response = client.Execute(request); ``` ```json { "security": [ { "AuthToken": [] } ], "tags": [ "Templates" ], "summary": "Create a template from HTML", "operationId": "createTemplateFromHtml", "parameters": [], "requestBody": { "required": true, "content": { "application/json": { "schema": { "type": "object", "required": [ "html" ], "properties": { "html": { "type": "string", "description": "HTML template with field tags.", "example": "

Lorem Ipsum is simply dummy text of the\n\n\nand typesetting industry

\n" }, "html_header": { "type": "string", "description": "HTML template of the header to be displayed on every page." }, "html_footer": { "type": "string", "description": "HTML template of the footer to be displayed on every page." }, "name": { "type": "string", "description": "Template name. Random uuid will be assigned when not specified.", "example": "Test Template" }, "size": { "type": "string", "default": "Letter", "description": "Page size. Letter 8.5 x 11 will be assigned when not specified.", "enum": [ "Letter", "Legal", "Tabloid", "Ledger", "A0", "A1", "A2", "A3", "A4", "A5", "A6" ], "example": "A4" }, "external_id": { "type": "string", "description": "Your application-specific unique string key to identify this template within your app. Existing template with specified `external_id` will be updated with a new HTML.", "example": "714d974e-83d8-11ee-b962-0242ac120002" }, "folder_name": { "type": "string", "description": "The folder's name to which the template should be created." }, "shared_link": { "type": "boolean", "description": "set to `true` to make the template available via a shared link. This will allow anyone with the link to create a submission from this template.", "default": true }, "documents": { "type": "array", "description": "The list of documents built from HTML. Can be used to create a template with multiple documents. Leave `documents` param empty when using a top-level `html` param for a template with a single document.", "items": { "type": "object", "required": [ "html" ], "properties": { "html": { "type": "string", "description": "HTML template with field tags.", "example": "

Lorem Ipsum is simply dummy text of the\n\n\nand typesetting industry

\n" }, "name": { "type": "string", "description": "Document name. Random uuid will be assigned when not specified.", "example": "Test Document" } } } } } } } } } } ``` ### Create a template from Word DOCX The API endpoint provides the functionality to create a fillable document template for existing Microsoft Word document. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.docuseal.com/examples/fieldtags.docx for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form ```csharp var client = new RestClient("https://api.docuseal.com/templates/docx"); var request = new RestRequest("", Method.Post); request.AddHeader("X-Auth-Token", "API_KEY"); request.AddHeader("content-type", "application/json"); request.AddParameter("application/json", "{\"name\":\"Test DOCX\",\"documents\":[{\"name\":\"string\",\"file\":\"base64\"}]}", ParameterType.RequestBody); var response = client.Execute(request); ``` ```json { "security": [ { "AuthToken": [] } ], "tags": [ "Templates" ], "summary": "Create a template from Word DOCX", "operationId": "createTemplateFromDocx", "parameters": [], "requestBody": { "required": true, "content": { "application/json": { "schema": { "type": "object", "required": [ "documents" ], "properties": { "name": { "type": "string", "description": "Name of the template", "example": "Test DOCX" }, "external_id": { "type": "string", "description": "Your application-specific unique string key to identify this template within your app. Existing template with specified `external_id` will be updated with a new document.", "example": "unique-key" }, "folder_name": { "type": "string", "description": "The folder's name to which the template should be created." }, "shared_link": { "type": "boolean", "description": "set to `true` to make the template available via a shared link. This will allow anyone with the link to create a submission from this template.", "default": true }, "documents": { "type": "array", "items": { "type": "object", "required": [ "name", "file" ], "properties": { "name": { "type": "string", "description": "Name of the document." }, "file": { "type": "string", "example": "base64", "format": "base64", "description": "Base64-encoded content of the DOCX file or downloadable file URL" }, "fields": { "description": "Fields are optional if you use {{...}} text tags to define fields in the document.", "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string", "description": "Name of the field." }, "type": { "type": "string", "description": "Type of the field (e.g., text, signature, date, initials).", "enum": [ "heading", "text", "signature", "initials", "date", "number", "image", "checkbox", "multiple", "file", "radio", "select", "cells", "stamp", "payment", "phone", "verification" ] }, "role": { "type": "string", "description": "Role name of the signer." }, "required": { "type": "boolean", "description": "Indicates if the field is required." }, "title": { "type": "string", "description": "Field title displayed to the user instead of the name, shown on the signing form. Supports Markdown." }, "description": { "type": "string", "description": "Field description displayed on the signing form. Supports Markdown." }, "areas": { "type": "array", "items": { "type": "object", "properties": { "x": { "type": "number", "description": "X-coordinate of the field area." }, "y": { "type": "number", "description": "Y-coordinate of the field area." }, "w": { "type": "number", "description": "Width of the field area." }, "h": { "type": "number", "description": "Height of the field area." }, "page": { "type": "integer", "description": "Page number of the field area. Starts from 1." }, "option": { "type": "string", "description": "Option string value for 'radio' and 'multiple' select field types." } } } }, "options": { "type": "array", "description": "An array of option values for 'select' field type.", "items": { "type": "string" }, "example": [ "Option A", "Option B" ] }, "validation": { "type": "object", "properties": { "pattern": { "type": "string", "description": "HTML field validation pattern string based on https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/pattern specification.", "example": "[A-Z]{4}" }, "message": { "type": "string", "description": "A custom error message to display on validation failure." }, "min": { "oneOf": [ { "type": "number" }, { "type": "string" } ], "description": "Minimum allowed number value or date depending on field type." }, "max": { "oneOf": [ { "type": "number" }, { "type": "string" } ], "description": "Maximum allowed number value or date depending on field type." }, "step": { "type": "number", "description": "Increment step for number field. Pass 1 to accept only integers, or 0.01 to accept decimal currency." } } }, "preferences": { "type": "object", "properties": { "font_size": { "type": "integer", "description": "Font size of the field value in pixels.", "example": 12 }, "font_type": { "type": "string", "description": "Font type of the field value.", "enum": [ "bold", "italic", "bold_italic" ] }, "font": { "type": "string", "description": "Font family of the field value.", "enum": [ "Times", "Helvetica", "Courier" ] }, "color": { "type": "string", "description": "Font color of the field value.", "enum": [ "black", "white", "blue" ], "default": "black" }, "align": { "type": "string", "description": "Horizontal alignment of the field text value.", "enum": [ "left", "center", "right" ], "default": "left" }, "valign": { "type": "string", "description": "Vertical alignment of the field text value.", "enum": [ "top", "center", "bottom" ], "default": "center" }, "format": { "type": "string", "description": "The data format for different field types.
- Date field: accepts formats such as DD/MM/YYYY (default: MM/DD/YYYY).
- Signature field: accepts drawn, typed, drawn_or_typed (default), or upload.
- Number field: accepts currency formats such as usd, eur, gbp.", "example": "DD/MM/YYYY" }, "price": { "type": "number", "description": "Price value of the payment field. Only for payment fields.", "example": 99.99 }, "currency": { "type": "string", "description": "Currency value of the payment field. Only for payment fields.", "enum": [ "USD", "EUR", "GBP", "CAD", "AUD" ], "default": "USD" }, "mask": { "description": "Set `true` to make sensitive data masked on the document.", "oneOf": [ { "type": "integer" }, { "type": "boolean" } ], "default": false } } } } } } } } } } } } } } } ``` ### Create a template from existing PDF The API endpoint provides the functionality to create a fillable document template for existing PDF file. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.docuseal.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form ```csharp var client = new RestClient("https://api.docuseal.com/templates/pdf"); var request = new RestRequest("", Method.Post); request.AddHeader("X-Auth-Token", "API_KEY"); request.AddHeader("content-type", "application/json"); request.AddParameter("application/json", "{\"name\":\"Test PDF\",\"documents\":[{\"name\":\"string\",\"file\":\"base64\",\"fields\":[{\"name\":\"string\",\"areas\":[{\"x\":0,\"y\":0,\"w\":0,\"h\":0,\"page\":1}]}]}]}", ParameterType.RequestBody); var response = client.Execute(request); ``` ```json { "security": [ { "AuthToken": [] } ], "tags": [ "Templates" ], "summary": "Create a template from existing PDF", "operationId": "createTemplateFromPdf", "parameters": [], "requestBody": { "required": true, "content": { "application/json": { "schema": { "type": "object", "required": [ "documents" ], "properties": { "name": { "type": "string", "description": "Name of the template", "example": "Test PDF" }, "folder_name": { "type": "string", "description": "The folder's name to which the template should be created." }, "external_id": { "type": "string", "description": "Your application-specific unique string key to identify this template within your app. Existing template with specified `external_id` will be updated with a new PDF.", "example": "unique-key" }, "documents": { "type": "array", "items": { "type": "object", "required": [ "name", "file" ], "properties": { "name": { "type": "string", "description": "Name of the document." }, "file": { "example": "base64", "type": "string", "format": "base64", "description": "Base64-encoded content of the PDF file or downloadable file URL." }, "fields": { "type": "array", "description": "Fields are optional if you use {{...}} text tags to define fields in the document.", "items": { "type": "object", "properties": { "name": { "type": "string", "description": "Name of the field." }, "type": { "type": "string", "description": "Type of the field (e.g., text, signature, date, initials).", "enum": [ "heading", "text", "signature", "initials", "date", "number", "image", "checkbox", "multiple", "file", "radio", "select", "cells", "stamp", "payment", "phone", "verification" ] }, "role": { "type": "string", "description": "Role name of the signer." }, "required": { "type": "boolean", "description": "Indicates if the field is required." }, "title": { "type": "string", "description": "Field title displayed to the user instead of the name, shown on the signing form. Supports Markdown." }, "description": { "type": "string", "description": "Field description displayed on the signing form. Supports Markdown." }, "areas": { "type": "array", "items": { "type": "object", "required": [ "x", "y", "w", "h", "page" ], "properties": { "x": { "type": "number", "description": "X-coordinate of the field area." }, "y": { "type": "number", "description": "Y-coordinate of the field area." }, "w": { "type": "number", "description": "Width of the field area." }, "h": { "type": "number", "description": "Height of the field area." }, "page": { "type": "integer", "description": "Page number of the field area. Starts from 1.", "example": 1 }, "option": { "type": "string", "description": "Option string value for 'radio' and 'multiple' select field types." } } } }, "options": { "type": "array", "description": "An array of option values for 'select' field type.", "items": { "type": "string" }, "example": [ "Option A", "Option B" ] }, "preferences": { "type": "object", "properties": { "font_size": { "type": "integer", "description": "Font size of the field value in pixels.", "example": 12 }, "font_type": { "type": "string", "description": "Font type of the field value.", "enum": [ "bold", "italic", "bold_italic" ] }, "font": { "type": "string", "description": "Font family of the field value.", "enum": [ "Times", "Helvetica", "Courier" ] }, "color": { "type": "string", "description": "Font color of the field value.", "enum": [ "black", "white", "blue" ], "default": "black" }, "align": { "type": "string", "description": "Horizontal alignment of the field text value.", "enum": [ "left", "center", "right" ], "default": "left" }, "valign": { "type": "string", "description": "Vertical alignment of the field text value.", "enum": [ "top", "center", "bottom" ], "default": "center" }, "format": { "type": "string", "description": "The data format for different field types.
- Date field: accepts formats such as DD/MM/YYYY (default: MM/DD/YYYY).
- Signature field: accepts drawn, typed, drawn_or_typed (default), or upload.
- Number field: accepts currency formats such as usd, eur, gbp.", "example": "DD/MM/YYYY" }, "price": { "type": "number", "description": "Price value of the payment field. Only for payment fields.", "example": 99.99 }, "currency": { "type": "string", "description": "Currency value of the payment field. Only for payment fields.", "enum": [ "USD", "EUR", "GBP", "CAD", "AUD" ], "default": "USD" }, "mask": { "description": "Set `true` to make sensitive data masked on the document.", "oneOf": [ { "type": "integer" }, { "type": "boolean" } ], "default": false } } } } } }, "flatten": { "type": "boolean", "description": "Remove PDF form fields from the document.", "default": false }, "remove_tags": { "type": "boolean", "description": "Pass `false` to disable the removal of {{text}} tags from the PDF. This can be used along with transparent text tags for faster and more robust PDF processing.", "default": true } } } } } } } } } } ``` ### Merge templates The API endpoint allows you to merge multiple templates with documents and fields into a new combined template. ```csharp var client = new RestClient("https://api.docuseal.com/templates/merge"); var request = new RestRequest("", Method.Post); request.AddHeader("X-Auth-Token", "API_KEY"); request.AddHeader("content-type", "application/json"); request.AddParameter("application/json", "{\"template_ids\":[321,432],\"name\":\"Merged Template\"}", ParameterType.RequestBody); var response = client.Execute(request); ``` ```json { "security": [ { "AuthToken": [] } ], "tags": [ "Templates" ], "summary": "Merge templates", "operationId": "mergeTemplate", "parameters": [], "requestBody": { "required": true, "content": { "application/json": { "schema": { "type": "object", "required": [ "template_ids" ], "properties": { "template_ids": { "type": "array", "description": "An array of template ids to merge into a new template.", "items": { "type": "integer" }, "example": [ 321, 432 ] }, "name": { "type": "string", "description": "Template name. Existing name with (Merged) suffix will be used if not specified.", "example": "Merged Template" }, "folder_name": { "type": "string", "description": "The name of the folder in which the merged template should be placed." }, "external_id": { "type": "string", "description": "Your application-specific unique string key to identify this template within your app." }, "shared_link": { "type": "boolean", "description": "set to `true` to make the template available via a shared link. This will allow anyone with the link to create a submission from this template.", "default": true }, "roles": { "type": "array", "description": "An array of submitter role names to be used in the merged template.", "items": { "type": "string" }, "example": [ "Agent", "Customer" ] } } } } } } } ``` ### Create a submission from PDF The API endpoint provides the functionality to create one-off submission request from a PDF. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.docuseal.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form ```csharp var client = new RestClient("https://api.docuseal.com/submissions/pdf"); var request = new RestRequest("", Method.Post); request.AddHeader("X-Auth-Token", "API_KEY"); request.AddHeader("content-type", "application/json"); request.AddParameter("application/json", "{\"name\":\"Test Submission Document\",\"documents\":[{\"name\":\"string\",\"file\":\"base64\",\"fields\":[{\"name\":\"string\",\"areas\":[{\"x\":0,\"y\":0,\"w\":0,\"h\":0,\"page\":1}]}]}],\"submitters\":[{\"role\":\"First Party\",\"email\":\"john.doe@example.com\"}]}", ParameterType.RequestBody); var response = client.Execute(request); ``` ```json { "security": [ { "AuthToken": [] } ], "tags": [ "Submissions" ], "summary": "Create a submission from PDF", "operationId": "createSubmissionFromPdf", "parameters": [], "requestBody": { "required": true, "content": { "application/json": { "schema": { "type": "object", "required": [ "documents", "submitters" ], "properties": { "name": { "type": "string", "description": "Name of the document submission.", "example": "Test Submission Document" }, "send_email": { "type": "boolean", "description": "Set `false` to disable signature request emails sending.", "default": true }, "send_sms": { "type": "boolean", "description": "Set `true` to send signature request via phone number and SMS.", "default": false }, "order": { "type": "string", "description": "Pass 'random' to send signature request emails to all parties right away. The order is 'preserved' by default so the second party will receive a signature request email only after the document is signed by the first party.", "default": "preserved", "enum": [ "preserved", "random" ] }, "completed_redirect_url": { "type": "string", "description": "Specify URL to redirect to after the submission completion." }, "bcc_completed": { "type": "string", "description": "Specify BCC address to send signed documents to after the completion." }, "reply_to": { "type": "string", "description": "Specify Reply-To address to use in the notification emails." }, "expire_at": { "type": "string", "description": "Specify the expiration date and time after which the submission becomes unavailable for signature.", "example": "2024-09-01 12:00:00 UTC" }, "template_ids": { "type": "array", "description": "An optional array of template IDs to use in the submission along with the provided documents. This can be used to create multi-document submissions when some of the required documents exist within templates.", "items": { "type": "integer", "description": "The ID of the template to use for the submission." } }, "documents": { "type": "array", "items": { "type": "object", "required": [ "name", "file" ], "properties": { "name": { "type": "string", "description": "Name of the document." }, "file": { "example": "base64", "type": "string", "format": "base64", "description": "Base64-encoded content of the PDF file or downloadable file URL." }, "fields": { "type": "array", "description": "Fields are optional if you use {{...}} text tags to define fields in the document.", "items": { "type": "object", "properties": { "name": { "type": "string", "description": "Name of the field." }, "type": { "type": "string", "description": "Type of the field (e.g., text, signature, date, initials).", "enum": [ "heading", "text", "signature", "initials", "date", "number", "image", "checkbox", "multiple", "file", "radio", "select", "cells", "stamp", "payment", "phone", "verification" ] }, "role": { "type": "string", "description": "Role name of the signer." }, "required": { "type": "boolean", "description": "Indicates if the field is required." }, "title": { "type": "string", "description": "Field title displayed to the user instead of the name, shown on the signing form. Supports Markdown." }, "description": { "type": "string", "description": "Field description displayed on the signing form. Supports Markdown." }, "areas": { "type": "array", "items": { "type": "object", "required": [ "x", "y", "w", "h", "page" ], "properties": { "x": { "type": "number", "description": "X-coordinate of the field area." }, "y": { "type": "number", "description": "Y-coordinate of the field area." }, "w": { "type": "number", "description": "Width of the field area." }, "h": { "type": "number", "description": "Height of the field area." }, "page": { "type": "integer", "description": "Page number of the field area. Starts from 1.", "example": 1 }, "option": { "type": "string", "description": "Option string value for 'radio' and 'multiple' select field types." } } } }, "options": { "type": "array", "description": "An array of option values for 'select' field type.", "items": { "type": "string" }, "example": [ "Option A", "Option B" ] } } } }, "position": { "type": "integer", "description": "Document position in the submission. If not specified, the document will be added in the order it appears in the documents array." } } } }, "submitters": { "type": "array", "description": "The list of submitters for the submission.", "items": { "type": "object", "required": [ "email" ], "properties": { "name": { "type": "string", "description": "The name of the submitter." }, "role": { "type": "string", "description": "The role name or title of the submitter.", "example": "First Party" }, "email": { "type": "string", "description": "The email address of the submitter.", "format": "email", "example": "john.doe@example.com" }, "phone": { "type": "string", "description": "The phone number of the submitter, formatted according to the E.164 standard.", "example": "+1234567890" }, "values": { "type": "object", "description": "An object with pre-filled values for the submission. Use field names for keys of the object. For more configurations see `fields` param." }, "external_id": { "type": "string", "description": "Your application-specific unique string key to identify this submitter within your app." }, "completed": { "type": "boolean", "description": "Pass `true` to mark submitter as completed and auto-signed via API." }, "metadata": { "type": "object", "description": "Metadata object with additional submitter information.", "example": "{ \"customField\": \"value\" }" }, "send_email": { "type": "boolean", "description": "Set `false` to disable signature request emails sending only for this submitter.", "default": true }, "send_sms": { "type": "boolean", "description": "Set `true` to send signature request via phone number and SMS.", "default": false }, "reply_to": { "type": "string", "description": "Specify Reply-To address to use in the notification emails for this submitter." }, "completed_redirect_url": { "type": "string", "description": "Submitter specific URL to redirect to after the submission completion." }, "order": { "type": "integer", "description": "The order of the submitter in the workflow (e.g., 0 for the first signer, 1 for the second, etc.). Use the same order number to create order groups. By default, submitters are ordered as in the submitters array." }, "require_phone_2fa": { "type": "boolean", "description": "Set to `true` to require phone 2FA verification via a one-time code sent to the phone number in order to access the documents.", "default": false }, "fields": { "type": "array", "description": "A list of configurations for document form fields.", "items": { "type": "object", "required": [ "name" ], "properties": { "name": { "type": "string", "description": "Document field name.", "example": "First Name" }, "default_value": { "oneOf": [ { "type": "string" }, { "type": "number" }, { "type": "boolean" }, { "type": "array", "items": { "oneOf": [ { "type": "string" }, { "type": "number" }, { "type": "boolean" } ] } } ], "description": "Default value of the field. Use base64 encoded file or a public URL to the image file to set default signature or image fields.", "example": "Acme" }, "readonly": { "type": "boolean", "description": "Set `true` to make it impossible for the submitter to edit predefined field value.", "default": false }, "required": { "type": "boolean", "description": "Set `true` to make the field required." }, "title": { "type": "string", "description": "Field title displayed to the user instead of the name, shown on the signing form. Supports Markdown." }, "description": { "type": "string", "description": "Field description displayed on the signing form. Supports Markdown." }, "validation": { "type": "object", "properties": { "pattern": { "type": "string", "description": "HTML field validation pattern string based on https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/pattern specification.", "example": "[A-Z]{4}" }, "message": { "type": "string", "description": "A custom error message to display on validation failure." }, "min": { "oneOf": [ { "type": "number" }, { "type": "string" } ], "description": "Minimum allowed number value or date depending on field type." }, "max": { "oneOf": [ { "type": "number" }, { "type": "string" } ], "description": "Maximum allowed number value or date depending on field type." }, "step": { "type": "number", "description": "Increment step for number field. Pass 1 to accept only integers, or 0.01 to accept decimal currency." } } }, "preferences": { "type": "object", "properties": { "font_size": { "type": "integer", "description": "Font size of the field value in pixels.", "example": 12 }, "font_type": { "type": "string", "description": "Font type of the field value.", "enum": [ "bold", "italic", "bold_italic" ] }, "font": { "type": "string", "description": "Font family of the field value.", "enum": [ "Times", "Helvetica", "Courier" ] }, "color": { "type": "string", "description": "Font color of the field value.", "enum": [ "black", "white", "blue" ], "default": "black" }, "align": { "type": "string", "description": "Horizontal alignment of the field text value.", "enum": [ "left", "center", "right" ], "default": "left" }, "valign": { "type": "string", "description": "Vertical alignment of the field text value.", "enum": [ "top", "center", "bottom" ], "default": "center" }, "format": { "type": "string", "description": "The data format for different field types.
- Date field: accepts formats such as DD/MM/YYYY (default: MM/DD/YYYY).
- Signature field: accepts drawn, typed, drawn_or_typed (default), or upload.
- Number field: accepts currency formats such as usd, eur, gbp.", "example": "DD/MM/YYYY" }, "price": { "type": "number", "description": "Price value of the payment field. Only for payment fields.", "example": 99.99 }, "currency": { "type": "string", "description": "Currency value of the payment field. Only for payment fields.", "enum": [ "USD", "EUR", "GBP", "CAD", "AUD" ], "default": "USD" }, "mask": { "description": "Set `true` to make sensitive data masked on the document.", "oneOf": [ { "type": "integer" }, { "type": "boolean" } ], "default": false } } } } } }, "roles": { "type": "array", "description": "A list of roles for the submitter. Use this param to merge multiple roles into one submitter.", "items": { "type": "string" } } } } }, "message": { "type": "object", "properties": { "subject": { "type": "string", "description": "Custom signature request email subject." }, "body": { "type": "string", "description": "Custom signature request email body. Can include the following variables: {{submission.name}}, {{submitter.link}}, {{account.name}}." } } }, "flatten": { "type": "boolean", "description": "Remove PDF form fields from the documents.", "default": false }, "merge_documents": { "type": "boolean", "description": "Set `true` to merge the documents into a single PDF file.", "default": false }, "remove_tags": { "type": "boolean", "description": "Pass `false` to disable the removal of {{text}} tags from the PDF. This can be used along with transparent text tags for faster and more robust PDF processing.", "default": true } } } } } } } ``` ### Create a submission from HTML This API endpoint allows you to create a one-off submission request document using the provided HTML content, with special field tags rendered as a fillable and signable form.
Related Guides
Create PDF document fillable form with HTML ```csharp var client = new RestClient("https://api.docuseal.com/submissions/html"); var request = new RestRequest("", Method.Post); request.AddHeader("X-Auth-Token", "API_KEY"); request.AddHeader("content-type", "application/json"); request.AddParameter("application/json", "{\"name\":\"Test Submission Document\",\"documents\":[{\"name\":\"Test Document\",\"html\":\"

Lorem Ipsum is simply dummy text of the\\n\\n\\nand typesetting industry

\\n\"}],\"submitters\":[{\"role\":\"First Party\",\"email\":\"john.doe@example.com\"}]}", ParameterType.RequestBody); var response = client.Execute(request); ``` ```json { "security": [ { "AuthToken": [] } ], "tags": [ "Submissions" ], "summary": "Create a submission from HTML", "operationId": "createSubmissionFromHtml", "parameters": [], "requestBody": { "required": true, "content": { "application/json": { "schema": { "type": "object", "required": [ "documents", "submitters" ], "properties": { "name": { "type": "string", "description": "Name of the document submission", "example": "Test Submission Document" }, "send_email": { "type": "boolean", "description": "Set `false` to disable signature request emails sending.", "default": true }, "send_sms": { "type": "boolean", "description": "Set `true` to send signature request via phone number and SMS.", "default": false }, "order": { "type": "string", "description": "Pass 'random' to send signature request emails to all parties right away. The order is 'preserved' by default so the second party will receive a signature request email only after the document is signed by the first party.", "default": "preserved", "enum": [ "preserved", "random" ] }, "completed_redirect_url": { "type": "string", "description": "Specify URL to redirect to after the submission completion." }, "bcc_completed": { "type": "string", "description": "Specify BCC address to send signed documents to after the completion." }, "reply_to": { "type": "string", "description": "Specify Reply-To address to use in the notification emails." }, "expire_at": { "type": "string", "description": "Specify the expiration date and time after which the submission becomes unavailable for signature.", "example": "2024-09-01 12:00:00 UTC" }, "template_ids": { "type": "array", "description": "An optional array of template IDs to use in the submission along with the provided documents. This can be used to create multi-document submissions when some of the required documents exist within templates.", "items": { "type": "integer", "description": "The ID of the template to use for the submission." } }, "documents": { "type": "array", "description": "The list of documents built from HTML. Can be used to create a submission with multiple documents.", "items": { "type": "object", "required": [ "html" ], "properties": { "name": { "type": "string", "description": "Document name. Random uuid will be assigned when not specified.", "example": "Test Document" }, "html": { "type": "string", "description": "HTML document content with field tags.", "example": "

Lorem Ipsum is simply dummy text of the\n\n\nand typesetting industry

\n" }, "html_header": { "type": "string", "description": "HTML document content of the header to be displayed on every page." }, "html_footer": { "type": "string", "description": "HTML document content of the footer to be displayed on every page." }, "size": { "type": "string", "default": "Letter", "description": "Page size. Letter 8.5 x 11 will be assigned when not specified.", "enum": [ "Letter", "Legal", "Tabloid", "Ledger", "A0", "A1", "A2", "A3", "A4", "A5", "A6" ], "example": "A4" }, "position": { "type": "integer", "description": "Document position in the submission. If not specified, the document will be added in the order it appears in the documents array." } } } }, "submitters": { "type": "array", "description": "The list of submitters for the submission.", "items": { "type": "object", "required": [ "email" ], "properties": { "name": { "type": "string", "description": "The name of the submitter." }, "role": { "type": "string", "description": "The role name or title of the submitter.", "example": "First Party" }, "email": { "type": "string", "description": "The email address of the submitter.", "format": "email", "example": "john.doe@example.com" }, "phone": { "type": "string", "description": "The phone number of the submitter, formatted according to the E.164 standard.", "example": "+1234567890" }, "values": { "type": "object", "description": "An object with pre-filled values for the submission. Use field names for keys of the object. For more configurations see `fields` param." }, "external_id": { "type": "string", "description": "Your application-specific unique string key to identify this submitter within your app." }, "completed": { "type": "boolean", "description": "Pass `true` to mark submitter as completed and auto-signed via API." }, "metadata": { "type": "object", "description": "Metadata object with additional submitter information.", "example": "{ \"customField\": \"value\" }" }, "send_email": { "type": "boolean", "description": "Set `false` to disable signature request emails sending only for this submitter.", "default": true }, "send_sms": { "type": "boolean", "description": "Set `true` to send signature request via phone number and SMS.", "default": false }, "reply_to": { "type": "string", "description": "Specify Reply-To address to use in the notification emails for this submitter." }, "completed_redirect_url": { "type": "string", "description": "Submitter specific URL to redirect to after the submission completion." }, "order": { "type": "integer", "description": "The order of the submitter in the workflow (e.g., 0 for the first signer, 1 for the second, etc.). Use the same order number to create order groups. By default, submitters are ordered as in the submitters array." }, "require_phone_2fa": { "type": "boolean", "description": "Set to `true` to require phone 2FA verification via a one-time code sent to the phone number in order to access the documents.", "default": false }, "fields": { "type": "array", "description": "A list of configurations for document form fields.", "items": { "type": "object", "required": [ "name" ], "properties": { "name": { "type": "string", "description": "Document field name.", "example": "First Name" }, "default_value": { "oneOf": [ { "type": "string" }, { "type": "number" }, { "type": "boolean" }, { "type": "array", "items": { "oneOf": [ { "type": "string" }, { "type": "number" }, { "type": "boolean" } ] } } ], "description": "Default value of the field. Use base64 encoded file or a public URL to the image file to set default signature or image fields.", "example": "Acme" }, "readonly": { "type": "boolean", "description": "Set `true` to make it impossible for the submitter to edit predefined field value.", "default": false }, "required": { "type": "boolean", "description": "Set `true` to make the field required." }, "title": { "type": "string", "description": "Field title displayed to the user instead of the name, shown on the signing form. Supports Markdown." }, "description": { "type": "string", "description": "Field description displayed on the signing form. Supports Markdown." }, "validation": { "type": "object", "properties": { "pattern": { "type": "string", "description": "HTML field validation pattern string based on https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/pattern specification.", "example": "[A-Z]{4}" }, "message": { "type": "string", "description": "A custom error message to display on validation failure." }, "min": { "oneOf": [ { "type": "number" }, { "type": "string" } ], "description": "Minimum allowed number value or date depending on field type." }, "max": { "oneOf": [ { "type": "number" }, { "type": "string" } ], "description": "Maximum allowed number value or date depending on field type." }, "step": { "type": "number", "description": "Increment step for number field. Pass 1 to accept only integers, or 0.01 to accept decimal currency." } } }, "preferences": { "type": "object", "properties": { "font_size": { "type": "integer", "description": "Font size of the field value in pixels.", "example": 12 }, "font_type": { "type": "string", "description": "Font type of the field value.", "enum": [ "bold", "italic", "bold_italic" ] }, "font": { "type": "string", "description": "Font family of the field value.", "enum": [ "Times", "Helvetica", "Courier" ] }, "color": { "type": "string", "description": "Font color of the field value.", "enum": [ "black", "white", "blue" ], "default": "black" }, "align": { "type": "string", "description": "Horizontal alignment of the field text value.", "enum": [ "left", "center", "right" ], "default": "left" }, "valign": { "type": "string", "description": "Vertical alignment of the field text value.", "enum": [ "top", "center", "bottom" ], "default": "center" }, "format": { "type": "string", "description": "The data format for different field types.
- Date field: accepts formats such as DD/MM/YYYY (default: MM/DD/YYYY).
- Signature field: accepts drawn, typed, drawn_or_typed (default), or upload.
- Number field: accepts currency formats such as usd, eur, gbp.", "example": "DD/MM/YYYY" }, "price": { "type": "number", "description": "Price value of the payment field. Only for payment fields.", "example": 99.99 }, "currency": { "type": "string", "description": "Currency value of the payment field. Only for payment fields.", "enum": [ "USD", "EUR", "GBP", "CAD", "AUD" ], "default": "USD" }, "mask": { "description": "Set `true` to make sensitive data masked on the document.", "oneOf": [ { "type": "integer" }, { "type": "boolean" } ], "default": false } } } } } }, "roles": { "type": "array", "description": "A list of roles for the submitter. Use this param to merge multiple roles into one submitter.", "items": { "type": "string" } } } } }, "message": { "type": "object", "properties": { "subject": { "type": "string", "description": "Custom signature request email subject." }, "body": { "type": "string", "description": "Custom signature request email body. Can include the following variables: {{submission.name}}, {{submitter.link}}, {{account.name}}." } } }, "merge_documents": { "type": "boolean", "description": "Set `true` to merge the documents into a single PDF file.", "default": false } } } } } } } ``` ### Create a template from PDF The API endpoint provides the functionality to create a fillable document template for a PDF file. Use {{Field Name;role=Signer1;type=date}} text tags to define fillable fields in the document. See https://www.docuseal.com/examples/fieldtags.pdf for more text tag formats. Or specify the exact pixel coordinates of the document fields using `fields` param.
Related Guides
Use embedded text field tags to create a fillable form ```csharp var client = new RestClient("https://api.docuseal.com/templates/pdf"); var request = new RestRequest("", Method.Post); request.AddHeader("X-Auth-Token", "API_KEY"); request.AddHeader("content-type", "application/json"); request.AddParameter("application/json", "{\"name\":\"Test PDF\",\"documents\":[{\"name\":\"string\",\"file\":\"base64\",\"fields\":[{\"name\":\"string\",\"areas\":[{\"x\":0,\"y\":0,\"w\":0,\"h\":0,\"page\":1}]}]}]}", ParameterType.RequestBody); var response = client.Execute(request); ``` ```json { "security": [ { "AuthToken": [] } ], "tags": [ "Templates" ], "summary": "Create a template from PDF", "operationId": "createTemplateFromPdf", "parameters": [], "requestBody": { "required": true, "content": { "application/json": { "schema": { "type": "object", "required": [ "documents" ], "properties": { "name": { "type": "string", "description": "Name of the template", "example": "Test PDF" }, "folder_name": { "type": "string", "description": "The folder's name to which the template should be created." }, "external_id": { "type": "string", "description": "Your application-specific unique string key to identify this template within your app. Existing template with specified `external_id` will be updated with a new PDF.", "example": "unique-key" }, "shared_link": { "type": "boolean", "description": "set to `true` to make the template available via a shared link. This will allow anyone with the link to create a submission from this template.", "default": true }, "documents": { "type": "array", "items": { "type": "object", "required": [ "name", "file" ], "properties": { "name": { "type": "string", "description": "Name of the document." }, "file": { "example": "base64", "type": "string", "format": "base64", "description": "Base64-encoded content of the PDF file or downloadable file URL." }, "fields": { "type": "array", "description": "Fields are optional if you use {{...}} text tags to define fields in the document.", "items": { "type": "object", "properties": { "name": { "type": "string", "description": "Name of the field." }, "type": { "type": "string", "description": "Type of the field (e.g., text, signature, date, initials).", "enum": [ "heading", "text", "signature", "initials", "date", "number", "image", "checkbox", "multiple", "file", "radio", "select", "cells", "stamp", "payment", "phone", "verification" ] }, "role": { "type": "string", "description": "Role name of the signer." }, "required": { "type": "boolean", "description": "Indicates if the field is required." }, "title": { "type": "string", "description": "Field title displayed to the user instead of the name, shown on the signing form. Supports Markdown." }, "description": { "type": "string", "description": "Field description displayed on the signing form. Supports Markdown." }, "areas": { "type": "array", "items": { "type": "object", "required": [ "x", "y", "w", "h", "page" ], "properties": { "x": { "type": "number", "description": "X-coordinate of the field area." }, "y": { "type": "number", "description": "Y-coordinate of the field area." }, "w": { "type": "number", "description": "Width of the field area." }, "h": { "type": "number", "description": "Height of the field area." }, "page": { "type": "integer", "description": "Page number of the field area. Starts from 1.", "example": 1 }, "option": { "type": "string", "description": "Option string value for 'radio' and 'multiple' select field types." } } } }, "options": { "type": "array", "description": "An array of option values for 'select' field type.", "items": { "type": "string" }, "example": [ "Option A", "Option B" ] }, "validation": { "type": "object", "properties": { "pattern": { "type": "string", "description": "HTML field validation pattern string based on https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/pattern specification.", "example": "[A-Z]{4}" }, "message": { "type": "string", "description": "A custom error message to display on validation failure." }, "min": { "oneOf": [ { "type": "number" }, { "type": "string" } ], "description": "Minimum allowed number value or date depending on field type." }, "max": { "oneOf": [ { "type": "number" }, { "type": "string" } ], "description": "Maximum allowed number value or date depending on field type." }, "step": { "type": "number", "description": "Increment step for number field. Pass 1 to accept only integers, or 0.01 to accept decimal currency." } } }, "preferences": { "type": "object", "properties": { "font_size": { "type": "integer", "description": "Font size of the field value in pixels.", "example": 12 }, "font_type": { "type": "string", "description": "Font type of the field value.", "enum": [ "bold", "italic", "bold_italic" ] }, "font": { "type": "string", "description": "Font family of the field value.", "enum": [ "Times", "Helvetica", "Courier" ] }, "color": { "type": "string", "description": "Font color of the field value.", "enum": [ "black", "white", "blue" ], "default": "black" }, "align": { "type": "string", "description": "Horizontal alignment of the field text value.", "enum": [ "left", "center", "right" ], "default": "left" }, "valign": { "type": "string", "description": "Vertical alignment of the field text value.", "enum": [ "top", "center", "bottom" ], "default": "center" }, "format": { "type": "string", "description": "The data format for different field types.
- Date field: accepts formats such as DD/MM/YYYY (default: MM/DD/YYYY).
- Signature field: accepts drawn, typed, drawn_or_typed (default), or upload.
- Number field: accepts currency formats such as usd, eur, gbp.", "example": "DD/MM/YYYY" }, "price": { "type": "number", "description": "Price value of the payment field. Only for payment fields.", "example": 99.99 }, "currency": { "type": "string", "description": "Currency value of the payment field. Only for payment fields.", "enum": [ "USD", "EUR", "GBP", "CAD", "AUD" ], "default": "USD" }, "mask": { "description": "Set `true` to make sensitive data masked on the document.", "oneOf": [ { "type": "integer" }, { "type": "boolean" } ], "default": false } } } } } } } } }, "flatten": { "type": "boolean", "description": "Remove PDF form fields from the documents.", "default": false }, "remove_tags": { "type": "boolean", "description": "Pass `false` to disable the removal of {{text}} tags from the PDF. This can be used along with transparent text tags for faster and more robust PDF processing.", "default": true } } } } } } } ``` ### Create a submission from DOCX The API endpoint provides functionality to create a one-off submission request from a DOCX file with dynamic content variables. Use [[variable_name]] text tags to define dynamic content variables in the document. See https://www.docuseal.com/examples/demo_template.docx for the specific text variable syntax, including dynamic content tables and list. You can also use the {{signature}} fillable field syntax to define fillable fields, as in a PDF.
Related Guides
Use embedded text field tags to create a fillable form ```csharp var client = new RestClient("https://api.docuseal.com/submissions/docx"); var request = new RestRequest("", Method.Post); request.AddHeader("X-Auth-Token", "API_KEY"); request.AddHeader("content-type", "application/json"); request.AddParameter("application/json", "{\"name\":\"Test Submission Document\",\"variables\":{\"variable_name\":\"value\"},\"documents\":[{\"name\":\"string\",\"file\":\"base64\"}],\"submitters\":[{\"role\":\"First Party\",\"email\":\"john.doe@example.com\"}]}", ParameterType.RequestBody); var response = client.Execute(request); ``` ```json { "security": [ { "AuthToken": [] } ], "tags": [ "Submissions" ], "summary": "Create a submission from DOCX", "operationId": "createSubmissionFromDocx", "parameters": [], "requestBody": { "required": true, "content": { "application/json": { "schema": { "type": "object", "required": [ "documents", "submitters" ], "properties": { "name": { "type": "string", "description": "Name of the document submission.", "example": "Test Submission Document" }, "send_email": { "type": "boolean", "description": "Set `false` to disable signature request emails sending.", "default": true }, "send_sms": { "type": "boolean", "description": "Set `true` to send signature request via phone number and SMS.", "default": false }, "variables": { "type": "object", "description": "Dynamic content variables object", "example": { "variable_name": "value" } }, "order": { "type": "string", "description": "Pass 'random' to send signature request emails to all parties right away. The order is 'preserved' by default so the second party will receive a signature request email only after the document is signed by the first party.", "default": "preserved", "enum": [ "preserved", "random" ] }, "completed_redirect_url": { "type": "string", "description": "Specify URL to redirect to after the submission completion." }, "bcc_completed": { "type": "string", "description": "Specify BCC address to send signed documents to after the completion." }, "reply_to": { "type": "string", "description": "Specify Reply-To address to use in the notification emails." }, "expire_at": { "type": "string", "description": "Specify the expiration date and time after which the submission becomes unavailable for signature.", "example": "2024-09-01 12:00:00 UTC" }, "template_ids": { "type": "array", "description": "An optional array of template IDs to use in the submission along with the provided documents. This can be used to create multi-document submissions when some of the required documents exist within templates.", "items": { "type": "integer", "description": "The ID of the template to use for the submission." } }, "documents": { "type": "array", "items": { "type": "object", "required": [ "name", "file" ], "properties": { "name": { "type": "string", "description": "Name of the document." }, "file": { "example": "base64", "type": "string", "format": "base64", "description": "Base64-encoded content of the PDF or DOCX file or downloadable file URL." }, "position": { "type": "integer", "description": "Document position in the submission. If not specified, the document will be added in the order it appears in the documents array." } } } }, "submitters": { "type": "array", "description": "The list of submitters for the submission.", "items": { "type": "object", "required": [ "email" ], "properties": { "name": { "type": "string", "description": "The name of the submitter." }, "role": { "type": "string", "description": "The role name or title of the submitter.", "example": "First Party" }, "email": { "type": "string", "description": "The email address of the submitter.", "format": "email", "example": "john.doe@example.com" }, "phone": { "type": "string", "description": "The phone number of the submitter, formatted according to the E.164 standard.", "example": "+1234567890" }, "values": { "type": "object", "description": "An object with pre-filled values for the submission. Use field names for keys of the object. For more configurations see `fields` param." }, "external_id": { "type": "string", "description": "Your application-specific unique string key to identify this submitter within your app." }, "completed": { "type": "boolean", "description": "Pass `true` to mark submitter as completed and auto-signed via API." }, "metadata": { "type": "object", "description": "Metadata object with additional submitter information.", "example": "{ \"customField\": \"value\" }" }, "send_email": { "type": "boolean", "description": "Set `false` to disable signature request emails sending only for this submitter.", "default": true }, "send_sms": { "type": "boolean", "description": "Set `true` to send signature request via phone number and SMS.", "default": false }, "reply_to": { "type": "string", "description": "Specify Reply-To address to use in the notification emails for this submitter." }, "completed_redirect_url": { "type": "string", "description": "Submitter specific URL to redirect to after the submission completion." }, "order": { "type": "integer", "description": "The order of the submitter in the workflow (e.g., 0 for the first signer, 1 for the second, etc.). Use the same order number to create order groups. By default, submitters are ordered as in the submitters array." }, "require_phone_2fa": { "type": "boolean", "description": "Set to `true` to require phone 2FA verification via a one-time code sent to the phone number in order to access the documents.", "default": false }, "fields": { "type": "array", "description": "A list of configurations for document form fields.", "items": { "type": "object", "required": [ "name" ], "properties": { "name": { "type": "string", "description": "Document field name.", "example": "First Name" }, "default_value": { "oneOf": [ { "type": "string" }, { "type": "number" }, { "type": "boolean" }, { "type": "array", "items": { "oneOf": [ { "type": "string" }, { "type": "number" }, { "type": "boolean" } ] } } ], "description": "Default value of the field. Use base64 encoded file or a public URL to the image file to set default signature or image fields.", "example": "Acme" }, "readonly": { "type": "boolean", "description": "Set `true` to make it impossible for the submitter to edit predefined field value.", "default": false }, "required": { "type": "boolean", "description": "Set `true` to make the field required." }, "title": { "type": "string", "description": "Field title displayed to the user instead of the name, shown on the signing form. Supports Markdown." }, "description": { "type": "string", "description": "Field description displayed on the signing form. Supports Markdown." }, "validation": { "type": "object", "properties": { "pattern": { "type": "string", "description": "HTML field validation pattern string based on https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/pattern specification.", "example": "[A-Z]{4}" }, "message": { "type": "string", "description": "A custom error message to display on validation failure." }, "min": { "oneOf": [ { "type": "number" }, { "type": "string" } ], "description": "Minimum allowed number value or date depending on field type." }, "max": { "oneOf": [ { "type": "number" }, { "type": "string" } ], "description": "Maximum allowed number value or date depending on field type." }, "step": { "type": "number", "description": "Increment step for number field. Pass 1 to accept only integers, or 0.01 to accept decimal currency." } } }, "preferences": { "type": "object", "properties": { "font_size": { "type": "integer", "description": "Font size of the field value in pixels.", "example": 12 }, "font_type": { "type": "string", "description": "Font type of the field value.", "enum": [ "bold", "italic", "bold_italic" ] }, "font": { "type": "string", "description": "Font family of the field value.", "enum": [ "Times", "Helvetica", "Courier" ] }, "color": { "type": "string", "description": "Font color of the field value.", "enum": [ "black", "white", "blue" ], "default": "black" }, "align": { "type": "string", "description": "Horizontal alignment of the field text value.", "enum": [ "left", "center", "right" ], "default": "left" }, "valign": { "type": "string", "description": "Vertical alignment of the field text value.", "enum": [ "top", "center", "bottom" ], "default": "center" }, "format": { "type": "string", "description": "The data format for different field types.
- Date field: accepts formats such as DD/MM/YYYY (default: MM/DD/YYYY).
- Signature field: accepts drawn, typed, drawn_or_typed (default), or upload.
- Number field: accepts currency formats such as usd, eur, gbp.", "example": "DD/MM/YYYY" }, "price": { "type": "number", "description": "Price value of the payment field. Only for payment fields.", "example": 99.99 }, "currency": { "type": "string", "description": "Currency value of the payment field. Only for payment fields.", "enum": [ "USD", "EUR", "GBP", "CAD", "AUD" ], "default": "USD" }, "mask": { "description": "Set `true` to make sensitive data masked on the document.", "oneOf": [ { "type": "integer" }, { "type": "boolean" } ], "default": false } } } } } }, "roles": { "type": "array", "description": "A list of roles for the submitter. Use this param to merge multiple roles into one submitter.", "items": { "type": "string" } } } } }, "message": { "type": "object", "properties": { "subject": { "type": "string", "description": "Custom signature request email subject." }, "body": { "type": "string", "description": "Custom signature request email body. Can include the following variables: {{submission.name}}, {{submitter.link}}, {{account.name}}." } } }, "merge_documents": { "type": "boolean", "description": "Set `true` to merge the documents into a single PDF file.", "default": false }, "remove_tags": { "type": "boolean", "description": "Pass `false` to disable the removal of {{text}} tags from the PDF. This can be used along with transparent text tags for faster and more robust PDF processing.", "default": true } } } } } } } ```