List all Notes

GET/api/notes

Headers

FieldTypeDescription
authtoken String Authentication token, generated from admin area

Parameters

FieldTypeDescription
project_id Number optional Optional filter by project ID
client_id Number optional Optional filter by client ID
is_public Number optional Optional filter by public/private (0 or 1)
curl -X GET "https://yoursite.com/api/notes" \
  -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
GroupNotes
Sincev1.0.0
Defined inRestApi/Controllers/NotesController.php