Docusign Send On Behalf (SOBO)

If anyone has this, I would welcome an example using the Docusign Send on Behalf Of (SOBO) function.

I am using SOAP API with XML and even Docusign Level III support couldn't find a sample.

Thank.

+3


source to share


1 answer


To clarify, SOBO simply allows the system sender to authenticate and make API calls on behalf of the user sending the envelopes. If you're looking for specific code examples to do this, you can find it in the Submit By Name reference guide.

However, our DocuSign management pack for Salesforce uses SOBO, and I took a sample header from the envelope I submitted. In this case, I am the system sender as well as the actual sender of the envelope. If using SOBO in the "real world", the GUID will contain the sender's username.

X-DocuSign-Authentication: 
<DocuSignCredentials>
    <Username>c483bf85-c71b-4d5f-b0bf-cfacb390bbf7</Username>
    <Password>[omitted]</Password>
    <IntegratorKey>[omitted]</IntegratorKey>
    <SendOnBehalfOf>c483bf85-c71b-4d5f-b0bf-cfacb390bbf7</SendOnBehalfOf>
</DocuSignCredentials>

      



For example, if you were a member of my account and your username was placed in this line, then the envelope would be sent from you and in your Sent Items folder while I, when the system sender is authenticated, and make all API calls to you.

Hope this is what you were looking for.

+2


source







All Articles