Skip to main content

Overview

The dashboard tag lets referrers check their referral status, see pending rewards, and share with more friends. Place it in your customer account area.

Integration

1

Add the wrapper div

<div id="mmWrapper"></div>
2

Add the JavaScript tag

<!-- Begin Mention Me dashboard integration -->
<script type="text/javascript"
  src="https://tag-demo.mention-me.com/api/v2/dashboard/YOUR_PARTNER_CODE?email=<INSERT_EMAIL>&firstname=<INSERT_FIRSTNAME>&surname=<INSERT_SURNAME>&situation=dashboard&locale=<INSERT_LOCALE>">
</script>
<!-- End Mention Me dashboard integration -->

Email in the URL path

The dashboard tag also accepts an equivalent URL form where the customer’s email is included as a path segment rather than a query parameter. This is the canonical dashboard URL and is useful when generating a personalised dashboard link from a server-rendered email or account page.
<!-- Begin Mention Me dashboard integration (email in path) -->
<script type="text/javascript"
  src="https://tag-demo.mention-me.com/api/v2/dashboard/YOUR_PARTNER_CODE/<INSERT_URL_ENCODED_EMAIL>?firstname=<INSERT_FIRSTNAME>&surname=<INSERT_SURNAME>&situation=dashboard&locale=<INSERT_LOCALE>">
</script>
<!-- End Mention Me dashboard integration -->
Make sure the email is URL encoded (for example doreen%40example.com). All other parameters stay as query-string arguments.

Parameters

Mandatory

email
string
required
Customer’s email address. Example: doreen@example.com
firstname
string
required
Customer’s first name. Example: Doreen
surname
string
required
Customer’s last name. Example: Green
situation
string
required
Situation identifier. Example: dashboard
locale
string
required
Locale code. Example: en_GB

Optional

fullname
string
Full name (alternative to firstname + surname).
customer_id
string
Your internal customer identifier.
phone_number
string
Customer’s phone number.
segment
string
Customer segment.
custom_field
string
Custom data field.
key
string
Encryption key identifier.
implementation
string
Display mode: embed (default) or link.
Last modified on April 17, 2026