getNotifications.php 250 Bytes
<?php
OCP\JSON::checkLoggedIn();
OCP\JSON::checkAppEnabled("notify");
if(isset($_POST["count"])) {
	$count = (int)$_POST["count"];
} else {
	//$count = 10;
	//FIXME
	$count = null;
}
OCP\JSON::encodedPrint(OC_Notify::getNotifications(null, $count));