For Agents
List and read Google Cloud and Workspace advisory notifications for an organisation, and mark them as acknowledged.
Get started with Advisory Notifications API in minutes using your preferred integration method.
# Add to your MCP client config (Claude Desktop, Cursor, Windsurf)
{
"jentic": {
"url": "https://api.jentic.com/mcp",
"auth": "oauth"
}
}
# Then ask your agent:
"list Google Cloud advisory notifications"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with Advisory Notifications API API.
List advisory notifications scoped to a Google Cloud organisation or location
Retrieve the full body of a single advisory notification including its subject and message text
Update notification settings to mark a notification as acknowledged for the organisation
Pull advisory feed into a SecOps queue so analysts triage Google-issued advisories alongside other alerts
GET STARTED
Use for: List all unread advisory notifications for my Google Cloud organisation, Get the full text of a specific advisory notification, Retrieve the latest Google security advisories for my tenant, Check whether any new compliance advisories were posted today
Not supported: Does not handle infrastructure metrics, log alerting, or self-defined alert policies — use for reading Google-issued advisory notifications only.
The Advisory Notifications API exposes the notifications that Google Cloud and Google Workspace surface to organisation administrators about security incidents, regulatory changes, and product issues affecting their tenant. It lets platforms list and read notifications scoped to an organisation or location and acknowledge that they have been seen. It is intended for SecOps, GRC, and platform teams that want these advisories pulled into their own ticketing or alerting systems instead of read by hand in the console.
Filter notifications by location to route region-specific advisories to the right operations team
Patterns agents use Advisory Notifications API API for, with concrete tasks.
★ Pull Google Cloud Advisories into a SecOps Queue
Security operations teams want every advisory Google issues about their tenant to land in the same triage queue as their other alerts. The Advisory Notifications API lets a job poll the organisation's notifications, fetch the body for any new ID, and forward the content to a ticketing or SIEM system. This replaces a manual workflow of an admin reading the Cloud Console notifications page.
Call /v1/{+parent}/notifications with parent=organizations/{org}/locations/global, diff IDs against a stored watermark, then GET /v1/{+name} for each new notification and forward to a ticketing system.
Compliance Notification Tracking
GRC teams need a record of when each regulatory or compliance advisory was issued and when it was acknowledged. The API returns notification metadata and bodies, and the settings endpoint stores acknowledgement state. Combined, this lets a compliance tool maintain an auditable trail of every advisory the tenant received without scraping the console.
List notifications for the organisation, store each subject, createTime, and notificationType in a compliance ledger, and update settings to mark advisories as acknowledged once filed.
Region-Specific Operations Routing
Multi-region operators want US-region advisories to go to the US on-call team and EU advisories to the EU team. The Advisory Notifications API scopes by location, so a router can call the listing endpoint per location and dispatch each advisory to the right rota. This keeps regional incidents from flooding a single global channel.
For each location in {us, europe, asia}, list notifications under organizations/{org}/locations/{loc} and dispatch new ones to the regional on-call channel.
Agent-Triaged Advisory Feed
An agent integrating Advisory Notifications through Jentic can search for the listing operation, page through new notifications, summarise them with a language model, and post structured triage to chat. Jentic isolates the OAuth credential and exposes only the request schema, so the agent can build the workflow without implementing Google's OAuth flow itself. Setup runs in under an hour rather than the usual day or two for Google Cloud OAuth integrations.
Use the Jentic search query 'list Google Cloud advisory notifications' to discover the operation, then list and fetch each notification body and post a summary to a Slack channel.
3 endpoints — the advisory notifications api exposes the notifications that google cloud and google workspace surface to organisation administrators about security incidents, regulatory changes, and product issues affecting their tenant.
METHOD
PATH
DESCRIPTION
/v1/{+parent}/notifications
List advisory notifications for an organisation or location
/v1/{+name}
Get a single advisory notification or settings resource
/v1/{+parent}/notifications
List advisory notifications for an organisation or location
/v1/{+name}
Get a single advisory notification or settings resource
Three things that make agents converge on Jentic-routed access.
Credential isolation
OAuth 2.0 access tokens are minted by Jentic from a refresh token kept in the MAXsystem vault. Agents call the API with a scoped, short-lived token and never see the underlying client secret or refresh token.
Intent-based discovery
Agents search Jentic with intents like 'list Google Cloud advisory notifications' and receive the matching operation with its input schema, so the agent can call the right path without browsing the Advisory Notifications reference.
Time to first call
Direct integration takes 1-2 days for OAuth, location scoping, and pagination. Through Jentic the same workflow runs in under an hour.
Alternatives and complements available in the Jentic catalogue.
Google Workspace Alert Center API
Alert Center surfaces Workspace-specific security alerts, while Advisory Notifications carries broader Google Cloud and Workspace advisories.
Use Alert Center for Workspace phishing, malware, and account alerts; use Advisory Notifications for organisation-wide advisories that span products.
Cloud Monitoring API
Cloud Monitoring covers operational metrics and alerting on tenant infrastructure, while Advisory Notifications carries Google-issued advisories.
Use Cloud Monitoring for self-defined alert policies on workloads; use Advisory Notifications for advisories Google itself sends to the org.
Cloud Asset API
Cloud Asset gives the inventory and policy view of resources that an advisory may relate to.
Pair with Advisory Notifications when an agent needs to enrich an advisory with the affected asset list.
Specific to using Advisory Notifications API API through Jentic.
What authentication does the Advisory Notifications API use?
It uses OAuth 2.0 with Google Cloud scopes. Jentic stores the OAuth refresh token in its encrypted vault and issues short-lived access tokens to the agent, so secrets never enter agent context.
Can I list every advisory notification posted to my organisation with this API?
Yes. Call /v1/{+parent}/notifications with parent set to organizations/{org}/locations/{location} to list notifications, then GET /v1/{+name} for the full body of any notification.
What are the rate limits for the Advisory Notifications API?
Quotas are governed by the standard per-project Google Cloud quota for the Advisory Notifications service. Inspect and request adjustments under IAM and Admin, Quotas in the Google Cloud Console.
How do I forward advisories into a ticketing system through Jentic?
Search Jentic for 'list Google Cloud advisory notifications', load the schema for /v1/{+parent}/notifications, and run it on a schedule. Use pip install jentic and the async search, load, execute pattern, then push each new notification body to the ticketing API.
Does this API let me change which notifications Google sends me?
Settings can be updated through the API, but the notification types Google issues are determined by Google. Settings let you mark notifications acknowledged and configure delivery preferences, not opt out of advisory categories entirely.