vandy29
vandy29

Reputation: 11

In Docusign ,envelope status reports (in console -> reports section) we get a field total pages;How to get the same through DocuSign API?

I have explored the envelope API-https://developers.docusign.com/docs/esign-rest-api/reference/Envelopes/ but unable to find out the exact call details.

Upvotes: 0

Views: 170

Answers (1)

Inbar Gazit
Inbar Gazit

Reputation: 14005

You can use the EnvelopeDocuments::List method of the eSignature API:

GET /restapi/v2.1/accounts/{accountId}/envelopes/{envelopeId}/documents

For each document you'll get the number of pages and then it's just a matter of totaling the envelope's documents.

Upvotes: 1

Related Questions