I am using the DocuSign C# Client to retrieve an envelope's current recipient status including the values of document form fields.
Using REST API , I can retrieve the document form field values using the following url and setting the parameter include_tabs to true. /accounts/:accountId/envelopes/:envelopeId/recipients?include_tabs=true
How do I get the document form fields using the C# client?
Following method calls do not return the document form field values (no tabs information are returned.)
EnvelopesApi envelopesApi = new EnvelopesApi();
Recipients recips = envelopesApi.ListRecipients(accountId, envelopeId);
Thanks!