Skip to main content
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"
  ]
}
'
{
  "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

ids
string[]
required
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

X-API-Key
string
header
required

Your Hrizn API key (prefix hzk_)

Body

application/json
ids
string<uuid>[]
required

Array of recommendation IDs to dismiss (max 50).

Required array length: 1 - 50 elements

Response

Bulk dismiss result

data
object
Last modified on April 13, 2026