Skip to content

Iterable#

Use the Iterable node to automate work in Iterable, and integrate Iterable with other applications. Ensemble has built-in support for a wide range of Iterable features, including creating users, recording the actions performed by the users, and adding and removing users from the list.

On this page, you'll find a list of operations the Iterable node supports and links to more resources.

Credentials

Refer to Iterable credentials for guidance on setting up authentication.

Basic Operations#

  • Event
    • Record the actions a user perform
  • User
    • Create/Update a user
    • Delete a user
    • Get a user
  • User List
    • Add user to list
    • Remove a user from a list

Example Usage#

This Pathway allows you to create, update, and get a user from Iterable.W This example usage Pathway would use the following nodes. - Start - Iterable

1. Start node#

The start node exists by default when you create a new workflow.

2. Iterable node (upsert: user)#

This node will create a new user in Iterable.

  1. First of all, you'll have to enter credentials for the Iterable node. You can find out how to do that here.
  2. Select 'Email' in the Identifier field.
  3. Enter the email address in the Value field.
  4. Click on Execute Node to run the node.

3. Iterable1 node (upsert: user)#

This node will update the information of the user that we created in the previous node.

  1. Select the credentials that you entered in the previous node.
  2. Select 'Email' in the Identifier field.
  3. Click on the gears icon next to the Value field and click on Add Expression.
  4. Select the following in the Variable Selector section: Nodes > Iterable > Parameters > value. You can also add the following expression: {{$node["Iterable"].parameter["value"]}}.
  5. Click on the Add Field button and select Data Fields.
  6. Click on the Add Data Field button.
  7. Enter Name in the Key field.
  8. Enter the name of the user in the Value field.
  9. Click on Execute Node to run the node.

4. Iterable2 node (get: user)#

This node will get the information of the user that we created using the Iterable node.

  1. Select the credentials that you entered in the previous node.
  2. Select 'Get' from the Operation dropdown list.
  3. Click on the gears icon next to the Value field and click on Add Expression.
  4. Select the following in the Variable Selector section: Nodes > Iterable > Parameters > value. You can also add the following expression: {{$node["Iterable"].parameter["value"]}}.
  5. Click on Execute Node to run the node.