This script enables you to send push notification from SQL Server
Declare @obj int
declare @sUrl varchar(4000)
set @sURL = 'https://pushnotify.co.uk/send/?userid=<your userid>&code=<your code>&txt=<your message>'
exec sp_OACreate 'MSXML2.ServerXMLHttp', @obj OUT
exec sp_OAMethod @obj, 'open', NULL, 'GET', @sUrl, false
exec sp_OAMethod @obj, 'setRequestHeader', NULL, 'Content-Type','application/x-www-form-urlencoded'
exec sp_OAMethod @obj, send, NULL, ''
exec sp_OADestroy @obj