I have a web API that accepts the following REST POST
{
"heartRate": "95"
}
I can then do a GET and it will return anything that was previously posted.
I know I need to use the makeWebRequest, can some please provide an example of what this should look like in Monkey C?
This does not work for me - Comm.makeWebRequest("somewebsite.azurewebsites.net/.../HeartRates",{"heartRate"=> "55"},{"Content-Type" => 3},method(:onReceive));
THANKS