# Translate foreign-language Zendesk tickets to Slack

> Every 15 minutes we spot support tickets written in another language, translate them to English, and post a summary with a suggested priority to your Slack channel.

- Workflow type: agent
- Services: Zendesk, DeepL, Slack
- Categories: Customer Support
- Published: 2026-07-17

## What it does

- Checks your Zendesk for newly created support tickets every 15 minutes.
- Spots tickets written in a language other than English and automatically translates the latest customer message into English, detecting the language for you.
- Posts each one to a Slack channel with the original text, the English translation, the detected language, a link to the ticket, a one-line summary, and a suggested priority.
- Optionally drops the English translation back onto the ticket as a private internal note so your agents have it in context.

## What you'll need

- A Zendesk account where your support tickets live.
- A DeepL account for the translations (the free plan works too).
- A Slack workspace and the channel where you want the alerts to land.

## Prompt

Every 15 minutes, check Zendesk for newly created support tickets and flag the ones written in a language my team cannot read. Our base language is English, so I only want to surface tickets whose detected language is not English.

Start by using Zendesk's List Tickets operation to pull recently created tickets, sorted by creation date with the newest first and using cursor-based pagination. Keep track of the last ticket you processed so each run only handles tickets created since the previous run.

For each new ticket, take the latest customer message and translate it into English using DeepL's Translate Text operation. Set the target language to English (EN) and do not set a source language, so DeepL auto-detects it and returns the detected source language in the response. To avoid wasting DeepL character quota, only continue with a ticket when the detected source language is not English.

For every non-English ticket, post it into our Slack support channel using Slack's Send a Message operation. Each Slack message should include the original customer text, the English translation, the detected source language, a direct link to the Zendesk ticket, a one-line summary of what the customer needs, and a suggested priority such as low, normal, high, or urgent based on how urgent or upset the message reads. Use your judgement to write the summary and pick the priority.

Optionally, add the English translation back onto the ticket using Zendesk's Update Ticket operation. Post it as a private internal note rather than a public reply, so agents have the translation in context without the customer seeing it.

A few details to bake in: DeepL accepts up to 50 text strings per translate request, so batch messages together when it makes sense. DeepL free-plan keys end in ':fx' and use the free API host while paid keys use the standard host, so respect whichever key is provided. Because we only translate when the detected language differs from English, we never burn character quota on tickets the team can already read.

## How to customize

- Change how often it checks for new tickets (every 15 minutes by default).
- Pick which Slack channel gets the alerts and who should be notified.
- Set your team's base language so only tickets written in something else get surfaced.
- Turn the internal-note-back-on-the-ticket step on or off.

## FAQ

### Which languages does it handle?

DeepL automatically detects the language of each incoming ticket and translates it into English, covering the wide range of languages DeepL supports, so you do not have to set anything up per language.

### Will it translate tickets that are already in English?

No. It only surfaces and translates tickets whose detected language is not English, so your team is not flooded with alerts for messages it can already read.

### Does it work with the free DeepL plan?

Yes. It works with both the free and paid DeepL plans. Only translating non-English tickets also helps you stay within the free plan's monthly character allowance.

### Will the customer see the translation?

No. The English translation goes to your internal Slack channel and, if you turn that step on, is added as a private internal note on the ticket that only your agents can see.

### How quickly will we hear about a new foreign-language ticket?

The workflow checks Zendesk every 15 minutes, so a new ticket usually shows up in Slack within that window. You can make it check more or less often.

Use this prompt in General Input: https://www.generalinput.com/prompts/translate-foreign-language-zendesk-tickets-to-slack