Hello!
When I use the API to get deal stage changes /deals/<id>/flow?items=change
, I get a list of dealChange objects with their IDs, like this:
{
"success": true,
"data": [
{
"object": "dealChange",
"timestamp": "2025-05-15 07:31:03",
"data": {
"id": 641694,
...
}
}
]
}
But when using webhooks, this ID is missing.
The webhook has an event ID in a different format:
"id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
Guide for Webhooks v2
Is there any way to determine the dealChange ID from the webhook’s data corresponding to the one received through the API?