Request Note Information
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:
HTTP/1.1 200 OK
{
"id": "142",
"description": "Called the client to confirm the renewal date. They will send the signed contract by Friday.",
"date_contacted": null,
"dateadded": "2026-03-14 15:42:07",
"addedfrom": "3",
"rel_id": "18",
"rel_type": "customer"
} Not-Found:
HTTP/1.1 404 Not Found
{
"status": false,
"message": "Note not found"
}