Display member information

List of all the variables available in Liquid to display information about the loyalty member associated to a contact.

Example


Hello {{ loyalty.member.card_code }}, 

You are currently part of the loyalty program named {{ loyalty.member.program.name }}.

You've been part of it since {{ loyalty.member.program_join_date | date: '%Y-%m-%d %H:%M:%S' }}!

You current tier is {{ loyalty.member.tier.name }}, keep earning points and you'll be able to access another tier, with more privileges !

Click here to see what you can do with your points : {{ loyalty.custom_fields['custom_url'] }}

List of all available variables

Liquid variable

Description

{{ loyalty.member.card_code }}

The cardcode of the loyalty member

{{ loyalty.member.program_join_date }}

The date on which the member joined the program

{{ loyalty.member.tier_join_date }}

The date on which the member joined their current tier

{{ loyalty.member.program.id }}

The internal Splio ID of the member's program

{{ loyalty.member.program.name }}

The name of the member's program

{{ loyalty.member.tier.id }}

The internal Splio ID of the member's current tier

{{ loyalty.member.tier.name }}

The name of the member's current tier

{{ loyalty.custom_fields['your_field_name'] }}

The value of the member's custom field (You need to write the name of the custom field you want to access)