create_sftp_repository
Generate a new SFTP evidence repository by defining host, port, path, and authentication details, and assign it to specific organizations for secure data storage.
Instructions
Create a new SFTP evidence repository
Input Schema
Name | Required | Description | Default |
---|---|---|---|
host | Yes | SFTP server hostname or IP address | |
name | Yes | Name for the SFTP repository | |
organizationIds | No | Organization IDs to associate the repository with | |
password | Yes | Password for SFTP authentication | |
path | Yes | Path on the SFTP server (e.g. /) | |
port | No | SFTP server port (default: 22) | |
username | Yes | Username for SFTP authentication |
Input Schema (JSON Schema)
{
"properties": {
"host": {
"description": "SFTP server hostname or IP address",
"type": "string"
},
"name": {
"description": "Name for the SFTP repository",
"type": "string"
},
"organizationIds": {
"description": "Organization IDs to associate the repository with",
"items": {
"type": "number"
},
"type": "array"
},
"password": {
"description": "Password for SFTP authentication",
"type": "string"
},
"path": {
"description": "Path on the SFTP server (e.g. /)",
"type": "string"
},
"port": {
"description": "SFTP server port (default: 22)",
"type": "number"
},
"username": {
"description": "Username for SFTP authentication",
"type": "string"
}
},
"required": [
"name",
"host",
"path",
"username",
"password"
],
"type": "object"
}