SignWell · Example Payload

Sendreminder

Sends a reminder email to recipients that have not signed yet.

Document

Sendreminder is an example object payload from SignWell, with 8 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummarydescriptiontagsparametersrequestBody

Example Payload

Raw ↑
{
  "operationId": "sendReminder",
  "method": "POST",
  "path": "/api/v1/documents/{id}/remind",
  "summary": "Send Reminder",
  "description": "Sends a reminder email to recipients that have not signed yet.",
  "tags": [
    "Document"
  ],
  "parameters": [
    {
      "name": "id",
      "in": "path",
      "required": true,
      "description": ""
    }
  ],
  "requestBody": {
    "content": "application/json",
    "schema": {
      "$ref": "#/components/schemas/SendReminderRequest"
    }
  }
}