Вы можете отправить уведомление пользователю, используя rest api одного сигнала.Отправьте запрос скручивания по одному сигналу со всеми необходимыми подробностями -
$content = array(
"en" => '' // Your message content
);
$heading = array(
"en" => '' // Put heading according to you
);
$fields = array(
'app_id' => , // Enter our app id here
'filters' => array( array( "field" => "tag", "key" => "ad_id", "relation" => "=", "value" => 0) ), // You can use the ad_id data tag
"url" => '', // Enter your landing url
'contents' => $content,
'headings' => $heading
);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Content-Type: application/json; charset=utf-8',
'Authorization: Basic '.REST_API_KEY.'' // Your api key
));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($ch, CURLOPT_HEADER, FALSE);
curl_setopt($ch, CURLOPT_POST, TRUE);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
$response = curl_exec($ch);
curl_close($ch);
return $response;
Вы можете использовать тег данных или идентификатор плаера в поле для отправки уведомления отфильтрованному пользователю.