AgeChecker.Net · Schema
WebhookConfig
WebhookConfig schema from AgeChecker.Net API
Age VerificationIdentityComplianceRegulatoryE-Commerce
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Webhook configuration identifier. |
| url | string | URL to receive webhook events. |
| events | array | List of event types to receive. |
| secret | string | Shared secret for webhook signature verification. |
| created_at | string | When the webhook was configured. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/agechecker-net/refs/heads/main/json-schema/age-verification-webhook-config-schema.json",
"title": "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": "string",
"format": "date-time",
"description": "When the webhook was configured.",
"example": "2025-03-15T14:30:00Z"
}
}
}