FlowActionMessages
Returns all messages configured under a specific flow action, including email or SMS content used in automation flows.
Select
The add-in uses the Klaviyo API to process WHERE clause conditions built with the following columns and operators. The rest of the filter is executed client-side within the add-in.
- Id supports the following operator: IN
- Created supports the following operators: =, >=, >, <=, <
- Name supports the following operators: =, CONTAINS, LIKE
- Updated supports the following operators: =, >=, >, <=, <
- FlowActionId supports the following operator: =
For example, the following queries are processed server-side:
SELECT * FROM FlowActionMessages
WHERE Id IN ('flowactionmessage-id-1', 'flowactionmessage-id-2', 'flowactionmessage-id-3')
SELECT * FROM FlowActionMessages
WHERE Created >= '2025-04-06' AND Name LIKE 'CData%'
Columns
| Name | Type | References | Description |
| Id [KEY] | String | The unique identifier for the flow action message within Klaviyo. | |
| FlowActionId | String |
FlowActions.Id | The unique identifier of the flow action associated with this message. Use this value to retrieve or link messages that belong to a specific flow action. |
| Created | Datetime | The date and time when the flow action message was created, in ISO 8601 format (YYYY-MM-DDTHH:MM:SS.mmmmmm). | |
| Name | String | The display name of the message as configured in the flow. | |
| Updated | Datetime | The date and time when the flow action message was last updated, in ISO 8601 format (YYYY-MM-DDTHH:MM:SS.mmmmmm). | |
| Channel | String | Specifies the channel through which the message is sent, such as email, SMS, or push notification. | |
| ContentBCCEmail | String | An optional BCC email address that receives a blind copy when the message is sent. | |
| ContentCCEmail | String | An optional CC email address that receives a carbon copy when the message is sent. | |
| ContentFromEmail | String | The sender email address used to send the message. | |
| ContentFromLabel | String | The display name associated with the sender email address shown to recipients. | |
| ContentPreviewText | String | The preview text or snippet that appears in the recipient's inbox before opening the message. | |
| ContentReplyToEmail | String | An optional reply-to email address where recipient responses are sent. | |
| ContentSubject | String | The subject line of the message displayed to recipients. | |
| ContentBody | String | The main body content of the message, which can include text, images, and dynamic placeholders. | |
| ContentMediaUrl | String | The URL of any media asset, such as an image or video, included within the message content. | |
| ContentTitle | String | The title or headline of the message, displayed when applicable based on the message channel. | |
| ContentSound | Bool | Indicates whether a sound is included with the message, applicable to push notifications. | |
| ContentBadge | Bool | Indicates whether a badge icon is included with the message, applicable to push notifications. | |
| ContentDynamicImage | String | The URL of a dynamic image used in the message, such as personalized visuals in push notifications. | |
| ContentIosLink | String | Specifies the URL or deep link used when the message is opened on an iOS device. | |
| ContentAndroidLink | String | Specifies the URL or deep link used when the message is opened on an Android device. | |
| ContentOnOpen | String | Defines the action or link triggered when a recipient opens the message, such as redirecting to a URL or executing an app action. |