For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Fork this repoGet a demo
  • Docs
    • Welcome
    • Quickstart
    • Concepts
    • Search
    • MCP Server
    • CLI
    • Agent Skills
    • Connect
    • Add New Connector
    • Rate Limits
      • Overview
      • Airtable
      • Apollo
      • Asana
      • Attio
      • Bitbucket
      • Box
      • Calcom
      • Clickup
      • Coda
      • Confluence
      • Ctti
      • Document360
      • Dropbox
      • Fireflies
      • Freshdesk
      • Github
      • Gitlab
      • Gmail
      • Google Calendar
      • Google Docs
      • Google Drive
      • Google Slides
      • Hubspot
      • Intercom
      • Jira
      • Linear
      • Monday
      • Notion
      • Onedrive
      • Onenote
      • Outlook Calendar
      • Outlook Mail
      • Pipedrive
      • Powerpoint
      • Salesforce
      • Servicenow
      • Sharepoint
      • Shopify
      • Slab
      • Slack
      • Slite
      • Stripe
      • Teams
      • Todoist
      • Trello
      • Word
      • Zendesk
      • Zoho Crm
      • Zoom
  • API Reference
LogoLogo
Fork this repoGet a demo
On this page
  • Configuration
  • Authentication
  • Configuration Options
  • Data Models
DocsConnectors

Document360

Was this page helpful?
Edit this page
Previous

Dropbox

Next
Built with
Document360 logo

Document360

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

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

FieldTypeDescription
idstrUnique ID of the project version
namestrDisplay name of the version (e.g. version_code_name or version number)
version_numberOptional[float]Project version number
version_code_nameOptional[str]Custom version name (e.g. v1)
is_main_versionboolTrue if this is the main version after loading documentation
is_publicboolTrue if this version is visible to the public
is_betaboolTrue if this version is marked as Beta
is_deprecatedboolTrue if this version is marked as deprecated
created_atOptional[datetime]When the version was created
modified_atOptional[datetime]When the version was last modified
slugOptional[str]URL slug for the version
orderOptional[int]Display order
version_typeOptional[int]0 = KB workspace, 1 = API Reference workspace
web_url_valueOptional[str]Base URL to the knowledge base (if known)
Document360CategoryEntity

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

FieldTypeDescription
idstrUnique ID of the category
namestrName of the category
descriptionOptional[str]Description of the category
project_version_idOptional[str]ID of the project version this category belongs to
project_version_nameOptional[str]Name of the project version
parent_category_idOptional[str]ID of the parent category (null if top-level)
orderOptional[int]Position inside the parent category
slugOptional[str]URL slug of the category
category_typeOptional[int]0 = Folder, 1 = Page, 2 = Index
hiddenboolWhether the category is visible on the site
created_atOptional[datetime]When the category was created
modified_atOptional[datetime]When the category was last modified
web_url_valueOptional[str]URL to view the category in Document360
Document360ArticleEntity

Schema for Document360 article (document with content).

FieldTypeDescription
idstrUnique ID of the article
namestrTitle of the article
contentOptional[str]Main text content (Markdown or plain text)
html_contentOptional[str]HTML content when editor is WYSIWYG
descriptionOptional[str]Short description of the article
category_idOptional[str]ID of the parent category
category_nameOptional[str]Name of the parent category
project_version_idOptional[str]ID of the project version
project_version_nameOptional[str]Name of the project version
slugOptional[str]URL slug of the article
statusOptional[int]0 = Draft, 3 = Published
language_codeOptional[str]Language code of the article
public_versionOptional[int]Published version number
latest_versionOptional[int]Latest version number
authorsList[Dict[str, Any]]List of authors/contributors
created_atOptional[datetime]When the article was created
modified_atOptional[datetime]When the article was last modified
article_urlOptional[str]Full URL of the article from list API (if provided)
web_url_valueOptional[str]URL to view the article in Document360