I am trying to create a webhook from Monday.com to an AWS Lambda function.
My Monday board is structured like so :
Name | Price | Status |
---|---|---|
A | 8 | Under Review |
B | 9 | Under Review |
There is a webhook configured which fires off when the Status changes to “Approved” so if the board changes to :
| Name |Price |Status | | -------- | -------------- |-------------- | | A | 8 |Approved | | B | 9 |Under Review | then we receive information to our URL. However the information only tells us that status changed from “Under Review” to “Approved”.
I am trying to get the Name and Price as well. Is it possible to get a custom payload from Monday.com or what is the best way to proceed?
Thanks in advance!