SignWell · Schema

WebhookResponse

Webhook subscription

E-SignatureElectronic SignatureDocumentsPDFSigningTemplatesWorkflowsHIPAASOC2

Properties

Name Type Description
id string
callback_url string
api_application_id string
View JSON Schema on GitHub

JSON Schema

WebhookResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/signwell/main/json-schema/WebhookResponse.json",
  "title": "WebhookResponse",
  "type": "object",
  "description": "Webhook subscription",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid"
    },
    "callback_url": {
      "type": "string",
      "format": "url"
    },
    "api_application_id": {
      "type": "string",
      "format": "uuid",
      "nullable": true
    }
  },
  "required": [
    "id",
    "callback_url"
  ]
}