Mautic: List Contact¶
Plugin ID: mautic_eca_list_contacts
List a contact in the selected Mautic connection.
Retrieves a list of contacts from Mautic with optional filtering, sorting, and pagination. This action is useful for bulk operations and data synchronization.
Search Examples¶
- By Email:
email:john@example.com - By Tag:
tags:newsletter - By Name:
firstname:John - By Date:
dateAdded:2024-01-01 - By Custom Field:
company:Acme Corp - Multiple Criteria:
tags:newsletter AND firstname:John
Fields¶
Mautic connection— config key:mautic_connection-
Select the Mautic connection to use for this action.
Type:
select· Required: yes · Default: empty string Name of token— config key:token_name-
Provide the name of a token where the value should be stored. Please provide the token name only, without brackets.
Type:
textfield· Required: no · Default: empty string Search filter— config key:search-
String or search command to filter entities by. Supports tokens.
Type:
textfield· Required: no · Default: empty stringSearch command to filter contacts by supports tokens and various search operators.
Start— config key:start-
Starting row for the entities returned.
Type:
number· Required: no · Default:0 Limit— config key:limit-
Limit number of entities to return. 0 to return all.
Type:
number· Required: no · Default:30 Order by— config key:order_by-
Column to sort by. Can use any column listed in the response. However, all properties in the response that are written in camelCase need to be changed a bit. Before every capital add an underscore _ and then change the capital letters to non-capital letters. So dateIdentified becomes date_identified, modifiedByUser becomes modified_by_user etc.
Type:
textfield· Required: no · Default: empty string Sort direction— config key:order_by_dir-
Sort direction: asc or desc.
Type:
select· Required: yes · Default:ASCAllowed values:
ASC,DESC Published only— config key:published_only-
Only return currently published entities.
Type:
checkbox· Required: no · Default:false Minimal— config key:minimal-
Return only array of entities without additional lists in it.
Type:
checkbox· Required: no · Default:false