To start using the Agility CMS & .NET 5 Starter, sign up for a FREE account and create a new Instance using the Blog Template.
Introduction to .NET and Agility CMS
- Uses the latest version of .NET, with greatly improved performance across many components, Language improvements to C# and F#, and much more.
- Provides a facility to developers to use the new Agility Management API more effectively.
- Provides methods to perform operations on Assets, Batches, Containers, Content, Models, Pages, and Users.
- Supports the creation of Pages and Content in batches.
- Ability to generate Content in bulk for a Website.
- Clone the solution agility-cms-management-sdk-dotnet.
- Add namespace management.api.sdk to make use of the Options class.
- Create an object of the Options class to provide values of -
- token -> Bearer token to authenticate a Rest Request to perform an operation.
- locale -> The locale under which your application is hosted. Example en-us.
- guid -> The guid under which your application is hosted.
- Create an object of Method class(es), which can be used to create and perform operations. Following is the description of Classes and their respective methods -
using management.api.sdk;
//initialize the Options Class
agility.models.Options options = new agility.models.Options();
options.token = "<<Provide Auth Token>>";
//Initialize the Client instance Class
ClientInstance clientInstance = new ClientInstance(options);
//make the request: get a content item with the ID '22'
var locale = "<<Provide the locale of the Website>>"; //Example: en-us
var guid = "<<Provide the Guid of the Website>>";
var contentItem = await clientInstance.contentMethods.GetContentItem(22, guid, locale);
This class is used to perform operations related to Assets. The following are the methods: -
Parameter | Type | Description |
---|---|---|
files |
Dictionary<string,string> |
The key will be the file name and value will be the folder path of the files. The file should present at the local folder provided in the dictionary. |
guid |
string |
Current website guid. |
agilityFolderPath |
string |
Path of the folder in Agility where the file(s) needs to be uploaded. |
groupingID |
int |
Path of the folder in Agility where the file(s) needs to be uploaded. |
Returns: A collection of Media
class Object.
Parameter | Type | Description |
---|---|---|
originKey |
Dictionary<string,string> |
The origin key of the requested folder. |
guid |
string |
Current website guid. |
Returns: A collection of Media
class Object.
Parameter | Type | Description |
---|---|---|
mediaID |
int |
The mediaID of the asset which needs to be deleted. |
guid |
string |
Current website guid. |
Returns | ||
A string response if a file has been deleted. |
Parameter | Type | Description |
---|---|---|
mediaID |
int |
The mediaID of the file that needs to be moved. |
newFolder |
string |
The new location (in Agility) where the file needs to be moved. |
guid |
string |
Current website guid. |
Returns: An object of Media
class with the new location of the file.
Parameter | Type | Description |
---|---|---|
pageSize |
int |
The page size on which the assets needs to selected. |
recordOffset |
int |
The record offset value to skip search results. |
guid |
string |
Current website guid. |
Returns: An object of AssetMediaList
class.
Parameter | Type | Description |
---|---|---|
guid |
string |
Current website guid. |
id |
int |
The ID of the requested gallery. |
Returns: An object of AssetMediaGrouping
class.
Parameter | Type | Description |
---|---|---|
guid |
string |
Current website guid. |
galleryName |
string |
The name of the requested gallery. |
Returns: An object of AssetMediaGrouping
class.
Parameter | Type | Description |
---|---|---|
guid |
string |
Current website guid. |
Returns: An object of AssetContainer
class.
Parameter | Type | Description |
---|---|---|
guid |
string |
Current website guid. |
search |
string |
String to search a specific gallery item. |
pageSize |
int |
The pageSize on which the galleries needs to be selected. |
rowIndex |
int |
The rowIndex value for the resultant record set. |
Returns: An object of AssetGalleries
class.
Parameter | Type | Description |
---|---|---|
guid |
string |
Current website guid. |
gallery |
AssetMediaGrouping |
Object of AssetMediaGrouping class. |
Returns: An object of AssetMediaGrouping
class.
Parameter | Type | Description |
---|---|---|
guid |
string |
Current website guid. |
id |
int |
The id of the gallery to be deleted. |
A string
response if the gallery has been deleted.
Parameter | Type | Description |
---|---|---|
mediaID |
int |
The mediaID of the requested asset. |
guid |
string |
Current website guid. |
Returns: An object of Media
class with the information of the asset.
Parameter | Type | Description |
---|---|---|
url |
string |
The url of the requested asset. |
guid |
string |
Current website guid. |
Returns: An object of Media
class with the information of the asset.
This class is used to perform operations related to Batches. The following are the methods: -
Parameter | Type | Description |
---|---|---|
id |
int |
The batchID of the requested batch. |
guid |
string |
Current website guid. |
Returns: A object of Batch
class.
This class is used to perform operations related to Containers. The following are the methods: -
Parameter | Type | Description |
---|---|---|
id |
int |
The container id of the requested container. |
guid |
string |
Current website guid. |
Returns: A object of Container
class.
Parameter | Type | Description |
---|---|---|
referenceName |
string |
The container reference name of the requested container. |
guid |
string |
Current website guid. |
Returns: A object of Container
class.
Parameter | Type | Description |
---|---|---|
id |
int |
The container id of the requested container. |
guid |
string |
Current website guid. |
Returns: A object of Container
class.
Parameter | Type | Description |
---|---|---|
guid |
string |
Current website guid. |
Returns: A collection object of Container class. |
Parameter | Type | Description |
---|---|---|
id |
int |
The container id of the requested container. |
guid |
string |
Current website guid. |
Returns: A collection object of Notification
class.
Parameter | Type | Description |
---|---|---|
container |
Container |
A Container type object to create or update a container. |
guid |
string |
Current website guid. |
Returns: An object of Container
class.
Parameter | Type | Description |
---|---|---|
id |
int |
The container id of the requested container. |
guid |
string |
Current website guid. |
Returns: A string
response if a container has been deleted.
This class is used to perform operations related to Content. The following are the methods: -
Parameter | Type | Description |
---|---|---|
contentID |
int |
The contentid of the requested content. |
guid |
string |
Current website guid. |
locale |
string |
Current website locale. |
Returns: An object of ContentItem
class.
Parameter | Type | Description |
---|---|---|
contentID |
int |
The contentid of the requested content. |
guid |
string |
Current website guid. |
locale |
string |
Current website locale. |
comments |
string |
Additional comments for a batch request. |
Returns: The contentID
of the requested content.
Parameter | Type | Description |
---|---|---|
contentID |
int |
The contentid of the requested content. |
guid |
string |
Current website guid. |
locale |
string |
Current website locale. |
comments |
string |
Additional comments for a batch request. |
Returns: The contentID
of the requested content.
Parameter | Type | Description |
---|---|---|
contentID |
int |
The contentid of the requested content. |
guid |
string |
Current website guid. |
locale |
string |
Current website locale. |
comments |
string |
Additional comments for a batch request. |
Returns: The contentID
of the requested content.
Parameter | Type | Description |
---|---|---|
contentID |
int |
The contentid of the requested content. |
guid |
string |
Current website guid. |
locale |
string |
Current website locale. |
comments |
string |
Additional comments for a batch request. |
Returns: The contentID
of the requested content.
Parameter | Type | Description |
---|---|---|
contentID |
int |
The contentid of the requested content. |
guid |
string |
Current website guid. |
locale |
string |
Current website locale. |
comments |
string |
Additional comments for a batch request. |
Returns: The contentID
of the requested content.
Parameter | Type | Description |
---|---|---|
contentItem |
ContentItem |
A contentItem object to create or update a content. |
guid |
string |
Current website guid. |
locale |
string |
Current website locale. |
Returns: The contentID
of the requested content.
Parameter | Type | Description |
---|---|---|
contentItems |
List<ContentItem> |
A collection of contentItems object to create or update multiple contents. |
guid |
string |
Current website guid. |
locale |
string |
Current website locale. |
Returns: A list of object
which consists of the processed contentID's for the batch request.
Parameter | Type | Description |
---|---|---|
contentID |
int |
The contentid of the requested content. |
guid |
string |
Current website guid. |
locale |
string |
Current website locale. |
comments |
string |
Additional comments for a batch request. |
Returns: The contentID
of the requested content.
Parameter | Type | Description |
---|---|---|
referenceName |
string |
The reference name of the container for the requested content. |
guid |
string |
Current website guid. |
locale |
string |
Current website locale. |
filter |
string |
The filter condition for the requested content. |
fields |
string |
The fields mapped to the container. |
sortDirection |
string |
The direction to sort the result. |
sortField |
string |
The field on which the sort needs to be performed. |
take |
int |
The page size for the result. |
skip |
int |
The record offset for the result. |
Returns: An object of ContentList
class of the requested content.
This class is used to perform operations related to User. The following are the methods: -
Parameter | Type | Description |
---|---|---|
guid |
string |
Current website guid. |
Returns: A collection of WebsiteUser class of the requested content. |
Parameter | Type | Description |
---|---|---|
emailAddress |
string |
The email address of the requested user. |
roles |
List<InstanceRole> |
Collection object of InstanceRole class for the requested user. |
guid |
string |
Current website guid. |
firstName |
string |
The first name of the requested user. |
lastName |
string |
The last name of the requested user. |
Returns: An object of the InstanceUser
class.
Parameter | Type | Description |
---|---|---|
userID |
int |
The userID of the requested user. |
guid |
string |
Current website guid. |
Returns: A string
response if a user has been deleted.
This class is used to perform operations related to Models. The following are the methods: -
Parameter | Type | Description |
---|---|---|
id |
int |
The id of the requested model. |
guid |
string |
Current website guid. |
Returns: An object of Model
class.
Parameter | Type | Description |
---|---|---|
referenceName |
string |
The referenceName of the requested model. |
guid |
string |
The guid of the requested model. |
Returns: An object of Model
class.
Parameter | Type | Description |
---|---|---|
includeDefaults |
bool |
Boolean value to include defaults. |
guid |
string |
Current website guid. |
includeModules |
bool |
Boolean value to include modules. |
Returns: A collection object of Model
class.
Parameter | Type | Description |
---|---|---|
guid |
string |
Current website guid. |
includeDefault |
bool |
Boolean value to include defaults. |
Returns: A collection object of Model
class.
Parameter | Type | Description |
---|---|---|
model |
Model |
The object of Model to for the requested model. |
guid |
string |
Current website guid. |
Returns: An object of Model
class.
Parameter | Type | Description |
---|---|---|
id |
int |
The id for the requested model. |
guid |
string |
Current website guid. |
Returns: A string
response if a model is deleted.
This class is used to perform operations related to Pages. The following are the methods: -
Parameter | Type | Description |
---|---|---|
guid |
string |
Current website guid. |
locale |
string |
Current website locale. |
Returns: A collection object of Sitemap class. |
Parameter | Type | Description |
---|---|---|
pageID |
int |
The id of the requested page. |
guid |
string |
Current website guid. |
locale |
string |
Current website locale. |
Returns: An object of PageItem
class.
Parameter | Type | Description |
---|---|---|
pageID |
int |
The pageID of the requested page. |
guid |
string |
Current website guid. |
locale |
string |
Current website locale. |
comments |
string |
Additional comments for a batch request. |
Returns: The pageID
of the requested page.
Parameter | Type | Description |
---|---|---|
pageID |
int |
The pageID of the requested page. |
guid |
string |
Current website guid. |
locale |
string |
Current website locale. |
comments |
string |
Additional comments for a batch request. |
Returns: The pageID
of the requested page.
Parameter | Type | Description |
---|---|---|
pageID |
int |
The pageID of the requested page. |
guid |
string |
Current website guid. |
locale |
string |
Current website locale. |
comments |
string |
Additional comments for a batch request. |
Returns: The pageID
of the requested page.
Parameter | Type | Description |
---|---|---|
pageID |
int |
The pageID of the requested page. |
guid |
string |
Current website guid. |
locale |
string |
Current website locale. |
comments |
string |
Additional comments for a batch request. |
Returns: The pageID
of the requested page.
Parameter | Type | Description |
---|---|---|
pageID |
int |
The pageID of the requested page. |
guid |
string |
Current website guid. |
locale |
string |
Current website locale. |
comments |
string |
Additional comments for a batch request. |
Returns: The pageID
of the requested page.
Parameter | Type | Description |
---|---|---|
pageID |
int |
The pageID of the requested page. |
guid |
string |
Current website guid. |
locale |
string |
Current website locale. |
comments |
string |
Additional comments for a batch request. |
Returns: The pageID
of the requested page.
Parameter | Type | Description |
---|---|---|
pageItem |
PageItem |
The object of PageItem class for the requested Page. |
guid |
string |
Current website guid. |
locale |
string |
Current website locale. |
parentPageID |
int |
The id of the parent page. |
placeBeforePageItemID |
int |
The id of the page before the page. |
Returns: The pageID
of the requested page.
dotnet build
=> Builds your .NET project.dotnet run
=> Builds & runs your .NET project.dotnet clean
=> Cleans the build outputs of your .NET project.
If you have feedback or questions about this starter, please use the Github Issues on this repo, join our Community Slack Channel or create a post on the Agility Developer Community.