-
Notifications
You must be signed in to change notification settings - Fork 0
/
API Documentation.txt
35 lines (16 loc) · 1.36 KB
/
API Documentation.txt
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
curl --location --request POST "http://localhost:9090/Community-/public/api/vacancy/add" \
--header "Content-Type: application/json" \
--data "{\"company_id\":\"1\",\"title\":\"software engineering\",\"description\":\"we need to swe 2 years exp\",\"salary\":\"5000\",\"benefits\":\"ambition\"}"
curl --location --request POST "http://localhost:9090/Community-/public/api/post/add" \
--header "Content-Type: application/json" \
--data "{\"user_id\":\"1\",\"content\":\"l love swe\",\"privacy\":\"public\"}"
curl --location --request GET "http://localhost:9090/Community-/public/api/post/1"
curl --location --request GET "http://localhost:9090/Community-/public/api/vacancy/1"
curl --location --request PUT "http://localhost:9090/Community-/public/api/post/update/5" \
--header "Content-Type: application/json" \
--data "{\"user_id\":\"1\",\"content\":\"l love swe\",\"privacy\":\"test update\"}"
curl --location --request PUT "http://localhost:9090/Community-/public/api/vacancy/update/5" \
--header "Content-Type: application/json" \
--data "{\"company_id\":\"5\",\"title\":\"test update\",\"description\":null,\"salary\":null,\"benefits\":null}"
curl --location --request DELETE "http://localhost:9090/Community-/public/api/vacancy/delete/8"
curl --location --request DELETE "http://localhost:9090/Community-/public/api/post/delete/5"