Payload reference
Este conteúdo ainda não está disponível no seu idioma.
Reference for the Payload message used by Notify when sending through any non-email channel (push, SMS, Telegram, Kakao, LINE, WhatsApp).
Payload
Anchor link topreset(string): preset code to apply to this message.content(LocalizedContent): message content. Mutually exclusive withsilent.silent(bool): send a silent (data-only) push. Mutually exclusive withcontent.custom_data(object): free-form JSON forwarded to the client SDK as theuparameter.open_action(OpenAction): action triggered when the user opens the notification.open_actions(map<Platform,OpenAction>): per-platform override ofopen_action. Key is a numericPlatformenum value.voip_push(bool): iOS VoIP notification.
LocalizedContent
Anchor link toMaps locale code → per-platform content. Keys are ISO 639-1 two-letter codes (for example, "en", "es") plus the special key "default" for a catch-all translation. The exceptions to ISO 639-1 are "zh-Hant" and "zh-Hans" for Traditional and Simplified Chinese.
{ "localized_content": { "default": { "ios": { "title": "Hello", "body": "Tap to view" }, "android": { "title": "Hello", "body": "Tap to view" } }, "es": { "ios": { "title": "Hola", "body": "Toca para ver" }, "android": { "title": "Hola", "body": "Toca para ver" } } }}Locale selection for a device
Anchor link toContent delivered to a device is picked in this order:
- Exact match on the device’s language.
- Key
"default". - Key
"en". - Any other locale present in the map.
Provide at least one of "default" or "en" so every device has a deterministic fallback. If you do not expect per-locale variants, send only "default".
Each locale entry is a Content object with optional per-platform blocks. Only fill in the platforms you target.
| Platform block | Channel |
|---|---|
ios | iOS push |
android | Android (FCM) push |
huawei_android | Huawei Android push |
baidu_android | Baidu Android push |
mac_os | macOS push |
amazon | Amazon (ADM) push |
safari | Safari web push |
chrome | Chrome web push |
firefox | Firefox web push |
ie | Internet Explorer web push |
windows | Windows push (tile / toast / badge) |
telegram | Telegram message |
kakao | Kakao message |
line | LINE message |
whatsapp | WhatsApp message |
Common push fields
Anchor link toThese fields are shared by ios, android, huawei_android, baidu_android, mac_os, amazon, safari, chrome, and firefox blocks (support varies. Unused fields are ignored by the relevant platform).
title(string): notification title.body(string): notification body.time_to_live(duration, e.g."3600s"): how long the push server should retain the notification for an offline device.sound(string): sound file name.sound_enabled(bool): enable or suppress sound.badges(string): badge count (iOS) or analogue.root_params(object): raw platform-specific payload overrides.inbox(Inbox): Message Inbox entry.
iOS (ios)
Anchor link tosubtitle(string): iOS notification subtitle.is_critical(bool): critical alert (requires entitlement).attachment(string): URL of a media attachment.thread_id(string): thread identifier for grouped notifications.trim_content(bool): trim content to fit.category_id(string):UNNotificationCategoryidentifier for interactive actions.interruption_level(string):passive,active,time-sensitive, orcritical.
Android (android, huawei_android, baidu_android)
Anchor link toicon(string): notification small icon.banner(string): big-picture URL.delivery_priority(NORMAL|HIGH): FCM delivery priority.vibration(bool): vibration on receive.led_color(string, hex): notification LED color.icon_background_color(string, hex): icon background color.show_on_lockscreen(bool): show on the lock screen.custom_icon(string): URL of a custom icon.priority(NotificationPriority): in-tray priority.group_id(string): notification group key.
macOS (mac_os)
Anchor link toUses the common push fields plus subtitle and action (URL opened when the user clicks the notification).
Amazon (amazon)
Anchor link toUses the common push fields plus custom_icon and priority (NotificationPriority).
Safari (safari)
Anchor link toaction(string): URL opened when the user clicks the notification.url_arguments(array of string): Safari URL arguments substituted into the Web Push URL template.
Chrome (chrome)
Anchor link toicon,image(string): small icon and large image URLs.duration(duration): auto-close timer.button_text1/button_url1,button_text2/button_url2: up to two action buttons.
Firefox (firefox)
Anchor link toUses only title, body, icon, root_params, and inbox.
Windows (windows)
Anchor link toWindows uses a different shape:
{ "windows": { "type": "TOAST", "template": { "title": "Hello", "body": "Tap to view" }, "tag": "promo", "cache": true, "time_to_live": "3600s" }}typeisTILE,TOAST, orBADGE.template(structured) orraw({ "content": "<raw xml>" }) — exactly one.
Telegram (telegram)
Anchor link tobody(string): message text.content_variables(string): JSON-stringified variables for the bot-side template.
Kakao (kakao)
Anchor link tocontent(string): message content.template(string): approved template code.content_variables(string): JSON-stringified template variable bindings.
LINE (line)
Anchor link tocontent(string): plain text body.template(string): code of a LINE template configured in the Pushwoosh Control Panel (used to send image, carousel, or flex messages). For rich content, pre-configure the template in the Control Panel and reference it here.
At least one of content or template must be set.
WhatsApp (whatsapp)
Anchor link toWhatsApp messages go through Meta and are subject to Meta’s messaging rules. The key split is between free-form text (only delivered inside the 24-hour customer service window opened by an inbound message from the user) and approved templates (required for outbound initiation and for any message outside the 24-hour window).
content(string): free-form message text. Delivered by Meta only inside the 24-hour window.content_id(string): name of a pre-approved Meta template (e.g."hello_world"). Required for outbound initiation or any message outside the 24-hour window.language(string): template locale that must exactly match the locale approved in Meta (e.g."en_US","en_GB"). Only meaningful together withcontent_id. This is independent of the outerLocalizedContentkey. The outer key selects content for a device, andlanguageselects the Meta-template locale for that content.content_variables(string): JSON object mapping body placeholders, e.g."{\"1\":\"John\"}".button_url_variables(string): JSON object mapping button-URL placeholders keyed by button index, e.g."{\"0\":\"https://...\"}".header_variables(string): JSON object mapping header placeholders keyed by type, e.g."{\"image\":\"https://...\"}".
At least one of content or content_id must be set.
SMS uses the generic message flow. The sms platform block is reserved. Provide the text through the common body field on any filled platform block. Sender ID and other provider options come from the app’s SMS configuration. See SMS configuration.
OpenAction
Anchor link toDefines the action performed when the user opens the message.
Exactly one of:
rich_media(RichMedia): open a Rich Media page.deep_link: open a deep link:{ "code": "flow-code", "params": { "key": "value" } }.link(Link): open a URL.
RichMedia
Anchor link to{ "code": "XXXXX-XXXXX" } // by Rich Media code{ "url": "https://..." } // by remote URLLink
Anchor link to{ "url": "https://example.com/promo", "shortener": "BITLY"}shortener is NONE (default) or BITLY.
Inbox
Anchor link toConfigures how the message appears in Message Inbox.
{ "image_url": "https://cdn.example.com/inbox.png", "expiration_date": "2026-05-15T00:00:00Z"}image_url(string): image shown in the inbox entry.expiration_date(timestamp): when the entry is removed from the inbox.
NotificationPriority enum
Anchor link toControls notification priority on the target device, from PRIORITY_MIN (lowest) to PRIORITY_MAX (highest).
PRIORITY_UNSPECIFIEDPRIORITY_MINPRIORITY_LOWPRIORITY_DEFAULTPRIORITY_HIGHPRIORITY_MAX
Example: Send a push to a segment
Anchor link tocurl -X POST https://api.pushwoosh.com/messaging/v2/notify \ -H "Authorization: Token YOUR_API_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "segment": { "application": "XXXXX-XXXXX", "platforms": ["IOS", "ANDROID"], "code": "active_users", "payload": { "content": { "localized_content": { "en": { "ios": { "title": "Hello", "body": "Hello, world!" }, "android": { "title": "Hello", "body": "Hello, world!" } }, "es": { "ios": { "title": "¡Hola!", "body": "¡Hola, mundo!" }, "android": { "title": "¡Hola!", "body": "¡Hola, mundo!" } } } }, "open_action": { "link": { "url": "https://example.com/promo" } } }, "schedule": { "at": "2026-05-01T12:00:00Z" }, "message_type": "MESSAGE_TYPE_MARKETING" } }'Example: Transactional push by user IDs
Anchor link tocurl -X POST https://api.pushwoosh.com/messaging/v2/notify \ -H "Authorization: Token YOUR_API_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "transactional": { "application": "XXXXX-XXXXX", "platforms": ["IOS", "ANDROID"], "users": { "list": ["customer-42"] }, "payload": { "content": { "localized_content": { "default": { "ios": { "title": "Your order", "body": "Order #42 has shipped." }, "android": { "title": "Your order", "body": "Order #42 has shipped." } } } }, "custom_data": { "order_id": "42" } }, "schedule": { "at": "2026-05-01T12:00:00Z" }, "message_type": "MESSAGE_TYPE_TRANSACTIONAL" } }'