Management with Rich Text

This is how you send to a text field:

Title = new Dictionary<string, string>()
    {
        { "en-US", "Accessories" },
    },

How do I send to a Rich text field? Thanks.

Hi @jk123
You would do the same thing, but instead of using a string you’d use the Document type.

Title = new Dictionary<string, string>()
    {
        { "en-US", new Document() },
    },