Hi @upendarme1 If you’re dealing with a multi-valued property (e.g., a tag field), make sure you’re providing an array or list of values, not a single value. For example, if you’re setting tags, use an array of tag strings setProperty("tags", new String[]{"tag1", "tag2", "tag3"})Check the specific l...