Hi There,
Trying to integrate a WPform with Monday using Zapier.
- Can i populate a Monday Tag field ?
- If true, how do i access it using the Jason format ?
{“Tags_1” : {“tag”:[“This”]}}
Regards,
Fabian
Hi There,
Trying to integrate a WPform with Monday using Zapier.
Regards,
Fabian
Hi @fabiany
Unlike, for example, the Dropdown Column, the Tag Column will not allow you to create an item and set the tag column value using tag labels. Instead, you’ll need to utilize the tag IDs.
You can find the tag IDs in your account by first visiting monday.com and utilizing the below API call:
query {
tags {
id
name
}
}
Once you’ve located your tag IDs, the JSON formatting for the Create New Item step in Zapier would look like this:
{"tags":{"tag_ids":[390283, 390281]}}
The above JSON formatting will add 2 tags to the Tag Column when creating the item. Be sure to keep your tag IDs within the array (the square brackets).
Cheers!
-Scott
Thank you Scott and have a great day.
Fabian
You’re very welcome, Fabian
Hope you have a great day as well!