در حال بارگذاری…
List wake-up records — your own, or those of a tracker shared with you.
| Permission | Description |
|---|---|
tracker_wakeups.view | View wake-up records |
| Name | Type | Required | Description |
|---|---|---|---|
start_date | date | No | Only records tracked on or after this date |
end_date |
| date |
| No |
| Only records tracked on or before this date |
shared_tracker_id | int | No | Read another user's records through a shared tracker. A share the caller is not party to, or one that does not exist, returns 404 — the two are indistinguishable |
search | string | No | Match against notes |
page | int | No | Page number |
GET /api/v1/tracker/wakeups?start_date=2026-08-01&end_date=2026-08-31&page=1
Ordered by tracked_at descending.
{
"data": [<tracker wakeup resource>, ...],
"links": {<pagination data>},
"meta": {<pagination data>}
}
| Status | Description | Reference |
|---|---|---|
| 401 | Unauthorized | Authentication error |
| 403 | Forbidden (no permission) | Permission error |
| 404 | shared_tracker_id names a share the caller may not read | Not found error |