简体   繁体   中英

DocuSign envelope “sent” status not matching web application's status of “Delivery failure”

When I retrieve an envelope from DocuSign via their API, the status of the envelope does not match DocuSign web application.

The status I'm getting back is "sent" - but on the web version, it's "delivery failure." I know there was a delivery failure as I entered an incorrect email address.

I've checked that the envelopeId match on the web version and the API.

Do I need to get the status from somewhere else?

I'm just retrieving the envelope using DocuSign's envelopeAPI.

public Envelope GetEnvelope(string envId) 
{
    EnvelopesApi envelopesApi = new EnvelopesApi();
    Envelope envInfo = envelopesApi.GetEnvelope(this.AccountId, envId);
    return envInfo;
}

There is an account level settings to send Auto Responded status via API or Connect. You need to contact your DocuSign Account Manager or DocuSign Support to enable below setting from DocuSign Internal Admin.

Return Recipient Auto Responded Status in Connect/API

Try fetching the envelope's recipient status.

See EnvelopeRecipients::list

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM