Docusign WSDL link - docusignapi

What's the WSDL link for docusign? I found this:
https://demo.docusign.net/api/3.0/api.asmx?WSDL
But I want to make sure. Thanks.

Yes, https://demo.docusign.net/api/3.0/api.asmx?WSDL is the correct WSDL for Demo.
All of the information you need is in the DocuSign SOAP API Guide
or the PDF Version of the Guide

Related

Send a document from s3 to docusign for Signature

I have a use case where I am getting a document from S3 and I want to send it to docusign for signature. I have already implemented the piece where my code is getting the document.
I want to use the embedded signing ceremony for the same. Are there any examples of the same in Golang? I already have a sandbox account and have tested out the API using java.
Ay pointers would be appreciated. Thanks!
Jim Cote (who was featured as a spotlight developer) wrote a golang client library that he opened source here - https://github.com/jfcote87/docusign
I have not tried it myself, but you can always fork the code and make modifications as needde or ask Jim if he can help.

What is the perfect way to get response from docusign api webhook response in php?

I have set a web hook URL for docusign API. when any update from document signer come, i will get update about envelop. but how can i get the response? What is the format. Can someone show me a example?
In order to receive and process webhook notifications from DocuSign Connect, you'll need to create an application to "listen" for (and process) the notifications. DocuSign provides sample applications like this in a variety of languages -- you can use this link to find those samples on GitHub: https://github.com/docusign?utf8=%E2%9C%93&q=connect.
For example, here's the webhook sample in PHP: https://github.com/docusign/recipe-010-webhook-php.
You will get response from DocuSign in an XML format, You can find more details at https://www.docusign.com/blog/dsdev-adding-webhooks-application/,
https://www.docusign.com/supportdocs/ndse-admin-guide/Content/connect-technical-details.htm and Guide is available at https://www.docusign.com/supportdocs/pdf/connect-guide.pdf

Docusign Embedded Signing using template

I need steps/procedure for recipient to sign via nodejs application using template.Currently i am using the docusign node sdk.I would like to embed the signing into the application (Embedded Signing) through the API rather than opening DocuSign in another window.
I'd suggest you take a look at the DocuSign Recipes. The Recipes include node.js code samples for "send a signing request with a template (via email)" and also for "signing from within your app" -- between these two examples, you should be able to get code to accomplish your objective. If you're unable to get it working using those examples, then edit your post above to include your code and ask for feedback. (You're more likely to get help here on SO if you post your code and say "this is what I've tried..." than if you just expect someone to provide you the complete solution.)

Connect DocuSign XSD

I would like to implement the DocuSign Connect as a rest listener.
I cannot find anywhere a complete documentation of the xml schema that the listener will receive.
I know that there is an example in the pdf:
http://764be237d39fdfa0985f-37a6c1f0731907180d9764651d02bea9.r5.cf2.rackcdn.com/DocuSign_Connect_Service_Guide.pdf
but I am wondering if there is a more formal description like for example an xsd.
You can also reference the complete XSD here: https://www.docusign.net/api/3.0/schema/dsx.xsd
Each Connect message will contain an EnvelopeStatus object and DocumentPDF objects -- the full structure of these objects is specified in the DocuSign WSDL: https://www.docusign.net/api/3.0/schema/dsapi.wsdl.
Taken from the DocuSign Connect Service Guide (http://764be237d39fdfa0985f-37a6c1f0731907180d9764651d02bea9.r5.cf2.rackcdn.com/DocuSign_Connect_Service_Guide.pdf):
"The XML post from DocuSign contains the EnvelopeStatus object along with DocumentPDF objects, if the configuration has the checkbox to include the push of the documents.
The DocuSign 3.0 API WSDL file that contains definitions for both structures is located on the DocuSign website. It can be found at: https://www.docusign.net/api/3.0/api.asmx?wsdl."

Accessing Comments via Gdata API

Question 1: How can I access comments via gdata api for Google Document?
Can somebody provide me a sample code or link to some documentation?
Is that possible?
Question 2: How can manage (reply, add, resolve ...) Google Document via gdata api?
Can somebody provide me a sample code or link to some documentation?
Thanks
There's no GData API to access comments in a Google document.
You can use the Document services in Apps Script to programmatically access the content of a document from your script:
https://developers.google.com/apps-script/service_document

Resources