Hi @Dave,
I’m pretty sure I’m not that far to what I want to do, but I still have some trouble.
I’m trying to do something like this :
sprintf(publishString, "{ \"test\": %s, \"temp_int_str\": %s, \"temp_ext_str\": %s}", test, temp_int_str, temp_ext_str);
In parse, I have a few columns : test, temp_ext_str and temp_int_str as strings.
In my code, I have those variables :
char test[] = "this is a test";
char temp_ext_str[] = "42";
char temp_int_str[] = "21";
But my parse database is still empty and I don’t get why
How should I do my json file ?
I have something like this :
{
"eventName": "post_parse",
"url": "https://api.parse.com/1/classes/Flotty/",
"requestType": "POST",
"headers": {
"X-Parse-Application-Id": "MYAPPID",
"X-Parse-REST-API-Key": "MYRESTAPIKEY",
"Content-Type": "application/json"
},
"json": {
"test": "{{test}}",
"temp_int_str": "{{temp_int_str}}",
"temp_ext_str": "{{temp_ext_str}}"
},
"mydevices": true
}
Btw, can I send a int to parse through the webhook ?
EDIT : I found it, too many “{” in the json file 
But still nothing for the int
EDIT : Forgot the previous edit, it didn’t worked 