n8n to post to a space
Is it currently possible to get a CPT to send to n8n and then for n8n to send this post into a space?
I've been thinking about that too. I started building a workflow that collects the most important industry information in specific categories such as WordPress or Automation, and my plan is as follows:
-
Prepare data to add a post in n8n. (In your case, it will be data from WordPress transferred, for example, via a webhook).
-
Send a webhook from n8n to Uncanny Automator (I see that this integration exists).
I will be testing this solution in the coming days.
Karol RolewiczΒ Why not post it to your WordPress blog, then treat FC like your other social media accounts and send it a summary linking back to the blog?
FlowMattic has MCP feature, so you can easy connect their integrations to n8n and make everything possible (Iam in love with that): https://flowmattic.com/integration/fluentcommunity/
Ive been trying with a webhook from the form to n8n then a http request to the fluent community webhook but I cant get it going and dont know what Im missing so I wanted to know if its actually possible or am I waisting time trying this at all without someother tool like Flowmatic or Uncanny Automator for another expense? Is it possible with just n8n?
Your workflow will have two main parts:
- The Trigger: A Fluent Form on WEBSITE that sends a webhook.
- The Action: An n8n workflow on
n8n.example.com that receives the webhook and posts to the community on WEBSITE
1. Fluent Form Setup (on WEBSITE)
This is the most critical part. It must be configured correctly.
-
Create Your Form: Create a new form with all the fields you need.
-
Add a Hidden Field: Add a hidden field to your form.
- Admin Field Label:
Post ID - Name Attribute:
post_id - Default Value:
{embed_post.ID}
- Admin Field Label:
-
Set up the Webhook Integration:
- Go to Settings & Integrations > Webhooks.
- Request URL: Post's webhook URL
- Request Method:
POST - Request Format:
JSON - Request Body:
All Fields
2. n8n Workflow Setup (on n8n.example.com)
This workflow is now much simpler because your Fluent Form is sending all the data.
-
Webhook Trigger Node
- Method:
POST - URL: Your webhook URL.
- Note: This node is now receiving all the data you need in its payload.
- Method:
-
HTTP Request Node: Post to Fluent Community
- URL: The webhook URL created for your Fluent Community space.
- Method:
POST - Body Content Type:
JSON - JSON Body: You need to map the data from the webhook into the JSON body.
Can anyone with more experiance on n8n and webhooks than me pls confirm or deny?
Can someone from WPManageNinjas chime in and let me know if Iβm warm, cold or if itβs possible or perhaps give some indication on how to do it?
If the CPT is on the same website as FluentCommunity, you don't even need n8n. You can use this code snippet to automatically share posts to FC as a feed post.
Stuart McKelvieΒ wow, thank you very much. Really appreciate your help, cheers Stuart!