-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUsers.postman_collection.json
142 lines (142 loc) · 4.17 KB
/
Users.postman_collection.json
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
139
140
141
142
{
"info": {
"_postman_id": "a29f52de-5582-4624-937c-dae77d66b694",
"name": "Users",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "All Users",
"request": {
"method": "GET",
"header": [],
"body": {},
"url": {
"raw": "http://localhost:8080/users",
"protocol": "http",
"host": [
"localhost"
],
"port": "8080",
"path": [
"users"
]
}
},
"response": []
},
{
"name": "CreateUserEmptyOrganisation",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{ \n \"firstname\":\"David\",\n \"lastname\":\"Virgil\",\n \"salutation\":\"MR\",\n \"address\":{ \n \"number\":\"189A\",\n \"city\":\"London\",\n \"country\":\"UK\",\n \"postalCode\":\"WK134\",\n \"street\":\"Street name\"\n },\n \"telephone\":\"+447956801230\",\n \"type\":\"genericUser\"\n}"
},
"url": {
"raw": "http://localhost:8080/users",
"protocol": "http",
"host": [
"localhost"
],
"port": "8080",
"path": [
"users"
]
}
},
"response": []
},
{
"name": "CreateUserWithOrganisation",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{ \n \"organization\":{ \n \"name\":\"MyOrganization\",\n \"email\":\"[email protected]\",\n \"address\":{ \n \"number\":\"189A\",\n \"city\":\"London\",\n \"country\":\"UK\",\n \"postalCode\":\"WK134\",\n \"street\":\"Street name\"\n },\n \"type\":\"+44565896558\"\n },\n \"firstname\":\"David\",\n \"lastname\":\"Virgil\",\n \"salutation\":\"MR\",\n \"address\":{ \n \"number\":\"189A\",\n \"city\":\"London\",\n \"country\":\"UK\",\n \"postalCode\":\"WK134\",\n \"street\":\"Street name\"\n },\n \"telephone\":\"+447956801230\",\n \"type\":\"genericUser\"\n}"
},
"url": {
"raw": "http://localhost:8080/users",
"protocol": "http",
"host": [
"localhost"
],
"port": "8080",
"path": [
"users"
]
}
},
"response": []
},
{
"name": "UpdateUser",
"request": {
"method": "GET",
"header": [],
"body": {},
"url": {
"raw": ""
}
},
"response": []
},
{
"name": "GetUser",
"request": {
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"organization\": {\n \"name\": \"MyOrganization\",\n \"email\": \"[email protected]\",\n \"id\": \"6f80799e-90ab-445b-8771-2c769cf6cb6b\",\n \"address\": {\n \"number\": \"189A\",\n \"city\": \"London\",\n \"country\": \"UK\",\n \"postalCode\": \"WK134\",\n \"street\": \"Street name\"\n },\n \"type\": \"+44565896558\"\n },\n \"firstname\": \"Manuel\",\n \"lastname\": \"Virgil\",\n \"id\": \"cc905956-f26f-4ec9-8752-4a1794c3721a\",\n \"salutation\": \"MR\",\n \"address\": {\n \"number\": \"189A\",\n \"city\": \"London\",\n \"country\": \"UK\",\n \"postalCode\": \"WK134\",\n \"street\": \"Street name\"\n },\n \"telephone\": \"+447956801230\",\n \"type\": \"genericUser\"\n}"
},
"url": {
"raw": "http://localhost:8080/users/cc905956-f26f-4ec9-8752-4a1794c3721a",
"protocol": "http",
"host": [
"localhost"
],
"port": "8080",
"path": [
"users",
"cc905956-f26f-4ec9-8752-4a1794c3721a"
]
}
},
"response": []
},
{
"name": "DeleteUser",
"request": {
"method": "DELETE",
"header": [],
"body": {},
"url": {
"raw": "http://localhost:8080/users/cc905956-f26f-4ec9-8752-4a1794c3721a",
"protocol": "http",
"host": [
"localhost"
],
"port": "8080",
"path": [
"users",
"cc905956-f26f-4ec9-8752-4a1794c3721a"
]
}
},
"response": []
}
]
}