-
Notifications
You must be signed in to change notification settings - Fork 2
/
quiz.http
118 lines (87 loc) · 2.54 KB
/
quiz.http
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
### Quiz Endpoints ###
### Questions Endpoints ###
### Get all questions (Local)
GET http://localhost:3000/quiz/questions
### Get all questions (Remote)
GET https://nisa-invest-tfb-be.vercel.app/quiz/questions
### Get question by id (Local)
GET http://localhost:3000/quiz/questions/1
### Get question by id (Remote)
GET https://nisa-invest-tfb-be.vercel.app/quiz/questions/1
### Create question (Local)
POST http://localhost:3000/quiz/questions
Content-Type: application/json
{
"question": "Created by me",
"created_at": "2024-08-01T10:00:00+00"
}
### Create question (Remote)
POST https://nisa-invest-tfb-be.vercel.app/quiz/questions
Content-Type: application/json
{
"question": "Created by me",
"created_at": "2024-08-01T10:00:00+00"
}
### Update question (Local)
PUT http://localhost:3000/quiz/questions/1
Content-Type: application/json
{
"question": "What is your financial goal?"
}
### Update question (Remote)
PUT https://nisa-invest-tfb-be.vercel.app/quiz/questions/1
Content-Type: application/json
{
"question": "What is your financial goal?"
}
### Delete question (Local)
DELETE http://localhost:3000/quiz/questions/1
### Delete question (Remote)
DELETE https://nisa-invest-tfb-be.vercel.app/quiz/questions/1
### Answers Endpoints ###
### Get all answers (Local)
GET http://localhost:3000/quiz/answers
### Get all answers (Remote)
GET https://nisa-invest-tfb-be.vercel.app/quiz/answers
### Get answer by id (Local)
GET http://localhost:3000/quiz/answers/1
### Get answer by id (Remote)
GET https://nisa-invest-tfb-be.vercel.app/quiz/answers/1
### Create answer (Local)
POST http://localhost:3000/quiz/answers
Content-Type: application/json
{
"answer_text": "Save more money",
"question_id": 1,
"goal_id": 2,
"created_at": "2024-08-01T10:00:00+00"
}
### Create answer (Remote)
POST https://nisa-invest-tfb-be.vercel.app/quiz/answers
Content-Type: application/json
{
"answer_text": "Save more money",
"question_id": 1,
"goal_id": 2,
"created_at": "2024-08-01T10:00:00+00"
}
### Update answer (Local)
PUT http://localhost:3000/quiz/answers/1
Content-Type: application/json
{
"answer_text": "Invest in stocks",
"question_id": 1,
"goal_id": 16
}
### Update answer (Remote)
PUT https://nisa-invest-tfb-be.vercel.app/quiz/answers/1
Content-Type: application/json
{
"answer_text": "Invest in stocks",
"question_id": 1,
"goal_id": 16
}
### Delete answer (Local)
DELETE http://localhost:3000/quiz/answers/1
### Delete answer (Remote)
DELETE https://nisa-invest-tfb-be.vercel.app/quiz/answers/1