Send POST data via raw JSON with Postman
PHP Snippet 1:
print_r(json_decode(file_get_contents("php://input"), true));
PHP Snippet 2:
foo=bar&foo2=bar2
PHP Snippet 3:
$.ajax({
"url": "/rest/index.php",
'data': JSON.stringify({foo:'bar'}),
'type': 'POST',
'contentType': 'application/json'
});
PHP Snippet 4:
$params = (array) json_decode(file_get_contents('php://input'), TRUE);
print_r($params);