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/)
[
{
"title" : string,
"description" : string,
"state" : bool
}
]
Status Code |
Description |
200 |
OK |
{
"title" : string,
"description" : string,
"state" : bool
}
Status Code |
Description |
200 |
OK |
{
"title" : string,
"description" : string
}
Status Code |
Description |
201 |
CREATED |
{
"title" : string,
"description" : string,
"state" : bool
}
{
"title" : string,
"description" : string,
"state" : bool
}
Status Code |
Description |
200 |
OK |
Status Code |
Description |
204 |
NO CONTENT |
PUT /todo/<id_task>/done/
Status Code |
Description |
200 |
OK |