Overview

Smartlinks in AbuseHQ allow you to easily access external tools by using dynamically generated links.

With the help of the Liquid Template Language and variables provided by AbuseHQ, you can template both the URL and the display name of a Smartlink.
Once created, Smartlinks are available to all users within your AbuseHQ instance.

Examples

https://tool.company.com/?subscriber={{ subscriber.id }}

Generate an email link

mailto://{{ subscriber.resolver_data.email }}?subject=complaint%20received%3A{{ event.type }}

More Complex Conditional Queries

{% if event.type %}
  {{ event.type }}
{% else %}
  No Event Type
{% endif %}