R – List all Alerts within a SharePoint site without using the SharePoint API

alertssharepointweb services

Is it possible to get a list of alerts for ALL users within a given site? After messing with the GetAlerts method in /_vti_bin/Lists.asmx, it seems it always executes in the context of the user who provided it with credentials, and will only return the Alerts for THAT user. I was hoping to get a list of EVERY alert within the site.

I know I can probably do this via the SharePoint API in a console app but was hoping to use web services or another method that didn't require direct access to the SharePoint box.

I guess the other method would be to write a custom web service… but I was hoping for something quick and easy.

Best Answer

I think you have answered your question. There is no easy way, only custom coding is left.

Related Topic