The Advisory Notifications API provides read‑only access to advisory notification resources, allowing you to retrieve a single notification by its full resource name or list notifications under a specific organization and location, with optional language localization, pagination, and view selection.
name(path, required) — Required. A name of the notification to retrieve. Format: organizations/{organization}/locations/{location}/notifications/{notification}.
languageCode(query) — ISO code for requested localization language. If unset, will be interpereted as "en". If the requested language is valid, but not supported for this notification, English will be returned with an "Not applicable" LocalizationState. If the ISO code is invalid (i.e. not a real language), this RPC will throw an error.
GET
/v1/{parent}/notifications
Lists notifications under a given parent.
parent(path, required) — Required. The parent, which owns this collection of notifications. Must be of the form "organizations/{organization}/locations/{location}".
languageCode(query) — ISO code for requested localization language. If unset, will be interpereted as "en". If the requested language is valid, but not supported for this notification, English will be returned with an "Not applicable" LocalizationState. If the ISO code is invalid (i.e. not a real language), this RPC will throw an error.
pageSize(query, limit) — The maximum number of notifications to return. The service may return fewer than this value. If unspecified or equal to 0, at most 50 notifications will be returned. The maximum value is 50; values above 50 will be coerced to 50.
pageToken(query) — A page token returned from a previous request. When paginating, all other parameters provided in the request must match the call that returned the page token.
view(query) — Specifies which parts of the notification resource should be returned in the response.
2 endpoints auto-detected
Authentication
This API requires authentication: OAuth.
curl -X GET \
"https://advisorynotifications.googleapis.com/v1/{name}"