# Notifications User notification management endpoints ## Get user notifications - [GET /me/notifications](https://docs-staging.varmply.com/openapi/notifications/getusernotifications.md): Returns a paginated list of notifications for the authenticated user. Notifications are returned in descending order by creation timestamp (most recent first). Supports cursor-based pagination via the cursor query parameter. ## Mark notification as read - [POST /me/notifications/{id}/read](https://docs-staging.varmply.com/openapi/notifications/marknotificationasread.md): Marks a specific notification as read for the authenticated user. Returns the updated notification. If the notification is already read or doesn't exist, returns 404. ## Mark all notifications as read - [POST /me/notifications/read-all](https://docs-staging.varmply.com/openapi/notifications/markallnotificationsasread.md): Marks all unread notifications as read for the authenticated user. Returns the count of notifications that were marked as read.