POST
/public/v1/projects/{projectId}/notes
curl \
--request POST 'https://live.smartpmtech.com/public/v1/projects/{projectId}/notes' \
--header "X-API-KEY: $API_KEY" \
--header "Content-Type: application/json" \
--header "X-COMPANY-ID: string" \
--data '{"note":"string"}'
Request examples
# Headers
X-COMPANY-ID: string
# Payload
{
"note": "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
}
]