Skip to main content

How can I send all columns of an item to an external service when a particular column is updated?

  • January 14, 2023
  • 1 reply
  • 927 views

I am trying to use a custom app to send all columns of an item to a webhook when a certain update happens on the item. So far I have been able to make a recipe that triggers a custom action, but what is send does not send all the fields and I am at a bit of a loss as to how this could be accomplished, any ideas?

1 reply

Matias.Monday
Forum|alt.badge.img
  • monday.com Team Member
  • January 15, 2023

Hello there @smart and welcome to the community!

I hope you like it here 💪

What about using the item ID you get in your endpoint when the trigger is triggered to get the column values for that item using an HTTP request:

{
  items (ids: 1234567890) {
    column_values {
      id
      title
      value
      text
    }
  }
}

What do you think?

Cheers,
Matias