Skip to main content

A Python wrapper for the HelloWorks API (https://portal.helloworks.com/)

Project description

Maintainability CircleCI

helloworks-python-sdk 🐍

Easily create and manage HelloWorks workflow instances. 🚀

Installation

pip install helloworks-python-sdk

Initial setup

Go to your HelloWorks account and get your public key ID and your private key value

Remember to record the private key immediately and store it in a safe place. The private key value cannot be retrieved later, however keys can be generated at any time.

See their docs

from helloworks import HwClient
client = HwClient(api_key_id, api_key_value)
  • Note: Tokens will be refreshed and managed internally
  • Note: Methods will return a dictionary of HW response

Create a workflow instance

Method to create an instance of a Workflow to send out to a user:

workflow_id = 'IDs located in API request info'
# Participants is a dictionary of dictionaries
participants = {'participant_QIxDNu': {'type': 'email',
				       'value': 'kevteg05@gmail.com', 
				       'full_name': 'Kevin Hernandez'}}
# Merge fields is a dictionary of the available merge fields at Api request info
merge_fields = {'applicantName_f2GtnW': 'Kevin', 'jobTitle_WCUZlG': 'Test'}
response = client.create_workflow_instance(workflow_id, participants, merge_fields)

See the full list of available fields

Preview a workflow instance

Method to create a preview instance of a Workflow to send out to a user:

workflow_id = 'IDs located in API request info'
# Participants is a dictionary of dictionaries
participants = {'participant_QIxDNu': {'type': 'email',
				       'value': 'kevteg05@gmail.com', 
				       'full_name': 'Kevin Hernandez'}}
# Merge fields is a dictionary of the available merge fields at Api request info
merge_fields = {'applicantName_f2GtnW': 'Kevin', 'jobTitle_WCUZlG': 'Test'}
response = client.create_workflow_instance(workflow_id, participants, merge_fields)

See the full list of available fields

Cancel a workflow instance

Cancel a Workflow Instance that is currently active

workflow_instance_id = 'ID returned by the creation of the workflow'
response = client.cancel_workflow_instance(workflow_instance_id)

More info

Get a workflow instance

Retrieve information on a single Workflow Instance

workflow_instance_id = 'ID returned by the creation of the workflow'
response = client.get_workflow_instance(workflow_instance_id)

More info

Get Workflow Instance Document [After workflow is completed]

Method to get a given document of a workflow instance

document_id = 'You can get the documents IDs after the workflow is finished (Using get_workflow_instance method'
workflow_instance_id = 'ID returned by the creation of the workflow'
request = client.get_workflow_instance_document(workflow_instance_id, document_id, get_request=True) 

Note: By default this method will return the request, so you can do any process you might need with it, if you want the file to download in your directory use get_request=False instead.

More info

Get Workflow Instance Audit Trail [After workflow is completed]

Method to get the audit trail of a workflow instance

workflow_instance_id = 'ID returned by the creation of the workflow'
request = client.get_workflow_instance_audit_trail(workflow_instance_id, get_request=True) 

Note: By default this method will return the request, so you can do any process you might need with it, if you want the file to download in your directory use get_request=False instead.

More info

Get Workflow Instance Documents [After workflow is completed]

Method to get the documents, in a zip file, of a workflow instance

workflow_instance_id = 'ID returned by the creation of the workflow'
request = client.get_workflow_instance_documents(workflow_instance_id, get_request=True) 

Note: By default this method will return the request, so you can do any process you might need with it, if you want the file to download in your directory use get_request=False instead.

More info

Get Workflow Instance Steps

Method to get the specified workflow instance, the step id, the role that will be completing the step, the signer's full name, and the unauthenticated url that can be used to start entering information.

workflow_instance_id = 'ID returned by the creation of the workflow'
response = client.get_workflow_instance_steps(workflow_instance_id) 

More info

Get Document Link

For the specified workflow instance, get the step id, the role that will be completing the step, the signer's full name, and the unauthenticated url that can be used to start entering information.

workflow_instance_id = 'ID returned by the creation of the workflow'
response = client.get_document_link(workflow_instance_id) 

More info

Get Authenticated Link for Workflow Instance's Step [Premium]

Method to get the authenticated link for a workflow instance step, to use it you need to have delegated authentication enabled and have launched this specific workflow instance with delegate authentication activated

workflow_instance_id = 'ID returned by the creation of the workflow'
step_id = 'You can get the step using the get_workflow_instance_steps method'
response = client.get_authenticated_link_for_workflow_instance_step(workflow_instance_id, step_id ) 

Note: This link is active for only 30 seconds

More info

Save Settings with Logo File

NotImplemented JustYet Error

TODOs

  • Create custom exceptions to improve error handling
  • Manage responses as objects similar to what HelloSign SDK does
  • Improve file management
  • Save settings with logo file

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

helloworks-python-sdk-0.3.tar.gz (6.4 kB view details)

Uploaded Source

Built Distribution

helloworks_python_sdk-0.3-py3-none-any.whl (8.5 kB view details)

Uploaded Python 3

File details

Details for the file helloworks-python-sdk-0.3.tar.gz.

File metadata

  • Download URL: helloworks-python-sdk-0.3.tar.gz
  • Upload date:
  • Size: 6.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.4

File hashes

Hashes for helloworks-python-sdk-0.3.tar.gz
Algorithm Hash digest
SHA256 40a02cfd5f9d8781cf874837a4509ab228e9669da08b1f132c10640d5300273b
MD5 79527d6360deeb86177f0e14d383d251
BLAKE2b-256 5906f54bb47b1b5f73ce1aa26e8d123bb704d37c77d263484dce1efbad511136

See more details on using hashes here.

File details

Details for the file helloworks_python_sdk-0.3-py3-none-any.whl.

File metadata

  • Download URL: helloworks_python_sdk-0.3-py3-none-any.whl
  • Upload date:
  • Size: 8.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.4

File hashes

Hashes for helloworks_python_sdk-0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 a36d63adbf685011547e43ef1179ad848a30f202e2f00b7f7af61852ad5037f0
MD5 479ab077ae35d4e3833d5a0f32f9f923
BLAKE2b-256 4d1d756c46940d24463c6eb0b4291406ad7e7f1603900dd162fbfaf9d1303a7b

See more details on using hashes here.

Supported by

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