Webfuse supports adding data from related entities.

Let’s say you would like to display the first and last name of the primary contacts for all Accounts per Account name. 

An easy way of achieving this is working with a loop in a loop.


First, add a loop and base it on your primary entity, Accounts in this specific case. We would like to loop over all records. Select the desired fields to add to your content. In our example, we add Account name.

Add the loop, and put your cursor inside the loop. 



Add another loop. In this loop, we will select the related entity to start off from, we can do this by clicking on the primary entity, which will load all related entities. 
We click on Accounts, and we select the related entity of “primarycontactid”. We select the fields of first name and last name and add our loop.



 


When we preview, we will see that we have a list of all accounts and per account, we see the corresponding primary contact.