service health
2 TopicsAzure PostgreSQL Lesson Learned#9: How to Stay Informed About Planned Maintenance and Alerts
Customers often miss planned maintenance notifications for Azure Database for PostgreSQL Flexible Server because emails go only to subscription owners. This post explains why that happens and how to stay informed by using Azure Service Health alerts, checking the Planned Maintenance page, and configuring proactive notifications. Following these best practices ensures operational readiness and prevents unexpected downtime.46Views0likes0CommentsError calling api.admin.microsoftonline
Hi all, Today im getting this error calling the SHD admin: invoke-restmethod : Sendera:UnauthorizedUnauthorized $cookie = (invoke-restmethod -contenttype "application/json" -method ... + CategoryInfo : InvalidOperation: (System.Net.HttpWebRequest:HttpWebRequest) [Invoke-RestMethod], WebException + FullyQualifiedErrorId : WebCmdletWebResponseException,Microsoft.PowerShell.Commands.InvokeRestMethodCommand The script was working fine until Tuesday, here is some code from the script: - $cred = Get-StoredCredential -Target O365User - Connect-SPOService -Url https://mytenant-admin.sharepoint.com -Credential $cred - $jsonPayload = (@{userName=$cred.username;password=$cred.GetNetworkCredential().password;} | convertto-json).tostring() - $cookie = (invoke-restmethod -contenttype "application/json" -method Post -uri "https://api.admin.microsoftonline.com/shdtenantcommunications.svc/Register" -body $jsonPayload).RegistrationCookie I know the Office Discovery Service API will be deprecated, but do it include the Office 365 Management APIs also? The script is not working with a user with some privileged roles and with a global admin user, who was working until Tuesday. Any idea about what could be happening? Thanks in advance!Solved1.6KViews0likes2Comments