List webhook event types
curl --request GET \
--url https://api.app.hrizn.io/v1/public/reference/webhook-events \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.app.hrizn.io/v1/public/reference/webhook-events"
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/reference/webhook-events', 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/reference/webhook-events', 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/reference/webhook-events",
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": {
"webhook_events": {
"ideacloud.completed": "IdeaCloud research finished",
"ideacloud.failed": "IdeaCloud research failed",
"content.progress": "Content generation stage transition (researching, outlining, writing, finalizing)",
"content.completed": "Content generation finished",
"content.failed": "Content generation failed",
"content.published": "Content published and available via publish-data endpoint",
"content.unpublished": "Content unpublished (reverted to draft)",
"content.scheduled": "Content scheduled for future publication",
"content.approval.submitted": "Content submitted for approval",
"content.approval.approved": "Content approved by reviewer",
"content.approval.rejected": "Content changes requested by reviewer",
"content.approval.escalated": "Content approval escalated to next reviewer in round-robin queue",
"content.approval.overridden": "Content approval overridden by authorized user with reason",
"compliance.completed": "Compliance check finished",
"content_tools.completed": "Content tools generation finished",
"inventory.description.completed": "Vehicle description generated",
"inventory.description.batch_completed": "Batch description generation finished",
"inventory.feed.updated": "Inventory feed refreshed",
"social.post.published": "Social post published to one or more platforms",
"social.post.scheduled": "Social post scheduled for future publication",
"social.post.failed": "Social post failed to publish on one or more platforms",
"social.review.created": "A new social review was ingested",
"social.review.updated": "A social review was updated (e.g. edited or replied)"
}
}
}
Webhook events
List all webhook event types
GET
/
reference
/
webhook-events
List webhook event types
curl --request GET \
--url https://api.app.hrizn.io/v1/public/reference/webhook-events \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.app.hrizn.io/v1/public/reference/webhook-events"
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/reference/webhook-events', 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/reference/webhook-events', 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/reference/webhook-events",
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": {
"webhook_events": {
"ideacloud.completed": "IdeaCloud research finished",
"ideacloud.failed": "IdeaCloud research failed",
"content.progress": "Content generation stage transition (researching, outlining, writing, finalizing)",
"content.completed": "Content generation finished",
"content.failed": "Content generation failed",
"content.published": "Content published and available via publish-data endpoint",
"content.unpublished": "Content unpublished (reverted to draft)",
"content.scheduled": "Content scheduled for future publication",
"content.approval.submitted": "Content submitted for approval",
"content.approval.approved": "Content approved by reviewer",
"content.approval.rejected": "Content changes requested by reviewer",
"content.approval.escalated": "Content approval escalated to next reviewer in round-robin queue",
"content.approval.overridden": "Content approval overridden by authorized user with reason",
"compliance.completed": "Compliance check finished",
"content_tools.completed": "Content tools generation finished",
"inventory.description.completed": "Vehicle description generated",
"inventory.description.batch_completed": "Batch description generation finished",
"inventory.feed.updated": "Inventory feed refreshed",
"social.post.published": "Social post published to one or more platforms",
"social.post.scheduled": "Social post scheduled for future publication",
"social.post.failed": "Social post failed to publish on one or more platforms",
"social.review.created": "A new social review was ingested",
"social.review.updated": "A social review was updated (e.g. edited or replied)"
}
}
}
Returns all event types that can be subscribed to via webhooks as a key-value map.
{
"data": {
"webhook_events": {
"ideacloud.completed": "IdeaCloud research finished",
"ideacloud.failed": "IdeaCloud research failed",
"content.progress": "Content generation stage transition (researching, outlining, writing, finalizing)",
"content.completed": "Content generation finished",
"content.failed": "Content generation failed",
"content.published": "Content published and available via publish-data endpoint",
"content.unpublished": "Content unpublished (reverted to draft)",
"content.scheduled": "Content scheduled for future publication",
"content.approval.submitted": "Content submitted for approval",
"content.approval.approved": "Content approved by reviewer",
"content.approval.rejected": "Content changes requested by reviewer",
"content.approval.escalated": "Content approval escalated to next reviewer in round-robin queue",
"content.approval.overridden": "Content approval overridden by authorized user with reason",
"compliance.completed": "Compliance check finished",
"content_tools.completed": "Content tools generation finished",
"inventory.description.completed": "Vehicle description generated",
"inventory.description.batch_completed": "Batch description generation finished",
"inventory.feed.updated": "Inventory feed refreshed",
"social.post.published": "Social post published to one or more platforms",
"social.post.scheduled": "Social post scheduled for future publication",
"social.post.failed": "Social post failed to publish on one or more platforms",
"social.review.created": "A new social review was ingested",
"social.review.updated": "A social review was updated (e.g. edited or replied)"
}
}
}
Last modified on June 30, 2026
⌘I
