//1. Получаем массив данных из POST-запроса и записываем массив с данными в переменную $source
$source = file_get_contents('php://input');
//2. Декодируем массив данных в переменную $json
$json = json_decode($source, true);
if (isset($json)) {
///
} else {
exit ('sorry..There was a problem on the site ! Write to support !!!');
}
//3. Записываем тип и событие из массива переменной $json
$type = $json ['type'];
$event = $json ['event'];
$object = $json ['object'];
if (isset($event)) {
///
} else {
exit ('sorry..There was a problem on the site ! Write to support !!!');
}