Update action link
Updates a place action link (change URL or action type). Only the fields included in the request body will be updated.
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.
Resource name of the place action link (e.g. locations/123/placeActionLinks/456)
New action URL
New action type
"APPOINTMENT" | "ONLINE_APPOINTMENT" | "DINING_RESERVATION" | "FOOD_ORDERING" | "FOOD_DELIVERY" | "FOOD_TAKEOUT" | "SHOP_ONLINE"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.updateGoogleBusinessPlaceAction({ path: { accountId: 'account_abc123', }, body: { name: 'Example', },});console.log(data);{
"success": true,
"name": "string",
"uri": "string",
"placeActionType": "string"
}{
"error": "string",
"details": {}
}{
"error": "string",
"details": {}
}Get services GET
Gets the services offered by a Google Business Profile location. Returns an array of service items (structured or free-form with optional price).
Replace services PUT
Replaces the entire service list for a location. Google's API requires full replacement; individual item updates are not supported. Each service can be structured (using a predefined serviceTypeId) or free-form (custom label).