How can I get the reason an envelope was voided thru the API? The envelope could be voided in multiple ways so it would be nice to know if it was voided because it expired as opposed to if the sender voided it. Can this be added to the envelope status object?
相关问题
- Google places autocomplete suggestion without coun
- Karate API Testing - Access variable value across
- How to verify laravel passport api token in node /
- Converting byte array output into Blob corrupts fi
- How to handle “App is temporarily blocked from log
相关文章
- 我用scrapy写了一个蛮简单的爬虫怎么封装成一个api啊
- 后端给前端的API接口是怎么用代码写的
- Convert C# Object to Json Object
- Android camera2 API get focus distance in AF mode
- Getting all listing images from an Etsy shop
- Is there an API to get statictics on Google Play d
- How to search specific user's tracks by tag wi
- Django REST Framework - OAuth2 Consumer API from e
When you get status of an envelope through REST,
voidedReason
is one of the responses.https://demo.docusign.net/restapi/v2/account/{accountId}/envelopes/{envelopeId}
When an envelope has expired, it will show: "Envelope has expired."
When someone declines or cancels an envelope, it will show the comments they entered in the text box upon voiding.
These responses given above do not show unless the envelope is in a voided status, so you'll want your request to only use this information is status is equal to 'voided'