MailerLite Webhooks

MailerLite Webhooks

Warning: As of November 2020 we do not recommend relying on MailerLite webhooks for anything critical (such as creating a new WordPress user account for a customer).
Since September the webhooks system in MailerLite has been down on multiple occasions, for extended periods (up to a week). This means that your customers will not get access to your site until you manually create an account for them.
#Overview
Using webhooks with MailerLite you can create new users on your WordPress site when subscribers are added to a certain group, or automatically update existing users』 meta data and groups when changes happen in MailerLite.
Having trouble receiving webhooks? Check out our troubleshooting guide.
#Getting Started
The 「update」 method is very straightforward: check the checkbox next to Update Trigger, and any subscriber updates in MailerLite will automatically be synced back to WordPress.
To automatically add MailerLite subscribers as WordPress users, first create a group that designates site members. Then navigate to the Webhooks section on the General settings tab of the WP Fusion settings, and select this group from the dropdown. Now, whenever a subscriber is added to this group, they will automatically be imported as a new WordPress user.

The import group method will update a user if an existing user already exists. It will not create a duplicate user.
Note: By default, user accounts will be created with their email address as the username and a randomly generated password. However, if you have created a custom username field and password field in MailerLite, and enabled these fields in WP Fusion for sync with user_login and user_pass on your website, the new users will be given the usernames and passwords stored in their MailerLite contact record.
#User passwords
New user accounts will be created with an automatically generated password. If you』d like to use this password in your email marketing, you can send the password back to MailerLite after it has been generated.
In the Webhooks section of the General settings tab, check the box for Return Password, and select a field in MailerLite where the password should be stored.

After a new user is created, their automatically generated password will now be saved back to their contact record, and you can use a merge field to include it in an email. The username will be the contact』s email address.

#Was this helpful?

Let us know if you liked the post. That』s the only way we can improve.

Yes

No

Copper Webhooks

Copper Webhooks

#Overview
Using webhooks with Copper you can create new users on your WordPress site when people are tagged, or automatically update existing users』 meta data and tags when changes happen in Copper.
Having trouble receiving webhooks? Check out our troubleshooting guide.
#Getting Started
The 「update」 method is very straightforward: check the checkbox next to Update Trigger, and any subscriber updates in Copper will automatically be synced back to WordPress.
To automatically add Copper subscribers as WordPress users, first create a tag that designates site members. Then navigate to the Webhooks section on the General settings tab of the WP Fusion settings, and select this tag from the dropdown. Now, whenever a subscriber is added to this tag, they will automatically be imported as a new WordPress user.

The import tag method will update a user if an existing user already exists. It will not create a duplicate user.
Note: By default, user accounts will be created with their email address as the username and a randomly generated password. However, if you have created a custom username field and password field in Copper, and enabled these fields in WP Fusion for sync with user_login and user_pass on your website, the new users will be given the usernames and passwords stored in their Copper contact record.
#User passwords
New user accounts will be created with an automatically generated password. If you』d like to use this password in your email marketing, you can send the password back to Copper after it has been generated.
In the Webhooks section of the General settings tab, check the box for Return Password, and select a field in Copper where the password should be stored.

After a new user is created, their automatically generated password will now be saved back to their contact record, and you can use a merge field to include it in an email. The username will be the contact』s email address.

#Was this helpful?

Let us know if you liked the post. That』s the only way we can improve.

Yes

No

HighLevel Webhooks

HighLevel Webhooks

#Overview
You can use webhooks in HighLevel to send data back to your WordPress site using WP Fusion. Using webhooks you can create new users on your WordPress site based on automations in HighLevel, or update existing users』 meta data and tags.
There are two ways to manage webhooks in HighLevel, either via an Workflow or via a Trigger.
#Workflow Method
(Recommended) The workflow method is best if you need to send a webhook to create or update a WordPress user as part of a specific process. For example:

Tag 「Website Access」 is added
Send webhook to create WordPress user
Send welcome email
Wait 3 days
Apply tag 「Unlock Course Two」
Send webhook to update tags

Using a webhook in an automation lets you easily visualize the entire automation flow, and see where individual contacts are in the process.

You』ll also be able to visualize where a single contact is in the workflow, when the webhook was sent, and whether or not it was received successfully. Using webhooks in workflow gives you a lot more control and better reporting than using Trigger Webhooks (see below).
To use webhooks in a workflow, first create a workflow and add a webhook to it, like in the example above. You have three options for the webhook, update, update_tags and add (explained below). For each you will need to supply your access key, which can be obtained from the main panel in your WP Fusion settings.

When the contact reaches the webhook step in the workflow,  HighLevel will notify WP Fusion to load the contact』s data from HighLevel .
#Trigger Method
(Advanced) You can also set up webhooks which are global to your account. This is best if you』re manually editing contact records in HighLevel (outside of a workflow) and need these changes synced to WordPress.
Note: It』s not recommended to set up global webhooks with the add method, as then every contact in HighLevel will be given a WordPress user account.
To set up a webhook navigate to Automation » Triggers in your HighLevel account, and click Add Trigger to create a new trigger for the webhook.

Keep in mind that, because these webhooks are global to your HighLevel account, bulk editing contacts will trigger webhooks to be sent to your site for every edited contact, which may make your WordPress site temporarily unstable.
Note: If you』ve set up global webhooks with the update or update_tags method it』s not necessary to also include those same webhooks in automations.
#Webhook URL parameters
You can format your webhook URL in a few different ways to customize the behavior:
#To update a user』s tags
To update an existing WordPress user』s tags from the contact record, the URL for the webhook should look like the following:
http://mydomain.com/?wpf_action=update_tags&access_key=YOURACCESSKEY&contact_id={{contact.id}}
#To update a user』s tags and meta data
To update a user』s tags and pull any new meta data from HighLevel for that contact, the URL for the webhook should look like the following:
http://mydomain.com/?wpf_action=update&access_key=YOURACCESSKEY&contact_id={{contact.id}}
#Create a new user
To create a new user, use the following URL:
http://mydomain.com/?wpf_action=add&access_key=YOURACCESSKEY&contact_id={{contact.id}}
You can also specify additional parameters in user creation. For example, to send the user a welcome email containing a link to log in on your site, use the following:
http://mydomain.com/?wpf_action=add&access_key=YOURACCESSKEY&contact_id={{contact.id}}&send_notification=true
You can also specify a specific user role to be assigned to the new user. For example, to set the new user to the 「customer」 role, use the following:
http://mydomain.com/?wpf_action=add&access_key=YOURACCESSKEY&contact_id={{contact.id}}&role=customer
Note that you have to have registered a 「customer」 role on your site for this to work. By default users will be assigned the role of 「subscriber」.
The add method will update a user if an existing user already exists. It will not create a duplicate user.
Note: By default, user accounts will be created with their email address as the username and a randomly generated password. However, if you have created a custom username field and password field in your HighLevel application, and enabled these fields in WP Fusion for sync with user_login and user_pass on your website, the new users will be given the usernames and passwords stored in their HighLevel contact record.
#User passwords
New user accounts will be created with an automatically generated password. If you』d like to use this password in your email marketing, you can send the password back to HighLevel after it has been generated.
In the Webhooks section of the General settings tab, check the box for Return Password, and select a field in HighLevel where the password should be stored.

After a new user is created, their automatically generated password will now be saved back to their contact record, and you can use a merge field to include it in an email. The username will be the contact』s email address.

#Was this helpful?

Let us know if you liked the post. That』s the only way we can improve.

Yes

No

Maropost Webhooks

Maropost Webhooks

#Overview
You can use webhooks in Maropost to send data back to your WordPress site using WP Fusion. Using webhooks you can create new users on your WordPress site based on rules in Maropost, or update existing users』 meta data and tags.
Having trouble receiving webhooks? Check out our troubleshooting guide.
#Getting started
Go to the Manage Automations page by hovering over the Maropost Cloud icon in the upper left hand corner of your screen and  then select Automation from the menu. Click the blue New Journey button to create a new rule. Select a trigger for the rule, such as when a page is visited, a field is modified, or a user is added to a list.
In the screenshots below we』ve configured the rule to be triggered whenever a user is added to the 「Add User to WP」 list.
You can also specify any conditions you』d like to be met, or leave this section blank.

 

 
 
Under 「Actions」, choose 「HTTP Post」 from the menu. Enter the URL to your site following the examples in the next sections. You can get your site』s unique access key from the bottom of the main WP Fusion settings page.

 
#To update a user』s tags
To update an existing WordPress user』s tags from the contact record, the URL for the webhook should look like the following:
http://mydomain.com/?wpf_action=update_tags&access_key=YOURACCESSKEY
#To update a user』s tags and meta data
To update a user』s tags and pull any new meta data from Maropost for that contact, the URL for the webhook should look like the following:
http://mydomain.com/?wpf_action=update&access_key=YOURACCESSKEY
#Create a new user
To create a new user, use the following URL:
http://mydomain.com/?wpf_action=add&access_key=YOURACCESSKEY
You can also specify additional parameters in user creation. For example, to send the user a welcome email containing a link to log in on your site, use the following:
http://mydomain.com/?wpf_action=add&access_key=YOURACCESSKEY&send_notification=true
You can also specify a specific user role to be assigned to the new user. For example, to set the new user to the 「customer」 role, use the following:
http://mydomain.com/?wpf_action=add&access_key=YOURACCESSKEY&role=customer
Note that you have to have registered a 「customer」 role on your site for this to work. By default users will be assigned the role of 「subscriber」.
The add method will update a user if an existing user already exists. It will not create a duplicate user.
Note: By default, user accounts will be created with their email address as the username and a randomly generated password. However, if you have created a custom username field and password field in your Maropost application, and enabled these fields in WP Fusion for sync with user_login and user_pass on your website, the new users will be given the usernames and passwords stored in their Maropost contact record.

#Was this helpful?

Let us know if you liked the post. That』s the only way we can improve.

Yes

No

Customerly Webhooks

Customerly Webhooks

#Overview
You can use webhooks in Customerly to send data back to your WordPress site using WP Fusion. Using these webhooks, you can create new users on your WordPress site, or update existing users』 meta data and tags.
Having trouble receiving webhooks? Check out our troubleshooting guide.
#Getting started
Webhooks are managed in Customerly by going to Settings >> Webhooks. You can create a new webhook and then specify which events should trigger it.

In the example above we have the webhook set to update the WordPress user whenever the contact is tagged or their details are updated in Customerly. For the structure of the webhook URL see the examples below:
#To update a user』s tags
To update an existing WordPress user』s tags from the contact record, the URL for the webhook should look like the following:
http://mydomain.com/?wpf_action=update_tags&access_key=YOURACCESSKEY
#To update a user』s tags and meta data
To update a user』s tags and pull any new meta data from Customerly for that contact, the URL for the webhook should look like the following:
http://mydomain.com/?wpf_action=update&access_key=YOURACCESSKEY
#Create a new user
To create a new user, use the following URL:
http://mydomain.com/?wpf_action=add&access_key=YOURACCESSKEY
You can also specify additional parameters in user creation. For example, to send the user a welcome email containing a link to log in on your site, use the following:
http://mydomain.com/?wpf_action=add&access_key=YOURACCESSKEY&send_notification=true
You can also specify a specific user role to be assigned to the new user. For example, to set the new user to the 「customer」 role, use the following:
http://mydomain.com/?wpf_action=add&access_key=YOURACCESSKEY&role=customer
Note that you have to have registered a 「customer」 role on your site for this to work. By default users will be assigned the role of 「subscriber」.
The add method will update a user if an existing user already exists. It will not create a duplicate user.
Note: By default, user accounts will be created with their email address as the username and a randomly generated password. However, if you have created a custom username field and password field in Customerly, and enabled these fields in WP Fusion for sync with user_login and user_pass on your website, the new users will be given the usernames and passwords stored in their Customerly contact record.
#User passwords
New user accounts will be created with an automatically generated password. If you』d like to use this password in your email marketing, you can send the password back to Customerly after it has been generated.
In the Webhooks section of the General settings tab, check the box for Return Password, and select a field in Customerly where the password should be stored.

After a new user is created, their automatically generated password will now be saved back to their contact record, and you can use a merge field to include it in an email. The username will be the contact』s email address.

#Was this helpful?

Let us know if you liked the post. That』s the only way we can improve.

Yes

No

HubSpot Webhooks

HubSpot Webhooks

#Overview
You can use webhooks in HubSpot to send data back to your WordPress site using WP Fusion. Using these webhooks, you can create new users on your WordPress site, or update existing users』 meta data and lists.
Webhooks are available in the following HubSpot editions:

Marketing Hub Professional
Marketing Hub Enterprise
Sales Hub Enterprise

Having trouble receiving webhooks? Check out our troubleshooting guide.
#Getting started
Webhooks are managed in HubSpot by going to Automation >> Workflows from the top navigation menu.
For this tutorial, we』ll be showing you how to create a new WordPress user when a contact is added to a specific HubSpot list. See below for additional options when configuring the workflow action.
First create a new workflow, and then add an enrollment trigger. Here we』ve set workflow to run whenever someone is added to the static list 「Membership Trial.」

Click the + symbol to add a new action to the workflow, and from the Actions panel, select Update WordPress.

A panel will appear where you can configure the webhook to your WordPress site.

In this example, we』ve set the action to Add user, and disabled the welcome email that is sent to new users.
Now, every time a contact is added to this list, a new WordPress user will be created based on their contact data in HubSpot. If the user already exists on the site, they will be updated (no duplicate users will be created).
The available options in the workflow action are:
URL to your WordPress site: This is the URL to the site where you have WP Fusion installed.
Your access key: This is the access key from the bottom of the General tab in the WP Fusion settings. This helps to secure your webhook URL.
Action: There are three options:

Update user』s lists: If a user already exists on your site for this contact, their lists will be loaded from their HubSpot contact record.
Update user』s metadata lists: If a user already exists on your site for this contact, their lists and custom field values will be loaded from their HubSpot contact record.
Add user: This will import the contact as a new WordPress user. If a user already exists with that contact ID, their lists and custom field values will be loaded from HubSpot.

Send a welcome email to new users: If your webhook action is set to Add, you can choose whether or not to send a welcome email to new users. If you select Yes, the default WordPress welcome email will be sent to any newly imported users, containing a link to reset their password.
Note: By default, user accounts will be created with their email address as the username and a randomly generated password. However, if you have created a custom username field and password field in HubSpot, and enabled these fields in WP Fusion for sync with user_login and user_pass on your website, the new users will be given the usernames and passwords stored in their HubSpot contact record.
#User passwords
New user accounts will be created with an automatically generated password. If you』d like to use this password in your email marketing, you can send the password back to HubSpot after it has been generated.
In the Webhooks section of the General settings tab, check the box for Return Password, and select a field in HubSpot where the password should be stored.

After a new user is created, their automatically generated password will now be saved back to their contact record, and you can use a merge field to include it in an email. The username will be the contact』s email address.

#Was this helpful?

Let us know if you liked the post. That』s the only way we can improve.

Yes

No

Mautic Webhooks

Mautic Webhooks

#Overview
You can use Webhooks in Mautic to automatically send updates back to your WordPress site when a contact』s profile has been updated. You can also automatically generate new WordPress user accounts for Mautic contacts.
Having trouble receiving webhooks? Check out our troubleshooting guide.
There are two ways to set up webhooks with Mautic. Either globally, or part of a campaign:
#Global webhooks
Global webhooks apply to all contacts in Mautic. For example you can send data back to WordPress whenever any contact is updated.
Navigate to the webhook settings (accessible via the gear the the top right of your app) and create a new webhook.

 
Depending on the action you』re trying to perform, there are multiple ways to format the webhook URL. Those are explained further down this page.
#Webhooks in a campaign
You can also add a webhook node to a campaign, so that it only runs on contacts in that campaign. For example this could be used to create new WordPress users only when a contact is tagged when a specific tag.

In the URL field, enter the URL to your site, following the examples below.
For the method, select GET
Add a new row under data, the name should be contact_id, and the value is {contactfield=id}

When the contact gets to this point in the campaign, Mautic will ping your webhook URL and merge in the ID of the current contact, so that WP Fusion knows which contact to load the data for.
#Webhook methods
#To update a user』s tags
To update an existing WordPress user』s tags from the contact record, the URL for the webhook should look like the following:
http://mydomain.com/?wpf_action=update_tags&access_key=YOURACCESSKEY
#To update a user』s tags and meta data
To update a user』s tags and pull any new meta data from Mautic for that contact, the URL for the webhook should look like the following:
http://mydomain.com/?wpf_action=update&access_key=YOURACCESSKEY
#To create a new user
To create a new user, use the following URL:
http://mydomain.com/?wpf_action=add&access_key=YOURACCESSKEY
You can also specify additional parameters in user creation. For example, to send the user a welcome email containing a link to log in on your site, use the following:
http://mydomain.com/?wpf_action=add&access_key=YOURACCESSKEY&send_notification=true
You can also specify a specific user role to be assigned to the new user. For example, to set the new user to the 「customer」 role, use the following:
http://mydomain.com/?wpf_action=add&access_key=YOURACCESSKEY&role=customer
Note that you have to have registered a 「customer」 role on your site for this to work. By default users will be assigned the role of 「subscriber」.
The add method will update a user if an existing user already exists. It will not create a duplicate user.
Note: By default, user accounts will be created with their email address as the username and a randomly generated password. However, if you have created a custom username field and password field in Mautic, and enabled these fields in WP Fusion for sync with user_login and user_pass on your website, the new users will be given the usernames and passwords stored in their Mautic contact record.
#User passwords
New user accounts will be created with an automatically generated password. If you』d like to use this password in your email marketing, you can send the password back to Mautic after it has been generated.
In the Webhooks section of the General settings tab, check the box for Return Password, and select a field in Mautic where the password should be stored.

After a new user is created, their automatically generated password will now be saved back to their contact record, and you can use a merge field to include it in an email. The username will be the contact』s email address.

#Was this helpful?

Let us know if you liked the post. That』s the only way we can improve.

Yes

No

Drip Webhooks

Drip Webhooks

#Overview
You can use HTTP Posts and Webhooks in Drip to send data back to your WordPress site when a contact』s profile has been modified, or tags have been added or removed. You can also automatically generate new WordPress user accounts for Drip subscribers.
Having trouble receiving webhooks? Check out our troubleshooting guide.
#HTTP Posts
Using an HTTP Post in Drip allows you to send data back to WordPress as part of an Automation, or via a Rule based trigger. You can set this up by navigating to the Automation tab in Drip. To create a rule-based trigger, head to the Rules tab and create a new rule.

First set the criteria which will trigger the rule. In this case, we』re telling Drip to send the HTTP Post whenever the tag 「Create WordPress User」 is applied to a subscriber.

In the second panel, select 「Send an HTTP post」 from the dropdown. For the Endpoint URL, enter the URL to your site. In this example, we』re triggering the creation of a new WordPress user when the tag is applied. This is achieved by using wpf_action=add in the URL. You also need to supply your access key, which can be found from the WP Fusion settings page on your site.
Depending on the action you』re trying to perform, there are several additional parameters you can include in the URL:
#To update a user』s tags
To update an existing WordPress user』s tags from the contact record, the URL for the webhook should look like the following:
http://mydomain.com/?wpf_action=update_tags&access_key=YOURACCESSKEY
#To update a user』s tags and meta data
To update a user』s tags and pull any new meta data from Drip for that contact, the URL for the webhook should look like the following:
http://mydomain.com/?wpf_action=update&access_key=YOURACCESSKEY
#To create a new user
To create a new user, use the following URL:
http://mydomain.com/?wpf_action=add&access_key=YOURACCESSKEY
You can also specify additional parameters in user creation. For example, to send the user a welcome email containing a link to log in on your site, use the following:
http://mydomain.com/?wpf_action=add&access_key=YOURACCESSKEY&send_notification=true
You can also specify a specific user role to be assigned to the new user. For example, to set the new user to the 「customer」 role, use the following:
http://mydomain.com/?wpf_action=add&access_key=YOURACCESSKEY&role=customer
Note that you have to have registered a 「customer」 role on your site for this to work. By default users will be assigned the role of 「subscriber」.
The add method will update a user if an existing user already exists. It will not create a duplicate user.
Note: By default, user accounts will be created with their email address as the username and a randomly generated password. However, if you have created a custom username field and password field in Drip, and enabled these fields in WP Fusion for sync with user_login and user_pass on your website, the new users will be given the usernames and passwords stored in their Drip subscriber record.
#HTTP Posts in Automations

You can also trigger an HTTP Post as part of an automation. Add a new node to the automation and follow the same steps outlined above.
#User passwords
New user accounts will be created with an automatically generated password. If you』d like to use this password in your email marketing, you can send the password back to Drip after it has been generated.
In the Webhooks section of the General settings tab, check the box for Return Password, and select a field in Drip where the password should be stored.

After a new user is created, their automatically generated password will now be saved back to their contact record, and you can use a merge field to include it in an email. The username will be the contact』s email address.

#Was this helpful?

Let us know if you liked the post. That』s the only way we can improve.

Yes

No

Infusionsoft / Keap HTTP Posts

Infusionsoft / Keap HTTP Posts

#Overview
You can use HTTP Posts in Infusionsoft to send data back to your WordPress site using WP Fusion. Using HTTP Posts you can create new users on your WordPress site based on automations in Infusionsoft, or update existing users』 meta data and tags.
Having trouble receiving webhooks? Check out our troubleshooting guide.
#Getting Started
Open a campaign in the Campaign Manager (or create a new one) and create a trigger goal. For example, to trigger WP Fusion to sync a contact when a tag is applied, create an Applies A Tag goal. Then connect the goal to a campaign sequence. In the campaign sequence, add a Send HTTP Post action from the Process menu. In the Post URL field, put the URL to your website, like so:
new-http-post
There are three methods, update, update_tags and add. For each you will need to supply your access key, which can be obtained from the bottom of the General tab in the WP Fusion settings:

#To update a user』s tags
To update an existing WordPress user』s tags from the contact record, under Name / Value pairs, you should have:
contactId = ~Contact.Id~
wpf_action = update_tags
access_key = [your access key]
#To update a user』s tags and meta data
To update a user』s tags and pull any new meta data from Infusionsoft for that contact, under Name / Value pairs, you should have:
contactId = ~Contact.Id~
wpf_action = update
access_key = [your access key]
#Create a new user
Using this method, you can register a new user on your website when a contact is created in Infusionsoft. Under Name / Value pairs, you should have:
contactId = ~Contact.Id~
wpf_action = add
access_key = [your access key]
There are two additional options, which you can leave out if you don』t need them.
send_notification = true
role = subscriber
If you set send_notification to true, the user will be sent a welcome email with their username, password, and a link to log in on your site.
You can also set the role parameter to assign users a specific role on your site. By default users will be imported with the role set in the WordPress』 Settings >> General 「New User Default Role」 field, but sometimes you may want to create users with a different role depending on conditions in your campaign sequence.
The add method will update a user if an existing user already exists. It will not create a duplicate user.
Note: By default, user accounts will be created with their email address as the username and a randomly generated password. However, if you have created a custom username field and password field in Infusionsoft, and enabled these fields in WP Fusion for sync with user_login and user_pass on your website, the new users will be given the usernames and passwords stored in their Infusionsoft contact record.
#User passwords
New user accounts will be created with an automatically generated password. If you』d like to use this password in your email marketing, you can send the password back to Infusionsoft after it has been generated.
In the Webhooks section of the General settings tab, check the box for Return Password, and select a field in Infusionsoft where the password should be stored.

After a new user is created, their automatically generated password will now be saved back to their contact record, and you can use a merge field to include it in an email. The username will be the contact』s email address.

#Was this helpful?

Let us know if you liked the post. That』s the only way we can improve.

Yes

No

NationBuilder Webhooks

NationBuilder Webhooks

#Overview
Note: Currently webhooks are not available within NationBuilder. We expect a new webhooks feature to be introduced sometime in 2021. In the meantime you can enable the Sync Tags on Login setting to load the latest data for your users each time they log in.
You can use webhooks in NationBuilder to send data back to your WordPress site using WP Fusion. Using webhooks you can create new users on your WordPress site when people are added in NationBuilder, or update existing users』 meta data and tags when people are modified.
Having trouble receiving webhooks? Check out our troubleshooting guide.
#Getting started
Navigate to Settings » Developer » Webhooks in your NationBuilder admin.

To add a new webhook first select a trigger from the When to POST dropdown. In the example above we are sending the webhook whenever the person is changed.
Then enter the URL to your site, following the examples below:
#To update a user』s tags
To update an existing WordPress user』s tags from the contact record, the URL for the webhook should look like the following:
http://mydomain.com/?wpf_action=update_tags&access_key=YOURACCESSKEY
#To update a user』s tags and meta data
To update a user』s tags and pull any new meta data from NationBuilder for that contact, the URL for the webhook should look like the following:
http://mydomain.com/?wpf_action=update&access_key=YOURACCESSKEY
#Create a new user
To create a new user, use the following URL:
http://mydomain.com/?wpf_action=add&access_key=YOURACCESSKEY
You can also specify additional parameters in user creation. For example, to send the user a welcome email containing a link to log in on your site, use the following:
http://mydomain.com/?wpf_action=add&access_key=YOURACCESSKEY&send_notification=true
You can also specify a specific user role to be assigned to the new user. For example, to set the new user to the 「customer」 role, use the following:
http://mydomain.com/?wpf_action=add&access_key=YOURACCESSKEY&role=customer
Note that you have to have registered a 「customer」 role on your site for this to work. By default users will be assigned the role of 「subscriber」.
The add method will update a user if an existing user already exists. It will not create a duplicate user.
Note: By default, user accounts will be created with their email address as the username and a randomly generated password. However, if you have created a custom username field and password field in your NationBuilder application, and enabled these fields in WP Fusion for sync with user_login and user_pass on your website, the new users will be given the usernames and passwords stored in their NationBuilder person record.
#User passwords
New user accounts will be created with an automatically generated password. If you』d like to use this password in your email marketing, you can send the password back to NationBuilder after it has been generated.
In the Webhooks section of the General settings tab, check the box for Return Password, and select a field in NationBuilder where the password should be stored.

After a new user is created, their automatically generated password will now be saved back to their contact record, and you can use a merge field to include it in an email. The username will be the contact』s email address.

#Was this helpful?

Let us know if you liked the post. That』s the only way we can improve.

Yes

No