GET
/public/v1/projects/{projectId}/notes
curl \
--request GET 'https://live.smartpmtech.com/public/v1/projects/{projectId}/notes' \
--header "X-API-KEY: $API_KEY" \
--header "X-COMPANY-ID: string"
Response examples (500)
{}
Response examples (200)
[
{
"id": 1,
"note": "This is a project note.",
"user": "John Doe",
"userId": "550e8400-e29b-41d4-a716-446655440000",
"createdAt": "2024-01-01T12:00:00+00:00",
"updatedAt": "2024-01-02T12:00:00+00:00",
"viewedByUser": true,
"canEdit": false
}
]