Questions tagged [google-my-business]

47 questions
4
votes
1 answer

Google MBA Service Account get all locations

My company owns several (verified) facilities and using my company's email i can see those locations (business.google.com). Now, my company would like to fetch the reviews in each location and present it in our company website. Before we're using…
3
votes
2 answers

Test/Sandbox Environment for Google My Business API

I just started with using Google My Business API and was able to perform the get operations just to verify that my Oauth setup is right. Now I want to add a location using the post method for GMB Add location API but before I push my code to…
3
votes
1 answer

Google My Business push notification is not sent for Question and Answers

When a review reply is updated, I'm able to receive push notification. But where as for new question, update question and answer to a question is not notified via push notification. I subscribed to all changes. URL:…
2
votes
2 answers

How to set multiple metrics for setDailyMetric method while sending request to Business Profile Performance API?

Following this link getDailyMetricsTimeSeries, I wanna have all the metrics in one request, since I have many locations for every client, it does not seem to be professional if I send one separate request for every single metric. before in Google My…
2
votes
1 answer

Retrieve GMB reviews with associated media

I am trying to retrieve the reviews of a GMB location with its associated media. the endpoint for retrieving reviews (GET https://mybusiness.googleapis.com/v4/{name=accounts/*/locations/*/reviews/*) returns a list of reviews with the following…
2
votes
1 answer

Are all existing endpoints listed in documentation really still working for v4.9? (i.e. those not replaced by v1 so far)

I have tried using old v4.9 endpoints that haven't been replaced by v1 so far such…
dusoft
  • 11,289
  • 5
  • 38
  • 44
2
votes
1 answer

How to separate original and translated review comment from a from google maps api

I have a lot of google access tokens in my DB (more than 1k). These tokens belong to google-my-business owners that have been authenticated to my app via google and gave permissions to use their tokens. I want to get all google reviews from all…
2
votes
3 answers

Google My business API locations list request not returning all locations

I am making a locations list request to the Google My Business API and passing a given account id. The list method is supposed to return a list of all locations associated to the given id. The documentation can be found here…
kingkyle
  • 111
  • 1
  • 8
2
votes
1 answer

How to patch the localPost except for summary using GMB API?

I would like to know how we can edit localPost except for summary. I created the request like following. URL: https://mybusiness.googleapis.com/v4/accounts/23432/locations/23423/localPosts/23432?updateMask=summary&updateMask=title Request body { …
Leo S
  • 375
  • 5
  • 12
1
vote
1 answer

Get Google Review specific review single url

I've been searching on the web to find a solution, but I find nothing, so I try here ! I get Google Reviews of a place from Google My Business API (https://developers.google.com/my-business/reference/rest/v4/accounts.locations.reviews/list?hl=fr).…
1
vote
0 answers

Google Business Profile Performance API PERMISSION_DENIED

I'm currently working on migrating from the Google My business V4.9 to the Business Profile Performance API . For number of credentials the changes are working as expected but for others, there is a problem with making the request as I'm getting…
1
vote
0 answers

How to get the metrics value in Google Business Profile Performance

I was using Google My business V4.9, I used to do for (LocationMetrics locationMetrics : reportInsights.getLocationMetrics()) { List metricValue =…
1
vote
0 answers

Google My Business API Returns 200 Status But Empty JSON Response

I'm using the Google My Business API in my project to fetch insights using the reportInsights method. The Python script iterates over the list of locations and fetches insights for each location. I know the code works because the majority of the…
1
vote
2 answers

Event is required error when creating Call-To-Action Post on Google My Business

I have the following code to create a new Call-To-Action post for a Google My Business Location as shown below: const { google } = require('googleapis'); let locationURL =…
1
vote
0 answers

how to get locationState or specifically isDisconnected value for a location in Google my business new API?

Where I can find the locationState info in the new google my business API? I was using this link, but now it is deprecated. The locationState I used to get from google my business api v4, had a structure like the photo below: The new API which now…
1
2 3 4