docusignapi - How to get the REST Trace using the DocuSign C# Client SDK? -


is there way rest trace programmatically using updated version of docusign c# client sdk (docusign.esign)?

the previous version of sdk (docusign.integrations.client) had resttrace property accessed envelope if set proper setting:

restsettings.instance.resttracing = true; 

for example, after call

// create envelope , send bool result = envelope.create(documentdata, filename); 

you access envelope.resttrace property full api request sent docusign.

the new envelopedefinition , envelopesapi class don't appear have similar property. there way access information missing?

the updated sdk call looks like:

// create envelope , send // |envelopesapi| contains methods related creating , sending envelopes (aka signature requests) envelopesapi envelopesapi = new envelopesapi(); envelopesummary envelopesummary = envelopesapi.createenvelope(accountid, envelope); 

envelope defined envelopedefinition

you can use beta recipe framework app see api calls , responses app.

see "api log" menu item in navbar.

see github repo.


Comments