Skip to content

Latest commit

 

History

History
49 lines (35 loc) · 475 Bytes

File metadata and controls

49 lines (35 loc) · 475 Bytes

Todo List Manager

Enpoints

POST /login – login

Request

{
  "username": "string",
  "password": "string"
}

Response

{
  "id": "number",
  "username": "string"
}, 200

DELETE /logout – logout

Response

  • HTTP 204 No Content

POST /register - register

Request

{
  "username": "string",
  "password": "string"
}

Response

{
  "id": "number",
  "username": "string"
}, 201