Skip to main content
PUT
/
alerts
/
acknowledge
Acknowledge alert by ID
curl --request PUT \
  --url https://dashboard.hologram.io/api/1/alerts/acknowledge \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "alertIds": [
    12,
    34
  ],
  "type": "datalimit"
}
'
{
  "success": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.hologram.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

HTTP Basic authentication using API keys. Set the username to apikey and the password to your API key.

You can find your API key on the Hologram Dashboard under Account Settings.

Query Parameters

orgid
number
required

Body

application/json
alertIds
number[]
required

List of alert ids to be acknowledged

type
enum<string>

Alert type

Available options:
datalimit,
usage,
tacchange

Response

200 - application/json

OK

success
boolean

Whether the request was successful or not

Example:

true