Dropdown chosenValues

on the webhook update_column_value when a dropdown column changes I get the value of the column as ```
value: { chosenValues: [ [Object] ] }


is there any documentation on what is that Object?

@turboroof I didn’t find any documentation on this either but just tried with a sample drop down and got the below object

"value": {
  "chosenValues": [
    {
      "id": 2,
      "name": "Previous Value"
    }
  ]
}

try using JSON.stringify(value) to get the JSON string from the object for inspection.

1 Like

thanks @upitchika! that works

Hey @turboroof - welcome!

I’m glad @upitchika was able to assist here - you are awesome. Please let us know if we can help with anything else.

-Daniel

1 Like