List Google Business Profile locations
Returns Google Business Profile locations the connected account can access, plus the currently selected location. The list is bounded (see hasMore); for accounts that own many locations, use the search or filter query params to find a specific one instead of loading them all, or raise limit to enumerate an account with more than 100 locations.
Authorization
bearerAuth API key authentication: send your Zernio API key in the Authorization header, prefixed with Bearer.
In: header
Path Parameters
Query Parameters
Free-text search on the business name, applied server-side by Google. Use for accounts with many locations.
Raw Google Business Information API filter expression (advanced; takes precedence over search), e.g. storeCode="LH279411".
Max locations to return (default 100, max 500). Raise it to enumerate an account with more than 100 locations; for accounts with thousands, use search/filter instead.
1 <= value <= 500100Response Body
application/json
application/json
{ "locations": [ { "id": "12345678901234567890", "name": "My Business Location", "accountId": "accounts/123456789", "accountName": "My Business Account", "address": "123 Main St, San Francisco, CA", "category": "Restaurant", "websiteUrl": "https://mybusiness.com" } ], "selectedLocationId": "12345678901234567890", "cached": true}Assign Google Business Profile location to another profile
Connect a Google Business Profile location onto a DIFFERENT profile by reusing the OAuth grant from an already-connected Google Business Profile account, with no browser and no re-authorization. Built for agencies whose single Google account has manager access to many client locations and who run one profile per client: connect one location the normal way (browser OAuth), then bulk-assign the rest onto each client's profile via this endpoint. The path `accountId` is a SOURCE connected Google Business Profile account (the token holder); the body `profileId` is the TARGET profile. Returns 409 if the target profile already has a Google Business Profile connection (switch its location with PUT gmb-locations instead).
Update Google Business Profile location
Switch which Google Business Profile location is active for a connected account.