Resend Email Reminder to Pending Signers and Approvers

Resend Email Reminder to Pending Signers and Approvers

This endpoint resends an email reminder to all Signers and Approvers with a pending status ("Awaiting Signature" and "Awaiting Approval") for a specified project. If recipient order is enabled, reminders are only sent to those whose turn it is to sign or approve.


HTTP Method and URL

POST {{host}}/my/projects/:uuid/resend?user_type=ENTERPRISE_API


Authentication Requirements

This endpoint requires authentication via a bearer token.

Headers:

Authorization: Bearer {USER-TOKEN}
Content-Type: application/json

Path and Query Parameters

  • Path Parameter:

    • uuid (string, required): The unique identifier of the project. Use {{project-uuid}}.
  • Query Parameter:

    • user_type (string, required): Must be set to ENTERPRISE_API.

Example Request

POST {{host}}/my/projects/{{project-uuid}}/resend?user_type=ENTERPRISE_API
Authorization: Bearer {USER-TOKEN}
Content-Type: application/json

Example Successful Response

{
  "message": "Reminders sent to all pending signers and approvers."
}

Error Responses

  • 401 Unauthorized

    • The request is missing a valid authentication token or the token is invalid.

    • Example:

            {
              "error": "Unauthorized",
              "message": "Authentication credentials were missing or invalid."
            }
      
  • 404 Not Found

    • The specified project UUID does not exist.

    • Example:

            {
              "error": "Not Found",
              "message": "Project not found."
            }
      

Usage Notes

  • Only recipients with a pending status will receive reminders.

  • If recipient order is enabled, reminders are sent only to those whose turn it is.

  • Ensure the user_type query parameter is set to ENTERPRISE_API.

  • No request body is required for this endpoint.

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…
Path Params
string
required
Query Params
string
Body Params
Responses

Language
Credentials
Bearer
URL
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json