Delete action link
Deletes a place action link (e.g. booking or ordering URL) from a GBP location.
API key authentication - use your Zernio API key as a Bearer token
In: header
Path Parameters
Query Parameters
Override which location to target. If omitted, uses the account's selected location. Use GET /gmb-locations to list valid IDs.
The resource name of the place action link (e.g. locations/123/placeActionLinks/456)
Response Body
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.gmbplaceactions.deleteGoogleBusinessPlaceAction({ path: { accountId: 'account_abc123', }, query: { name: 'Example', },});console.log(data);{
"success": true,
"deleted": true,
"name": "string"
}{
"error": "string",
"details": {}
}{
"error": "string",
"details": {}
}Create action link POST
Creates a place action link for a location. Available action types: APPOINTMENT, ONLINE_APPOINTMENT, DINING_RESERVATION, FOOD_ORDERING, FOOD_DELIVERY, FOOD_TAKEOUT, SHOP_ONLINE.
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. Reviews are grouped by location in the response.