-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequestsLABS.http
More file actions
40 lines (30 loc) · 985 Bytes
/
requestsLABS.http
File metadata and controls
40 lines (30 loc) · 985 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
//CREATE UNIQUE
###
POST https://appointmentibiocd.azurewebsites.net/api/laboratory HTTP/1.1
content-Type: application/json
{
"name_lab":"IBIOCD LAB",
"telefono":"3125512312",
"correo":"ibiocd.lab@gmail.com",
"acreditado":"true"
}
//ALL GET
###
GET https://appointmentibiocd.azurewebsites.net/api/laboratory HTTP/1.1
//GET UNIQUE
###
GET https://appointmentibiocd.azurewebsites.net/api/laboratory/63e98c3b9159d413432d42ec HTTP/1.1
//UPDATE UNIQUE ID
###
PUT https://appointmentibiocd.azurewebsites.net/api/laboratory/63e98c3b9159d413432d42ec HTTP/1.1
content-Type: application/json
{
"name_lab": "IBIOCD LAB",
"sedes": "63e30863144420347e26d4f6",
"telefono": "3125512312",
"correo": "ibiocd.lab@gmail.com",
"acreditado": "true",
"hour_on": "63eef70958dfb08ef870b5b9"
}
###
DELETE https://appointmentibiocd.azurewebsites.net/api/laboratory/63e98c3b9159d413432d42ec HTTP/1.1