Hi all,
I’ve got a typical webhook request schema that looks like this:
[
{
"headers": {
"host": "n8n.blahblah.com",
"content-length": "909",
"accept": "*/*",
"content-type": "application/json",
"x-forwarded-for": "123.123.123.123",
"x-forwarded-host": "n8n.blahblah.com",
"x-forwarded-port": "443",
"x-forwarded-proto": "https",
"x-forwarded-server": "skukhksdjhf3",
"x-real-ip": "123.123.123.123",
"accept-encoding": "gzip"
},
"params": {
},
"query": {
},
"body": {
"webhook_event": "new_email_open",
"email": "[email protected]",
"score": 10,
"first_name": "blah",
"greeting": "blahblahblahblahblahblahblah",
"icebreaker": "blahblahblahblahblahblahblah",
"last_name": "blahblah",
"personalsubject": "So this is a test?",
"title": "Mr.",
"job_title": "blahblah",
"phone": "123123123",
"middle_name": "blah",
"other_email": "blah",
"city": "blah",
"country": "blah",
"region": "blah",
"postal_code": "blah",
"company_name": "blah",
"company_phone": "blah",
"company_domain": "blah",
"company_size": "blah",
"company_industry": "blah",
"company_website": "blahblahblah.com",
"company_address": "blahblahblahblahblahblahblahblahblah",
"company_type": "blah",
"linkedin_url": "blahblahblahblahblahblah.com",
"campaign_name": "blahblahblahblah"
}
}
]
Is there a way to just chuck everything in the body as a parameter to, say, an Airtable node?