Skip to main content

DocuSeal Python API client

Project description

DocuSeal Python

The DocuSeal Python library provides seamless integration with the DocuSeal API, allowing developers to interact with DocuSeal's electronic signature and document management features directly within Python applications. This library is designed to simplify API interactions and provide tools for efficient implementation.

Documentation

Detailed documentation is available at DocuSeal API Docs.

Requirements

Python 3.5 and later.

Installation

pip install --upgrade docuseal

Install from source with:

python setup.py install

Usage

Configuration

Set up the library with your DocuSeal API key based on your deployment. Retrieve your API key from the appropriate location:

Global Cloud

API keys for the global cloud can be obtained from your Global DocuSeal Console.

from docuseal import docuseal

docuseal.key = "API_KEY"

EU Cloud

API keys for the EU cloud can be obtained from your EU DocuSeal Console.

from docuseal import docuseal

docuseal.key = "API_KEY"
docuseal.url = "https://api.docuseal.eu"

On-Premises

For on-premises installations, API keys can be retrieved from the API settings page of your deployed application, e.g., https://yourdocusealapp.com/settings/api.

from docuseal import docuseal

docuseal.key = "API_KEY"
docuseal.url = "https://yourdocusealapp.com/api"

API Methods

list_submissions(params)

Documentation

Provides the ability to retrieve a list of available submissions.

docuseal.list_submissions({ "limit": 10 })

get_submission(id)

Documentation

Provides the functionality to retrieve information about a submission.

docuseal.get_submission(1001)

get_submission_documents(id)

Documentation

This endpoint returns a list of partially filled documents for a submission. If the submission has been completed, the final signed documents are returned.

docuseal.get_submission_documents(1001)

create_submission(data)

Documentation

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

docuseal.create_submission({
  "template_id": 1000001,
  "send_email": True,
  "submitters": [
    {
      "role": "First Party",
      "email": "john.doe@example.com"
    }
  ]
})

create_submission_from_pdf(data)

Documentation

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

docuseal.create_submission_from_pdf({
  "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"
    }
  ]
})

create_submission_from_docx(data)

Documentation

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

docuseal.create_submission_from_docx({
  "name": "Test Submission Document",
  "variables": {
    "variable_name": "value"
  },
  "documents": [
    {
      "name": "string",
      "file": "base64"
    }
  ],
  "submitters": [
    {
      "role": "First Party",
      "email": "john.doe@example.com"
    }
  ]
})

create_submission_from_html(data)

Documentation

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

docuseal.create_submission_from_html({
  "name": "Test Submission Document",
  "documents": [
    {
      "name": "Test Document",
      "html": """<p>Lorem Ipsum is simply dummy text of the
<text-field
  name=\"Industry\"
  role=\"First Party\"
  required=\"false\"
  style=\"width: 80px; height: 16px; display: inline-block; margin-bottom: -4px\">
</text-field>
and typesetting industry</p>
"""
    }
  ],
  "submitters": [
    {
      "role": "First Party",
      "email": "john.doe@example.com"
    }
  ]
})

archive_submission(id)

Documentation

Allows you to archive a submission.

docuseal.archive_submission(1001)

list_submissions(params)

Documentation

Provides the ability to retrieve a list of submitters.

docuseal.list_submissions({ "limit": 10 })

get_submitter(id)

Documentation

Provides functionality to retrieve information about a submitter, along with the submitter documents and field values.

docuseal.get_submitter(500001)

update_submitter(id, data)

Documentation

Allows you to update submitter details, pre-fill or update field values and re-send emails.

Related Guides:
Automatically sign documents via API

docuseal.update_submitter(500001, {
  "email": "john.doe@example.com",
  "fields": [
    {
      "name": "First Name",
      "default_value": "Acme"
    }
  ]
})

list_submissions(params)

Documentation

Provides the ability to retrieve a list of available document templates.

docuseal.list_submissions({ "limit": 10 })

get_template(id)

Documentation

Provides the functionality to retrieve information about a document template.

docuseal.get_template(1000001)

create_template_from_pdf(data)

Documentation

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

docuseal.create_template_from_pdf({
  "name": "Test PDF",
  "documents": [
    {
      "name": "string",
      "file": "base64",
      "fields": [
        {
          "name": "string",
          "areas": [
            {
              "x": 0,
              "y": 0,
              "w": 0,
              "h": 0,
              "page": 1
            }
          ]
        }
      ]
    }
  ]
})

create_template_from_docx(data)

Documentation

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

docuseal.create_template_from_docx({
  "name": "Test DOCX",
  "documents": [
    {
      "name": "string",
      "file": "base64"
    }
  ]
})

create_template_from_html(data)

Documentation

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

docuseal.create_template_from_html({
  "html": """<p>Lorem Ipsum is simply dummy text of the
<text-field
  name=\"Industry\"
  role=\"First Party\"
  required=\"false\"
  style=\"width: 80px; height: 16px; display: inline-block; margin-bottom: -4px\">
</text-field>
and typesetting industry</p>
""",
  "name": "Test Template"
})

clone_template(id, data)

Documentation

Allows you to clone existing template into a new template.

docuseal.clone_template(1000001, {
  "name": "Cloned Template"
})

merge_templates(data)

Documentation

Allows you to merge multiple templates with documents and fields into a new combined template.

docuseal.merge_templates({
  "template_ids": [
    321,
    432
  ],
  "name": "Merged Template"
})

update_template(id, data)

Documentation

Provides the functionality to move a document template to a different folder and update the name of the template.

docuseal.update_template(1000001, {
  "name": "New Document Name",
  "folder_name": "New Folder"
})

update_template_documents(id, data)

Documentation

Allows you to add, remove or replace documents in the template with provided PDF/DOCX file or HTML content.

docuseal.update_template_documents(1000001, {
  "documents": [
    {
      "file": "string"
    }
  ]
})

archive_template(id)

Documentation

Allows you to archive a document template.

docuseal.archive_template(1000001)

Configuring Timeouts

Set timeouts to avoid hanging requests:

docuseal.open_timeout = 30
docuseal.read_timeout = 30

Support

For feature requests or bug reports, visit our GitHub Issues page.

License

The gem is available as open source under the terms of the MIT License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

docuseal-1.0.8.tar.gz (9.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

docuseal-1.0.8-py3-none-any.whl (7.3 kB view details)

Uploaded Python 3

File details

Details for the file docuseal-1.0.8.tar.gz.

File metadata

  • Download URL: docuseal-1.0.8.tar.gz
  • Upload date:
  • Size: 9.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.0

File hashes

Hashes for docuseal-1.0.8.tar.gz
Algorithm Hash digest
SHA256 381b7478e5512bb6acf9b7cdd0c28c65dbc09d6264e3a92d3b9f275327796523
MD5 86640337059c06e21b8b19ad94df3631
BLAKE2b-256 79e97218e3765c964424dddfc560c0e22ef16e73fe3b139e3445916116c870f3

See more details on using hashes here.

File details

Details for the file docuseal-1.0.8-py3-none-any.whl.

File metadata

  • Download URL: docuseal-1.0.8-py3-none-any.whl
  • Upload date:
  • Size: 7.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.0

File hashes

Hashes for docuseal-1.0.8-py3-none-any.whl
Algorithm Hash digest
SHA256 7a21fda2246b80cfa242f4c978100bb5aa077b5e33cec4c206e3007973b84cae
MD5 295a8d04faf258c60dcd9d5659db936b
BLAKE2b-256 39e87a2d5c3ab61f1ec5eb03a27e576ce55d21a68e21941bf2b8e256300f4b70

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page