PDFShift · Schema

WebhookForm

PDFHTML to PDFDocument ConversionScreenshotChromiumREST API

Properties

Name Type Description
url string
method string
auth object
headers object
View JSON Schema on GitHub

JSON Schema

webhookform.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/pdfshift/refs/heads/main/json-schema/webhookform.json",
  "title": "WebhookForm",
  "type": "object",
  "properties": {
    "url": {
      "type": "string",
      "format": "uri"
    },
    "method": {
      "type": "string",
      "default": "POST"
    },
    "auth": {
      "$ref": "#/components/schemas/BasicAuthForm"
    },
    "headers": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    }
  },
  "required": [
    "url"
  ]
}