Freshdesk

This topic describes how to integrate Medallia Agent Connect and Freshdesk to send survey requests automatically when tickets are solved.

Important: Agent Connect can send surveys automatically only when the following criteria are met:
  • The Team Member that has resolved the ticket has an approved Agent Connect profile.
  • The customer’s record includes an email address.
  • A Team Member is assigned to the ticket when it is solved.

Creating a Do not send Stella Connect Request field

This procedure creates a checkbox field that enables agents to prevent a Agent Connect survey from being sent when they solve a ticket.

  1. In Freshdesk, open Admin > General Settings > Ticket Fields, and then click Add custom field.
  2. Select Checkbox.
  3. Name the field Do not send Stella Connect Request.
  4. Drag the new field to where you want it positions on your ticket form, and then click Save.

Creating rules that email surveys automatically

Create the rules that enable Agent Connect to email surveys to customers automatically when tickets in Freshdesk are closed.

  1. Create a rule for interactions occurring through the email channel.
    1. In Freshdesk, open Admin > Helpdesk Productivity > Observer, and then click New Rule.
    2. Name the rule Send Stella Connect request for email channel.
    3. For event conditions in the rule, specify the event Status is changed from Any Status to Closed, and any other conditions needed for your team's workflow.
    4. Specify the following properties that identify the tickets affected by the rule:
      • Source Is Email (and other email-related channels, as needed, such as Portal)
      • Agent Is not None
      • Any additional properties needed for your team's workflow

      Freshdesk email rule conditions

    5. In the Content field, enter the following advanced code:
      { "employee": { "email": " {{ticket.agent.email}}" }, "channel": "email", "customer": { "name": " {{ticket.requester.name}}", {% assign customer_email = ticket.from_email | strip %}"email":{% if customer_email and customer_email != "" %}" {{customer_email}}"{% else %}"no_email"{% endif %} }, "ext_interaction_id": " {{ticket.id}}", "do_not_send": " {{ticket.cf_do_not_send_stella_connect_request}}","external_url": " {{ticket.url}}", {% assign raw_tags = ticket.tags | split: ' ' %}"tags": [{% for tag in raw_tags %}" {{tag}}"{% unless forloop.last %},{% endunless %}{% endfor %}]}
    6. Save the rule and toggle it to On.
  2. If needed, create a rule for interactions occurring through the phone channel.
    1. Clone the email-channel rule.
    2. Name the new rule Send Stella Connect request for phone channel.
    3. For event conditions in the rule, keep the condition for Status is changed from Any Status to Closed, and any other conditions needed for your team's workflow.
    4. Specify the following properties that identify the tickets affected by the rule:
      • Source Is Phone
      • Agent Is not None
      • Any additional properties needed for your team's workflow

      Freshdesk phone rule conditions

    5. In the Content field, enter the following advanced code:
      { "employee": { "email": " {{ticket.agent.email}}" }, "channel": "phone", "customer": { "name": " {{ticket.requester.name}}", {% assign customer_email = ticket.from_email | strip %}"email":{% if customer_email and customer_email != "" %}" {{customer_email}}"{% else %}"no_email"{% endif %} }, "ext_interaction_id": " {{ticket.id}}", "do_not_send": " {{ticket.cf_do_not_send_stella_connect_request}}","external_url": " {{ticket.url}}", {% assign raw_tags = ticket.tags | split: ' ' %}"tags": [{% for tag in raw_tags %}" {{tag}}"{% unless forloop.last %},{% endunless %}{% endfor %}]}
    6. Save the rule and toggle it to On.
  3. If needed, create a rule for interactions occurring through the chat channel.
    1. Clone the email-channel rule.
    2. Name the new rule Send Stella Connect request for chat channel.
    3. For event conditions in the rule, keep the condition for Status is changed from Any Status to Closed, and any other conditions needed for your team's workflow.
    4. Specify the following properties that identify the tickets affected by the rule:
      • Source Is Chat
      • Agent Is not None
      • Any additional properties needed for your team's workflow

      Freshdesk chat rule conditions

    5. In the Content field, enter the following advanced code:
      { "employee": { "email": " {{ticket.agent.email}}" }, "channel": "chat", "customer": { "name": " {{ticket.requester.name}}", {% assign customer_email = ticket.from_email | strip %}"email":{% if customer_email and customer_email != "" %}" {{customer_email}}"{% else %}"no_email"{% endif %} }, "ext_interaction_id": " {{ticket.id}}", "do_not_send": " {{ticket.cf_do_not_send_stella_connect_request}}","external_url": " {{ticket.url}}", {% assign raw_tags = ticket.tags | split: ' ' %}"tags": [{% for tag in raw_tags %}" {{tag}}"{% unless forloop.last %},{% endunless %}{% endfor %}]}
    6. Save the rule and toggle it to On.
  4. Optionally, create a rule to automatically prevent surveys from being sent under specific conditions.
    Note: You do not need to create a rule specifically to limit the number of surveys that a customer receives within a specific period of time. On the Company Info screen, Agent Connect includes a suppression period that automatically stops surveys from flooding a customer within a specified number of days. For more information, see Company information.
    1. Click New Rule.
    2. Name the rule Do not send Stella Connect Request.
    3. For event conditions in the rule, specify the event Status is changed from Any Status to Closed, and any other conditions needed for your team's workflow.
    4. Specify any properties that identify the tickets affected by the rule.

      For example, the following image shows a rule that selects the Do not send Stella Connect Request checkbox when certain tags are used on a ticket:

      Do Not Send rule

    5. Save the rule and toggle it to On.
      Important: To make sure Freshdesk checks your desired business rules before sending a Agent Connect request, in the list of triggers order this exception trigger above all of the triggers that send requests.
  5. Optionally, make revisions to the JSON payloads listed in the rules above to account for advanced configurations used by your company.
    • If you use multiple brands in Agent Connect, modify the JSON payload to indicate the brand for each interaction. The following example uses the email channel and a custom field on the ticket called brand:
      { "employee": { "email": " {{ticket.agent.email}}" }, "channel": "email", "customer": { "name": " {{ticket.requester.name}}", {% assign customer_email = ticket.from_email | strip %}"email":{% if customer_email and customer_email != "" %}" {{customer_email}}"{% else %}"no_email"{% endif %} }, "brand": " {{ticket.brand}}","ext_interaction_id": " {{ticket.id}}", "do_not_send": " {{ticket.cf_do_not_send_stella_connect_request}}","external_url": " {{ticket.url}}", {% assign raw_tags = ticket.tags | split: ' ' %}"tags": [{% for tag in raw_tags %}" {{tag}}"{% unless forloop.last %},{% endunless %}{% endfor %}]}
    • If you use multiple languages in Agent Connect, modify the JSON payload to indicate the language code for each interaction. For information about the language codes used in Freshdesk, see the Multilingual Portal article on the Freshdesk support site. The following example uses the email channel and the ticket requester locale:
      { "employee": { "email": "{{ticket.agent.email}}" }, "channel": "email", "customer": { "name": "{{ticket.contact.name}}", {% assign customer_email = ticket.contact.email | strip %}"email":{% if customer_email and customer_email != "" %}"{{customer_email}}"{% else %}"no_email"{% endif %} }, "language": "{{ticket.contact.language}}","ext_interaction_id": "{{ticket.id}}", "do_not_send": "{{ticket.cf_do_not_send_stella_connect_request}}","external_url": "{{ticket.url}}", {% assign raw_tags = ticket.tags | split: ' ' %}"tags": [{% for tag in raw_tags %}"{{tag}}"{% unless forloop.last %},{% endunless %}{% endfor %}]}

Moving your integration to production

Work with your Agent Connect Client Success Manager to test your automated integration, and to resolve any issues. When everything is working as expected, move your integration to production.

  1. In Freshdesk, open Admin > Helpdesk Productivity > Observer.
  2. For each rule you created, change the Password to your Agent Connect Production API Key (available on the Integrations screen in Agent Connect).
  3. In Agent Connect, open the Integrations setup screen.
  4. For each channel you integrated, switch that field to On, and then click Update.

    Integrated Channels in Stella Connect