Skip to main content
PATCH
/
content-intelligence
/
{id}
Dismiss recommendation
curl --request PATCH \
  --url https://api.app.hrizn.io/v1/public/content-intelligence/{id} \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "status": "dismissed"
}
'
{
  "data": {
    "id": "c3a1f8b2-7e4d-4a9c-b5e6-1234567890ab",
    "status": "dismissed",
    "updated_at": "2026-03-02T10:30:00.000Z"
  }
}
Marks a recommendation as dismissed, removing it from the active list. This is useful for recommendations your team has reviewed and decided not to act on. Scope required: content_intelligence:read

Path parameters

id
string
required
UUID of the content intelligence recommendation.

Request body

status
string
required
Must be "dismissed".
{
  "data": {
    "id": "c3a1f8b2-7e4d-4a9c-b5e6-1234567890ab",
    "status": "dismissed",
    "updated_at": "2026-03-02T10:30:00.000Z"
  }
}
Dismissed recommendations are not permanently deleted. They remain in the database and can be filtered by status. The nightly pipeline may generate new recommendations for the same gap in future runs.

Authorizations

X-API-Key
string
header
required

Your Hrizn API key (prefix hzk_)

Path Parameters

id
string<uuid>
required

Content intelligence recommendation ID

Body

application/json
status
enum<string>
required

Must be dismissed.

Available options:
dismissed

Response

Recommendation dismissed

data
object
Last modified on March 12, 2026