docusign-esign-python-client
docusign-esign-python-client copied to clipboard
The Official DocuSign Python Client Library used to interact with the eSign REST API. Send, sign, and approve documents using this client. https://www.docusign.com/devcenter
It appears to be missing the actual functionality of uploading a document. I might have a misunderstanding of the purpose of this method, but if it is intended for uploading...
Added 10 new unit tests: Recipients_GETRecipient: ListRecipients_CorrectAccountIdAndEnvelopeId_ReturnRecipientsList() Views_POSTEnvelopeRecipientView: CreateRecipientView_CorrectAccountIdAndEnvelopeId_ReturnViewUrl( Documents_GetDocuments: ListDocuments_CorrectAccountIdAndEnvelopeId_ReturnEnvelopeDocumentsResult() Envelopes_PutEnvelope: Update_CorrectAccountIdAndEnvelopeIdAndEnvelope_ReturnEnvelopeUpdateSummary() Accounts_GetAccount: GetAccountInformation_CorrectAccountId_ReturnAccountInfo() Recipients_PUTRecipient: UpdateRecipients_CorrectAccountIdAndEnvelopeId_ReturnRecipientsUpdateSummary() Templates_GetTemplates: ListTemplates_CorrectAccountId_ReturnTemplatesList() Users_GetUsers: List_CorrectAccountId_ReturnUsersList() Templates_GetTemplate: Get_CorrectAccountIdAndTemplateId_ReturnTemplate() Audit_Events_GetAudit_Events: ListAuditEvents_CorrectAccountIdAndEnvelopeId_ReturnAuditList()
From the documentation for the listStatus for envelopes: _It is an error omit the request body altogether. The request body must be at least {}_. Currently `None` is being rather...
### Changed - Added support for version v2-21.3.00.00 of the DocuSign ESignature API. - Updated the SDK release version.
related to pull request #121
got left out after v3.2.0
The tests fail due to the following: ``` File "/home/marshjo/Documents/clarity-docusign/docusign-python-client/test/unit_tests.py", line 22, in PrivateKeyBytes = base64.b64decode(os.environ.get("PRIVATE_KEY")) ``` I suspect that is because your default internal setup includes this. Please add...
I have set up every other thing for bulk send and it's working pretty nicely. Following is the placeholder snippet which is being replaced by the original recipients in the...
I want to implement an option to delete envelope in my application. For that I want to alter the envelope's status from 'send' to 'voided', but currently I haven't found...