LinkTrace docs

UTM templates standardize campaign naming before links go live

UTM templates are stored per workspace and can be reused during link creation. They reduce naming drift and keep attribution reports comparable.

Supported fields

Templates currently support the standard UTM fields plus LinkTrace referrer override.

  • utm_source
  • utm_medium
  • utm_campaign
  • utm_term
  • utm_content
  • referrer

Create a template

Use the API when you want repeatable template provisioning across environments.

bash
curl 'https://api.linktrace.cc/api/v1/utm_templates' \
  -X POST \
  -H 'Authorization: Bearer lt_your_secret_key' \
  -H 'Content-Type: application/json' \
  -d '{
    "name":"Meta launch",
    "utmSource":"meta",
    "utmMedium":"paid-social",
    "utmCampaign":"spring-launch"
  }'
Related guides