简体   繁体   中英

What is the process for adding Groups to an existing type in Kontent Management API v2 with C#?

If I simply attempt to add a Group using the Kontent Management API (v2) to an existing Kontent type I get the following error (see code below which generates this error):

Validation errors: 511 Every element should have a correct content group reference when using groups

What is the process for adding a group via the Management API in this case using C#? I would assume that I need to add a group Reference to all the existing elements first, but how do I do that when I cannon add the group through the API? Can I create a valid Reference simply using a new ContentGroupModel() object before adding it to the actual type in Kontent?

Here is my existing code, which throws the above error:

var updatedType = await service.ModifyContentTypeAsync(
    Reference.ById(existingContentType.Id),
    new ContentTypeAddIntoPatchModel
    {
        Path = "/content_groups",
        Value = new ContentGroupModel
        {
            Name = "New Group",
            CodeName = "new_group"
        }
    }
);
   using Kentico.Kontent.Management;

var client = new ManagementClient(new ManagementOptions
{
    ApiKey = "<YOUR_API_KEY>",
    ProjectId = "<YOUR_PROJECT_ID>"
});

var identifier = Reference.ById(Guid.Parse("0be13600-e57c-577d-8108-c8d860330985"));
// var identifier = Reference.ByCodename("my_article");
// var identifier = Reference.ByExternalId("my-article-id");

var response = await client.ModifyContentTypeAsync(identifier, new ContentTypeOperationBaseModel[]
{
    new ContentTypeReplacePatchModel
    {
        Path = "/name",
        Value = "A new type name"
    },
    new ContentTypeReplacePatchModel
    {
        Path = "/elements/codename:my_text_element/guidelines",
        Value = "Here you can tell users how to fill in the element."
    },
    new ContentTypeAddIntoPatchModel
    {
        Path = "/elements",
        Value = new TextElementMetadataModel
        {
            Name = "My title",
            Guidelines = "Title of the article in plain text.",
            ExternalId = "my-title-id",
        },
    },
    new ContentTypeRemovePatchModel
    {
        Path = "/elements/id:0b2015d0-16ae-414a-85f9-7e1a4b3a3eae"
    }
});

Refer - https://docs.kontent.ai/reference/management-api-v2#operation/modify-a-content-type

I was able to work it out. It turns out you can use the Codename of the new group, even before adding it in Kontent, as a reference. Then give that reference to the content_group property/path for existing elements in the model.

Here is the code I have now that adds the new Group and adds it to all existing elements dynamically:

using Kentico.Kontent.Management.Models.Shared;
using Kentico.Kontent.Management.Models.Types;
using Kentico.Kontent.Management.Models.Types.Patch;

//
// ...
//

// First, Get type from the client. Then ...
var elementCodenames = myType.Elements.Select(el => el.Codename);

// Create reference to the codename of the group to be created
var groupRef = Reference.ByCodename("new_group");

// Create the modify models
var modifyModels = new ContentTypeOperationBaseModel[] {
    new ContentTypeAddIntoPatchModel
    {
        Path = "/content_groups", // Add to content_groups path
        Value = new ContentGroupModel
        {
            Name = "New Group",
            CodeName = "new_group" // Same codename as above
        }
    }
}
.Concat(
    // Dynamically add new group, by ref, to existing elements
    elementCodenames.Select(codename => new ContentTypeReplacePatchModel
    {
        Path = $"/elements/codename:{codename}/content_group",
        Value = groupRef // Group reference created above from the codename
    })
);

// Make call to add new group AND link group to elements in the one call
var response = await client.ModifyContentTypeAsync(myTypeIdentifier, modifyModels.ToArray());

Leaving out other details, like retrieving the existing type, but for reference here are the API Docs: https://docs.kontent.ai/reference/management-api-v2

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM