This article presents possible use cases and corresponding sample flows that you can support. This can be a helpful jumping off point as you plan your implementation.
Notify a blog's subscribers about new posts.
Extract the following data from the post payload:
title
excerpt
url
Create a templatized email with the extracted information and send to subscribers.
Market a blog by creating a post on social media with featured blog content. This flow relies on having permission to access the relevant social media accounts.
When the Post Created event is triggered, you'll receive the post in the response.
Extract the entityId
and use it to call Get Post. Check to see whether the post has been marked as featured.
If featured
is set to true, extract desired fields from the Get Post response for the social media post. For example, you may want a social media post to include the following information:
title
url
excerpt
minutesToRead
media
Create a social media post to include the desired data, then post it to social media.