🎉 vox.ai 디스코드 커뮤니티가 새로 열렸어요! 참여하기 →
특정 알림 규칙에서 발생한 incident 목록을 조회합니다. incident 상태로 필터링할 수 있습니다.
curl --request GET \
--url https://client-api.tryvox.co/v3/alert-rules/{alert_rule_id}/incidents \
--header 'Authorization: Bearer <token>'{
"items": [
{
"id": "<string>",
"alert_rule_id": "<string>",
"status": "triggered",
"metric_value": 123,
"threshold_value": 123,
"created_at": 123,
"change_rate": 123
}
],
"total_count": 123,
"next_cursor": "<string>"
}Documentation Index
Fetch the complete documentation index at: https://docs.tryvox.co/llms.txt
Use this file to discover all available pages before exploring further.
조직 API 키를 Authorization: Bearer <token> 형식으로 보냅니다.
알림 규칙 ID입니다.
상태 필터입니다. 여러 상태를 지원하는 endpoint에서는 query parameter를 반복해서 전달합니다. 알림 incident 의 라이프사이클 상태.
triggered : 임계값 위반 감지 직후, 아직 사용자에게 통보 처리 전.active : 통보된 뒤 임계값이 계속 위반 중인 상태.resolved : 임계값 정상화로 종료.triggered, active, resolved 이전 응답의 next_cursor 값입니다. 다음 페이지를 조회할 때 그대로 전달합니다.
반환할 최대 항목 수입니다. v3 목록 endpoint는 1~100을 허용합니다.
1 <= x <= 100정렬 기준 필드입니다. 기본값은 created_at입니다.
"created_at"정렬 방향입니다. 허용값은 asc, desc입니다.
asc, desc Was this page helpful?
curl --request GET \
--url https://client-api.tryvox.co/v3/alert-rules/{alert_rule_id}/incidents \
--header 'Authorization: Bearer <token>'{
"items": [
{
"id": "<string>",
"alert_rule_id": "<string>",
"status": "triggered",
"metric_value": 123,
"threshold_value": 123,
"created_at": 123,
"change_rate": 123
}
],
"total_count": 123,
"next_cursor": "<string>"
}