function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Felix Jong Seok ChaeFelix Jong Seok Chae 

create multiple tags through apex developer console

When I am using a single string for name field of casetags object, I can see a correct tag generated for a newly inserted case record. Now I have a list of string-typed tags and am trying to attach all those tags to a single new case record. Here are the examples that didn't work for multiple tags attachement.
ex1) name = "tag1, tag2"
ex2) for (String tag: tagsList) {
             name = tag;
             process each tag with httppost
        }