Hello,
I'm playing around with CloudEvents and have the following issue:
I configured Eventmetadata and then fire an event like folowing:
function createCloudEvent(providerId, eventCode, payload) {
let cloudevent = new CloudEvent({
source: 'urn:uuid:' + providerId,
type: eventCode,
datacontenttype: "application/json",
data: {
hello: 'world'
},
id: uuid.v4()
});
return cloudevent
}
As a result, event is fired successfully and webhook got triggered.
But Body of it is always empty:

Will be very thanksfull for any help