简体   繁体   中英

DocusignAPI SOAP via Post, NOT using any SDKs

We are developing for one of your customers a method from our application (written exclusively in LiveCode Script) and need to utilise SOAP via a POST command directly from LiveCode. I eventually, after a lot of digging into the resources pages, found some reference on how to Post 'CreateAndSendEnvelope' from here:

CreateAndSendSchema

However, it does not show where to place login credentials for the user or company or whatever so that it is attributed to the correct account.

I found this question here which kind of points me in the right direction, but do you not have any specific documentation on how to set up your headers and body when using XML for both authenticating and sending a document via email using SOAP?

Providing a simple guide demonstrating the header required and the basic XML to POST to send a document with tags for signing to a single recipient by email using a senders user credentials would be perfect.

Thanks

Sean.

Pi Digital Productions Ltd

SOAP is still using what we call "Legacy Auth" which is the older, less secure, (not OAUTH) authentication. To use that, you still need an IK (Integration Key) but you provide the username, password and IK in clear text inside a header called X-DocuSign-Authentication that looks like this:

'X-DocuSign-Authentication: { "Username":"DocuSign@example.com",  "Password":"DocuSign_password",  "IntegratorKey":"DocuSign_Integrator_Key" }' 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM