List all Notes
GET/api/notes
Headers
| Field | Type | Description |
|---|---|---|
| authtoken | String | Authentication token, generated from admin area |
Parameters
| Field | Type | Description |
|---|---|---|
| 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"
}
]