-
Notifications
You must be signed in to change notification settings - Fork 0
/
apiRoutes.json
58 lines (57 loc) · 1.54 KB
/
apiRoutes.json
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
49
50
51
52
53
54
55
56
57
58
{
"GET":{
"/api/empoyees":{
"description":"Get all employees"
},
"/api/employees/get":{
"description":"Get employee by qureies params",
"queries": {
"name": "string",
"status": ["active", "inactive", "true","false"],
"role" : "string"
}
},
"/api/logs":{
"description":"Get all logs"
}
},
"POST": {
"/api/employees":{
"description":"Create new employee",
"headers": {
"Content-Type": "application/json"
},
"body": {
"firstName": "string",
"lastName": "string",
"age": "number",
"role" : "string",
"phone": "number"
}
}
},
"PUT": {
"/api/employees":{
"description":"Update employee by query params",
"queries": {
"name": "string",
"status": ["active", "inactive", "true","false"],
"role" : "string"
},
"headers": {
"Content-Type": "application/json"
},
"body": "Update Parameters"
}
},
"DELETE": {
"/api/employees/delete":{
"description":"Delete employee by query Params"
},
"queries": {
"name": "string",
"status": ["active", "inactive", "true","false"],
"role" : "string"
}
}
}