# POST /api/notifications > Notifications - Add Notification - **Endpoint:** `POST /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 | yes | Mandatory User ID | | `event` | string | yes | Mandatory Event name | | `title` | string | no | Optional Notification title | ## Request example ```bash curl -X POST "https://yoursite.com/index.php/api/notifications" \ -H "authtoken: YOUR_API_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "user_id": "...", "event": "..." }' ``` ## Responses ### Success - Success-Response: ```json HTTP/1.1 201 Created { "status": 200, "messages": {"success": "Notification add success"}, "id": 1 } ``` --- Part of the [REST API for RISE CRM](https://risecrm.themesic.com/apiguide/) documentation. Full page: https://risecrm.themesic.com/apiguide/notifications/create-notification/