A note is a large text blobs belonging to tasks.
Get the Notes for a Task or List
GET a.wunderlist.com/api/v1/notes
name
type
notes
task_id
integer
required
or
name
type
notes
list_id
integer
required
Status: 200
json
[
{
"id":266380668,
"revision":1,
"content":"Hi there!",
"type":"note",
"task_id":3979851817
}
]
GET a.wunderlist.com/api/v1/notes/:id
Status: 200
json
{
"id":266380668,
"revision":1,
"content":"Hi there!",
"type":"note",
"task_id":3979851817
}
POST a.wunderlist.com/api/v1/notes
name
type
notes
task_id
integer
required
content
string
required
json
{
"task_id": 1234,
"content": "Hey there"
}
Status 201
json
{
"id":266380668,
"revision":1,
"content":"Hi there!",
"type":"note",
"task_id":3979851817
}
Update a note by overwriting properties
PATCH a.wunderlist.com/api/v1/notes/:id
name
type
notes
revision
integer
required
content
string
required
json
{
"revision": 999,
"content": "Hallo",
}
Status 200
json
{
"id":266380668,
"revision":1,
"content":"Hi there!",
"type":"note",
"task_id":3979851817
}
DELETE a.wunderlist.com/api/v1/notes/:id
name
type
notes
revision
integer
required