Skip to content
TriggerTypefloReal-timeUpdated May 2026

How do I run a workflow when a Typeflo post goes live?

Short answer: Drop the "TypefloNew Post Published" trigger on your workflow canvas, add filters if you want them, and publish. It fires within seconds of the event in Typeflo, not on a polling schedule.

Anatomy

What this trigger looks like in a workflow.

Drop it on the canvas. Configure a couple of fields. Publish.

In the builder
Trigger
New Post Published
When the matching event happens
new postpost publishednew blog postpost created
What this trigger returns
for the curious

You don’t need to read this. Tiny Command auto-maps every field into the visual picker so downstream nodes can pull values by clicking. We show it here for power users who want to know what’s on the wire.

{
"id": "abc123",
"slug": "my-first-post",
"tags": [
{
"name": "seo"
}
],
"title": "My First Post",
"author": {
"name": "Jane Doe"
},
"status": "published",
"content": "<p>Hello world</p>",
"categories": [
{
"name": "Engineering"
}
],
"created_at": "2025-01-15T10:00:00Z",
"updated_at": "2025-01-15T10:00:00Z"
}
Output shape

Fields available to downstream nodes.

Every field below can be referenced by name in any action or filter that comes after this trigger.

FieldTypeExample
idstring"abc123"
slugstring"my-first-post"
tagsarray[{"name":"seo"}]
titlestring"My First Post"
authorobject{ … }
author.namestring"Jane Doe"
statusstring"published"
contentstring"<p>Hello world</p>"
categoriesarray[{"name":"Engineering"}]
created_atstring"2025-01-15T10:00:00Z"
updated_atstring"2025-01-15T10:00:00Z"
FAQ

Questions about New Post Published.

How does the New Post Published trigger work in Typeflo?
Fires when a new post is published on your Typeflo blog. The canonical hook for cross-posting to social, sending newsletter blasts, or pinging Slack on every publish.
Is the New Post Published trigger real-time?
Yes. New Post Published uses webhooks or push subscriptions, not polling. Your workflow fires within seconds of the event happening in Typeflo.
What data does New Post Published return?
The full event payload from Typeflo. The output shape table on this page lists every field, its type, and an example value so you can map fields into downstream nodes.
Can I filter New Post Published so only some events start a workflow?
Yes. Add a Filter node right after the trigger and match on any field, whether that's subject, sender, status, or anything else in the payload. Workflows only continue when the filter passes.
Do I need Typeflo admin permissions to use New Post Published?
For most Typeflo accounts a standard user can authorize the trigger. Some Typeflo plans require an admin to enable third-party webhooks. Check Typeflo's docs if the trigger fails to register.
More triggers

Other Typeflo triggers.

Build a workflow on this trigger.

One trigger. 15+ downstream actions. Zero glue.