PUT /api/v1/tracker/wakeups/{tracker-wakeup-id}
Update one of your wake-up records.
Permissions
| Permission | Description |
|---|
tracker_wakeups.update | Update wake-up records |
URL Parameters
| Name | Type | Required | Description | Example |
|---|
tracker-wakeup-id | int | Yes | ID of the wake-up record | 34 |
Request Body Parameters
| Name | Type | Required | Description |
|---|
tracked_at | date | No | When the wake-up happened |
notes | string | No | Optional notes (max 2000); send null to clear them |
All parameters are optional. If omitted, they are not updated.
Request Example
PUT /api/v1/tracker/wakeups/34
{
"notes": null
}
Response
200 OK
{
"data": { /* tracker wakeup resource */ }
}
Error Responses