https://github.com/rebecavitoria45/api-de-tarefas
API de tarefas usando C# e Mysql
https://github.com/rebecavitoria45/api-de-tarefas
csharp git mysql swagger
Last synced: about 2 months ago
JSON representation
API de tarefas usando C# e Mysql
- Host: GitHub
- URL: https://github.com/rebecavitoria45/api-de-tarefas
- Owner: Rebecavitoria45
- Created: 2024-01-15T13:22:20.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-01-25T13:12:53.000Z (over 2 years ago)
- Last Synced: 2025-01-19T20:57:48.217Z (over 1 year ago)
- Topics: csharp, git, mysql, swagger
- Language: C#
- Homepage:
- Size: 9.76 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Api de Tarefas📍📝
## Ferramentas 🛠️
[](https://docs.github.com/)
[](https://git-scm.com/doc)
[](https://git-scm.com/doc)
[](https://git-scm.com/doc)


---
## Objetivo🎯

Criei uma Api para criação, remoção, atualização e listagem de tarefas
Esse é o schema (model) de Tarefas, utilizado para passar para os métodos que exigirem
```json
{
"titulo": "string",
"descricao": "string",
"concluida": true
}
```
**Endpoints**
| Verbo | Endpoint | Parâmetro | Body |
|--------|-------------------------|-----------|---------------|
| GET | /tarefas/{id} | id | N/A |
| PUT | /tarefas/{id} | id | Schema Tarefa |
| DELETE | /tarefas/{id} | id | N/A |
| GET | /tarefas | N/A | N/A |
| POST | /tarefas/criar | N/A | Schema Tarefa |