Home > Software design >  Can I access Direct APIs in my app instead of using Docusign SDK and is there any endpoint to get en
Can I access Direct APIs in my app instead of using Docusign SDK and is there any endpoint to get en

Time:12-09

As my app is designed using flutter and all my app endpoints are created using Springboot. So can call direct APIs using Feignclient in Springboot to create my own endpoint to list all the envelopes for one recipient?

Do we have any endpoint to get all the envelopes by using the recipient name or email id? for example XYZ user needs to sign in 2 envelopes then using XYZ can we be able to fetch those 2 envelopes?

CodePudding user response:

https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopes/liststatuschanges/ This endpoint has lots of filtering options including:

email={email_address} Limit results to envelopes sent by the account user with this email address.

user_name must be given as well, and both email and user_name must refer to an existing account user.

user_name={user_name} Limit results to envelopes sent by the account user with this user name.

email must be given as well, and both email and user_name must refer to an existing account user.

CodePudding user response:

Yes, you are very welcome to call the eSignature REST API directly and not use an SDK. Use API version 2.1. About half of the developers who use the API do so directly.

  • Related