-
Notifications
You must be signed in to change notification settings - Fork 0
/
apitest.http
48 lines (37 loc) · 948 Bytes
/
apitest.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
### Send POST request with json body
POST http://127.0.0.1:3005/api/destaques
Content-Type: application/json
{
"titulo": "Notícia 1",
"subtitulo": "Subtítulo da notícia...",
"corBotao": "#FF0000",
"urlImagem": "banner-si.jpg"
}
### Send POST request with json body
POST http://127.0.0.1:3005/api/destaques
Content-Type: application/json
{
"titulo": "Notícia 2",
"subtitulo": "Subtítulo... notícia...",
"corBotao": "#000000",
"urlImagem": "banner-ads.jpg"
}
### Send POST request with json body
POST http://127.0.0.1:3005/api/destaques
Content-Type: application/json
{
"titulo": "Notícia 3",
"subtitulo": "Sub....... notícia...",
"corBotao": "#cccccc",
"urlImagem": "banner-pi.jpg"
}
### Send POST request with json body
POST http://127.0.0.1:3005/api/destaques
Content-Type: application/json
{
"titulo": "Notícia 4",
"subtitulo": null,
"corBotao": "#666666",
"urlImagem": "banner-agro.jpg"
}
###