First steps
Courses
User Data
- Responsive Email Editor Review
- Designing your email
- Creating Synchronized Modules
- Setting Up Responsive Email Design
- Setting Up Smart Containers
- Creating a Gmail Promotions Annotation
- Adding The Rollover Effect
- Adding Anchor Links
- Module Library
- Adding a Table to an Email
- Adding Custom Fonts
- Creating CTA Button
- Working with Images
- Creating Timer
- Using AI in the Email Editor
- Messenger Protocol Support in Email Clients and Platforms
Omnichannel
- Setting Up Widgets for Your Site
- Widgets Gamification
- Widget Calling
- Setting Up Locations for the Widget Calling Rules
- Storing data from widgets to contact fields
- Using Annoyance Safeguard
- Actions After Form Submission
- Replacing Double Opt-In System Workflow
- Creating Pop-ups via Google Tag Manager or WordPress
- Sending Yespo Widget Events to Google Analytics
- Using A/B Tests for Widgets
- Collecting Contact Information Using Request Forms
Automation
- Building and Editing Workflows
- Configuring Workflow Start/Stop Conditions
- Start Block
- Popular Blocks
- Message Blocks
- Using One from Many Message Block
- Contact Blocks
- Conditions Blocks
- Other Blocks
- Message to Segment Blocks
- Time Blocks
- Advanced Workflow Block Parameters
- Setting Up Allowed Send Time
- Using Workflow Launch History
- Webhook Workflows
- Workflow Troubleshooting
- Double Opt-In
- Welcome Сampaign
- Welcome Series Segmented by Category
- Launching a Workflow After a Contact Import
- Regular Workflow for a Segment
- Birthday Campaign
- Linking Workflow to the Button
- Using Variables from Order in Workflow
- Collecting Order Feedback
- Customer Reactivation
- Sending Extra Campaigns
- Sending Reminders at the Time Specified by the User
- Sending Campaign to Those Who Did Not Open the Previous One
- Using A/B Tests In Workflows
Personalization
Analytics
- Email Campaign Report
- Web Push Campaign Report
- Viber Campaign Report
- Mobile Push Campaign Report
- App Inbox Campaign Report
- Telegram Campaign Report
- In-App Report
- Widget Report
- Triggered Campaign Report
- AMP Campaign Report
- SMS Campaign Report
- Multilingual Campaign Report
- Setting up UTM Tags
- Revenue from Campaigns
- Tracking Campaign Performance in Google Analytics 4
- Message Analytics
Multilanguage Campaigns
Events and Behaviour Tracking
Recommendations
API
Security and Compliance
Receiving App Inbox Messages to a Webhook
Instead of sending API requests to our system to get App-inbox messages for your contacts, you can receive the list of all the available App-Inbox messages to your webhook.
We can configure for you the maximum number of messages for your contacts. The default number is 1,000.
Note
We can send the messages to your webhook only for the contacts having externalCustomerId assigned.
Webhook Requirements
You have to send us the webhook URL, where you want to receive the messages, and the basic authorization (optional).
HTTP method | POST |
---|---|
Authentication (optional) | Basic |
Format |
|
App Inbox Message
The messages you receive have the following format:
{
"externalCustomerId" : string, // Receiver identifier
"id" : UUID, // Interaction ID. Used to set status
"createdDate" : long, // Timestamp in milliseconds
"title" : text,
"content" : text,
"image" : string, // URL
"link" : string, // URL
"category" : string, // Message category
"customData" : string
}
Response HTTP Status Codes
Code | Description |
---|---|
200 OK | Successful request processing. |
401 Forbidden | Authentication failed. The system retries such requests. |
429 Too Many Requests | The message number limit is exceeded. The system retries such requests. |
400 Bad Request | An issue with payload processing. The system does NOT retry such requests. |
500 Internal Server Error 502 Bad Gateway 503 Service Unavailable |
Temporary processing issues. The system retries such requests. |