Backend API
cURL
curl --request GET \ --url https://api.wacht.dev/webhooks/event-catalogs \ --header 'Authorization: <api-key>'
{ "data": [ { "deployment_id": "9876543210987654321", "slug": "user-events", "name": "User Events", "description": "<string>", "events": [ { "name": "user.created", "description": "<string>", "schema": {}, "is_archived": false } ], "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z" } ], "has_more": true, "limit": 123, "offset": 123 }
Get all event catalogs for the deployment
API key authentication (format: Bearer {api_key})
List of event catalogs
Array of items
Show child attributes
Whether there are more items
Number of items returned per page
Number of items skipped
Was this page helpful?