Skip to content
← Back to documentation
Technical Reference

Google My Business

Manage your business on Google

CategoryMarketing
AuthenticationOAuth 2.0
Version0.3.0
Published scopes2 published scopes
Last updatedSeptember 19, 2026

Overview

Connect Google My Business with Flows360

Manage your business on Google

Use the Google My Business connector to include its declared actions and events in Flows360 workflows without duplicating the integration logic inside each consuming system. This pinned connector version currently exposes 7 actions and 1 trigger.

Available actions

  • Create Post
  • List Posts
  • Get Post
  • Update Post
  • Delete Post
  • Create or Update Reply
  • Custom API Call

Available triggers

  • New Review

The capability list above is generated from the exact reviewed connector package so the public description stays aligned with the version Flows360 operates.

Technical guide

Technical reference

Package identity

  • Connector: Google My Business
  • Package: @activepieces/piece-google-my-business@0.3.0
  • Exact artifact digest: sha256:d9f9097bfa7b1e65492fa55408795175947d1cba038945ef1341673e669263e8
  • Runtime: Activepieces-compatible deterministic worker
  • Source: the exact reviewed Activepieces source

Authentication

OAUTH2. Connection values are tenant-specific and remain in the consuming Studio instance; CDK stores definitions and field metadata, not customer credential values.

Action contracts

  • Create Post (create-post), Creates a post for a specified location. Classification: read.
  • List Posts (list-posts), Lists the posts of a specified location. Classification: read.
  • Get Post (get-post), Retrieves a single post by its resource name. Classification: read.
  • Update Post (update-post), Updates a post for a specified location. Classification: read.
  • Delete Post (delete-post), Deletes a post from a specified location. Classification: read.
  • Create or Update Reply (create-reply), Create or update a reply to a review if it already exists Classification: read.
  • Custom API Call (custom_api_call), Make a custom API call to a specific endpoint Classification: read.

Trigger contracts

  • New Review, polling.

Verification

Deterministic execution evidence is recorded for the pinned artifact, including 1 exercised action entrypoint and 0 exercised trigger entrypoints.

Capability summary

AuthenticationOAuth 2.0
Supported objects8
Supported actions7
Triggers1

Authentication

Authentication method: OAuth 2.0

Required scopes

https://www.googleapis.com/auth/business.manageemail

Authentication profiles

connection · oauth2

OAuth scopes: https://www.googleapis.com/auth/business.manage, email

Supported objects

ObjectReadWriteNotes
Create Post Yes No Creates a post for a specified location.
List Posts Yes No Lists the posts of a specified location.
Get Post Yes No Retrieves a single post by its resource name.
Update Post Yes No Updates a post for a specified location.
Delete Post Yes No Deletes a post from a specified location.
Create or Update Reply Yes No Create or update a reply to a review if it already exists
Custom API Call Yes No Make a custom API call to a specific endpoint
New Review Yes No polling trigger declared by the pinned package.

Supported actions

Create Post · Read

Creates a post for a specified location.

create_post · Risk: low · Retry: safe

Inputs

  • account · string · Required
  • location · string · Required
  • topicType · string · Required, The kind of post to publish.
  • summary · string · Required, The body text of the post.
  • languageCode · string · Required, BCP 47 language code of the post text, for example `en` or `en-GB`.
  • scheduledTime · string · Optional, Leave empty to publish immediately. Set a future time to schedule the post, which keeps it off the listing until then.
  • mediaSourceUrl · string · Optional, Publicly accessible URL of a photo to attach. Google fetches the image, so it must not require authentication.
  • callToActionType · string · Optional, Optional button shown on the post.
  • callToActionUrl · string · Optional, Where the button links to. Required for every call to action except Call Now, which uses the location phone number.
  • eventTitle · string · Optional, Required when the post type is Event or Offer.
  • eventStartDate · string · Optional, Required for Event and Offer posts, as `YYYY-MM-DD`.
  • eventStartTime · string · Optional, Optional time of day as `HH:mm` in 24-hour form. Interpreted in the location time zone, so no offset is sent.
  • eventEndDate · string · Optional, Required for Event and Offer posts, as `YYYY-MM-DD`.
  • eventEndTime · string · Optional, Optional time of day as `HH:mm` in 24-hour form.
  • offerCouponCode · string · Optional
  • offerRedeemOnlineUrl · string · Optional
  • offerTermsConditions · string · Optional
  • alertType · string · Optional, Required when the post type is Alert.
List Posts · Read

Lists the posts of a specified location.

list_posts · Risk: low · Retry: safe

Inputs

  • account · string · Required
  • location · string · Required
  • maxResults · number · Optional, Stop after this many posts. Google returns at most 100 per request, so larger values are fetched over several requests.
Get Post · Read

Retrieves a single post by its resource name.

get_post · Risk: low · Retry: safe

Inputs

  • postName · string · Required, Full resource name of the post, as `accounts/{account}/locations/{location}/localPosts/{post}`. List Posts and Create Post both return it as `name`.
Update Post · Read

Updates a post for a specified location.

update_post · Risk: low · Retry: safe

Inputs

  • postName · string · Required, Full resource name of the post, as `accounts/{account}/locations/{location}/localPosts/{post}`.
  • summary · string · Optional, New body text. Leave empty to keep the current text.
  • languageCode · string · Optional, BCP 47 language code, for example `en`.
  • scheduledTime · string · Optional, Reschedule the post to a future time.
  • mediaSourceUrl · string · Optional, Publicly accessible photo URL. Setting this replaces every photo already on the post.
  • callToActionType · string · Optional
  • callToActionUrl · string · Optional, Required whenever a call to action other than Call Now is set.
  • eventTitle · string · Optional
  • eventStartDate · string · Optional, `YYYY-MM-DD`. Must be given together with an End Date.
  • eventStartTime · string · Optional, `HH:mm` in 24-hour form.
  • eventEndDate · string · Optional, `YYYY-MM-DD`. Must be given together with a Start Date.
  • eventEndTime · string · Optional, `HH:mm` in 24-hour form.
  • offerCouponCode · string · Optional
  • offerRedeemOnlineUrl · string · Optional
  • offerTermsConditions · string · Optional
Delete Post · Read

Deletes a post from a specified location.

delete_post · Risk: low · Retry: safe

Inputs

  • postName · string · Required, Full resource name of the post, as `accounts/{account}/locations/{location}/localPosts/{post}`.
Create or Update Reply · Read

Create or update a reply to a review if it already exists

create_reply · Risk: low · Retry: safe

Inputs

  • reviewName · string · Required, You can find the review name from new review trigger
  • comment · string · Required, Comment to be added to the review
Custom API Call · Read

Make a custom API call to a specific endpoint

custom_api_call · Risk: low · Retry: safe

Inputs

  • url · object · Required
  • method · string · Required
  • headers · object · Optional, Authorization headers are injected automatically from your connection.
  • queryParams · object · Optional, Appended to the URL as ?key=value.
  • body_type · string · Optional
  • body · object · Optional
  • response_is_binary · boolean · Optional, Enable for files like PDFs, images, etc.
  • failsafe · boolean · Optional, On a failed request, output the error instead of failing the step.
  • timeout · number · Optional, Seconds to wait for a response. Empty: up to the flow limit (10 min).
  • followRedirects · boolean · Optional, Follow 3xx redirects instead of returning them as the response.

Triggers

New Review · Poll

Triggers when there is new review

Inputs

  • account · string
  • location · string

Setup

Setup

  1. Add the Google My Business connector to the workflow in the target Flows360 Studio instance.
  2. Create or select the tenant-specific connection required by the connector. Connection secrets remain in the Studio connection boundary and are not copied into CDK documentation.
  3. Provide the connection fields declared by the pinned package:
  • No provider credential fields are declared by the pinned package.

OAuth scopes

  • https://www.googleapis.com/auth/business.manage
  • email
  1. Select the required action or trigger and complete its declared input fields. Required and optional inputs are defined by the exact package schema.
  2. Test the workflow in the appropriate environment before enabling production scheduling or event delivery.

Limitations

Limitations and operational notes

  • This content describes @activepieces/piece-google-my-business@0.3.0; provider behaviour can change independently and should be revalidated when the provider or connector version changes.
  • Only the 7 actions and 1 trigger declared by this pinned package are represented here.
  • Tenant credentials and connection values are not stored in the public connector record.
  • Provider-side permissions, account entitlements, quotas and rate limits remain subject to the connected provider account and are not inferred when the package does not declare them.
  • Deterministic execution evidence is recorded for the pinned artifact, including 1 exercised action entrypoint and 0 exercised trigger entrypoints.

Troubleshooting

Why canu2019t the connector authenticate?

Check the tenant connection in Studio and confirm every required Google My Business connection field is present. Re-authorise OAuth-based connections if the provider token or consent has expired. Do not place credential values in CDK content or logs.

Why is an action or trigger unavailable?

Confirm that the workflow is using @activepieces/piece-google-my-business@0.3.0 and compare the requested capability with the declared action and trigger list for this version. A capability that is not declared by the pinned package should not be presented as supported.

What should I check after a provider-side change?

Revalidate authentication, required fields, action/trigger behaviour and provider documentation before publishing refreshed connector content or moving a new package version into production.