eSignatures API
Title
Message
Create new category
What is the title of your new category?
Edit page index title
What is the title of the page index?
Edit category
What is the new title of your category?
Edit link
What is the new title and URL of your link?
Re-send completion pack
AI Tools
Summarize Page
Copy Markdown
Open in ChatGPT
Open in Claude
Connect to Cursor
Connect to VS Code
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
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();
// Cli<?php
use GuzzleHttp\Client;
use GuzzleHttp\Psr7\Request;
$request = new Request(
'PATCH',
API_BASE_URL . "/envelopes/{$envelope_id}/recipients/{$recipient_id}/resend-completion-pack",
[
'Authorization' => 'Bearer ' . YOUR_API_KEY,
]
);
$client = new Client();
$response = $client->send($request);
$json = json_decode($response->getBody());ck to edit code
// Click to edit codeusing (HttpRequestMessage request = new HttpRequestMessage
{
Method = new HttpMethod("PATCH"),
RequestUri = new Uri("https://api.yotisign.com/v2/envelopes/<envelopeId>/recipients/<recipient_id>/resend-completion-pack")
})
{
request.Headers.Add("Authorization", "Bearer " + "<API_KEY>");
using (HttpClient httpClient = new HttpClient())
{
HttpResponseMessage response = httpClient.SendAsync(request).Result;
string responseContent = response.Content.ReadAsStringAsync().Result;
return new JsonResult(
responseContent,
new JsonSerializerOptions
{
WriteIndented = true,
Encoder = JavaScriptEncoder.UnsafeRelaxedJsonEscaping
});
}
}
req, err := http.NewRequest("PATCH", "<BASE_URL>/v2/envelopes/<envelopeId>/recipients/<recipient_id>/resend-completion-pack", nil)
req.Header.Add("Authorization", "Bearer <API_KEY>")
client := &http.Client{}
response, err := client.Do(req)
if err != nil {
fmt.Println(err)
} else {
result, _ := ioutil.ReadAll(response.Body)
}
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 |
Last updated on
Was this page helpful?
Next to read:
Get documentsGot a question? Contact us here.
Discard Changes
Do you want to discard your current changes and overwrite with the template?
Archive Synced Block
Message
Create new Template
What is this template's title?
Delete Template
Message