I created a webhook on Project level registered to Asana system under my account.
However, when I make some changes on Asana web page, for example update description on a task, I receive events body like
{ "events":[ { "action":"changed", "created_at":"2020-06-22T04:05:39.551Z", "parent":null, "resource":{ "gid":"1180044677847393", "name":null, "resource_type":"task", "resource_subtype":"default_task" }, "type":"", "user":{ "gid":"####", "name":null, "resource_type":"user", "resource_subtype":null } }, { "action":"changed", "created_at":"2020-06-22T04:05:39.551Z", "parent":null, "resource":{ "gid":"1180044677847393", "name":null, "resource_type":"task", "resource_subtype":"default_task" }, "type":"", "user":{ "gid":"####", "name":null, "resource_type":"user", "resource_subtype":null } }, { "action":"added", "created_at":"2020-06-22T04:05:39.554Z", "parent":{ "gid":"1180044677847393", "name":null, "resource_type":"task", "resource_subtype":"default_task" }, "resource":{ "gid":"1181327729004281", "name":null, "resource_type":"story", "resource_subtype":"notes_changed" }, "type":"", "user":{ "gid":"####", "name":null, "resource_type":"user", "resource_subtype":null } } ] }
I expect to see the changed context about description - what is before the change and what is after the change.
I read doc Event part, and its example has fields like “change”, “new_value”, “removed_value”, etc. But I don’t see them in my returned events body.
Did I miss something? How can I get those change context?