SignWell · Example Payload

Getdocument

Returns a document and all associated document data. Supply the unique document ID from either a document creation request or Document page URL.

Document

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

Top-level fields

operationIdmethodpathsummarydescriptiontagsparameters

Example Payload

Raw ↑
{
  "operationId": "getDocument",
  "method": "GET",
  "path": "/api/v1/documents/{id}",
  "summary": "Get Document",
  "description": "Returns a document and all associated document data. Supply the unique document ID from either a document creation request or Document page URL.",
  "tags": [
    "Document"
  ],
  "parameters": [
    {
      "name": "id",
      "in": "path",
      "required": true,
      "description": ""
    }
  ]
}