Get Note by ID

GET/api/notes/{id}

Headers

FieldTypeDescription
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"
}
MethodGET
Path/api/notes/{id}
GroupNotes
Sincev1.0.0
Defined inRestApi/Controllers/NotesController.php