IntegrationsOverview

Integrations

Tewdy integrates seamlessly with popular tools and services.

Available Integrations

GitHub

Connect your GitHub repositories to automatically sync code and issues.

import { TewdyClient } from '@tewdy/sdk'
 
const client = new TewdyClient({ apiKey: 'your-key' })
 
await client.integrations.github.connect({
  repository: 'owner/repo',
  token: 'github-token'
})

Slack

Get notifications in Slack for important events.

await client.integrations.slack.connect({
  webhookUrl: 'https://hooks.slack.com/...',
  channel: '#notifications'
})

Webhooks

Set up webhooks to receive real-time updates.

await client.webhooks.create({
  url: 'https://your-app.com/webhook',
  events: ['user.created', 'project.updated']
})

Custom Integrations

You can build custom integrations using our API. Check the API Reference for details.