Skip to content

Instantly share code, notes, and snippets.

@iporsut
Last active March 8, 2019 08:49
Show Gist options
  • Save iporsut/05b237d24f5ebf686d03a14e68bd0beb to your computer and use it in GitHub Desktop.
Save iporsut/05b237d24f5ebf686d03a14e68bd0beb to your computer and use it in GitHub Desktop.
TODO API
GET /todos
GET /todos/:id
POST /todos
PUT /todos/:id
DETELE /todos/:id
// https://docs.mongodb.com/manual/reference/operator/update-array/
POST /todos/:id/tasks
{
"desc": "Do 1",
}
PUT /todos/:id/tasks/:task_id
{
"desc": "Do 1",
"done": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment