Skip to content

sergeevyi/visma-sign-api-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Python bindings for the Visma Sign API v1

Visma Sign is used for electronically signing documents like agreements, terms of service, etc. The Visma Sign Python library provides convenient access to the Visma Sign API v1 from applications written in the Python language.

Documentation

See the API docs.

Requirements

  • Python 3.6+

Installation

  • Install from source with:
python setup.py install

Configuring

import visma_sign

visma_sign.identifier = 'organization-identifier-uuid-here'
visma_sign.secret = 'organization-secret-here'
visma_sign.api_url = 'https://sign.visma.net'

Usage

import visma_sign

payload = {"document":{"name":"Java test"}}
client = ApiClient()
documentUuid = client.createDocument( json.dumps(payload) )

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages