# POST /api/project-comments > Project Comments - Add Project Comment - **Endpoint:** `POST /api/project-comments` - **Group:** Project Comments - **Since:** v1.0.0 - **Defined in:** `RestApi/Controllers/ProjectCommentsController.php` ## Headers | Field | Type | Description | | --- | --- | --- | | `authtoken` | String | Authentication token, generated from admin area | ## Parameters | Field | Type | Required | Description | | --- | --- | --- | --- | | `project_id` | number | yes | Mandatory Project ID | | `description` | string | yes | Mandatory Comment content | | `created_by` | number | no | Optional RISE user ID (commenter). Default: 1. Use for proper attribution. | ## Request example ```bash curl -X POST "https://yoursite.com/index.php/api/project-comments" \ -H "authtoken: YOUR_API_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "project_id": "...", "description": "..." }' ``` ## Responses ### Success - Success-Response: ```json HTTP/1.1 201 Created { "status": 200, "messages": {"success": "Comment 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/project-comments/create-project-comment/