AgeChecker.Net · JSON Structure

Age Verification Webhook Config Structure

WebhookConfig schema from AgeChecker.Net API

Type: object Properties: 5
Age VerificationIdentityComplianceRegulatoryE-Commerce

WebhookConfig is a JSON Structure definition published by AgeChecker.Net, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id url events secret created_at

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/agechecker-net/refs/heads/main/json-structure/age-verification-webhook-config-structure.json",
  "name": "WebhookConfig",
  "description": "WebhookConfig schema from AgeChecker.Net API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Webhook configuration identifier.",
      "example": "500123"
    },
    "url": {
      "type": "string",
      "description": "URL to receive webhook events.",
      "example": "https://example.com"
    },
    "events": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "List of event types to receive.",
      "example": [
        "example_value"
      ]
    },
    "secret": {
      "type": "string",
      "description": "Shared secret for webhook signature verification.",
      "example": "example_value"
    },
    "created_at": {
      "type": "datetime",
      "description": "When the webhook was configured.",
      "example": "2025-03-15T14:30:00Z"
    }
  }
}