List all Project Comments

GET/api/project-comments

Headers

FieldTypeDescription
authtoken String Authentication token, generated from admin area

Parameters

FieldTypeDescription
project_id Number optional Optional filter by project ID
curl -X GET "https://yoursite.com/api/project-comments" \
  -H "authtoken: YOUR_API_TOKEN"

Success-Response:

[
  {
    "id": "1",
    "project_id": "1",
    "description": "Comment text",
    "created_by": "1"
  }
]
MethodGET
Path/api/project-comments
GroupProject Comments
Sincev1.0.0
Defined inRestApi/Controllers/ProjectCommentsController.php