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

# Create meeting space

> Create a reusable Google Meet space with typed settings.

`createGoogleMeetSpace` creates an app-owned meeting space and returns its join details. Use it when an automation needs a stable Meet link.

## Example

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

export default automation("Create a customer call", () => {
  onHttpRequest({ scope: "automation" })

  return createGoogleMeetSpace({
    config: {
      accessType: "trusted",
      artifacts: { recording: true, transcription: true },
    },
  })
})
```

## Inputs

`config` is optional. It can set `accessType`, `entryPointAccess`, `moderation`, `attendanceReport`, automatic `artifacts`, and moderation restrictions. Second argument `{ account }` selects the Google Account. Inputs accept compatible signals.

## Output

Returns a meeting space with `name`, `meetingCode`, `meetingUri`, `config`, phone and Session Initiation Protocol (SIP) entry points, and `activeConference` when a call is running. The `meetings.space.created` OAuth scope limits this action to spaces created by Automate.ax.
