list-appoint-events¶
予約(appoint)に関する変更イベントの一覧を、新しい順にページ分けして取得する。
リクエスト¶
| 項目 | 内容 |
|---|---|
| メソッド | GET |
| パス | /api/list-appoint-events |
| クエリ | offset — 取得開始位置(0 以上の整数)、limit — 取得件数(正の整数) |
例¶
レスポンス¶
AppEvent の配列。app_event_id の降順(新しい順)で並びます。data には対象時点の予約情報が JSON 文字列で入ります。
例¶
[
{
"appEventId": 5002,
"createdAt": "2026-07-10 11:00:00",
"model": "appoint",
"kind": "updated",
"data": "{\"appointId\":100,\"appointTimeId\":42,\"patientName\":\"山田太郎\",\"patientId\":1234,\"memo\":\"再診\"}"
}
]
エラー¶
| ステータス | 意味 |
|---|---|
400 |
offset が 0 以上の整数でない、または limit が正の整数でない |
500 |
取得に失敗した |