Page Summary
-
LocalPostresource represents a local post for a business location, providing details like summary, call to action, event information, and media. -
CallToActiondefines the action taken when a user interacts with a post, such as visiting a URL or booking an appointment. -
LocalPostEventincludes information about an event, like the title and schedule, featured in a local post. -
LocalPostOfferprovides specific details for offer posts, such as coupon codes, online redemption links, and terms and conditions. -
Developers can manage local posts using methods like
create,delete,get,list,patch, andreportInsights.
- Resource: LocalPost
- CallToAction
- ActionType
- LocalPostEvent
- TimeInterval
- Date
- TimeOfDay
- RecurrenceInfo
- DailyOccurrencePattern
- WeeklyOccurrencePattern
- DayOfWeek
- MonthlyOccurrencePattern
- DayOfWeekOccurrence
- LocalPostState
- LocalPostTopicType
- AlertType
- LocalPostOffer
- Methods
Resource: LocalPost
Represents a local post for a location.
| JSON representation |
|---|
{ "name": string, "languageCode": string, "summary": string, "callToAction": { object ( |
| Fields | |
|---|---|
name |
Output only. Google identifier for this local post in the form: |
languageCode |
The language of the local post. |
summary |
Description/body of the local post. |
callToAction |
The URL that users are sent to when clicking through the promotion. Ignored for topic type |
createTime |
Output only. Time of the creation of the post. Uses RFC 3339, where generated output will always be Z-normalized and use 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: |
updateTime |
Output only. Time of the last modification of the post made by the user. Uses RFC 3339, where generated output will always be Z-normalized and use 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: |
scheduledTime |
If set, determines when a post will be published. This can be set by the user to schedule posts in advance. Uses RFC 3339, where generated output will always be Z-normalized and use 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: |
recurringInstanceTime |
Output only. Deprecated: Use Uses RFC 3339, where generated output will always be Z-normalized and use 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: |
event |
Event information. Required for topic types |
state |
Output only. The state of the post, indicating what part of its lifecycle it is in. |
media[] |
The media associated with the post. sourceUrl is the only supported data field for a LocalPost MediaItem. |
searchUrl |
Output only. The link to the local post in Google search. This link can be used to share the post via social media, email, text, etc. |
topicType |
Required. The topic type of the post: standard, event, offer, or alert. |
alertType |
The type of alert the post is created for. This field is only applicable for posts of topicType Alert, and behaves as a sub-type of Alerts. |
Union field topic_type_specific_fields. Specific fields for a topic type. topic_type_specific_fields can be only one of the following: |
|
offer |
Additional data for offer posts. This should only be set when the topicType is OFFER. |
CallToAction
An action that is performed when the user clicks through the post
| JSON representation |
|---|
{
"actionType": enum ( |
| Fields | |
|---|---|
actionType |
The type of action that will be performed. |
url |
The URL the user will be directed to upon clicking. This field should be left unset for Call CTA. |
ActionType
The type of action that will be performed.
| Enums | |
|---|---|
ACTION_TYPE_UNSPECIFIED |
Type unspecified. |
BOOK |
This post wants a user to book an appointment/table/etc. |
ORDER |
This post wants a user to order something. |
SHOP |
This post wants a user to browse a product catalog. |
LEARN_MORE |
This post wants a user to learn more (at their website). |
SIGN_UP |
This post wants a user to register/sign up/join something. |
GET_OFFER |
Deprecated. Use |
CALL |
This post wants a user to call the business. |
LocalPostEvent
All the information pertaining to an event featured in a local post.
| JSON representation |
|---|
{ "title": string, "schedule": { object ( |
| Fields | |
|---|---|
title |
name of the event. |
schedule |
Event start and end date/time. |
recurrenceInfo |
Optional. Stores info about the cadence of a recurring post. Will be set only if the post is a recurring post. |
recurringInstanceTime |
Output only. Time when the most recent recurring instance of the post was updated. Uses RFC 3339, where generated output will always be Z-normalized and use 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: |
TimeInterval
An interval of time, inclusive. It must contain all fields to be valid.
| JSON representation |
|---|
{ "startDate": { object ( |
| Fields | |
|---|---|
startDate |
The start date of this period. |
startTime |
The start time of this period. |
endDate |
The end date of this period. |
endTime |
The end time of this period. |
Date
Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following:
- A full date, with non-zero year, month, and day values.
- A month and day, with a zero year (for example, an anniversary).
- A year on its own, with a zero month and a zero day.
- A year and month, with a zero day (for example, a credit card expiration date).
Related types:
google.type.TimeOfDaygoogle.type.DateTimegoogle.protobuf.Timestamp
| JSON representation |
|---|
{ "year": integer, "month": integer, "day": integer } |
| Fields | |
|---|---|
year |
Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year. |
month |
Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day. |
day |
Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn't significant. |
TimeOfDay
Represents a time of day. The date and time zone are either not significant or are specified elsewhere. An API may choose to allow leap seconds. Related types are google.type.Date and google.protobuf.Timestamp.
| JSON representation |
|---|
{ "hours": integer, "minutes": integer, "seconds": integer, "nanos": integer } |
| Fields | |
|---|---|
hours |
Hours of a day in 24 hour format. Must be greater than or equal to 0 and typically must be less than or equal to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time. |
minutes |
Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59. |
seconds |
Seconds of a minute. Must be greater than or equal to 0 and typically must be less than or equal to 59. An API may allow the value 60 if it allows leap-seconds. |
nanos |
Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999. |
RecurrenceInfo
Represents the recurrence information for a local post.
| JSON representation |
|---|
{ "seriesEndTime": string, // Union field |
| Fields | |
|---|---|
seriesEndTime |
Optional. The end time of the recurrence series. Uses RFC 3339, where generated output will always be Z-normalized and use 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: |
Union field occurrence_pattern. The occurrence pattern for the recurring post. occurrence_pattern can be only one of the following: |
|
dailyPattern |
Daily occurrence pattern. |
weeklyPattern |
Weekly occurrence pattern. |
monthlyPattern |
Monthly occurrence pattern. |
DailyOccurrencePattern
This type has no fields.
Represents a daily occurrence pattern.
WeeklyOccurrencePattern
Represents a weekly occurrence pattern.
| JSON representation |
|---|
{
"daysOfWeek": [
enum ( |
| Fields | |
|---|---|
daysOfWeek[] |
Optional. The list of the week days for the offer/event. If empty, the post will repeat on the same day of the week as the event's schedule.start_time. |
DayOfWeek
Represents a day of the week.
| Enums | |
|---|---|
DAY_OF_WEEK_UNSPECIFIED |
The day of the week is unspecified. |
MONDAY |
Monday |
TUESDAY |
Tuesday |
WEDNESDAY |
Wednesday |
THURSDAY |
Thursday |
FRIDAY |
Friday |
SATURDAY |
Saturday |
SUNDAY |
Sunday |
MonthlyOccurrencePattern
Represents a monthly occurrence pattern.
| JSON representation |
|---|
{ // Union field |
| Fields | |
|---|---|
Union field monthly_option. The recurrence option for the monthly occurrence pattern. monthly_option can be only one of the following: |
|
dayOfMonth |
The day of the month. |
dayOfWeekOccurrence |
The day of the week occurrence in the month. The day of the week is implied by the day of the week of the event's start time. For example, if an event starts on a Friday and dayOfWeekOccurrence is SECOND, the event will repeat on the second Friday of every month. |
DayOfWeekOccurrence
The day of the week occurrence in the month.
| Enums | |
|---|---|
DAY_OF_WEEK_OCCURRENCE_UNSPECIFIED |
Unspecified day of the week occurrence. |
FIRST |
First day of the week in the month. |
SECOND |
Second day of the week in the month. |
THIRD |
Third day of the week in the month. |
FOURTH |
Fourth day of the week in the month. |
LAST |
Last day of the week in the month. |
LocalPostState
Indicates what state the post is in.
| Enums | |
|---|---|
LOCAL_POST_STATE_UNSPECIFIED |
State not specified. |
REJECTED |
This post was rejected due to content policy violation. |
LIVE |
This post is published and is currently appearing in search results. |
PROCESSING |
This post is being processed and is not appearing in search results. |
SCHEDULED |
This post is scheduled for the future and is not appearing in search results. |
RECURRING |
This post is a recurring post and is currently appearing in search results. |
LocalPostTopicType
The topic type of the local post, which is used to select different templates to create and render a post.
| Enums | |
|---|---|
LOCAL_POST_TOPIC_TYPE_UNSPECIFIED |
No post type is specified. |
STANDARD |
Post contains basic information, like summary and images. |
EVENT |
Post contains basic information and an event. |
OFFER |
Post contains basic information, an event and offer related content (e.g. coupon code) |
ALERT |
High-priority, and timely announcements related to an ongoing event. These types of posts are not always available for authoring. |
AlertType
The type of event for which the alert post was created.
| Enums | |
|---|---|
ALERT_TYPE_UNSPECIFIED |
No alert is specified. |
COVID_19 |
Alerts related to the 2019 Coronavirus Disease pandemic. Covid posts only support a summary field and a call to action field. When these alerts are no longer relevant, new Alert post creation for type COVID-19 will be disabled. However, merchant will still be able to manage their existing COVID-19 posts. |
LocalPostOffer
Specific fields for offer posts.
| JSON representation |
|---|
{ "couponCode": string, "redeemOnlineUrl": string, "termsConditions": string } |
| Fields | |
|---|---|
couponCode |
Optional. Offer code that is usable in store or online. |
redeemOnlineUrl |
Optional. Online link to redeem offer. |
termsConditions |
Optional. Offer terms and conditions. |
Methods |
|
|---|---|
|
Creates a new local post associated with the specified location, and returns it. |
|
Deletes a local post. |
|
Gets the specified local post. |
|
Returns a list of local posts associated with a location. |
|
Updates the specified local post and returns the updated local post. |