Skip to content

Commit db72b68

Browse files
authored
Merge pull request #404 from rpscodes/master
Create new flows without Gogs
2 parents ef32c66 + 329efad commit db72b68

16 files changed

+128
-214
lines changed
147 KB
Loading
143 KB
Loading
103 KB
Loading
115 KB
Loading
113 KB
Loading
115 KB
Loading

docs/labs/developer-track/lab01/walkthrough.adoc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -67,15 +67,15 @@ Let's start verifying your API.
6767

6868
. Time to verify our data definitions for the API. Click on the `+location/phone/{id}+` link under the _Paths_.
6969
+
70-
image::images/api-designer-location-path.png[api-designer-location-path, role="integr8ly-img-responsive"]
70+
image::images/api-designer-location-phone.png[api-designer-location-phone, role="integr8ly-img-responsive"]
7171

7272
. Notice that this API path has a single path parameter (`id` defined as an `int32`) and a single GET operation defined. Click on the GET operation, then click the location drop-down which is part of the 200 OK response.
7373
+
74-
image::images/api-dsigner-id-int32.png[api-dsigner-id-int32, role="integr8ly-img-responsive"]
74+
image::images/api-designer-path.png[api-designer-path, role="integr8ly-img-responsive"]
7575

7676
. Notice that this API path has a single response defined (a `200 OK` response) and the type that is returned is a `location` object.
7777
+
78-
image::images/api-dsigner-location-response.png[api-dsigner-location-response, role="integr8ly-img-responsive"]
78+
image::images/api-designer-response.png[api-designer-response, role="integr8ly-img-responsive"]
7979

8080
[type=verification]
8181
Did you verify the `200 OK` response returns a `location`?
@@ -87,17 +87,17 @@ Have your instructor check the Kubernetes pod that contains the API Designer app
8787

8888
. Click on the `</> location` object link under the _Data Types_ section. Notice that the object has a bunch of properties defined which make up the object.
8989
+
90-
image::images/api-designer-location-datatype.png[api-designer-location-datatype, role="integr8ly-img-responsive"]
90+
image::images/api-designer-location.png[api-designer-location, role="integr8ly-img-responsive"]
9191

9292
. Click on the source link and notice that we have both YAML and JSON schemas generated by our object design:
9393
+
94-
image::images/api-designer-source.png[api-designer-source, role="integr8ly-img-responsive"]
94+
image::images/api-designer-json-yaml.png[api-designer-json-yaml, role="integr8ly-img-responsive"]
9595

9696
=== Step 4: Verify the /locations path
9797

9898
. Click the */locations* path. Then click on the source tab. Notice that we have both a GET and POST request defined, together with a couple of example requests. Using a POST method, we can insert a new record into our sample database with Fuse.
9999
+
100-
image::images/api-designer-locations-path-methods.png[api-designer-locations-path-methods, role="integr8ly-img-responsive"]
100+
image::images/api-designer-get-post.png[api-designer-get-post, role="integr8ly-img-responsive"]
101101

102102
[type=verification]
103103
Did you locate the `get` and `post` requests in the source for `/locations`?
57.9 KB
Loading
75 KB
Loading
266 KB
Loading

0 commit comments

Comments
 (0)