Request body
json
{} (no request body)API Endpoint
List configured webhook endpoints and subscribed events.
GET /management/webhooks
Use these endpoints from internal tooling or your frontend backend to inspect licenses, manage slug policy templates, provisioning API keys, webhook endpoint configuration/logs, and offline JWT signing keys. Management routes require the management bootstrap key configured via MANAGEMENT_API_KEYS or MANAGEMENT_API_KEY.
curl -sS http://localhost:8080/management/webhooks \
-H "Authorization: Bearer management_key_dev_123456"{} (no request body){
"webhooks": [
{
"id": 1,
"name": "audit-sync",
"url": "https://example.com/hooks/license",
"events": ["license.generated", "license.revoked"],
"enabled": true,
"created_at": "2026-04-21T12:00:00Z",
"updated_at": "2026-04-21T12:00:00Z"
}
]
}webhooks
array
Configured webhook endpoint records.
Missing or invalid management API key.
Unexpected server or storage error.