/
AZ
azure
/
Simple Todo API
Search skmtc…
⌘K
Docs
Sign in
Sign in
APIs
Generators
Stacks
Projects
Docs
History
Schema
Checked 2h ago · Updated 1mo ago
Details
Filter operations
Items
7
get
Gets Todo items within the specified list
post
Creates a new Todo item within a list
get
Gets a Todo item by unique identifier
put
Updates a Todo item by unique identifier
delete
Deletes a Todo item by unique identifier
get
Gets a list of Todo items of a specific state
put
Changes the state of the specified list items
Lists
5
Items
Creates a new Todo item within a list
post
/lists/{listId}/items
Path parameters
listId
string
required
The Todo list unique identifier
Request body
TodoItem
required
A task that needs to be completed
id
string
listId
string
required
name
string
required
description
string
required
state
'todo'
|
'inprogress'
|
'done'
dueDate
string
date-time
completedDate
string
date-time
Response
A Todo item result
TodoItem
required
A task that needs to be completed
id
string
listId
string
required
name
string
required
description
string
required
state
'todo'
|
'inprogress'
|
'done'
dueDate
string
date-time
completedDate
string
date-time
Changes