-
GET - listar projetos https://localhost:7154/api/projetos
-
POST - cadastrar projeto https://localhost:7154/api/projetos/
{
"nomeDoProjeto": "Projeto D - Senai FIT",
"area": "Saúde",
"status": true
}
-
GET - listar projeto por ID https://localhost:7154/api/projetos/2
-
PUT - atualizar projeto por ID https://localhost:7154/api/projetos/4
{
"nomeDoProjeto": "Projeto D - Senai Games",
"area": "Entretenimento",
"status": false
}
-
DELETE - deletar projeto por ID https://localhost:7154/api/projetos/4
-
GET - listar projetos https://localhost:7154/api/projetos
-
POST - cadastrar projeto https://localhost:7154/api/projetos/
{
"nomeDoProjeto": "Projeto D - Senai FIT",
"area": "Saúde",
"status": true
}
-
GET - listar usuarios https://localhost:7154/api/usuarios/
-
POST - cadastrar usuarios https://localhost:7154/api/usuarios/
{
"email": "email_tres@sp.br",
"senha": "1234"
}
- PUT - atualizar usuarios https://localhost:7154/api/usuarios/3
{
"email": "email_quatro@sp.br",
"senha": "4321"
}
- DELETE - deletar usuario https://localhost:7154/api/usuarios/3