List all Project Comments
GET/api/project-comments
Headers
| Field | Type | Description |
|---|---|---|
| authtoken | String | Authentication token, generated from admin area |
Parameters
| Field | Type | Description |
|---|---|---|
| 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"
}
]