list_recipients
Retrieve recipient details and signing status for a digital signature envelope to track progress and manage signers.
Instructions
List recipients of an envelope with their signing status.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| envelopeId | Yes | Envelope UUID |
Implementation Reference
- src/api.js:153-155 (handler)The implementation of the `listRecipients` function which calls the `/api/envelopes/{envelopeId}/recipients` endpoint.
export function listRecipients(creds, envelopeId) { return apiCall('GET', `/api/envelopes/${envelopeId}/recipients`, creds); }