# GET /api/notifications > Notifications - List all Notifications - **Endpoint:** `GET /api/notifications` - **Group:** Notifications - **Since:** v1.0.0 - **Defined in:** `RestApi/Controllers/NotificationsController.php` ## Headers | Field | Type | Description | | --- | --- | --- | | `authtoken` | String | Authentication token, generated from admin area | ## Parameters | Field | Type | Required | Description | | --- | --- | --- | --- | | `user_id` | Number | no | Optional filter by user ID | | `status` | String | no | Optional filter by status (read, unread) | ## Request example ```bash curl -X GET "https://yoursite.com/index.php/api/notifications" \ -H "authtoken: YOUR_API_TOKEN" ``` ## Responses ### Success - Success-Response: ```json [ { "id": "1", "user_id": "1", "event": "task_assigned", "title": "New task", "is_read": "0" } ] ``` --- Part of the [REST API for RISE CRM](https://risecrm.themesic.com/apiguide/) documentation. Full page: https://risecrm.themesic.com/apiguide/notifications/get-notifications/