-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcontact_nisa.http
83 lines (73 loc) · 2.14 KB
/
contact_nisa.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
### ContactNisa Endpoints ###
### Get all contacts (Local)
GET http://localhost:3000/contactnisa/all
### Get all contacts (Remote)
GET https://nisa-invest-tfb-be.vercel.app/contactnisa/all
### Create contact request (Local)
POST http://localhost:3000/contactnisa
Content-Type: application/json
{
"first_name": "John",
"last_name": "Doe",
"email": "[email protected]",
"social_media": "@johndoe",
"text_field": "This is a test contact request."
}
### Create contact request (Remote)
POST https://nisa-invest-tfb-be.vercel.app/contactnisa
Content-Type: application/json
{
"first_name": "John",
"last_name": "Doe",
"email": "[email protected]",
"social_media": "@johndoe",
"text_field": "This is a test contact request."
}
### Create another contact request (Local)
POST http://localhost:3000/contactnisa
Content-Type: application/json
{
"first_name": "Jane",
"last_name": "Smith",
"email": "[email protected]",
"social_media": "@janesmith",
"text_field": "Another test contact request."
}
### Create another contact request (Remote)
POST https://nisa-invest-tfb-be.vercel.app/contactnisa
Content-Type: application/json
{
"first_name": "Jane",
"last_name": "Smith",
"email": "[email protected]",
"social_media": "@janesmith",
"text_field": "Another test contact request."
}
### Create contact request with minimal data (Local)
POST http://localhost:3000/contactnisa
Content-Type: application/json
{
"email": "[email protected]"
}
### Create contact request with minimal data (Remote)
POST https://nisa-invest-tfb-be.vercel.app/contactnisa
Content-Type: application/json
{
"email": "[email protected]"
}
### Create contact request with invalid data (should fail) (Local)
POST http://localhost:3000/contactnisa
Content-Type: application/json
{
"first_name": "Invalid",
"last_name": "User",
"social_media": "@invaliduser"
}
### Create contact request with invalid data (should fail) (Remote)
POST https://nisa-invest-tfb-be.vercel.app/contactnisa
Content-Type: application/json
{
"first_name": "Invalid",
"last_name": "User",
"social_media": "@invaliduser"
}