Notes

Manage notes. Ability to create, edit, view, and delete notes.

Available Endpoints

Method Path Description
GET /api/notes List notes
GET /api/notes/{id} View note details
POST /api/notes Create new note
PUT /api/notes/{id} Full update of a note
PATCH /api/notes/{id} Partial update of a note
DELETE /api/notes/{id} Delete a note

Example Request

curl -X GET "https://example.com/api/notes" \
  -H "Authorization: Bearer {token}"

Success Response (200)

{
  "records": [],
  "meta": {
    "total": 0,
    "current_page": 1,
    "per_page": 20
  }
}

Errors

Code Description
401 Invalid token
403 Access denied
404 Record not found
422 Validation error
Type to search...