> ## 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.

# stopCustomIntegrations()

> Stops one or more running custom integrations in Prebuilt.

`stopCustomIntegrations(id)`

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

## Parameters

<ParamField body="id" type="string | string[]" required>
  The ID or array of IDs of the integrations to stop. IDs are the string identifiers you defined when configuring the integrations.
</ParamField>

## Return value

Returns the `DailyCall` instance.

## Example

```javascript theme={null}
call.stopCustomIntegrations(['miroEmbed', 'otherEmbed']);
```

## 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">
    * [startCustomIntegrations()](/reference/daily-js/instance-methods/start-custom-integrations)
    * [customIntegrations()](/reference/daily-js/instance-methods/custom-integrations)
    * [setCustomIntegrations()](/reference/daily-js/instance-methods/set-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>
