SignWell · Example Payload

Senddocument

Updates a draft document and sends it to be signed by recipients.

Document

Senddocument 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": "sendDocument",
  "method": "POST",
  "path": "/api/v1/documents/{id}/send",
  "summary": "Update and Send Document",
  "description": "Updates a draft document and sends it to be signed by recipients.",
  "tags": [
    "Document"
  ],
  "parameters": [
    {
      "name": "id",
      "in": "path",
      "required": true,
      "description": ""
    }
  ],
  "requestBody": {
    "content": "application/json",
    "schema": {
      "$ref": "#/components/schemas/UpdateDocumentAndSendRequest"
    }
  }
}