Blissfully · JSON Structure

Blissfully Webhook Structure

A configured webhook for Vendr event notifications

Type: object Properties: 4 Required: 3
ProcurementSaaS DiscoverySaaS ManagementSoftware ProcurementSpend OptimizationVendor Management

Webhook is a JSON Structure definition published by Blissfully, describing 4 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id url events active

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/blissfully/refs/heads/main/json-structure/blissfully-webhook-structure.json",
  "name": "Webhook",
  "description": "A configured webhook for Vendr event notifications",
  "required": [
    "id",
    "url",
    "events"
  ],
  "type": "object",
  "properties": {
    "id": {
      "description": "Unique webhook identifier",
      "type": "string",
      "example": "webhook-500123"
    },
    "url": {
      "description": "Webhook endpoint URL",
      "type": "uri",
      "example": "https://example.com/webhook"
    },
    "events": {
      "description": "Subscribed event types",
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": [
        "pricing.updated"
      ]
    },
    "active": {
      "description": "Whether the webhook is active",
      "type": "boolean",
      "example": true
    }
  }
}