customIntegrations()
Prebuilt
Custom
Return value
Returns aDailyCustomIntegrations object — a map of integration ID strings to DailyCustomIntegration objects. See setCustomIntegrations() for the full shape of each integration object.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Returns all currently configured custom integrations for a Daily Prebuilt call.
customIntegrations()
Prebuilt
Custom
DailyCustomIntegrations object — a map of integration ID strings to DailyCustomIntegration objects. See setCustomIntegrations() for the full shape of each integration object.
const integrations = call.customIntegrations();
// Check a specific integration by ID
const miro = integrations['miro'];
if (miro) {
console.log('Miro integration src:', miro.src);
}