gerenciadortarefas is an API built with TDD for study purposes.
A simple task manager.
You can try the API in console (https://still-plains-31476.herokuapp.com/)
GET /todo/
[
{
"title" : string,
"description" : string,
"state" : bool
}
]
Status Code | Description |
---|---|
200 | OK |
GET /todo/<id_task>/
{
"title" : string,
"description" : string,
"state" : bool
}
Status Code | Description |
---|---|
200 | OK |
POST /todo/
{
"title" : string,
"description" : string
}
Status Code | Description |
---|---|
201 | CREATED |
PUT /todo/<id_task>/
{
"title" : string,
"description" : string,
"state" : bool
}
{
"title" : string,
"description" : string,
"state" : bool
}
Status Code | Description |
---|---|
200 | OK |
DELETE /todo/<id_task>/
Status Code | Description |
---|---|
204 | NO CONTENT |
PUT /todo/<id_task>/done/
Status Code | Description |
---|---|
200 | OK |