AI-generated Key Takeaways
-
Lists place action links for a specified location using a GET request.
-
Allows filtering results by place action type, pagination with page size and token.
-
Request body should be empty; the response includes an array of PlaceActionLinks and a nextPageToken for pagination.
-
Requires the
https://www.googleapis.com/auth/business.manage
OAuth scope for authorization.
Lists the place action links for the specified location.
HTTP request
GET https://mybusinessplaceactions.googleapis.com/v1/{parent=locations/*}/placeActionLinks
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters | |
---|---|
parent |
Required. The name of the location whose place action links will be listed. |
Query parameters
Parameters | |
---|---|
filter |
Optional. A filter constraining the place action links to return. The response includes entries that match the filter. We support only the following filter: 1. placeActionType=XYZ where XYZ is a valid PlaceActionType. |
pageSize |
Optional. How many place action links to return per page. Default of 10. The minimum is 1. |
pageToken |
Optional. If specified, returns the next page of place action links. |
Request body
The request body must be empty.
Response body
Response message for PlaceActions.ListPlaceActionLinks.
If successful, the response body contains data with the following structure:
JSON representation |
---|
{
"placeActionLinks": [
{
object ( |
Fields | |
---|---|
placeActionLinks[] |
The returned list of place action links. |
nextPageToken |
If there are more place action links than the requested page size, then this field is populated with a token to fetch the next page of results. |
Authorization scopes
Requires the following OAuth scope:
https://www.googleapis.com/auth/business.manage
For more information, see the OAuth 2.0 Overview.