Hi HemaraldHerald,
at least I am not alone being confused 
The webhook receives Blog Posts. If they are in the database the Merge
receives the previously stored dataset on Input 1 (I need the id
from the Database to update the record and finally want to do some magic if an update happens after more than two days after firstseen
.)
Here is a live sample from a testpost being redacted.
[
{
"id":511,
"postid":82,
"blogid":30,
"authorid":1,
"firstseen":"2023-07-10T10:39:14.000Z",
"feature":null,
"imgurl":" https://somesiteurl.com/image.png",
"title":" Another Test Post6",
"abstract":" Now we are a bit upset if this won’t work either… ",
"permalink":" https://somesiteurl.com/another-test-post/"
}
]
Input 2 is directly wired to the incomming Data from the webhook (containing the update information)
[
{
"PostId":"82",
"BlogId":"30",
"UserId":"1",
"Title":"Another Test Post7",
"Authorname":"Redacted",
"Blogname":"Redacted",
"Link":"https://somesiteurl.com/another-test-post/",
"Thumbnail":"https://somesiteurl.com/image.png",
"Abstract":"Now we are a bit upset if this won’t work either… äøåÖ… ",
"Channel":"",
"FeaturedImage":"https://somesiteurl.com/image.png"
}
]
The Merge Result is:
[
{
"id":511,
"postid":82,
"blogid":30,
"authorid":1,
"firstseen":"2023-07-10T10:39:14.000Z",
"feature":null,
"imgurl":" https://somesiteurl.com/image.png",
"title":" Another Test Post6",
"abstract":" Now we are a bit upset if this won’t work either… ",
"permalink":" https://somesiteurl.com/another-test-post/",
"PostId":"82",
"BlogId":"30",
"UserId":"1",
"Title":"Another Test Post7",
"Authorname":"Redacted",
"Blogname":"Redacted",
"Link":"https://somesiteurl.com/another-test-post/",
"Thumbnail":"https://somesiteurl.com/image.png",
"Abstract":"Now we are a bit upset if this won’t work either… äøåÖ… ",
"Channel":"",
"FeaturedImage":"https://somesiteurl.com/image.png"
}
]