google business profile
Delete action link
Deletes a place action link (e.g. booking or ordering URL) from a GBP location.
AuthorizationBearer <token>
API key authentication - use your Zernio API key as a Bearer token
In: header
Path Parameters
accountIdstring
Query Parameters
locationId?string
Override which location to target. If omitted, uses the account's selected location. Use GET /gmb-locations to list valid IDs.
namestring
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",
"type": "invalid_request_error",
"code": "string",
"param": "string",
"platform": "string",
"platformError": {},
"details": {}
}{
"error": "string",
"type": "invalid_request_error",
"code": "string",
"param": "string",
"platform": "string",
"platformError": {},
"details": {}
}Update action link PATCH
Updates a place action link (change URL or action type). Only the fields included in the request body will be updated.
Get Discord account settings GET
Returns the current Discord account settings including webhook identity (display name and avatar), connected channel, and guild information.