Wax_Lee
Wax_Lee

Reputation: 13

DocuSign Api: how to get the envelope blurb and title without the status

Is it possible to retrieve the blurb, title and recipients for an envelope without polling for the status at the same time? The reason for asking is that it appears from the API documentation that any calls to /account/{accountid}/envelopes appear to be classed as a status update.

Upvotes: 0

Views: 73

Answers (1)

Kim Brandl
Kim Brandl

Reputation: 13500

To get email blurb and title, you use the Get Individual Envelope Status operation:

GET /accounts/{accountId}/envelopes/{envelopeId}

To get recipients, you use the Get Envelope Recipient Status operation:

GET /accounts/{accountId}/envelopes/{envelopeId}/recipients

The reference to "status" in these operation names is simply the naming convention that DocuSign decided to use (since the operations are commonly used to determine status of envelope / recipients) -- but the API responses contain lots of additional information beyond just status.

Upvotes: 1

Related Questions