AI-generated Key Takeaways
-
This document explains how to delete a location using the Google My Business API.
-
The DELETE request requires the location's name as a path parameter and an empty request body.
-
A successful deletion results in an empty response body, while a
NOT_FOUND
error indicates the location doesn't exist. -
You'll need either
https://www.googleapis.com/auth/plus.business.manage
orhttps://www.googleapis.com/auth/business.manage
OAuth scope for authorization. -
Locations that can't be deleted via the API should be managed through the Business Profile website instead.
Deletes a location.
Returns NOT_FOUND
if the location does not exist.
HTTP request
DELETE https://mybusiness.googleapis.com/v4/{name=accounts/*/locations/*}
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters | |
---|---|
name |
The name of the location to delete. |
Request body
The request body must be empty.
Response body
If successful, the response body is empty.
Authorization Scopes
Requires one of the following OAuth scopes:
https://www.googleapis.com/auth/plus.business.manage
https://www.googleapis.com/auth/business.manage
For more information, see the OAuth 2.0 Overview.