[object Object]

Within 18 months, every Freshdesk tenant has 300+ canned responses. Half are stale, ten percent contradict each other, and agents copy from chat. Treat canned responses as content, with naming, ownership, and review.

Naming convention that works

{category}_{intent}_{tone}_{lang} reads in any list. Examples:

  • billing_refund_apology_en
  • tech_password_reset_neutral_en
  • shipping_delay_apology_es

Force this convention via a workflow that rejects new canned responses without the prefix pattern.

Folder taxonomy

Freshdesk supports folders for canned responses. Mirror your team structure: General, Billing, Technical, Onboarding. Per-team folders prevent cross-pollination of off-brand language.

Ownership

Every canned response has an owner. The owner is responsible for accuracy and review. Store owner via a custom field in the response title comment, or maintain a registry in a Solution article.

Review cadence

Quarterly: every owner re-reads their canned responses. Mark for archive any that have been used fewer than 5 times. Flag any that contradict current policy.

Review checklist:
  ☐ Wording still accurate
  ☐ Links still valid (404 check)
  ☐ Tone matches current brand voice
  ☐ Tagged with intent in description field
  ☐ Used in last 90 days (analytics → CR usage)

Variables, not hardcoded names

Use {{ticket.requester.name}} and {{contact.first_name}} variables instead of hardcoded “Hi there.” A canned response that addresses the customer by name lifts CSAT.

Tag for AI suggestion

If you use Freddy Suggest, tagging canned responses with intent labels lets the AI surface them faster. Untagged responses get suggested less.

PUT /api/v2/canned_responses/{id}
{
  "tags": ["billing", "refund", "apology"]
}

Archive, don’t delete

Deletion breaks references in old tickets and reports. Archive instead via a status field. Deprecated responses still searchable for audit purposes.

What to do this week

Roll out the naming convention, assign an owner per existing response, schedule the quarterly review, and tag your top 30 most-used responses for Freddy suggestion.

[object Object]
Share