curl --request POST \
--url https://instance.prod.onboardapp.io/v1/alerts/bulk/acknowledge \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '
{
"alert_tokens": [
"<string>"
]
}
'{
"data": {
"acknowledged": 123,
"failed": 123
},
"meta": {
"request_id": "req_9k4m2n1p3q",
"page": {
"cursor": "<string>",
"has_more": true
}
}
}Acknowledge multiple alerts in a single request. Maximum 50 alerts per request.
curl --request POST \
--url https://instance.prod.onboardapp.io/v1/alerts/bulk/acknowledge \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '
{
"alert_tokens": [
"<string>"
]
}
'{
"data": {
"acknowledged": 123,
"failed": 123
},
"meta": {
"request_id": "req_9k4m2n1p3q",
"page": {
"cursor": "<string>",
"has_more": true
}
}
}Project-scoped API key for server-to-server authentication. Obtain keys from the Zenoo dashboard under Project Settings > API Keys. Staging and production environments use separate keys.
Unique key for idempotent request handling. If a request with the same key was already processed within the last 24 hours, the original response is returned.
List of alert tokens to acknowledge.
1 - 50 elements