Make a SitecoreAI Sites REST API request
Make requests to the SitecoreAI Sites REST API to manage SitecoreAI sites, site collections, jobs, languages, and more. In this guide, you list sites.
-
Make sure your app is installed in the SitecoreAI environment where you want to make API requests.
-
Complete the SDK quick start and initialize the
xmcpackage.In the quick start, you set up your app so it queries the application context and stores the app details in state. This is required to access the Context ID of your SitecoreAI environment when making requests to SitecoreAI APIs.
To make a SitecoreAI Sites REST API request:
-
In the
srcfolder, create a component, for example,components/Sites.tsx, then save your changes.This script:
-
Accesses the Context ID of your SitecoreAI environment from the application context.
-
Makes a query using the Context ID:
client?.query("xmc.xmapp.listSites", {<...>}; -
Returns a button that makes the request when clicked.
-
-
In the SDK initialization code where you run the
useMarketplaceClienthook, import the component you created in the previous step: -
In the same file, include the component in the return statement, then save your changes. Make sure to pass
clientand the application context to the component: -
In the SitecoreAI Page builder, open your web browser's Network tab, refresh the page, then open your Marketplace app.
-
In the Marketplace app, click List Sites.
-
On the Network tab, find a POST request made to
sites?. This is the request you made when you clicked the button in your app.