List webhook subscriptions
curl --request GET \
--url https://api.app.hrizn.io/v1/public/webhooks \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.app.hrizn.io/v1/public/webhooks"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.app.hrizn.io/v1/public/webhooks', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.app.hrizn.io/v1/public/webhooks', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.app.hrizn.io/v1/public/webhooks",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}{
"data": {
"webhooks": [
{
"id": "e31aa30b-cef4-47cd-9e41-ad7f8b475bd0",
"url": "https://webhook.site/0e675dc0-eb87-48b2-ba80-1913d8d2a85e",
"events": [
"ideacloud.completed",
"ideacloud.failed",
"content.progress",
"content.completed",
"content.failed",
"compliance.completed",
"content_tools.completed",
"inventory.description.completed",
"inventory.description.batch_completed",
"inventory.feed.updated"
],
"is_active": true,
"failure_count": 0,
"created_at": "2026-02-28T11:29:57.438281+00:00",
"updated_at": "2026-02-28T11:46:16.545644+00:00"
}
]
}
}
List webhooks
List all webhook subscriptions for this site
GET
/
webhooks
List webhook subscriptions
curl --request GET \
--url https://api.app.hrizn.io/v1/public/webhooks \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.app.hrizn.io/v1/public/webhooks"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.app.hrizn.io/v1/public/webhooks', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.app.hrizn.io/v1/public/webhooks', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.app.hrizn.io/v1/public/webhooks",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}{
"data": {
"webhooks": [
{
"id": "e31aa30b-cef4-47cd-9e41-ad7f8b475bd0",
"url": "https://webhook.site/0e675dc0-eb87-48b2-ba80-1913d8d2a85e",
"events": [
"ideacloud.completed",
"ideacloud.failed",
"content.progress",
"content.completed",
"content.failed",
"compliance.completed",
"content_tools.completed",
"inventory.description.completed",
"inventory.description.batch_completed",
"inventory.feed.updated"
],
"is_active": true,
"failure_count": 0,
"created_at": "2026-02-28T11:29:57.438281+00:00",
"updated_at": "2026-02-28T11:46:16.545644+00:00"
}
]
}
}
Returns all webhook subscriptions. Scope required:
webhooks:read
{
"data": {
"webhooks": [
{
"id": "e31aa30b-cef4-47cd-9e41-ad7f8b475bd0",
"url": "https://webhook.site/0e675dc0-eb87-48b2-ba80-1913d8d2a85e",
"events": [
"ideacloud.completed",
"ideacloud.failed",
"content.progress",
"content.completed",
"content.failed",
"compliance.completed",
"content_tools.completed",
"inventory.description.completed",
"inventory.description.batch_completed",
"inventory.feed.updated"
],
"is_active": true,
"failure_count": 0,
"created_at": "2026-02-28T11:29:57.438281+00:00",
"updated_at": "2026-02-28T11:46:16.545644+00:00"
}
]
}
}
Returns an empty
webhooks array if no webhook subscriptions have been configured.Authorizations
Your Hrizn API key (prefix hzk_)
Response
All webhook subscriptions
Last modified on February 28, 2026
⌘I
