Tag ID and tag Jason format

Hi There,

Trying to integrate a WPform with Monday using Zapier.

  1. Can i populate a Monday Tag field ?
  2. If true, how do i access it using the Jason format ?
    {“Tags_1” : {“tag”:[“This”]}}

Regards,

Fabian

Hi @fabiany :wave:

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! :slight_smile:

-Scott

1 Like

Thank you Scott and have a great day.

Fabian

1 Like

You’re very welcome, Fabian :slight_smile:

Hope you have a great day as well!

1 Like