-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgoals.http
138 lines (110 loc) · 3.39 KB
/
goals.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
### Goals Endpoints ###
### Get all goals for a user (Local)
GET http://localhost:3000/goals/user/1
### Get all goals for a user (Remote)
GET https://nisa-invest-tfb-be.vercel.app/goals/user/1
### Get goal by goal_id (Local)
GET http://localhost:3000/goals/4
### Get goal by goal_id (Remote)
GET https://nisa-invest-tfb-be.vercel.app/goals/4
### Create goal (Local)
POST http://localhost:3000/goals
Content-Type: application/json
{
"user_id": 1,
"title": "New Goal",
"description": "This is a new goal",
"status": "not_done",
"is_recurrent": false,
"due_date": "2024-12-31T23:59:59Z"
}
### Create goal (Remote)
POST https://nisa-invest-tfb-be.vercel.app/goals
Content-Type: application/json
{
"user_id": 1,
"title": "New Goal",
"description": "This is a new goal",
"status": "not_done",
"is_recurrent": false,
"due_date": "2024-12-31T23:59:59Z"
}
### Update goal (general information) (Local)
PUT http://localhost:3000/goals/1
Content-Type: application/json
{
"title": "Updated Goal Title2",
"description": "Updated description",
"is_recurrent": true,
"recurrence_type": "week",
"recurrence_value": 1,
"category": "fitness"
}
### Update goal (general information) (Remote)
PUT https://nisa-invest-tfb-be.vercel.app/goals/1
Content-Type: application/json
{
"title": "Updated Goal Title2",
"description": "Updated description",
"is_recurrent": true,
"recurrence_type": "week",
"recurrence_value": 1,
"category": "fitness"
}
### Update user-specific goal information (Local)
PUT http://localhost:3000/goals/user-goal/2/1
Content-Type: application/json
{
"status": "not_done",
"due_date": "2023-12-31T23:59:59Z"
}
### Update user-specific goal information (Remote)
PUT https://nisa-invest-tfb-be.vercel.app/goals/user-goal/2/1
Content-Type: application/json
{
"status": "not_done",
"due_date": "2023-12-31T23:59:59Z"
}
### Delete goal (Local)
DELETE http://localhost:3000/goals/21
### Delete goal (Remote)
DELETE https://nisa-invest-tfb-be.vercel.app/goals/21
### Set goals to true or create if not exist (Local)
POST http://localhost:3000/goals/update-quiz-selected
Content-Type: application/json
{
"userId": 1,
"goalIds": [1, 2, 3]
}
### Set goals to true or create if not exist (Remote)
POST https://nisa-invest-tfb-be.vercel.app/goals/update-quiz-selected
Content-Type: application/json
{
"userId": 5,
"goalIds": [1, 2, 3]
}
### Focus a goal manually by the user (Local)
PUT http://localhost:3000/goals/user-goal/focus/1/2
Content-Type: application/json
### Focus a goal manually by the user (Remote)
PUT https://nisa-invest-tfb-be.vercel.app/goals/user-goal/focus/1/2
Content-Type: application/json
### Complete a goal manually by the user (Local)
PUT http://localhost:3000/goals/user-goal/complete/1/2
Content-Type: application/json
### Complete a goal manually by the user (Remote)
PUT https://nisa-invest-tfb-be.vercel.app/goals/user-goal/complete/1/2
Content-Type: application/json
# How to use it:
# const userId = 1; // The user ID
# const goalIds = [1, 2, 3]; // The list of goal IDs
# fetch('http://localhost:3000/user-goals/update-quiz-selected', {
# method: 'POST',
# headers: {
# 'Content-Type': 'application/json',
# },
# body: JSON.stringify({ userId, goalIds }),
# })
# .then(response => response.json())
# .then(result => console.log(result))
# .catch(error => console.error('Error:', error));