Platformok

Google Business: posztolási szabályok és beállítások

Mit fogad el a Google Business csatorna a Postyban: média, korlátok, kötelező mezők, és a settings objektum mezői az API-hoz.

Basics

Platform
Google Business
Character limit
The platform does not specify a general limit.
Media
Image or video, optional.
settings.__type
gmb
Required fields
No required settings fields.

Post types

The same channel accepts more than one kind of post, and each kind has different requirements. The table shows what you need for each.

TypeMediaNotes
Generalimage or video, optionaltopicType: STANDARD.
EventoptionaltopicType: EVENT. You need the event title and time.
OfferoptionaltopicType: OFFER. You can include a coupon code and a redemption URL.

Rules

  • There are three post types: standard, event, and offer. Event and offer come with their own required fields.
  • The URL set for the button must be a valid address.

Settings fields

These fields go into the post's settings object, alongside the __type field. In the UI, you fill in the same ones in the channel's settings section.

FieldTypeRequiredWhat it does
topicType"STANDARD" | "EVENT" | "OFFER"noThe post type. The default is standard.
callToActionType"NONE" | "BOOK" | "ORDER" | "SHOP" | "LEARN_MORE" | "SIGN_UP" | "GET_OFFER" | "CALL"noThe type of button under the post.
callToActionUrlstring (URL)noThe button's destination URL.
eventTitlestringnoThe event title. Required for the EVENT type.
eventStartDate, eventEndDate, eventStartTime, eventEndTimestringnoThe event start and end, with date and time in separate fields.
offerCouponCode, offerRedeemUrl, offerTermsstringnoThe offer's coupon code, redemption URL, and terms. Used with the OFFER type.

Allowed values

The fields below only accept these values. Any other value returns a 400, and the response names the field.

topicType

ValueMeaning
STANDARDGeneral post.
EVENTEvent, with a start and end time.
OFFEROffer, with a coupon and terms.

callToActionType

ValueMeaning
NONENo button.
BOOKBook.
ORDEROrder.
SHOPShop.
LEARN_MORELearn more.
SIGN_UPSign up.
GET_OFFERGet offer.
CALLCall.

Examples

Each example is one item in the POST /public/v1/posts request's posts array. The envelope around it is always this:

{
  "type": "schedule",
  "date": "2026-09-15T09:00:00.000Z",
  "shortLink": false,
  "posts": [ /* az alábbi elem */ ]
}

General post with a button

{
  "integration": { "id": "<gmb-csatorna>" },
  "value": [{ "content": "<p>Új nyitvatartás januártól.</p>", "image": [] }],
  "settings": {
    "__type": "gmb",
    "topicType": "STANDARD",
    "callToActionType": "LEARN_MORE",
    "callToActionUrl": "https://pelda.hu/nyitvatartas"
  }
}

Event

{
  "integration": { "id": "<gmb-csatorna>" },
  "value": [{ "content": "<p>Nyílt nap a műhelyben.</p>", "image": [] }],
  "settings": {
    "__type": "gmb",
    "topicType": "EVENT",
    "eventTitle": "Nyílt nap",
    "eventStartDate": "2026-10-04",
    "eventStartTime": "10:00",
    "eventEndDate": "2026-10-04",
    "eventEndTime": "16:00"
  }
}

Offer

{
  "integration": { "id": "<gmb-csatorna>" },
  "value": [{ "content": "<p>Októberi ajánlat.</p>", "image": [] }],
  "settings": {
    "__type": "gmb",
    "topicType": "OFFER",
    "offerCouponCode": "OKT20",
    "offerRedeemUrl": "https://pelda.hu/ajanlat",
    "offerTerms": "Egy vásárlásra érvényes."
  }
}

The channel ID comes from the channel list, and the path values for images and videos from media upload. The exact schema for the connected account comes from the settings schema endpoint. From the command line, the same thing is the --settings flag. See the CLI examples.

Is something missing from this page? Email [email protected] or use the form on the Help page.