API Reference · Webhooks
List webhooks
List all webhook endpoints in your workspace.
GET/v1/webhooks
Headers
Authorizationstringrequired
Your API key as a bearer token:
Bearer rk_your_api_key. You can also use the X-Api-Key header.Request
curl -X GET https://api.raanse.com/v1/webhooks \
-H "Authorization: Bearer rk_your_api_key"Response
200{
"success": true,
"message": "OK",
"statusCode": 200,
"data": [{ "id": "01JABCDXYZ0000000000000000", "url": "https://acme.co/webhooks/ranse", "enabled": true, "eventTypes": ["Delivered"] }]
}