Docupilot · Schema

TestWebhookPayload

Document GenerationPDF GenerationDocument AutomationTemplate EngineeSignatureWorkflow Automation

Properties

Name Type Description
url string Webhook URL
hmac_secret string HMAC secret for signing the request
View JSON Schema on GitHub

JSON Schema

app-TestWebhookPayload.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "TestWebhookPayload",
  "description": "",
  "type": "object",
  "properties": {
    "url": {
      "type": "string",
      "format": "uri",
      "description": "Webhook URL"
    },
    "hmac_secret": {
      "type": "string",
      "description": "HMAC secret for signing the request"
    }
  },
  "required": [
    "url"
  ]
}