PINGWorks.SitecoreAI.PagesSDK 1.1.0

dotnet add package PINGWorks.SitecoreAI.PagesSDK --version 1.1.0
                    
NuGet\Install-Package PINGWorks.SitecoreAI.PagesSDK -Version 1.1.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="PINGWorks.SitecoreAI.PagesSDK" Version="1.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="PINGWorks.SitecoreAI.PagesSDK" Version="1.1.0" />
                    
Directory.Packages.props
<PackageReference Include="PINGWorks.SitecoreAI.PagesSDK" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add PINGWorks.SitecoreAI.PagesSDK --version 1.1.0
                    
#r "nuget: PINGWorks.SitecoreAI.PagesSDK, 1.1.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package PINGWorks.SitecoreAI.PagesSDK@1.1.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=PINGWorks.SitecoreAI.PagesSDK&version=1.1.0
                    
Install as a Cake Addin
#tool nuget:?package=PINGWorks.SitecoreAI.PagesSDK&version=1.1.0
                    
Install as a Cake Tool

PINGWorks.SitecoreAI.PagesSDK

This is a .NET SDK for working with SitecoreAI's Pages API.<br /> More information about Sitecore's API is at Pages API Doc (official)

Features

  • Typed, DI-friendly service for interacting with the SitecoreAI Pages API
  • Async-first API with CancellationToken support and full XML documentation comments
  • NetStandard 2.1 for wide compatibility
  • Automatic token maintenance using client credentials flow
  • Optional environmentId parameter on all operations for targeting specific environments

Getting started

Prerequisites

To work with the SDK you will require credentials which are created in the SitecoreAI Deployment Portal.

Create an Environment credential of type Automation for the project and environment combination for which you wish to grant access.

Install

From your project directory:

dotnet add package PINGWorks.SitecoreAI.PagesSDK

AppSettings

Properties are available to configure the SDK through configuration binding. The snippet below shows all options along with their default values. You do not need to include values where you wish to use the defaults.

{
    /* The base URL of the Pages API */
    "ServiceEndpoint": "https://xmapps-api.sitecorecloud.io/api/v1/",

    /* The URL of the Token Request API */
    "TokenEndpoint": "https://auth.sitecorecloud.io/oauth/token",

    /* The auth audience */
    "Audience": "https://api.sitecorecloud.io",

    /* The auth grant type */
    "GrantType": "client_credentials",

    /* The value of ClientID from the SitecoreAI Deploy Portal */
    "ClientID": "[Created in SitecoreAI Deploy portal's Credentials pane]",

    /* The value of ClientSecret from the SitecoreAI Deploy Portal */
    "ClientSecret": "[Created in SitecoreAI Deploy portal's Credentials pane]"
}

We recommend the use of Visual Studio's User Secrets feature to store sensitive information such as ClientId and ClientSecret during development.

Register services

Register the SDK in Program.cs, e.g. when using the minimal hosting model:

// Program.cs
var builder = WebApplication.CreateBuilder(args);

// Register SDK services - set options through binding or manually
builder.Services.AddSitecoreEEPagesSDK( opt => config.GetSection( "mySettings" ).Bind( opt ) );

HttpClient defaults. This call (via AddSitecoreEECommon) applies AddStandardResilienceHandler() and a DEBUG-only console request/response logger to every HttpClient in your container — not just the SDK's own. See the PINGWorks.SitecoreExperienceEdge.Common README for how to customize the resilience options per-client.

This library uses Json serialization through System.Text.Json.

Using the environment ID

Most operations accept an optional environmentId parameter that targets a specific SAI environment. When omitted, the default environment is used.

// Target a specific environment
var page = await sdk.GetPage( pageId, site: "my-site", language: "en-US", environmentId: "main" );

Available services

Injectable interface ISitecorePagesSdk

Pages
Method Description
CreatePage(request, environmentId?) Creates a new page.
GetPage(pageId, site, language, version?, environmentId?) Retrieves a page's full details.
UpdateFields(pageId, request, environmentId?) Updates field values on a page.
DeletePage(pageId, request?, environmentId?) Deletes a page.
State
Method Description
GetPageState(pageId, site, language, version?, withWorkflow?, withVersions?, withLayout?, environmentId?) Retrieves lightweight page state.
GetLivePage(pageId, language, environmentId?) Checks if a page is published to Edge.
GetPageVariants(pageId, language, environmentId?) Lists active personalization variant identifiers.
Method Description
SearchPages(searchText?, rootIds?, filter?, language?, pageSize?, pageNumber?, continuationToken?, environmentId?) Searches for pages and folders by name.
Insert options
Method Description
GetInsertOptions(pageId, site, language, insertOptionKind, environmentId?) Retrieves allowed child templates for a page.
Versions
Method Description
GetPageVersions(pageId, site, language?, environmentId?) Lists all versions of a page.
AddPageVersion(pageId, request, environmentId?) Creates a new version of a page.
DeletePageVersion(pageId, versionNumber, language, environmentId?) Deletes a specific page version.
Layout & fields
Method Description
SaveLayout(pageId, request, environmentId?) Updates the layout of a page.
SaveFields(pageId, request, environmentId?) Updates the field values of a page.
Operations
Method Description
CreatePageFromBlueprint(request, environmentId?) Creates a page from a blueprint (async job).
DuplicatePage(pageId, request, environmentId?) Duplicates a page.
RenamePage(pageId, request, environmentId?) Renames a page.
TranslatePage(pageId, request, siteId?, environmentId?) Translates a page using AI (async job).
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.1.0 68 6/11/2026
1.0.0 104 4/16/2026

v1.1.0
✔️ Add CancellationToken support

v1.0.0
Initial release