Facebook offline conversion integration
We are trying to add events to Facebook to better track our offline conversions with n8n.
We’ve already got the http request to Facebook working, at least it does not throw any Errors any more.
But the event does not show up on Facebook.
Here’s our test workflow and test data:
(ids and personal information is scrambled)
Test json
[
{
"data": [
{
"event_name": "qualifizierteLead",
"event_time": 1681836716,
"action_source": "system_generated",
"user_data": {
"lead_id": 9999955841568457
},
"custom_data": {
"lead_event_source": "n8n",
"event_source": "crm"
}
}
]
}
]
N8NJ workflow
Answer from Facebook in the http request node
[
{
"events_received":1,
"messages":[
],
"fbtrace_id":"s4556a_3sdf654sdf5e66asd"
}
]