> ## Documentation Index
> Fetch the complete documentation index at: https://docs.daily.co/llms.txt
> Use this file to discover all available pages before exploring further.

# startCustomIntegrations()

> Starts one or more custom integrations in Daily Prebuilt.

`startCustomIntegrations(id)`

<Badge color="green">{"✓"} Prebuilt</Badge> <Badge color="red">{"✗"} Custom</Badge>

Starts one or more custom integrations that were configured via [`setCustomIntegrations()`](/reference/daily-js/instance-methods/set-custom-integrations) or the [`customIntegrations`](/reference/daily-js/types/daily-call-options#param-custom-integrations) call option. Integrations are referenced by their ID — the key used when defining them in the `customIntegrations` object.

## Parameters

<ParamField body="id" type="string | string[]" required>
  A single integration ID or array of integration IDs to start.
</ParamField>

## Return value

Returns `this` for chaining.

## Example

```javascript theme={null}
// Start a single integration
call.startCustomIntegrations('miroEmbed');

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

## See also

<CardGroup>
  <Card title="Types" icon="t" iconType="solid">
    * [DailyCallOptions: customIntegrations](/reference/daily-js/types/daily-call-options#param-custom-integrations)
  </Card>

  <Card title="Methods" icon="code" iconType="solid">
    * [customIntegrations()](/reference/daily-js/instance-methods/custom-integrations)
    * [setCustomIntegrations()](/reference/daily-js/instance-methods/set-custom-integrations)
    * [stopCustomIntegrations()](/reference/daily-js/instance-methods/stop-custom-integrations)
    * [setSidebarView()](/reference/daily-js/instance-methods/set-sidebar-view)
  </Card>

  <Card title="Guides" icon="book-open" iconType="solid">
    * [Custom integrations](/docs/prebuilt/customizing-daily-prebuilt#custom-integrations)
  </Card>
</CardGroup>
