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

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# End active conference

> End the active call in an app-created Google Meet space.

`endGoogleMeetConference` ends the active call in a meeting space.

## Example

```ts theme={null}
import { automation, onHttpRequest } from "automate.ax"
import { endGoogleMeetConference } from "automate.ax/google-meet"

export default automation("End a support room", () => {
  onHttpRequest({ scope: "automation" })

  return endGoogleMeetConference({ space: "spaces/space-id" })
})
```

## Inputs

Provide `space` as a resource name or opaque ID. Second argument `{ account }` selects the Google Account. Inputs accept compatible signals.

## Output

Returns `{ space: string }` after Google accepts the request. The connected app must have created the space, and the space must have an active conference.
