curl --request POST \
--url https://instance.prod.onboardapp.io/v1/alerts/bulk/assign \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '
{
"alert_tokens": [
"<string>"
],
"user_id": "<string>",
"note": "<string>"
}
'{
"data": {
"assigned": 123,
"failed": 123
},
"meta": {
"request_id": "req_9k4m2n1p3q",
"page": {
"cursor": "<string>",
"has_more": true
}
}
}Assign multiple alerts to a specific analyst. Maximum 50 alerts per request.
curl --request POST \
--url https://instance.prod.onboardapp.io/v1/alerts/bulk/assign \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '
{
"alert_tokens": [
"<string>"
],
"user_id": "<string>",
"note": "<string>"
}
'{
"data": {
"assigned": 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.