-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.http
64 lines (48 loc) · 1.53 KB
/
api.http
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
62
63
64
GET http://localhost:3030/buscar?filtros=price:>:10000&colunas=id,titulo,price&ordenacao=id:DESC
###
POST http://localhost:3030/imoveis
Content-Type: application/json
{
"cidade_id": "1",
"estado_id": "1",
"titulo": "Imovel 14 Editado",
"descricao": "Meu imovel via post",
"conteudo": "Meu imovel via post",
"slug": "meu-imovel-via-post",
"price": "1.99",
"imovel_area": "20",
"total_imovel_area": "20",
"banheiros": "2",
"quartos": "3",
"endereco": {
"endereco": "Rua Nova",
"bairro": "Sao Bernardo",
"numero": "28",
"cep": "65056541"
}
}
###
GET http://localhost:3030/imoveis
###
GET http://localhost:3030/imoveis/1
###
POST http://localhost:3030/imoveis-fotos-upload
Content-Type: multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW
------WebKitFormBoundary7MA4YWxkTrZu0gW
Content-Disposition: form-data; name="imovel"
1
------WebKitFormBoundary7MA4YWxkTrZu0gW
Content-Disposition: form-data; name="fotos[]"; filename="imovel-1.jpg"
Content-Type: image/jpg
< ./data_imagens/imovel-1.jpg
------WebKitFormBoundary7MA4YWxkTrZu0gW--
------WebKitFormBoundary7MA4YWxkTrZu0gW
Content-Disposition: form-data; name="fotos[]"; filename="imovel-2.jpg"
Content-Type: image/jpg
< ./data_imagens/imovel-2.jpg
------WebKitFormBoundary7MA4YWxkTrZu0gW--
------WebKitFormBoundary7MA4YWxkTrZu0gW
Content-Disposition: form-data; name="fotos[]"; filename="imovel-3.jpg"
Content-Type: image/jpg
< ./data_imagens/imovel-3.jpg
------WebKitFormBoundary7MA4YWxkTrZu0gW--