SignWell · Example Payload

Createdocument

Creates and optionally sends a new document for signing. If `draft` is set to true the document will not be sent.

Document

Createdocument 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": "createDocument",
  "method": "POST",
  "path": "/api/v1/documents",
  "summary": "Create Document",
  "description": "Creates and optionally sends a new document for signing. If `draft` is set to true the document will not be sent.",
  "tags": [
    "Document"
  ],
  "parameters": [],
  "requestBody": {
    "content": "application/json",
    "schema": {
      "$ref": "#/components/schemas/DocumentRequest"
    }
  }
}