Communications API
The Communications API provides a unified interface for messaging and chat platforms.
Supported Platforms
- Slack
- Discord
- Microsoft Teams
- Telegram
Quick Example
import { Unizo } from '@unizo/sdk';
const unizo = new Unizo({ apiKey: 'your_api_key' });
// Send a message
await unizo.communications.messages.send({
provider: 'slack',
channel: '#general',
text: 'Hello from Unizo!'
});