-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequestsSEDE.http
More file actions
36 lines (26 loc) · 823 Bytes
/
requestsSEDE.http
File metadata and controls
36 lines (26 loc) · 823 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
//CREATE UNIQUE
###
POST https://appointmentibiocd.azurewebsites.net/api/sede HTTP/1.1
content-Type: application/json
{
"name_sede":"IBIOCD LAB",
"direction":"corriente 341",
"laboratory":"63e98c3b9159d413432d42ec"
}
//ALL GET
###
GET https://appointmentibiocd.azurewebsites.net/api/sede HTTP/1.1
//GET UNIQUE
###
GET https://appointmentibiocd.azurewebsites.net/api/sede/63ea57068de8949cf7db9f06 HTTP/1.1
//UPDATE UNIQUE ID
###
PUT https://appointmentibiocd.azurewebsites.net/api/sede/63ea57068de8949cf7db9f06 HTTP/1.1
content-Type: application/json
{
"name_sede":"CONGRESO",
"direction":"corriente 121",
"laboratory":"63e98c3b9159d413432d42ec"
}
###
DELETE https://appointmentibiocd.azurewebsites.net/api/sede/63ea57068de8949cf7db9f06 HTTP/1.1