Skip to main content
startCustomIntegrations(id) Prebuilt Custom Starts one or more custom integrations that were configured via setCustomIntegrations() or the customIntegrations call option. Integrations are referenced by their ID — the key used when defining them in the customIntegrations object.

Parameters

id
string | string[]
required
A single integration ID or array of integration IDs to start.

Return value

Returns this for chaining.

Example

// Start a single integration
call.startCustomIntegrations('miroEmbed');

// Start multiple integrations at once
call.startCustomIntegrations(['miroEmbed', 'figmaEmbed']);

See also