-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreviewTest.http
More file actions
44 lines (38 loc) · 912 Bytes
/
Copy pathreviewTest.http
File metadata and controls
44 lines (38 loc) · 912 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
41
42
43
44
###
POST http://127.0.0.1:3000/review/create-one-review
Content-Type: application/json
{
"uid":20101995,
"profile": "User Profile URL or Strfdlk,hkdf ing",
"anime_uid": 281339680,
"text": "This is a sample review text.",
"score": 8,
"scores": 9,
"link": "https://example.com/link-to-something"
}
###
POST http://127.0.0.1:3000/review/delete-one-review
Content-Type: application/json
{
"anime_uid": 281339680,
"uid": 20101995
}
###
POST http://127.0.0.1:3000/review/update-one-review HTTP/1.1
Content-Type: application/json
{
"uid":20101995,
"profile": "User Profile URL or Strfdlk,hkdf ing",
"anime_uid": 281339680,
"text": "This is a sample review text.",
"score": 10,
"scores": 9,
"link": "https://example.com/link-to-something"
}
###
GET http://127.0.0.1:3000/review/read-one-review HTTP/1.1
Content-Type: application/json
{
"anime_uid": 281339680,
"uid": 20101995
}