Backend API
cURL
curl --request GET \ --url https://api.wacht.dev/webhooks/apps \ --header 'Authorization: <api-key>'
{ "data": [ { "deployment_id": "9876543210987654321", "name": "my-webhook-app", "description": "Webhooks for user events", "signing_secret": "whsec_abc123...", "is_active": true, "created_at": "2024-01-15T10:30:00Z", "updated_at": "2024-01-15T10:30:00Z" } ], "has_more": true, "limit": 123, "offset": 123 }
Get all webhook apps for the deployment
API key authentication (format: Bearer {api_key})
Number of items to return
1 <= x <= 100
Number of items to skip
x >= 0
Whether to include inactive apps
List of webhook apps
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?