docusignapi

DocuSign Connect webhook call did not include HMAC header x-docusign-signature

不问归期 提交于 2020-05-29 17:02:32
问题 In my account, I created a Connect webhook configuration. I added a secret key and also checked the Include HMAC signature checkbox. After I signed an envelope, DocuSign Connect called my API. It sent a successful request body but it did not send the expected request header x-docusign-signature . Reference: the Connect HMAC configuration page I got following request header from DocuSign connect. {host=[qa.****.com], content-type=[text/xml; charset=utf-8], expect=[100-continue], max-forwards=

DocuSign Connect webhook call did not include HMAC header x-docusign-signature

你说的曾经没有我的故事 提交于 2020-05-29 17:02:20
问题 In my account, I created a Connect webhook configuration. I added a secret key and also checked the Include HMAC signature checkbox. After I signed an envelope, DocuSign Connect called my API. It sent a successful request body but it did not send the expected request header x-docusign-signature . Reference: the Connect HMAC configuration page I got following request header from DocuSign connect. {host=[qa.****.com], content-type=[text/xml; charset=utf-8], expect=[100-continue], max-forwards=

Authorization Code Grant error: invalid authentication request

牧云@^-^@ 提交于 2020-05-17 06:47:05
问题 Our attempts at authentication have thus far returned only errors as we try to follow the directions detailed here: https://developers.docusign.com/esign-rest-api/guides/authentication/oauth2-code-grant When we send this response: https://account-d.docusign.com/oauth/auth?response_type=code&scope=signature%20impersonation&client_id=3f67330c-2cbf-43f6-9ea5-e295cd646840&redirect_uri=http://138.68.27.51:8080/signCallback#/username we get an error: "Invalid authentication request: The response

Docusign API's failing after an hour

走远了吗. 提交于 2020-04-16 09:16:30
问题 I have a docusign-sandbox account. I am trying to integrate docusign with my application and am using JWT Grant for authentication in java. I got a sample code from https://github.com/docusign/eg-01-java-jwt and it works perfectly for an hour and then the API starts failing. Any idea how I can tackle this issue? I'm getting the below error I already tried changing the Token expiry time from 1hr to other lesser values(5 min, 30 min). Even then the APIs start failing exactly after an hour.

Docusign API's failing after an hour

ぐ巨炮叔叔 提交于 2020-04-16 09:15:10
问题 I have a docusign-sandbox account. I am trying to integrate docusign with my application and am using JWT Grant for authentication in java. I got a sample code from https://github.com/docusign/eg-01-java-jwt and it works perfectly for an hour and then the API starts failing. Any idea how I can tackle this issue? I'm getting the below error I already tried changing the Token expiry time from 1hr to other lesser values(5 min, 30 min). Even then the APIs start failing exactly after an hour.

Checkbox validation using Docusign REST API

时光怂恿深爱的人放手 提交于 2020-04-12 07:08:10
问题 From Docusign Web UI, I am able to add a checkbox Group and add a validation like this: But same validation is not available from any of the API. Is there any workaround or some other API endpoint to add this validation? 回答1: This is available through the API. The trick is that you have to set each Checkbox to have a Group, and then you have to assign the validation rules to the TabGroup. Here's an example: "tabs": { "checkboxTabs": [ { "tabLabel": "Checkbox1", "required": false, "selected":

Checkbox validation using Docusign REST API

懵懂的女人 提交于 2020-04-12 07:06:32
问题 From Docusign Web UI, I am able to add a checkbox Group and add a validation like this: But same validation is not available from any of the API. Is there any workaround or some other API endpoint to add this validation? 回答1: This is available through the API. The trick is that you have to set each Checkbox to have a Group, and then you have to assign the validation rules to the TabGroup. Here's an example: "tabs": { "checkboxTabs": [ { "tabLabel": "Checkbox1", "required": false, "selected":

Docusign Refused to display

和自甴很熟 提交于 2020-03-06 09:27:11
问题 I am trying to implement embedded DocuSign sender view, I am using the node SDK to get the URL and display it in the Iframe, the problem is that when I try to open it, I get the following error. Docusign Error This happens in Safari v13. Anyone who has gone through the same thing that can help me? 回答1: Most browsers protect you against using a page in an iframe that comes from a different domain. to overcome this you have to tell the browser that it's safe and you are OK with this. Add this

DocuSign embed url not rendering in iFrame

我只是一个虾纸丫 提交于 2020-03-05 04:10:49
问题 Anyone ever had an issue when embeding a docusign signing ceremony in an iFrame? I'm trying to test docusign embed signing by using an iFrame. But the browsers ( tested on Chrome, Firefox ) are refusing to render the url. I get the embed url (which looks like https://demo.docusign.net/Signing/MTRedeem/v1/XXXXXXXXX?slt=XXX ) from DocuSign and then sets this url to iFrame source on my website. But it just shows a blank page nothing comes up ( instead of embeding in an iframe if I just paste the

Can i get a request when the Docusign envelope status is completed from Docusign

你离开我真会死。 提交于 2020-03-05 03:26:31
问题 I am using Docuisign for my client to use it as digital signature. I am using php rest API and i have 5 template roles and everything is working perfect. So i want to get a request on my server from Docusign when the envelope status is completed. So that i can update the status on my side as well. I have one solution in my mind 1) Solution 1 I can create a cron job to check the status of envelope but 4 crones are already running on my server so i am avoiding this solution My Code is