-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequestsODONTOGRAM.http
More file actions
42 lines (34 loc) · 1.02 KB
/
requestsODONTOGRAM.http
File metadata and controls
42 lines (34 loc) · 1.02 KB
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
odontogram//CREATE UNIQUE
###
POST https://appointmentibiocd.azurewebsites.net/api/odontogram HTTP/1.1
content-Type: application/json
{
"data":[{
"number":"1",
"imgTop":"dddasd",
"imgBot":"aasd"
}],
"patient":"svv",
"medical":"ccvdfs"
}
//ALL GET
###
GET https://appointmentibiocd.azurewebsites.net/api/odontogram HTTP/1.1
//UNIQUE GET
###
GET https://appointmentibiocd.azurewebsites.net/api/odontogram/639e6b1ac26ea5675c1ae284 HTTP/1.1
###
GET https://appointmentibiocd.azurewebsites.net/api/odontogram/medical/ccvdfs HTTP/1.1
###
GET https://appointmentibiocd.azurewebsites.net/api/odontogram/patient/svv HTTP/1.1
//UPDATE UNIQUE ID
###
PUT https://appointmentibiocd.azurewebsites.net/api/odontogram/639e6b1ac26ea5675c1ae284 HTTP/1.1
content-Type: application/json
{
"data":"05032023",
"patient":"svv",
"medical":"ccvdfs"
}
###
DELETE https://appointmentibiocd.azurewebsites.net/api/odontogram/640a292c9d190c8b27524151 HTTP/1.1