Delete a review reply
Removes the business owner reply from a Google Business review. The review itself remains.
API key authentication - use your Zernio API key as a Bearer token
In: header
Path Parameters
The Zernio account ID (from /v1/accounts)
The review ID portion (e.g. "AIe9_BGx1234567890"), not the full resource name
Response Body
application/json
application/json
application/json
application/json
application/json
import Zernio from '@zernio/node';const zernio = new Zernio({ apiKey: process.env.ZERNIO_API_KEY });const { data } = await zernio.accounts.deleteGoogleBusinessReviewReply({ path: { accountId: 'account_abc123', reviewId: 'review_abc123', },});console.log(data);{
"success": true,
"message": "Reply deleted successfully",
"platform": "googlebusiness"
}{
"error": "string",
"details": {}
}{
"error": "Access token invalid. Please reconnect your Google Business Profile account.",
"code": "token_invalid"
}{
"error": "Not found"
}{
"error": "string",
"details": {}
}Batch get reviews POST
Fetches reviews across multiple locations in a single request. More efficient than calling GET /gmb-reviews per location for multi-location businesses. Returns a flat list of individual reviews, each tagged with its review resource name. Note: this endpoint does not return aggregate metrics (averageRating / totalReviewCount). For those, use the single-location GET /gmb-reviews endpoint.
Get attribute metadata GET
Returns metadata about which Google Business Profile attributes are available for a location or business category. Use this endpoint to discover valid attribute names, value types, and allowed enum values before reading or writing via gmb-attributes. Two mutually exclusive query modes: **Location mode**: pass `locationId` (or rely on the account's stored `selectedLocationId`). Google returns attributes valid for that specific location. **Category mode**: pass `categoryName` (must start with `categories/`) and `regionCode`. Google returns attributes valid for that category across the given region. `languageCode` is optional in category mode. Both modes support `pageSize` and `pageToken` for pagination.