Adding multiple tags to a post on Wordpress

I am trying to add multiple tags to a wordpress post via Make.
I can get the ID tags, and have done so, as visible in the screenshots. I have used the following format, provided by this Q&A: WordPress Help - #6 by a7187997

[
“Tag 1”,
“Tag 2”,
“Tag 3”
]

replacing the Tag # with the ID.
It still gives me the same error, see attached. How would this work?

Screenshot 2023-09-01 124027

You might want to remove the double quotes around the variables, since that makes it a string variable type, and the error is complaining that it expects an integer number type.

2 Likes

Tried that, but still gives this error: [400] Invalid parameter(s): tags (error code: rest_invalid_param)
tags: tags[0] is not of type integer.

my input:
]
‘ID’,
‘ID’
]

I meant

[
‘ID’,
‘ID’
]

This of course haha