FluentCRM: Create Campaigns

Lawyal

Member
Consent to Access & Modify
I authorize Pabbly Support to log in to my account and make changes to the specified workflow for troubleshooting.
Hello,

could you please check if FluentCRM allows the creation of new campaigns over RestAPI - and if this can be achieved with Pabbly Connect.

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
 

Hrishabh.pabbly

Member
Staff member
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.
 
Top