Here the simple code in PHP save(); $bodyPost = file_get_contents('php://input'); $messagePush = ""; if($bodyPost != null){ $obj = json_decode($bodyPost); $messagePush = $obj->{'messagePush'}; } $data = array("alert" => $messagePush, "badge" => "Increment", "sound" => "default " ); // Push to Channels ParsePush::send(array( "channels" => ["rasperryMovements"], "data" => $data )); ?> With this sample, it's possible to send a push notification with a simple REST service (in POST). Naturally we must implement the client part.