Get services
Gets the services offered by a Google Business Profile location. Returns an array of service items (structured or free-form with optional price).
API key authentication - use your Zernio API key as a Bearer token
In: header
Path Parameters
Query Parameters
Override which location to query. If omitted, uses the account's selected location.
Response Body
application/json
application/json
import Zernio from '@zernio/node';const zernio = new Zernio({ apiKey: process.env.ZERNIO_API_KEY });const { data } = await zernio.gmbservices.getGoogleBusinessServices({ path: { accountId: 'account_abc123', },});console.log(data);{
"success": true,
"accountId": "string",
"locationId": "string",
"services": [
{
"structuredServiceItem": {
"serviceTypeId": "string",
"description": "string"
},
"freeFormServiceItem": {
"category": "string",
"label": {
"displayName": "string",
"description": "string"
}
},
"price": {
"currencyCode": "USD",
"units": "50",
"nanos": 0
}
}
]
}{
"error": "string",
"details": {}
}Delete a review reply DELETE
Removes the business owner reply from a Google Business review. The review itself remains.
Reply to a review POST
Posts (or updates) the business owner reply to a Google Business review. The reply is associated with the account's currently selected location (set via /v1/accounts/{accountId}/gmb-locations). Calling this endpoint a second time on the same review overwrites the previous reply (PUT semantics on Google's side).