SDK de Node.js - Dailybot Desarrolladores
SDK oficial de Dailybot para Node.js. Librería cliente TypeScript-first para la API de Dailybot.
SDK de Node.js
El SDK oficial de Dailybot para Node.js proporciona una librería cliente TypeScript-first para interactuar con la API de Dailybot. Cubre check-ins, reportes, kudos, workflows y webhooks.
Instalación
npm install @dailybot/sdkInicio Rápido
import { Dailybot } from '@dailybot/sdk';
const client = new Dailybot({
apiKey: process.env.DAILYBOT_API_KEY,
});
// List all check-ins
const checkIns = await client.checkIns.list();
// Get a specific report
const report = await client.reports.get('ci_abc123', {
date: '2026-02-14',
});
// Send a kudos
await client.kudos.send({
from: 'u_1',
to: 'u_2',
message: 'Great work on the launch!',
});Funcionalidades
| Funcionalidad | Soportada |
|---|---|
| Check-ins | ✓ |
| Reportes | ✓ |
| Kudos | ✓ |
| Workflows | ✓ |
| Webhooks | ✓ |
| Tipos TypeScript | ✓ |
SDK de Python
¿Buscas Python? Ve la documentación del SDK de Python.