public function jumpseller(){
$post = file_get_contents('php://input'); //post data is in another format (e.g. JSON, etc.)
$json_data = json_decode($post, true); //Takes a JSON encoded string and converts it into a PHP variable.
var_dump($post);
}