List instance webhook events REST API
GET
/api/admin/webhooks/events
const url = 'https://hitkeep.com/api/admin/webhooks/events';const options = {method: 'GET', headers: {cookie: 'hk_token=<hk_token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://hitkeep.com/api/admin/webhooks/events \ --cookie hk_token=<hk_token>Lists event types valid for this scope.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Event catalog
Media typeapplication/json
Array<object>
object
scopes
required
Array<string>
site_scoped
required
boolean
type
required
string
Example
[ { "scopes": [ "instance" ] }]