Re-send completion pack
The re-send completion pack feature allows you to re-send the completion pack for the specified recipient.
PATCH https://api.yotisign.com/v2/envelopes/<envelopeId>/recipients/<recipient_id>/resend-completion-pack
Example code
x
const rp = require("request-promise");
const resendPack = () => {
const request = {
method: "PATCH",
uri: "<BASE_URL>/v2/envelopes/<envelopeId>/recipients/<recipient_id>/resend-completion-pack",
headers: {
authorization: "Bearer <API_KEY>",
},
};
return rp(request)
.then((body) => body)
.catch((err) => err);
};
//send request
let result = await resendPack();
Error codes
Error Code | Description |
---|---|
400 | Bad request or invalid payload |
409 | The envelope is not completed |
410 | The total number of requests to resend the recipient completion pack has exceeded the limit |
429 | Please wait 5 minutes before retrying |
404 | The recipient couldn't be found |
Was this page helpful?