# Collaboration

- Human documentation: [https://docs.univer.ai/guides/sheets/features/collaboration](https://docs.univer.ai/guides/sheets/features/collaboration)

- Agent Markdown: [https://docs.univer.ai/guides/sheets/features/collaboration.md](https://docs.univer.ai/guides/sheets/features/collaboration.md)

- Requested language: `en-US`

- Content language: `en-US`

- Documentation version: `1.0.0-rc.0`

- Source: [sheets/features/collaboration.mdx](https://github.com/dream-num/documentation/blob/dev/content/guides/sheets/features/collaboration.mdx)

---

#### Package metadata

```json
{
  "preset": [
    {
      "client": "@univerjs/preset-sheets-collaboration",
      "locale": "@univerjs/preset-sheets-collaboration/locales/en-US",
      "style": "@univerjs/preset-sheets-collaboration/lib/index.css"
    }
  ],
  "plugins": [
    {
      "client": "@univerjs-pro/collaboration"
    },
    {
      "client": "@univerjs-pro/collaboration-client",
      "facade": "@univerjs-pro/collaboration-client/facade",
      "locale": "@univerjs-pro/collaboration-client/locale/en-US"
    },
    {
      "client": "@univerjs-pro/collaboration-client-ui",
      "facade": "@univerjs-pro/collaboration-client-ui/facade",
      "locale": "@univerjs-pro/collaboration-client-ui/locale/en-US",
      "style": "@univerjs-pro/collaboration-client-ui/lib/index.css"
    }
  ],
  "server": true
}
```

Collaborative editing connects your browser editor to a backend. Start with [Collaboration integration](https://docs.univer.ai/server/collaboration/browser-integration.md) to run the example and connect your application's identity, permissions, and storage. See [Office Quick Start](https://docs.univer.ai/server/collaboration/quick-start.md) for the browser and server configuration.

Create the document through an authenticated application API, then load the returned Unit identifier with the method below. Reuse that identifier when opening the same document again.

## Facade API

```ts
import '@univerjs-pro/collaboration-client/facade'

const collaboration = univerAPI.getCollaboration()
const unit = await collaboration.loadSheetAsync('your-unit-id')
```

[Node.js / AI SDK](https://docs.univer.ai/ai/content-operations.md) · [OT](/blog/ot)
