Could you tell me, how can I connect my DocuSign app in Slack with DocuSign eSignature using DocuSign API. Is it only possible with production API or I can do it with demo API?
You've built a DocuSign app, and now you want to integrate it with Slack?
Go for it! It doesn't matter to Slack if you use the DocuSign developer environment (demo.docusign.net) for your API calls or not.
Remember that your app will call Slack (and vice-versa). Then your app will call DocuSign as appropriate for your use case and application.
Related
I am developing an Azure bot for Microsoft teams, using Azure Bot Service, Bot registration channel setup. The messaging endpoint is an App Service that is authenticated with AAD login. Could some please help me understand how to call this authenticated endpoint from a bot? currently, I am testing it on Webchat and I get a 401 unauthorized error. I tried configuring the Oauth Setting in the bot as per this, but still getting 401.
Could someone please point to any concepts and documentation required here.
There is no need to enable the App service Authentication. Just follow this article to add authentication to your bot via Azure Bot service. Then logon is required when you use the bot.
Reference:
Azure AD integration with Bot Framework / teams
Microsoft Teams behaves somewhat differently than other channels in regards to OAuth and requires a few changes to properly implement authentication. Specifically an Invoke Activity is sent to the bot rather than the Event Activity used by other channels. This Invoke Activity must be forwarded to the dialog if the OAuthPrompt is being used. This is done by subclassing the TeamsActivityHandler and implementing handleTeamsSigninVerifyState. It is best advised to make use of the 46.teams-auth sample to set up OAuth in Teams.
Hope this helps.
Please, can you suggest me, how I integrate connect for webhook with my live credentials?
I have already integrated a webhook in my sandbox account.
I can't see connect option with login my live credential
If your DocuSign Production account doesn't have the option for Connect, you may need to reach out to your Account Manager to have that enabled.
All DocuSign account plans that include API access include envelope-specific webhook.
An envelope-specific webhook is set using the eventNotification attribute when an envelope is created via the API.
Some DocuSign account plans include account-level webhooks (Custom Connect configurations). Those are set via the admin tool. As Drew says, talk with your account manager if account-level webhooks are not shown on your admin tool.
I face frequent disconnections on my application which connects to Docusign REST API using the Docusign SDK. The application runs in a windows VM , in which internet access is regulated through corporate proxy and firewall
To overcome this problem , I want to pass the network credentials to the Docusign SDK classes , so that the credentials be passed to RestRequest of RESTSharp. I can see the credentials property in RestSharp, but no equivalent method to pass the same to Docusign SDK.
Please help , anyone knows how to make this work in corporate proxy env?
DocuSign Rest Api does not support windows authentication. See this for the various forms of authentication supported by DocuSign Rest API.
Single SignOn
However DocuSign supports single sign-on with your organizations identity provider.
Here is the related documentation
single-sign-on-implementation-guide PDF
single-sign-on-overview
Video
Here is a cool video overview of the authentication mechanisms with docusign api.
I am wanting to use the DocuSign REST API to create an envelope for our clients. We are wanting to just create the envelope for our clients to simplify the DocuSign process. Each of our clients will have their own DocuSign account that would be separate from our API Integrator Key Account and they will share the API integrator account. How can I achieve this.
Docusign supports various authentication options to support multiple scenarios.
Based on your problem statement it looks like you are building a User Application.
See the Documentation to build user applications over the DocuSign api.
I am currently building a Google Assistant App/ Action using API.AI and node.js. My application needs to get permissions from the user, to get his Facebook likes and make FB Graph API calls from node.js. How can I do that? Do I need to build an android/ ios app for that?
You will need to implement account linking. However, you will not be able to use the Facebook OAuth directly but have to implement your own OAuth server. Your service will independently need to get the user to provide the Facebook OAuth credentials so you can use their API.