Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksJentic OneAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / Communications / Google / My Business Notifications API
My Business Notifications API logo

Google My Business Notifications API

Browse all Google APIs
✓ Official Vendor SpecCommunicationsPush Notificationsoauth22 EndpointsREST

For Agents

Configure which Google Business Profile events get pushed to a Cloud Pub/Sub topic. Use to drive event-based workflows for reviews, questions, and listing changes.

Use for: Subscribe new review events to my Cloud Pub/Sub topic, Stop sending new question notifications to the old topic, Get the current notification configuration for the account, Switch the Pub/Sub topic to a new project

Not supported: Does not deliver event payloads, send emails, or push mobile notifications — use only to configure which Business Profile events publish to a Cloud Pub/Sub topic.

The My Business Notifications API configures Pub/Sub-based notification settings for Google Business Profile accounts. It exposes a single notificationSetting resource per account that controls which Business Profile events (new reviews, questions, status changes) are pushed to a Cloud Pub/Sub topic. Pair it with the Q&A and v4 reviews endpoints to build event-driven Business Profile workflows instead of polling.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the My Business Notifications API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the My Business Notifications API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with My Business Notifications API.

Read the current notification setting for a Business Profile account

Subscribe an account's events to a Cloud Pub/Sub topic

Select which event types — reviews, questions, listing changes — to receive

Update the target Pub/Sub topic when migrating environments

Disable notifications by clearing the Pub/Sub topic on the setting

Verify which events the current setting is configured to deliver

Use Cases

Patterns agents use My Business Notifications API for, with concrete tasks.

★ Event-Driven Review Reply

Instead of polling every location for new reviews, teams subscribe to Business Profile review events on a Pub/Sub topic. When a new review arrives, a worker picks up the event and triggers reply automation against the v4 reviews endpoint, cutting average response time without burning quota on polling.

PATCH /v1/{name} with pubsubTopic set to projects/{project}/topics/{topic} and notificationTypes including NEW_REVIEW, then verify with a GET.

Real-Time Q&A Monitoring

Customer questions on Business Profile listings need quick answers. Subscribing the account's notification setting to NEW_QUESTION and NEW_ANSWER events on a Pub/Sub topic streams every question into a queue, enabling support to triage and reply through the My Business Q&A API within minutes.

PATCH /v1/{name} with notificationTypes set to NEW_QUESTION, NEW_ANSWER and the support-team Pub/Sub topic, then confirm via GET.

Environment Migration

When teams move Pub/Sub from one Google Cloud project to another, the Business Profile notification setting must be repointed without dropping events. Update the notificationSetting's pubsubTopic to the new fully qualified topic and Google starts publishing to the new project with no other changes required.

PATCH /v1/{name} with pubsubTopic set to the new project topic and updateMask=pubsubTopic, then verify message delivery in the new project.

AI Agent Listing Watcher

An AI agent connected through Jentic owns a Business Profile inbox: every new review, question, or listing change lands in a Pub/Sub topic, the agent enriches the event, and routes it to the right responder. Jentic isolates the OAuth credentials so the agent never sees Google client secrets while still being able to reconfigure the notification setting on demand.

Search Jentic for 'configure Google Business Pub/Sub notifications', load accounts.notificationSetting.update, and execute with the desired notificationTypes and pubsubTopic.

Key Endpoints

2 endpoints — the my business notifications api configures pub/sub-based notification settings for google business profile accounts.

METHOD

PATH

DESCRIPTION

GET

/v1/{name}

Get the notification setting for an account

PATCH

/v1/{name}

Update the Pub/Sub topic and event types

GET

/v1/{name}

Get the notification setting for an account

PATCH

/v1/{name}

Update the Pub/Sub topic and event types

Why Jentic?

Three things that make agents converge on Jentic-routed access.

Credential management

Credential isolation

OAuth 2.0 refresh tokens are stored encrypted in the Jentic vault. The agent receives scoped, short-lived access tokens — Google client secrets never enter the agent context.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent (e.g. 'subscribe to Google Business review events') and Jentic returns the matching Notifications operation with its input schema.

Time to first call

Time to first call

Direct integration: 1-2 days for OAuth, Pub/Sub IAM, and topic plumbing. Through Jentic: under an hour for the API call — Pub/Sub topic creation still required separately.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

My Business Q&A API

→

Reads and writes questions and answers triggered by NEW_QUESTION events

Pair with Notifications to handle Q&A events the moment they arrive.

Complementary

Google My Business API (v4)

→

Hosts the reviews endpoints used after a NEW_REVIEW event

Use v4 to fetch and reply to the review the notification points at.

Complementary

My Business Business Information API

→

Receives GOOGLE_UPDATE events when listing fields drift

Reconcile drift detected via notifications by patching the location with Business Information.

Alternative

My Business Account Management API

→

Provides invitation events that complement listing notifications

Use Account Management for admin and invitation flows; Notifications focuses on listing events.

FAQs

Specific to using My Business Notifications API through Jentic.

What authentication does the My Business Notifications API use?

OAuth 2.0 with the https://www.googleapis.com/auth/business.manage scope. The user must be an admin on the target Business Profile account and the service account behind the Pub/Sub topic must grant publish rights to mybusiness-api-pubsub@system.gserviceaccount.com. Jentic stores OAuth tokens in MAXsystem.

Which event types can I subscribe to?

The notificationSetting accepts notificationTypes such as NEW_REVIEW, UPDATED_REVIEW, NEW_QUESTION, NEW_ANSWER, and GOOGLE_UPDATE. Pick the subset relevant to your workflow to avoid noisy event traffic.

What are the rate limits for the My Business Notifications API?

Default quota is 0 QPM until Business Profile API access is approved. Once approved, the API itself is rarely rate-limited because the resource is read or patched infrequently; the bottleneck is downstream consumption of the Pub/Sub topic.

How do I switch the Pub/Sub topic through Jentic?

Search Jentic for 'change Google Business notification topic', load accounts.notificationSetting.update, and execute it with the new pubsubTopic and updateMask=pubsubTopic. Jentic handles OAuth refresh in the background.

Does this API deliver the actual review or question content?

Notifications carry the resource name and event type, not the full payload. After receiving an event, fetch the resource via the v4 Google My Business reviews endpoint or the My Business Q&A API to retrieve the body.

GET STARTED

Start building with My Business Notifications API

Explore with Jentic
View OpenAPI Document