Thanks to this awesome community for creating these Plug In Actions:
I would like an Plug In Action for Make.com too. However I don't know how to create one.
The goal for me is to send JSON from a macro to a Make.com webhook. This is the JSON that I would like to send to the Make.com webhook:
[
{
"clickRate": "42.5%",
"emailId": "1000001",
"emailName": "Boost Your Productivity with AI Tools",
"openRate": "80.1%",
"sends": "5,254",
"sequenceId": "300001",
"unsubscribers": "455"
},
{
"clickRate": "5.7%",
"emailId": "1000002",
"emailName": "Cloud Storage: The Future of Data Management",
"openRate": "57.6%",
"sends": "3,543",
"sequenceId": "300001",
"unsubscribers": "362"
},
{
"clickRate": "0%",
"emailId": "1000003",
"emailName": "5 Cybersecurity Tips to Protect Your Business",
"openRate": "54%",
"sends": "3,158",
"sequenceId": "300001",
"unsubscribers": "197"
},
{
"clickRate": "0.8%",
"emailId": "1000004",
"emailName": "How 5G is Transforming Connectivity",
"openRate": "50%",
"sends": "2,947",
"sequenceId": "300001",
"unsubscribers": "132"
},
{
"clickRate": "0.6%",
"emailId": "1000005",
"emailName": "Understanding Blockchain Technology",
"openRate": "49.6%",
"sends": "2,798",
"sequenceId": "300001",
"unsubscribers": "68"
},
{
"clickRate": "1%",
"emailId": "1000006",
"emailName": "The Impact of AI on Web Development",
"openRate": "48.4%",
"sends": "2,704",
"sequenceId": "300001",
"unsubscribers": "64"
},
{
"clickRate": "0.5%",
"emailId": "1000007",
"emailName": "Essential Tech Gadgets for 2024",
"openRate": "48.9%",
"sends": "2,629",
"sequenceId": "300001",
"unsubscribers": "69"
},
{
"clickRate": "1.1%",
"emailId": "1000008",
"emailName": "Top Cloud Solutions for Startups",
"openRate": "50%",
"sends": "2,552",
"sequenceId": "300001",
"unsubscribers": "90"
}
]
I've checked the JSON on https://jsonlint.com/ and the JSON is valid.
When I fill in the Make.com webhook at URL, 'display results in window' will give me this error:
Note: Unnecessary use of -X or --request, POST is already inferred.
* Connection #0 to host hook.eu1.make.com left intact
Unexpected token c in JSON at position 17
When I just type some random text in value 1, there is no problem. Do you maybe know how to solve this?
test send json to make - question km forum.kmmacros (5.0 KB)
Using Zapier webhooks - Catch Hook
I ultimately want to send JSON to Make.com, but also created a Zapier webhook.
When creating a webhook you can choose "Catch Hook" or "Catch Raw Hook".
When I choose Catch Hook this appears:
I run the macro.
Display results in window:
After this I press the "Test trigger" button:
This is the result:
Using Zapier webhooks - Catch Raw Hook
Run macro.
Result:
Press the test trigger button:
Result:
Do you know why Catch Hook does not work?
But more importantly for me and others who want to send JSON to Make.com;
Do you know how to send JSON from a macro without Unexpected token c in JSON at position 17
error to Make.com?
Could it be that the solution is to create a Plug In Action that is compatible with Make.com? (A customized Plug In Action based on the Send Data to Zapier Webhook Plug In Action?) If so, who can create this Plug In Action?