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

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?

Hello there @smart and welcome to the community!

I hope you like it here :muscle:

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