SignWell · Example Payload

Createwebhook

Register a callback URL that we will post document events to.

Webhooks

Createwebhook 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": "createWebhook",
  "method": "POST",
  "path": "/api/v1/hooks",
  "summary": "Create Webhook",
  "description": "Register a callback URL that we will post document events to.",
  "tags": [
    "Webhooks"
  ],
  "parameters": [],
  "requestBody": {
    "content": "application/json",
    "schema": {
      "type": "object",
      "properties": {
        "callback_url": {
          "type": "string",
          "format": "url",
          "description": "URL that we will post document events to.",
          "example": "https://example.com/webhook"
        },
        "api_application_id": {
          "type": "string",
          "format": "uuid",
          "description": "Unique identifier for the API Application."
        }
      },
      "required": [
        "callback_url"
      ]
    }
  }
}