1

Using the Docusign REST api, I can get a list of the documents inside a completed envelope. Is there any api call that would tell me, for instance, that document 2 in the list has no signing tabs? For our application, we need to know which documents in the envelope were signed ( had signing tabs ) and which ones did not need a signature.

Kathy Lori
  • 487
  • 6
  • 21

1 Answers1

1

You can use the GetEnvelopeRecipeints API and retrieve all the tabs in an envelope by passing the include_tabs=true query string parameter.

The response will contain tabs on all documents in the envelope. You can then filter the tab list based on the document Id

  GET restapi/{{version}}/accounts/{{acctId}}/envelopes/{{envelopeId}}/recipients?include_tabs=true&include_extended=true
Praveen Reddy
  • 7,295
  • 2
  • 21
  • 43