> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.airweave.ai/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.airweave.ai/_mcp/server.

# Document360

> Document360 integration with Airweave

{/* AUTO-GENERATED CONTENT START */}

<img src="https://fdr-prod-docs-files-public.s3.us-east-1.amazonaws.com/airweave.docs.buildwithfern.com/2026-05-20T11%3A36%3A51.367Z/docs/pages/connectors/document360/icon.svg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=AKIA6KXJSKKNFOCF7G4B%2F20260807%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260807T162839Z&X-Amz-Expires=604800&X-Amz-Signature=a7a79feddfef5063a3f74521c5bcc51003bd006e84e512d99cba8d94c80f4125&X-Amz-SignedHeaders=host&x-amz-checksum-mode=ENABLED&x-id=GetObject" alt="Document360 logo" width="48" height="48" />

<h1>
  Document360
</h1>

This connector enables AI agents and RAG systems to retrieve context from Document360 through Airweave's unified search layer.

## Configuration

Document360 source connector.

Syncs project versions, categories, and articles from Document360
knowledge bases. Uses API token authentication.

#### [View Source Code](https://github.com/airweave-ai/airweave/tree/main/backend/airweave/platform/sources/document360.py)

Explore the Document360 connector implementation

### Authentication

**Supported authentication methods:**

* Direct Credentials
* Auth Provider

### Configuration Options

This connector does not have any additional configuration options.

## Data Models

The following data models are available for this connector:

#### Document360ProjectVersionEntity

Schema for Document360 project version (knowledge base version).

| Field               | Type                | Description                                                              |
| ------------------- | ------------------- | ------------------------------------------------------------------------ |
| id                  | str                 | Unique ID of the project version                                         |
| name                | str                 | Display name of the version (e.g. version\_code\_name or version number) |
| version\_number     | Optional\[float]    | Project version number                                                   |
| version\_code\_name | Optional\[str]      | Custom version name (e.g. v1)                                            |
| is\_main\_version   | bool                | True if this is the main version after loading documentation             |
| is\_public          | bool                | True if this version is visible to the public                            |
| is\_beta            | bool                | True if this version is marked as Beta                                   |
| is\_deprecated      | bool                | True if this version is marked as deprecated                             |
| created\_at         | Optional\[datetime] | When the version was created                                             |
| modified\_at        | Optional\[datetime] | When the version was last modified                                       |
| slug                | Optional\[str]      | URL slug for the version                                                 |
| order               | Optional\[int]      | Display order                                                            |
| version\_type       | Optional\[int]      | 0 = KB workspace, 1 = API Reference workspace                            |
| web\_url\_value     | Optional\[str]      | Base URL to the knowledge base (if known)                                |

#### Document360CategoryEntity

Schema for Document360 category (folder/page/index in the TOC).

| Field                  | Type                | Description                                        |
| ---------------------- | ------------------- | -------------------------------------------------- |
| id                     | str                 | Unique ID of the category                          |
| name                   | str                 | Name of the category                               |
| description            | Optional\[str]      | Description of the category                        |
| project\_version\_id   | Optional\[str]      | ID of the project version this category belongs to |
| project\_version\_name | Optional\[str]      | Name of the project version                        |
| parent\_category\_id   | Optional\[str]      | ID of the parent category (null if top-level)      |
| order                  | Optional\[int]      | Position inside the parent category                |
| slug                   | Optional\[str]      | URL slug of the category                           |
| category\_type         | Optional\[int]      | 0 = Folder, 1 = Page, 2 = Index                    |
| hidden                 | bool                | Whether the category is visible on the site        |
| created\_at            | Optional\[datetime] | When the category was created                      |
| modified\_at           | Optional\[datetime] | When the category was last modified                |
| web\_url\_value        | Optional\[str]      | URL to view the category in Document360            |

#### Document360ArticleEntity

Schema for Document360 article (document with content).

| Field                  | Type                   | Description                                         |
| ---------------------- | ---------------------- | --------------------------------------------------- |
| id                     | str                    | Unique ID of the article                            |
| name                   | str                    | Title of the article                                |
| content                | Optional\[str]         | Main text content (Markdown or plain text)          |
| html\_content          | Optional\[str]         | HTML content when editor is WYSIWYG                 |
| description            | Optional\[str]         | Short description of the article                    |
| category\_id           | Optional\[str]         | ID of the parent category                           |
| category\_name         | Optional\[str]         | Name of the parent category                         |
| project\_version\_id   | Optional\[str]         | ID of the project version                           |
| project\_version\_name | Optional\[str]         | Name of the project version                         |
| slug                   | Optional\[str]         | URL slug of the article                             |
| status                 | Optional\[int]         | 0 = Draft, 3 = Published                            |
| language\_code         | Optional\[str]         | Language code of the article                        |
| public\_version        | Optional\[int]         | Published version number                            |
| latest\_version        | Optional\[int]         | Latest version number                               |
| authors                | List\[Dict\[str, Any]] | List of authors/contributors                        |
| created\_at            | Optional\[datetime]    | When the article was created                        |
| modified\_at           | Optional\[datetime]    | When the article was last modified                  |
| article\_url           | Optional\[str]         | Full URL of the article from list API (if provided) |
| web\_url\_value        | Optional\[str]         | URL to view the article in Document360              |

{/* AUTO-GENERATED CONTENT END */}