Bulk dismiss
curl --request POST \
--url https://api.app.hrizn.io/v1/public/content-intelligence/bulk-dismiss \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"ids": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
]
}
'import requests
url = "https://api.app.hrizn.io/v1/public/content-intelligence/bulk-dismiss"
payload = { "ids": ["3c90c3cc-0d44-4b50-8888-8dd25736052a"] }
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({ids: ['3c90c3cc-0d44-4b50-8888-8dd25736052a']})
};
fetch('https://api.app.hrizn.io/v1/public/content-intelligence/bulk-dismiss', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({ids: ['3c90c3cc-0d44-4b50-8888-8dd25736052a']})
};
fetch('https://api.app.hrizn.io/v1/public/content-intelligence/bulk-dismiss', 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/content-intelligence/bulk-dismiss",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'ids' => [
'3c90c3cc-0d44-4b50-8888-8dd25736052a'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"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": {
"dismissed_count": 3,
"dismissed": [
{
"id": "c3a1f8b2-7e4d-4a9c-b5e6-1234567890ab",
"status": "dismissed",
"updated_at": "2026-03-02T10:30:00.000Z"
},
{
"id": "d4b2e9c3-8f5e-5b0d-c6f7-2345678901bc",
"status": "dismissed",
"updated_at": "2026-03-02T10:30:00.000Z"
},
{
"id": "e5c3f0d4-9a6b-6c1e-d8g9-3456789012cd",
"status": "dismissed",
"updated_at": "2026-03-02T10:30:00.000Z"
}
]
}
}
Bulk dismiss
Dismiss multiple content intelligence recommendations at once
POST
/
content-intelligence
/
bulk-dismiss
Bulk dismiss
curl --request POST \
--url https://api.app.hrizn.io/v1/public/content-intelligence/bulk-dismiss \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"ids": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
]
}
'import requests
url = "https://api.app.hrizn.io/v1/public/content-intelligence/bulk-dismiss"
payload = { "ids": ["3c90c3cc-0d44-4b50-8888-8dd25736052a"] }
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({ids: ['3c90c3cc-0d44-4b50-8888-8dd25736052a']})
};
fetch('https://api.app.hrizn.io/v1/public/content-intelligence/bulk-dismiss', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({ids: ['3c90c3cc-0d44-4b50-8888-8dd25736052a']})
};
fetch('https://api.app.hrizn.io/v1/public/content-intelligence/bulk-dismiss', 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/content-intelligence/bulk-dismiss",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'ids' => [
'3c90c3cc-0d44-4b50-8888-8dd25736052a'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"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": {
"dismissed_count": 3,
"dismissed": [
{
"id": "c3a1f8b2-7e4d-4a9c-b5e6-1234567890ab",
"status": "dismissed",
"updated_at": "2026-03-02T10:30:00.000Z"
},
{
"id": "d4b2e9c3-8f5e-5b0d-c6f7-2345678901bc",
"status": "dismissed",
"updated_at": "2026-03-02T10:30:00.000Z"
},
{
"id": "e5c3f0d4-9a6b-6c1e-d8g9-3456789012cd",
"status": "dismissed",
"updated_at": "2026-03-02T10:30:00.000Z"
}
]
}
}
Dismiss up to 50 content intelligence recommendations in a single request. Only active recommendations will be dismissed; any IDs that reference non-active or non-existent recommendations are silently skipped.
Scope required:
content_intelligence:write
Request body
Array of recommendation UUIDs to dismiss. Minimum 1, maximum 50.
{
"data": {
"dismissed_count": 3,
"dismissed": [
{
"id": "c3a1f8b2-7e4d-4a9c-b5e6-1234567890ab",
"status": "dismissed",
"updated_at": "2026-03-02T10:30:00.000Z"
},
{
"id": "d4b2e9c3-8f5e-5b0d-c6f7-2345678901bc",
"status": "dismissed",
"updated_at": "2026-03-02T10:30:00.000Z"
},
{
"id": "e5c3f0d4-9a6b-6c1e-d8g9-3456789012cd",
"status": "dismissed",
"updated_at": "2026-03-02T10:30:00.000Z"
}
]
}
}
The
dismissed_count may be less than the number of IDs provided if some recommendations were already dismissed, expired, or belonged to a different site.Authorizations
Your Hrizn API key (prefix hzk_)
Body
application/json
Array of recommendation IDs to dismiss (max 50).
Required array length:
1 - 50 elementsResponse
Bulk dismiss result
Last modified on March 15, 2026
⌘I
