🎉 vox.ai 디스코드 커뮤니티가 새로 열렸어요! 참여하기 →
인증된 조직의 알림 규칙 목록을 조회합니다. 현재 동작 상태는 각 항목의 status, enabled, paused_until 필드를 확인합니다.
curl --request GET \
--url https://client-api.tryvox.co/v3/alert-rules \
--header 'Authorization: Bearer <token>'{
"items": [
{
"id": "<string>",
"name": "<string>",
"metric_type": "call_count",
"labels": {},
"threshold_type": "absolute",
"comparison_op": "gt",
"threshold_value": 123,
"time_window": "1m",
"evaluation_frequency": "1m",
"enabled": true,
"status": "active",
"notification_channels": [
{
"type": "webhook"
}
],
"paused": true,
"created_at": 123,
"updated_at": 123,
"description": "<string>",
"active_schedule": {
"enabled": true,
"timezone": "<string>",
"windows": [
{
"days": [
"Monday"
],
"start_time": "<string>",
"end_time": "<string>"
}
]
},
"paused_until": 123,
"last_notified_at": 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> 형식으로 보냅니다.
이전 응답의 next_cursor 값입니다. 다음 페이지를 조회할 때 그대로 전달합니다.
반환할 최대 항목 수입니다. v3 목록 endpoint는 1~100을 허용합니다.
1 <= x <= 100정렬 기준 필드입니다. 기본값은 created_at입니다.
created_at, updated_at, name 정렬 방향입니다. 허용값은 asc, desc입니다.
asc, desc Was this page helpful?
curl --request GET \
--url https://client-api.tryvox.co/v3/alert-rules \
--header 'Authorization: Bearer <token>'{
"items": [
{
"id": "<string>",
"name": "<string>",
"metric_type": "call_count",
"labels": {},
"threshold_type": "absolute",
"comparison_op": "gt",
"threshold_value": 123,
"time_window": "1m",
"evaluation_frequency": "1m",
"enabled": true,
"status": "active",
"notification_channels": [
{
"type": "webhook"
}
],
"paused": true,
"created_at": 123,
"updated_at": 123,
"description": "<string>",
"active_schedule": {
"enabled": true,
"timezone": "<string>",
"windows": [
{
"days": [
"Monday"
],
"start_time": "<string>",
"end_time": "<string>"
}
]
},
"paused_until": 123,
"last_notified_at": 123
}
],
"total_count": 123,
"next_cursor": "<string>"
}