Webhooks

Get outbound webhook configuration

GET
/api/v1/webhooks/config

Scope: webhooks:manage

The workspace's delivery URL and subscribed events. The signing secret is write-only and never returned.

Authorization

AuthorizationBearer <token>

Use Authorization: Bearer vrf_live_... or vrf_test_....

In: header

Response Body

application/json

curl -X GET "https://example.com/api/v1/webhooks/config"
{  "url": "http://example.com",  "enabled": true,  "enabledEvents": [    "report.created"  ],  "secret": "string",  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",  "createdAt": "2019-08-24T14:15:22Z",  "updatedAt": "2019-08-24T14:15:22Z"}