Skip to main content
GET
/
config
/
webhooks
List webhook endpoints
curl --request GET \
  --url https://api.vocobase.com/api/v2/config/webhooks \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "endpoints": [
      {
        "id": "12345678-abcd-1234-abcd-123456789012",
        "label": "prod",
        "url": "https://example.com/webhooks/vocobase",
        "enabled": true,
        "last_delivery_at": "2026-05-25T10:30:00.000Z",
        "last_delivery_status": 200,
        "created_at": "2026-05-25T10:00:00.000Z",
        "updated_at": "2026-05-25T10:30:00.000Z"
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.vocobase.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key in format: rg_live_xxxx. Pass as a Bearer token in the Authorization header.

Response

Webhook endpoints retrieved successfully.

success
boolean
data
object