diff --git a/src/main/resources/META-INF/resources/rest-http-index.html b/src/main/resources/META-INF/resources/rest-http-index.html index 37395eb..366a5fc 100644 --- a/src/main/resources/META-INF/resources/rest-http-index.html +++ b/src/main/resources/META-INF/resources/rest-http-index.html @@ -11,28 +11,27 @@
- The REST API Level 0 mission demonstrates how to map business operations to a remote procedure call endpoint over HTTP using a REST framework. This mission corresponds to Level 0 in the Richardson Maturity Model. -
-- By using this Fuse booster, you can implement this mission to quickly prototype and flexibly design your REST API. + The REST API Level 0 booster demonstrates how to map business operations to a remote procedure call endpoint over HTTP using a REST framework. This mission corresponds to Level 0 in the Richardson Maturity Model.
This booster introduces the mechanics of interacting with a remote (exposed by Apache Camel) service using the HTTP protocol.
- Use this booster to: + By using this Fuse booster, you can quickly prototype and flexibly design your REST API. +
++ To demonstrate the behavior of this booster:
camel/greetings/{name} endpoint:
-
- camel/greetings/{name} Hello, $name!
- where $name is replaced by the value of the {name} URL parameter from the HTTP GET request.camel/greetings/{name} endpoint.
+ A new browser window opens and shows a response in JSON format with a payload of Hello, $name!
+ where $name is the value of the {name} URL parameter from the HTTP GET request. By default, this is Jacopo.
Click API Swagger page to open the REST API's Swagger page.