We are attempting to read changes to the Ideas record type using the Activity webhook.
Most of the information is straight forward, in an expected JSON format.
But for changes, the data comes through as an array of json objects, instead of properties named after the specific fields that are changing, and their values.
If we have an alternative, it would be simpler to read the data like all other properties/elements in the JSON.
Current State, changing the value of the field called Name:
"changes": [
{
"field_name": "Name",
"value": "test4-c → test4-d"
}
]
Requested State:
"changes": {
"Name": "test4-c → test4-d"
}
You may also be interested in this idea https://big.ideas.aha.io/ideas/A-I-15893