SignWell · Schema

CompletedPdfUrlResponse

JSON response containing the URL to the completed PDF file (returned when url_only=true)

E-SignatureElectronic SignatureDocumentsPDFSigningTemplatesWorkflowsHIPAASOC2

Properties

Name Type Description
file_url string URL to download the completed document
View JSON Schema on GitHub

JSON Schema

CompletedPdfUrlResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/signwell/main/json-schema/CompletedPdfUrlResponse.json",
  "title": "CompletedPdfUrlResponse",
  "type": "object",
  "description": "JSON response containing the URL to the completed PDF file (returned when url_only=true)",
  "properties": {
    "file_url": {
      "type": "string",
      "format": "url",
      "description": "URL to download the completed document"
    }
  },
  "required": [
    "file_url"
  ]
}