# Get notifications **GET /data/user/notifications** Retrieve the last 100 user notifications filtered by given parameters. Supports filtering by date range, task type, status, and other criteria. ## Servers - http://api.example.com: http://api.example.com () ## Authentication methods - Jwt authorization ## Parameters #### Query parameters - **after** (string(date)) Filter notifications after this date - **before** (string(date)) Filter notifications before this date - **task_type_id** (string(uuid)) Filter by task type ID - **task_status_id** (string(uuid)) Filter by task status ID - **type** (string) Filter by notification type - **read** (boolean) Filter by read status - **watching** (boolean) Filter by watching status ## Responses ### 200: Last 100 user notifications matching filters #### Body Parameters: application/json (array[object]) - **id** (string(uuid)) Notification unique identifier - **type** (string) Notification type - **read** (boolean) Whether notification is read - **author_id** (string(uuid)) Author person identifier - **comment_id** (string(uuid)) Comment identifier - **task_id** (string(uuid)) Task identifier - **created_at** (string(date-time)) Creation timestamp - **updated_at** (string(date-time)) Last update timestamp [Powered by Bump.sh](https://bump.sh)