webdav_create_remote_file
Create a new file on a remote WebDAV server at a specified path with content, optionally overwriting existing files.
Instructions
Create a new file on a remote WebDAV server at the specified path
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | ||
overwrite | No | ||
path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"type": "string"
},
"overwrite": {
"default": false,
"type": "boolean"
},
"path": {
"minLength": 1,
"type": "string"
}
},
"required": [
"path",
"content"
],
"type": "object"
}