Integration Guides¶
Connect Pauhu to your workflow. Step-by-step guides for integrating Pauhu with popular enterprise tools.
Popular Integrations¶
-
Cloud Office
Word, Excel, PowerPoint, Outlook, Cloud Files, and Teams.
-
Other solutions
Docs, Sheets, Slides, Gmail, and Drive.
-
Slack
Real-time translation in Slack channels and DMs.
-
Team Chat
Translate messages, files, and meeting transcripts.
Enterprise Tools¶
-
Cloud Files
Auto-translate documents uploaded to Cloud Files.
-
Salesforce
Translate customer communications and support tickets.
-
Jira
Multilingual issue tracking and project management.
-
:material-confluence:{ .lg .middle } Confluence
Translate documentation and wiki pages.
Development Tools¶
-
GitHub
Translate issues, PRs, and documentation.
-
GitLab
CI/CD integration for automated translations.
-
:material-jenkins:{ .lg .middle } Jenkins
Build pipeline integration.
-
Docker
Containerized translation workflows.
Automation Platforms¶
-
Zapier
No-code integration with 5,000+ apps.
-
Make (Integromat)
Visual automation builder.
-
n8n
Self-hosted workflow automation.
-
:material-Enterprise-power-automate:{ .lg .middle } Power Automate
Enterprise's automation platform.
Quick Start¶
Most integrations follow this pattern:
1. Get API Key¶
2. Install SDK or Configure Webhook¶
SDK approach:
Webhook approach:
# Flask webhook receiver
from flask import Flask, request
@app.route('/webhook/pauhu', methods=['POST'])
def pauhu_webhook():
event = request.json
# Handle event
return {'status': 'ok'}
3. Connect to Your Tool¶
Each integration guide provides specific instructions for connecting Pauhu to that tool.
Integration Patterns¶
Pattern 1: Real-Time Translation¶
Use case: Translate messages as they're sent (Slack, Teams, chat apps)
Pattern 2: Document Upload¶
Use case: Translate documents on upload (Cloud Files, Drive)
Pattern 3: Scheduled Batch¶
Use case: Nightly translation of new content (CMS, documentation)
Pattern 4: On-Demand¶
Use case: User clicks "Translate" button (web apps, portals)
Support¶
- Integration questions: integrations@pauhu.com
- Community forum: community.pauhu.com/integrations
- Custom integrations: solutions@pauhu.com
Contributing¶
Built a custom integration? Share it with the community!
- Fork our integrations repo
- Add your integration guide
- Submit a pull request
We'll review and add it to our official docs.