Unlocking Sitecore Content Hub: A Guide to Utilizing the Web Client SDK - Part 2 The previous blog discussed how to authenticate using the OAuth client. The Web Client SDK includes an Entities client for executing CRUD operations—such as reading, creating, updating, and deleting entities—in Content Hub. For more details, you can visit Sitecore's Web Client SDK documentation . Here are some examples of CRUD operations on entities. Create Entities To create the entity, use the EntityFactory to instantiate an Entity, set its properties using SetPropertyValue, and then call the SaveAsync method to save the changes. public static async Task<long> CreateAssestEntity() { IEntity asset = await MClientConnector.Client.EntityFactory.CreateAsync("M.Asset").ConfigureAwait(false); asset.SetPropertyValue("Title", "This is a test Asset"); return await MClientConnector.Client.Entities.SaveAsync(asset).ConfigureAwait(false); ...