Labels API
Labels help you organize your notes. You can manage them programmatically to keep your categorization in sync with other tools.
List Labels
Get all labels created by the user.
http
GET /labelsResponse
json
[
{ "id": "L01...", "name": "Work" },
{ "id": "L02...", "name": "Personal" }
]Create Label
http
POST /labels
Content-Type: application/json
{
"name": "Project X"
}Delete Label
http
DELETE /labels/{id}Irreversible
Deleting a label removes it from all notes that use it. The notes themselves are NOT deleted.