Skip to content

Name change of APIH #23060

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
May 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 14 additions & 16 deletions tutorials/hcp-abh-getting-started/hcp-abh-getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,34 +9,34 @@ tags: [ tutorial>beginner, products>sap-business-technology-platform, topic>sap

---

# Tour the SAP API Business Hub
<!-- description --> Explore the various features of the SAP API Business Hub, and learn how to find and test APIs.
# Tour the SAP Business Accelerator Hub
<!-- description --> Explore the various features of the SAP SAP Business Accelerator Hub, and learn how to find and test APIs.

## You will learn
- How to get started with SAP API Business Hub
- How to get started with SAP Business Accelerator Hub

## Intro
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.
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.

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.
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.

---

### Go to the SAP API Business Hub
In your browser, open [SAP API Business Hub](https://api.sap.com/).
### Go to the SAP Business Accelerator Hub
In your browser, open [SAP Business Accelerator Hub](https://api.sap.com/).

<!-- border -->![SAP API Business Hub page](1.png)
<!-- border -->![SAP Business Accelerator Hub page](1.png)

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.
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.

### Explore API content
On the SAP API Business Hub homepage, choose **Categories**.
On the SAP Business Accelerator Hub homepage, choose **Categories**.

<!-- border -->![SAP API Business Hub homepage API tile](2.png)
<!-- border -->![SAP Business Accelerator Hub homepage API tile](2.png)

Choose APIs from the different categories available.

<!-- border -->![SAP API Business Hub APIs section](2a.png)
<!-- border -->![SAP Business Accelerator Hub APIs section](2a.png)

### Search for an API

Expand All @@ -52,7 +52,6 @@ For the purpose of this tutorial, we are going to choose the `SAP Cloud for Cust

<!-- border -->![SAP Cloud for Customer Package Search](4a.png)


### Explore the API

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.
Expand All @@ -73,7 +72,7 @@ Various HTTP methods of API are used to address the functionality of endpoints.

### Test an API endpoint

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.
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.

<!-- border -->![Login](6.png)

Expand Down Expand Up @@ -104,5 +103,4 @@ The response section displays various entities fetched calling the `GET` method.

Feel free to explore other endpoints in this Campaign API.


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.
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.
9 changes: 4 additions & 5 deletions tutorials/hcp-abh-test-locally/hcp-abh-test-locally.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ time: 20
tags: [ tutorial>beginner, products>sap-business-technology-platform, topic>sap-api-business-hub ]
---

# Test SAP API Business Hub APIs with curl
# Test SAP Business Accelerator Hub APIs with curl
<!-- description --> Try out an SAP API locally on your machine.

## Prerequisites
Expand All @@ -20,7 +20,7 @@ tags: [ tutorial>beginner, products>sap-business-technology-platform, topic>sap
- How to use command line tools like curl and jq with REST / OData APIs locally.

## Intro
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.
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.

---

Expand All @@ -32,7 +32,7 @@ Go to <https://api.sap.com> and navigate to the [Campaign](https://api.sap.com/a

### Generate sample API call code

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.
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.

![Get/CampaignCollection method](2.png)

Expand All @@ -52,7 +52,7 @@ Copy the highlighted curl code to the clipboard.

### Run sample API call code

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.
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.

> You can use `CTRL+C` to stop the command from running.

Expand All @@ -72,7 +72,6 @@ You can limit the number of results retrieved with the `$top` value provided in
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.

### Add multiple parameters to the API call

Besides the `$top` parameter, you can add multiple parameters to the [Query String](https://en.wikipedia.org/wiki/Query_string) of your API call.
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:

Expand Down