Reputation: 1666
I have users that enabled delegations from preferences in a docusign portal.
Also, i have a connect configuration (Aggregate) but doesn't have "Recipient Delegate" option available for selection.
I tried to create a new one (SIM) with only one "Recipient Delegate" trigger event option but never triggered.
I tried to get envelope also from API but return old recipient.
How can i get the new delegated user instantly after envelope creation ?
Thanks!
Upvotes: 0
Views: 102
Reputation: 49114
The delegated recipient data may not be included in the webhook notification.
If not, do an Envelopes.get, and look at the recipient
attributes in the response to see if the data is there.
Use the include=recipients
query parameter. Eg:
/restapi/v2.1/accounts/{accountId}/envelopes/{envelopeId}?include=recipients
Upvotes: 0