Add Project Comment

POST/api/project-comments

Headers

FieldTypeDescription
authtoken String Authentication token, generated from admin area

Parameters

FieldTypeDescription
project_id number Mandatory Project ID
description string Mandatory Comment content
created_by number optional Optional RISE user ID (commenter). Default: 1. Use for proper attribution.
curl -X POST "https://yoursite.com/api/project-comments" \
  -H "authtoken: YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{ "project_id": "...", "description": "..." }'

Success-Response:

HTTP/1.1 201 Created
{
  "status": 200,
  "messages": {"success": "Comment add success"},
  "id": 1
}
MethodPOST
Path/api/project-comments
GroupProject Comments
Sincev1.0.0
Defined inRestApi/Controllers/ProjectCommentsController.php