FluentCRM: Create Campaigns
Status: Open · Asked by Lawyal on · 0 views
Hello,
could you please check if FluentCRM allows the creation of new campaigns over RestAPI - and if this can be achieved with Pabbly Connect.
https://developers.fluentcrm.com/rest-api/campaigns/
It could be possible with something like this:
Create campaign
• POST /wp-json/fluent-crm/v2/campaigns
• Important fields:
• title (internal name)
• email_subject, email_pre_header
• email_body (HTML content)
• design_template (e.g., which layout)
• status (e.g., draft or scheduled )
Thank you
Philipp
Hello @Lawyal ,
We’ve reviewed the official FluentCRM REST API documentation and found that there is no direct endpoint to create a new campaign from scratch (for example, POST /wp-json/fluent-crm/v2/campaigns is not supported).
However, FluentCRM does allow duplicating an existing campaign via:
POST /wp-json/fluent-crm/v2/campaigns/{campaign_id}/duplicate
This creates a new draft campaign, which can then be updated with the required details using the available update endpoints.
This approach can be implemented in Pabbly Connect using API by Pabbly → Custom Request.
Please let us know if you’d like assistance setting this up.