Handle Events & Webhooks
전송 진행에 반응해 애플리케이션 로직을 실행합니다.
알림 조회
GET /api/notification — 알림 목록 조회
bash
1
2
3
curl "https://exacoola.innorix.com/api/notification?page=1&size=20" \
-H "Authorization: Bearer <ACCESS_TOKEN>" \
-H "x-workspace-id: <WORKSPACE_ID>"
응답:
json
1
2
3
4
5
6
7
8
9
10
{
"status_code": 200,
"message": "success",
"data": {
"items": [
{ "id": "ntf_01", "type": "transfer_completed", "monitorId": "mon_7788", "read": false }
],
"total": 1
}
}
전송 상태 폴링
| 목적 | 메서드 · 경로 |
|---|---|
| 전송 단위 상태 조회 | GET /api/transfer/{id}/status |
| 장비 단위 상태 조회 | GET /api/transfer/{device}/status |