I would like to push some (additional) data to a webhook from a form but how do I know how I tag this information properly in the JSON formatted field, does anybody have an idea how to tag this exactly?
I want to hidden fields, the IP adress and the source URL from which the form was submitted, according to Contact Form 7 documentation I need these 2 placeholders:
- List item
[_url]
[_remote_ip]
So I guess it needs to be like this:
{
"your-name": "??????",
"email": "??????",
"telefoonnummer": "??????",
"onderwerp": "??????",
"bericht": "??????",
"_url": "??????",
"_remote_ip": "??????"
}
But how do I adjust the code in the “data to webhook” field exactly?
Thank you!