docusignapi

DocuSign JWT Access Token Request

半世苍凉 提交于 2021-02-11 13:50:54
问题 I'm trying to get access token within sandbox environment. I've a VB.NET application and referenced DocuSign.eSign.dll I examined docusign C# code examples and could not get them run in vb.net This is the first approach I tried: Dim ac As ApiClient = New ApiClient() Dim privateKeyStream() As Byte = Convert.FromBase64String(PrivateKey) Dim tokenInfo As OAuth.OAuthToken = ac.RequestJWTUserToken("INTEGRATION_ID", "ACCOUNT_ID", "https://account-d.docusign.com/oauth/token", privateKeyStream, 1)

Requiring DocuSign login to sign a document

≡放荡痞女 提交于 2021-02-11 12:30:10
问题 New to Docusign. I am using embedded signing and open the URL in webview. This just let's the user sign the document without requiring them to login their docusign id. How can I require the user to login their docusignID, before signing the document? 回答1: If the your purpose is to authenticate the signer you might want to have a look at the various authentication methods docusign provides. My personal favorite is using digital signatures. Depending on the method you use it may have additional

React Docusign Clickwrap Credentials

。_饼干妹妹 提交于 2021-02-10 18:00:56
问题 In my react application, when Im rendering the Docusign clickwrap, I need to supply the accountId and the clickwrapId. Is there a secure way to reference the accountId/clickwrapId without actually putting those values in. I dont want to expose those credentials in my react application function App() { React.useLayoutEffect(() => { docuSignClick.Clickwrap.render({ environment: 'https://demo.docusign.net', accountId: '...', clickwrapId: '...', onMustAgree(agreement) { // Called when no users

React Docusign Clickwrap Credentials

喜夏-厌秋 提交于 2021-02-10 18:00:34
问题 In my react application, when Im rendering the Docusign clickwrap, I need to supply the accountId and the clickwrapId. Is there a secure way to reference the accountId/clickwrapId without actually putting those values in. I dont want to expose those credentials in my react application function App() { React.useLayoutEffect(() => { docuSignClick.Clickwrap.render({ environment: 'https://demo.docusign.net', accountId: '...', clickwrapId: '...', onMustAgree(agreement) { // Called when no users

How do I apply a server template to envelope document in DocuSign API?

旧城冷巷雨未停 提交于 2021-02-10 15:51:50
问题 I have a client that signs into their DS account, uploads a single 17-page PDF, clicks the action link to the side and selects "Apply Template". The template contains tabs and roles. They fill in the roles in the DS UI and click send. I am attempting to rebuild that process via API. I found this that looks like it should work for exactly my scenario: How do I apply a template to a document using Docusign REST API I am getting an envelope with 34 pages instead: the original 17-page uploaded

Docusign: HTTPS required for Connect listener communication error

偶尔善良 提交于 2021-02-10 14:42:14
问题 I'm trying to use the Docusign API for an application that I'm running locally and I see the following error: "message":"Uncaught Error when executing a Single Cause: com.docusign.esign.client.ApiException: Error while requesting server, received a non successful HTTP code 400 with response Body: '{"errorCode":"HTTPS_REQUIRED_FOR_CONNECT_LISTENER", "message":"HTTPS required for Connect listener communication."}' Description: com.docusign.esign.client.ApiException: Error while requesting

DocuSign create a long lived embedded signing url?

社会主义新天地 提交于 2021-02-09 12:44:51
问题 The URL returned by the embedded signing url API method EnvelopeViews:createRecipient only lasts 5 minutes. How can I get an embedded signing URL that will last longer? 回答1: The embedded signing URL time to live is only 5 minutes. So the answer is to give your signers a customized url to your application . Then, when your signer clicks it, your application first obtains an embedded signing URL from DocuSign and then responds to the signer with a redirect to the URL. Creating the customized

DocuSign create a long lived embedded signing url?

邮差的信 提交于 2021-02-09 12:43:56
问题 The URL returned by the embedded signing url API method EnvelopeViews:createRecipient only lasts 5 minutes. How can I get an embedded signing URL that will last longer? 回答1: The embedded signing URL time to live is only 5 minutes. So the answer is to give your signers a customized url to your application . Then, when your signer clicks it, your application first obtains an embedded signing URL from DocuSign and then responds to the signer with a redirect to the URL. Creating the customized

Get envelope URL

最后都变了- 提交于 2021-02-08 07:40:02
问题 Is there a way to use the API to get the URL for a user to view a particular envelope on the DocuSign web site? I'm not trying to use the embedded signing experience, so the various envelope "views" provided by the API are not the desired URLs. The goal is provide a link in a custom web application that when clicked would show the envelope based on the user's sign-in to the Docusign web site, redirecting to the Docusign login page if necessary (the "console" URL provides the desired UI but

Get envelope URL

随声附和 提交于 2021-02-08 07:39:45
问题 Is there a way to use the API to get the URL for a user to view a particular envelope on the DocuSign web site? I'm not trying to use the embedded signing experience, so the various envelope "views" provided by the API are not the desired URLs. The goal is provide a link in a custom web application that when clicked would show the envelope based on the user's sign-in to the Docusign web site, redirecting to the Docusign login page if necessary (the "console" URL provides the desired UI but