Sometimes, you'd want to resend notary request email for the signers. This endpoint would allow you to resend a new notary request email for all signers. We would recommend you not using this more than once or twice a day.
| Method | URI | Headers | Example |
|---|---|---|---|
| GET | /client/resend-email/{document_uuid} |
'Bearer {api_token}' | Bearer ljbVhIAhdrJLHvrSqzb6dzblvd78wGs5LGyB |
{success} If the API has been authenticated, the response are all the document that business account has uploaded.
{info} Possible responses are
success,unauthenticatedorfail.
200{
"success": true,
"message": "Email successfully sent to signers"
}
{danger} Error response Unauthenticated
Please check your API Key.
400{
"success": false,
"error": {
"code": 0,
"message": "Unauthenticated."
}
}
{danger} Error response Document Not found
Please check your API Key.
422{
"error": true,
"message": "Document id cannot be found"
}
$client = new Client();
$api_key = 'api_key';
$url = 'https://production.onlinenotary.net/api/v1/client/resend-email/{document_uuid}';
$response = $client->request('GET', $url ,
['auth' => [
null,
$api_key
],
]);