We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 431638d commit eeccd74Copy full SHA for eeccd74
01.basic-microservices-with-webclient/readme.md
@@ -15,9 +15,34 @@ Response:
15
"city": "Nagpur"
16
}
17
```
18
+---
19
+
20
+2) Http GET
21
22
+```
23
+http://localhost:8080/api/student/getById/1
24
25
26
+Response:
27
28
+```json
29
+{
30
+ "id": 1,
31
+ "firstName": "Raj",
32
+ "lastName": "Dave",
33
+ "email": "raj_dave@yahoo.com",
34
+ "addressResponse": {
35
+ "addressId": 1,
36
+ "street": "Delhi",
37
+ "city": "Happy Street"
38
+ }
39
+}
40
41
42
43
----
44
-2) Http Post - create address
45
+3) Http Post - create address
46
47
48
curl --location --request POST 'http://localhost:8082/api/address/create' \
0 commit comments