1. Home
  2. Docs
  3. Flexie CRM Methods
  4. getSmartListRecords method

getSmartListRecords method

Method

getSmartListRecords — find records of a smart list from a specific entity.

Description

Minimum number of  arguments for this method is two. The first argument is the entity name and the second is the entity id.

Structure of the method:

getSmartListRecords('Entity Name', 'Smart List Alias')

Parameters

Entity Name — The entity name like lead

Smart List Alias — The smart list alias you have set when creating a new smart list like shown in the image below

Examples

In the example below, we use thethe alias of the Leads Smart List to get its records.

//Find all records of a lead smart list 

{% set leads = getSmartListRecords('lead', 'do-not-contact-list') %}

{% for lead in leads%}

     Lead: {{lead.first_name}} with email: {{lead.email}} 

{%endfor%}

//Output: List of name - email of leads in the smart list with alias equal to do-not-contact-list

To stay updated with the latest features, news and how-to articles and videos, please join our group on Facebook, Flexie CRM Academy and subscribe to our YouTube channel Flexie CRM.

How can we help?