Get Note by ID
GET/api/notes/{id}
Headers
| Field | Type | Description |
|---|---|---|
| authtoken | String | Authentication token, generated from admin area |
curl -X GET "https://yoursite.com/api/notes/123" \
-H "authtoken: YOUR_API_TOKEN" Success-Response:
{
"id": "1",
"title": "Meeting notes",
"description": "Summary",
"project_id": "1",
"client_id": "0",
"is_public": "0"
}