/api/user-challenges/:id/notes
Requires authentication.
Bearer token obtained from
/api/auth/login or /api/auth/signup. Format: Bearer <token>.Path parameters
The numeric ID of the user challenge to update.
Request body
Progress notes for the challenge. Replaces any previously saved notes.
Example
Response
200 OK Returns the updated user challenge object with the newnotes value.
Unique numeric identifier for this user challenge.
UUID of the authenticated user.
ID of the challenge template this challenge is based on.
Current status of the challenge. One of
ACTIVE, COMPLETED, or ABANDONED.ISO 8601 timestamp of when the challenge was started.
ISO 8601 timestamp of completion.
null if the challenge has not been completed.The updated progress notes.
ISO 8601 timestamp of when the record was created.
ISO 8601 timestamp of this update.
Example response
Errors
| Status | Description |
|---|---|
401 | Missing, invalid, or expired token. |
404 | No user challenge found with the given id. |