You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!-- description --> Explore the various features of the SAP API Business Hub, and learn how to find and test APIs.
12
+
# Tour the SAP Business Accelerator Hub
13
+
<!-- description --> Explore the various features of the SAP SAP Business Accelerator Hub, and learn how to find and test APIs.
14
14
15
15
## You will learn
16
-
- How to get started with SAP API Business Hub
16
+
- How to get started with SAP Business Accelerator Hub
17
17
18
18
## Intro
19
-
SAP API Business Hub is a website to discover, explore, and test APIs from various SAP products such as SAP S/4HANA, SAP SuccessFactors, SAP Customer Experience, SAP BTP, and selected partners. Apart from various product APIs, you can find detailed information on business processes and partner assets. The new workspace feature also enables you to consume integration and workflow content.
19
+
SAP Business Accelerator Hub is a website to discover, explore, and test APIs from various SAP products such as SAP S/4HANA, SAP SuccessFactors, SAP Customer Experience, SAP BTP, and selected partners. Apart from various product APIs, you can find detailed information on business processes and partner assets. The new workspace feature also enables you to consume integration and workflow content.
20
20
21
-
Want to learn more about the new SAP API Business Hub? Not sure where to get started? Go to [api.sap.com] (https://api.sap.com), and begin your journey.
21
+
Want to learn more about the new SAP SAP Business Accelerator Hub? Not sure where to get started? Go to [api.sap.com] (https://api.sap.com), and begin your journey.
22
22
23
23
---
24
24
25
-
### Go to the SAP API Business Hub
26
-
In your browser, open [SAP API Business Hub](https://api.sap.com/).
25
+
### Go to the SAP Business Accelerator Hub
26
+
In your browser, open [SAP Business Accelerator Hub](https://api.sap.com/).
27
27
28
-
<!-- border -->
28
+
<!-- border -->
29
29
30
-
You can explore products, business processes, as well as different categories of assets, along with partner and featured content. Choose Explore for quick access to the various sections of the SAP API Business Hub.
30
+
You can explore products, business processes as well as different categories of assets, along with partner and featured content. Choose **Explore** for quick access to the various sections of the SAP Business Accelerator Hub.
31
31
32
32
### Explore API content
33
-
On the SAP API Business Hub homepage, choose **Categories**.
33
+
On the SAP Business Accelerator Hub homepage, choose **Categories**.
34
34
35
-
<!-- border -->
35
+
<!-- border -->
36
36
37
37
Choose APIs from the different categories available.
38
38
39
-
<!-- border -->
39
+
<!-- border -->
40
40
41
41
### Search for an API
42
42
@@ -52,7 +52,6 @@ For the purpose of this tutorial, we are going to choose the `SAP Cloud for Cust
52
52
53
53
<!-- border -->
54
54
55
-
56
55
### Explore the API
57
56
58
57
On choosing the **SAP Cloud for Customer** package, you can view the available APIs in the package. Select the Campaign API to explore it in detail.
@@ -73,7 +72,7 @@ Various HTTP methods of API are used to address the functionality of endpoints.
73
72
74
73
### Test an API endpoint
75
74
76
-
The SAP API Business Hub allows you to test APIs. A sandbox environment is provided to test the Campaign API. To take advantage of this, ensure you are logged on. Select Login at the top of the page.
75
+
The SAP Business Accelerator Hub allows you to test APIs. A sandbox environment is provided to test the Campaign API. To take advantage of this, ensure you are logged on. Select Login at the top of the page.
77
76
78
77
<!-- border -->
79
78
@@ -104,5 +103,4 @@ The response section displays various entities fetched calling the `GET` method.
104
103
105
104
Feel free to explore other endpoints in this Campaign API.
106
105
107
-
108
-
Congratulations, you have just taken your first steps with the SAP API Business Hub and should now be able to navigate it and the content within, confidently.
106
+
Congratulations, you have just taken your first steps with the SAP Business Accelerator Hub and should now be able to navigate it and the content within, confidently.
- How to use command line tools like curl and jq with REST / OData APIs locally.
21
21
22
22
## Intro
23
-
You have already discovered the SAP API Business Hub and accomplished testing an API on the website. In this tutorial, you will learn how to use command-line tools like curl and jq to test REST/OData APIs locally on your machine.
23
+
You have already discovered the SAP Business Accelerator Hub and accomplished testing an API on the website. In this tutorial, you will learn how to use command-line tools like curl and jq to test REST and OData APIs locally on your machine.
24
24
25
25
---
26
26
@@ -32,7 +32,7 @@ Go to <https://api.sap.com> and navigate to the [Campaign](https://api.sap.com/a
32
32
33
33
### Generate sample API call code
34
34
35
-
Select `GET/CampaignCollection` method under **API Reference**. Glance through the `GET/CampaignCollection` to understand the parameters. The SAP API Business Hub provides you with starter code in a variety of languages and tools for each API.
35
+
Select `GET/CampaignCollection` method under **API Reference**. Glance through the `GET/CampaignCollection` to understand the parameters. The SAP Business Accelerator Hub provides you with starter code in a variety of languages and tools for each API.
36
36
37
37

38
38
@@ -52,7 +52,7 @@ Copy the highlighted curl code to the clipboard.
52
52
53
53
### Run sample API call code
54
54
55
-
Paste the content of the clipboard in a terminal or command line window. Hit **Enter** to run the command. It may take a few seconds before data is seen on your screen.
55
+
Paste the content of the clipboard in a terminal or command line window. Hit **Enter** to run the command. Please note that it may take a few seconds before data is seen on your screen.
56
56
57
57
> You can use `CTRL+C` to stop the command from running.
58
58
@@ -72,7 +72,6 @@ You can limit the number of results retrieved with the `$top` value provided in
72
72
You can then switch back to the Code Snippet section, and copy the updated code from the Curl section to paste it into your terminal. When you execute the curl command, and pipe the output into jq again, you should see a nicely formatted list of three campaigns.
73
73
74
74
### Add multiple parameters to the API call
75
-
76
75
Besides the `$top` parameter, you can add multiple parameters to the [Query String](https://en.wikipedia.org/wiki/Query_string) of your API call.
77
76
Now add in a second parameter for `$select`. You only want the `StatusText` and `Status` for the top 3 users. Use the same approach as before - switch to the Parameters section, specify the two values for the `$select` parameter using the drop down menu, then switch back to the Code Snippet section and copy the Curl content again. It should look something like this:
0 commit comments