-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathposts_json.json
More file actions
61 lines (56 loc) · 844 Bytes
/
Copy pathposts_json.json
File metadata and controls
61 lines (56 loc) · 844 Bytes
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// POSTS
// clientes/
{
"nome": "TESTANDO"
, "email": "testando@teste.com"
, "cpfOuCnpj": "82907799096"
, "tipo": "1"
, "telefones": ["111111", "22222", "33333"]
, "logradouro": "log testando"
, "numero": "345"
, "complemento": "compl testando"
, "cep": "888888888"
, "cidadeId": "1"
}
// pedidos/
{
"cliente": {
"id": 1
},
"enderecoDeEntrega": {
"id": 1
},
"pagamento": {
"numeroDeParcelas": 10,
"@type": "pagamentoComCartao"
},
"itens": [
{
"quantidade": 2,
"produto": {
"id": 3
}
},
{
"quantidade": 1,
"produto": {
"id": 1
}
}
]
}
// login/
{
"email": "maria@teste.com",
"senha": "123"
}
// PUTS
// clientes/{id}
{
"nome": "TESTANDO"
, "email": "testando@teste.com"
}
{
"nome": "TESTANDO"
, "email": "maria@teste.com"
}