-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (42 loc) · 1.09 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>REST</title>
<link rel="stylesheet" href="public/css/styles.css" type="text/css">
</head>
<body>
<div class="container">
<h1>API REST <br>- cursos -</h1>
<div class="divbody">
<code>
<b>GET</b> /service.php
<br>
<b>GET</b> /service.php?id=<i>{idPost}</i>
</code>
<code>
<b>POST</b> /service.php
<br><br>
{
<br>
"nombre" : "", <b>-> REQUERIDO</b>
<br>
}
</code>
<code>
<b>PUT</b> /service.php?id=<i>{idPost}</i>
<br><br>
{
<br>
"nombre" : "", <b>-> REQUERIDO</b>
<br>
}
</code>
<code>
<b>DELETE</b> /service.php?id=<i>{idPost}</i>
</code>
</div>
</div>
</body>
</html>