Notifications
Manage user notifications. Ability to view and update notifications.
Available Endpoints
| Method |
Path |
Description |
| GET |
/api/notifications |
List notifications |
| GET |
/api/notifications/{id} |
View notification details |
| PUT |
/api/notifications/{id} |
Full update of a notification |
| PATCH |
/api/notifications/{id} |
Partial update of a notification |
Example Request
curl -X GET "https://example.com/api/notifications" \
-H "Authorization: Bearer {token}"
Success Response (200)
{
"records": [],
"meta": {
"total": 0,
"current_page": 1,
"per_page": 20
}
}
Errors
| Code |
Description |
| 401 |
Invalid token |
| 403 |
Access denied |
| 404 |
Record not found |