-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathusers.http
62 lines (45 loc) · 1.37 KB
/
users.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
### Users Endpoints ###
### Get all users (Local)
GET http://localhost:3000/users/all
### Get all users (Remote)
GET https://nisa-invest-tfb-be.vercel.app/users/all
### Get user by id (Local)
GET http://localhost:3000/users/id/1
### Get user by id (Remote)
GET https://nisa-invest-tfb-be.vercel.app/users/id/1
### Get user by email (Local)
GET http://localhost:3000/users/email/[email protected]
### Get user by email (Remote)
GET https://nisa-invest-tfb-be.vercel.app/users/email/[email protected]
### Create user (Local).
POST http://localhost:3000/users
Content-Type: application/json
{
"email": "[email protected]",
"first_name": "New User",
"password": "securepassword123"
}
### Create user (Remote)
POST https://nisa-invest-tfb-be.vercel.app/users
Content-Type: application/json
{
"email": "[email protected]",
"first_name": "New User",
"password": "securepassword123"
}
### Update user (Local)
PUT http://localhost:3000/users/1
Content-Type: application/json
{
"first_name": "Updated Name"
}
### Update user (Remote)
PUT https://nisa-invest-tfb-be.vercel.app/users/1
Content-Type: application/json
{
"first_name": "Updated Name"
}
### Delete user (Local)
DELETE http://localhost:3000/users/7
### Delete user (Remote)
DELETE https://nisa-invest-tfb-be.vercel.app/users/7