This article shares some possible use cases your app could support, as well as a sample flow that could support each use case. This can be a helpful jumping off point as you plan your app's implementation.
You could help blog owners inform their subscribers of new posts. This flow relies on an external email delivery service and a database with emails of a blog's subscribers.
Extract the following data from the post payload:
title
excerpt
url
Create a templatized email with the extracted information and send to subscribers.
You can help a blog owner to market their blog by creating a post on their social media with featured blog content. This flow relies on a user having provided permission for the app to access their social media accounts.
When the Post Created Webhook is triggered, you'll receive the entity in the payload.
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 payload for the social media post. For example, a blog owner might want their 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.