webhook-ping-form-encoded

The webhooks ping payload encoded with URL encoding.

APIs.ioEngineeringPlatform

Properties

Name Type Description
payload string A URL-encoded string of the ping JSON payload. The decoded payload is a JSON object.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-webhook-ping-form-encoded-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/webhook-ping-form-encoded",
  "title": "webhook-ping-form-encoded",
  "description": "The webhooks ping payload encoded with URL encoding.",
  "type": "object",
  "properties": {
    "payload": {
      "description": "A URL-encoded string of the ping JSON payload. The decoded payload is a JSON object.",
      "type": "string"
    }
  },
  "required": [
    "payload"
  ]
}