@baseUrl = https://localhost:7001
@todoId = 1

### List todos
GET {{baseUrl}}/todos
Accept: application/json

### Create a todo
POST {{baseUrl}}/todos
Content-Type: application/json

{
  "title": "Review the API",
  "isComplete": false
}

### Read one todo
GET {{baseUrl}}/todos/{{todoId}}
Accept: application/json

### Update one todo
PUT {{baseUrl}}/todos/{{todoId}}
Content-Type: application/json

{
  "id": 1,
  "title": "Review the API",
  "isComplete": true
}

### Delete one todo
DELETE {{baseUrl}}/todos/{{todoId}}
