Skip to main content

WebDAV

The WebDAV destination connector lets you connect to a WebDAV server using HTTPS and Basic Authentication.

Setup

Before configuring the connector, make sure you have:

  • A WebDAV server URL reachable over the public internet (or from your deployment environment).
  • A WebDAV username and password with permission to access the target WebDAV endpoint.

Authentication

This connector authenticates using HTTP Basic Authentication (username + password) over HTTPS.

During credential validation, the connector issues a PROPFIND request with Depth: 0 to the configured URL.

Configuration

FieldTypeRequiredDescription
urlstringBase WebDAV URL. Must be a valid HTTPS URL with a host. If you omit the scheme, https:// is assumed. Trailing slashes are allowed.
usernamestringWebDAV username for Basic Auth.
passwordstringWebDAV password for Basic Auth.

URL requirements

  • The connector enforces https:// (HTTP is not supported).
  • The URL must include a host (for example, https://webdav.example.com/remote.php/dav/files/user/).

Examples:

  • https://webdav.example.com/
  • webdav.example.com/remote.php/dav/files/alice/ (treated as https://webdav.example.com/remote.php/dav/files/alice/)

Streams

This is a destination connector. It does not expose source streams.

Limitations

  • Loading data is not yet supported. The connector currently validates credentials, but destination loading is still in development.