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.
See the API docs.
- Python 3.6+
- Install from source with:
python setup.py install
import visma_sign
visma_sign.identifier = 'organization-identifier-uuid-here'
visma_sign.secret = 'organization-secret-here'
visma_sign.api_url = 'https://sign.visma.net'
import visma_sign
payload = {"document":{"name":"Java test"}}
client = ApiClient()
documentUuid = client.createDocument( json.dumps(payload) )