Signatures V4
Resend a signer invitation
Retries the SMS or WhatsApp channel stored for this signer and returns the latest delivery outcome.
POST
/
v4
/
signatures
/
{id}
/
signers
/
{signerId}
/
send
Resend a signer invitation
curl --request POST \
--url https://api.example.com/v4/signatures/{id}/signers/{signerId}/send \
--header 'x-meetergo-api-user-id: <api-key>'import requests
url = "https://api.example.com/v4/signatures/{id}/signers/{signerId}/send"
headers = {"x-meetergo-api-user-id": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {'x-meetergo-api-user-id': '<api-key>'}};
fetch('https://api.example.com/v4/signatures/{id}/signers/{signerId}/send', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/v4/signatures/{id}/signers/{signerId}/send",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_HTTPHEADER => [
"x-meetergo-api-user-id: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v4/signatures/{id}/signers/{signerId}/send"
req, _ := http.NewRequest("POST", url, nil)
req.Header.Add("x-meetergo-api-user-id", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.example.com/v4/signatures/{id}/signers/{signerId}/send")
.header("x-meetergo-api-user-id", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v4/signatures/{id}/signers/{signerId}/send")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-meetergo-api-user-id"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"id": "<string>",
"name": "<string>",
"schemaVersion": 123,
"revision": 123,
"signers": [
{
"id": "<string>",
"signingUrl": "https://cal.meetergo.com/s/V1StGXR8_Z5jdHi6B-myT",
"email": "<string>",
"name": "<string>",
"role": "<string>",
"key": "<string>",
"invitationDelivery": {
"phone": "<string>",
"templateName": "<string>",
"templateLanguage": "<string>",
"sentAt": "<string>",
"failureCode": "<string>"
},
"openedAt": "2023-11-07T05:31:56Z",
"completedAt": "2023-11-07T05:31:56Z"
}
],
"automaticReminders": true,
"createdAt": "2023-11-07T05:31:56Z",
"signedDocumentUrl": "<string>",
"completedAt": "2023-11-07T05:31:56Z",
"expiresAt": "2023-11-07T05:31:56Z"
}{
"id": "<string>",
"name": "<string>",
"schemaVersion": 123,
"revision": 123,
"signers": [
{
"id": "<string>",
"signingUrl": "https://cal.meetergo.com/s/V1StGXR8_Z5jdHi6B-myT",
"email": "<string>",
"name": "<string>",
"role": "<string>",
"key": "<string>",
"invitationDelivery": {
"phone": "<string>",
"templateName": "<string>",
"templateLanguage": "<string>",
"sentAt": "<string>",
"failureCode": "<string>"
},
"openedAt": "2023-11-07T05:31:56Z",
"completedAt": "2023-11-07T05:31:56Z"
}
],
"automaticReminders": true,
"createdAt": "2023-11-07T05:31:56Z",
"signedDocumentUrl": "<string>",
"completedAt": "2023-11-07T05:31:56Z",
"expiresAt": "2023-11-07T05:31:56Z"
}{
"statusCode": 400,
"message": [
"limit must not be greater than 100"
],
"error": "BadRequestException"
}{
"statusCode": 400,
"message": [
"limit must not be greater than 100"
],
"error": "BadRequestException"
}{
"statusCode": 400,
"message": [
"limit must not be greater than 100"
],
"error": "BadRequestException"
}{
"statusCode": 400,
"message": [
"limit must not be greater than 100"
],
"error": "BadRequestException"
}{
"statusCode": 400,
"message": [
"limit must not be greater than 100"
],
"error": "BadRequestException"
}Authorizations
ApiUserHeaderJWTApiKey
User ID to act on behalf of. Platform API Keys only (required with an API Key unless the endpoint states otherwise). Requests authenticated with a Personal Access Token are rejected if this header names another user.
Response
Signature request id.
Document name.
Persisted envelope schema version.
Current request revision.
Overall status.
Available options:
pending, in_progress, finalizing, finalization_failed, completed, cancelled The signers and their signing links.
Show child attributes
Show child attributes
Whether automatic reminders are enabled.
Creation time.
Time-limited download URL for the signed (audit-paged, cryptographically signed) PDF. Present once status is "completed".
When all signers completed.
When signing links expire (null = never).
⌘I
Resend a signer invitation
curl --request POST \
--url https://api.example.com/v4/signatures/{id}/signers/{signerId}/send \
--header 'x-meetergo-api-user-id: <api-key>'import requests
url = "https://api.example.com/v4/signatures/{id}/signers/{signerId}/send"
headers = {"x-meetergo-api-user-id": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {'x-meetergo-api-user-id': '<api-key>'}};
fetch('https://api.example.com/v4/signatures/{id}/signers/{signerId}/send', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/v4/signatures/{id}/signers/{signerId}/send",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_HTTPHEADER => [
"x-meetergo-api-user-id: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v4/signatures/{id}/signers/{signerId}/send"
req, _ := http.NewRequest("POST", url, nil)
req.Header.Add("x-meetergo-api-user-id", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.example.com/v4/signatures/{id}/signers/{signerId}/send")
.header("x-meetergo-api-user-id", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v4/signatures/{id}/signers/{signerId}/send")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-meetergo-api-user-id"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"id": "<string>",
"name": "<string>",
"schemaVersion": 123,
"revision": 123,
"signers": [
{
"id": "<string>",
"signingUrl": "https://cal.meetergo.com/s/V1StGXR8_Z5jdHi6B-myT",
"email": "<string>",
"name": "<string>",
"role": "<string>",
"key": "<string>",
"invitationDelivery": {
"phone": "<string>",
"templateName": "<string>",
"templateLanguage": "<string>",
"sentAt": "<string>",
"failureCode": "<string>"
},
"openedAt": "2023-11-07T05:31:56Z",
"completedAt": "2023-11-07T05:31:56Z"
}
],
"automaticReminders": true,
"createdAt": "2023-11-07T05:31:56Z",
"signedDocumentUrl": "<string>",
"completedAt": "2023-11-07T05:31:56Z",
"expiresAt": "2023-11-07T05:31:56Z"
}{
"id": "<string>",
"name": "<string>",
"schemaVersion": 123,
"revision": 123,
"signers": [
{
"id": "<string>",
"signingUrl": "https://cal.meetergo.com/s/V1StGXR8_Z5jdHi6B-myT",
"email": "<string>",
"name": "<string>",
"role": "<string>",
"key": "<string>",
"invitationDelivery": {
"phone": "<string>",
"templateName": "<string>",
"templateLanguage": "<string>",
"sentAt": "<string>",
"failureCode": "<string>"
},
"openedAt": "2023-11-07T05:31:56Z",
"completedAt": "2023-11-07T05:31:56Z"
}
],
"automaticReminders": true,
"createdAt": "2023-11-07T05:31:56Z",
"signedDocumentUrl": "<string>",
"completedAt": "2023-11-07T05:31:56Z",
"expiresAt": "2023-11-07T05:31:56Z"
}{
"statusCode": 400,
"message": [
"limit must not be greater than 100"
],
"error": "BadRequestException"
}{
"statusCode": 400,
"message": [
"limit must not be greater than 100"
],
"error": "BadRequestException"
}{
"statusCode": 400,
"message": [
"limit must not be greater than 100"
],
"error": "BadRequestException"
}{
"statusCode": 400,
"message": [
"limit must not be greater than 100"
],
"error": "BadRequestException"
}{
"statusCode": 400,
"message": [
"limit must not be greater than 100"
],
"error": "BadRequestException"
}