Skip to content

Releases: SignRequest/signrequest-python-client

v2.1.0

10 Jan 08:09
6579f46
Compare
Choose a tag to compare
  • No longer require from_email on InlineSignRequest, fixes error when creating a document from a template
  • Add processing flag to Document
  • integration_data is now an object instead of a string
  • Generate using Swagger Codegen 2.4.11 instead of 2.4.8

v2.0.0

27 Sep 19:31
a84fc7b
Compare
Choose a tag to compare

Update client to reflect the latest additions to SignRequest API. Also updates the client to include the latest changes from Swagger Codegen 2.4.8.

Breaking change
Due to a change in how api keys are shared between client instances, setting configuration directly on the configuration class variable is no longer supported. For example, instead of doing this:

signrequest_client.configuration = signrequest_client.Configuration()
signrequest_client.configuration.api_key['Authorization'] = 'YOUR_API_KEY'
signrequest_client.configuration.api_key_prefix['Authorization'] = 'Token'

You instead need to use the Configuration#set_default method, like this:

default_configuration = signrequest_client.Configuration()
default_configuration.api_key['Authorization'] = 'YOUR_API_KEY'
default_configuration.api_key_prefix['Authorization'] = 'Token'
signrequest_client.Configuration.set_default(default_configuration)

v1.1.0

27 Nov 00:21
Compare
Choose a tag to compare

Replace usages of async with async_req in order to support Python 3.7

v1.0.0

26 Oct 12:29
Compare
Choose a tag to compare

Complete rewrite of our python client. Code generated from our OpenAPI schema using swagger-codegen and covers the entire API.