Resend Document Email


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.


Endpoint

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.

Sample Response

{info} Possible responses are success, unauthenticated or fail.

Code 200

{
  "success": true,
  "message": "Email successfully sent to signers"
}

{danger} Error response Unauthenticated

Please check your API Key.

Code 400

{
    "success": false,
    "error": {
        "code": 0,
        "message": "Unauthenticated."
    }
}

{danger} Error response Document Not found

Please check your API Key.

Code 422

{
  "error": true,
  "message": "Document id cannot be found"
}

PHP Code Sample

    $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
        ],
    ]);

Live Demo