mirror of
https://dev.azure.com/globalhealthx/EMR/_git/helix-engage-server
synced 2026-04-11 18:08:16 +00:00
feat: switch outbound dial to Kookoo API — outbound calls now work
- Replace CloudAgent V3 tbManualDial with Kookoo outbound.php - Simple HTTP GET with api_key — no auth issues - Kookoo callback endpoint: POST /webhooks/kookoo/callback - Creates Call record in platform - Matches caller to Lead by phone - Remove agent login requirement before dial - Tested: call queued successfully, phone rang Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -3,10 +3,11 @@ import { PlatformModule } from '../platform/platform.module';
|
||||
import { WorklistController } from './worklist.controller';
|
||||
import { WorklistService } from './worklist.service';
|
||||
import { MissedCallWebhookController } from './missed-call-webhook.controller';
|
||||
import { KookooCallbackController } from './kookoo-callback.controller';
|
||||
|
||||
@Module({
|
||||
imports: [PlatformModule],
|
||||
controllers: [WorklistController, MissedCallWebhookController],
|
||||
controllers: [WorklistController, MissedCallWebhookController, KookooCallbackController],
|
||||
providers: [WorklistService],
|
||||
})
|
||||
export class WorklistModule {}
|
||||
|
||||
Reference in New Issue
Block a user