-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathleia-me.txt
40 lines (35 loc) · 952 Bytes
/
leia-me.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
-> Criar usuário
POST
http://localhost:8080/usuarios
{
"nome": "João Silva",
"cpf": 12345678901,
"email": "joao@example.com",
"numeroCelular": 987654321,
"placasCarro": ["ABC1234", "XYZ5678"],
"preferencias": {
"notificacoes": true,
"avisoAntesDeFimDeReserva": false
}
}
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
-> Editar usuário
PUT
http://localhost:8080/usuarios/{id}
{
"nome": "Mudou Silva",
"cpf": 12345678901,
"email": "joao@example.com",
"numeroCelular": 987654321,
"placasCarro": ["ABC1234", "XYZ5678"],
"preferencias": {
"notificacoes": true,
"avisoAntesDeFimDeReserva": false
}
}
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
-> Para pesquisar placa:
GET
http://localhost:8080/fiscais/verificarPlaca/{placa}
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx