Yamcs HTTP API
- Activities
- Alarms
- Audit
- Buckets
- Clearance
- Commands
- COP-1
- Database
- Events
- File Transfer
- IAM
- Indexes
- Instances
- Links
- MDB Override
- MDB
- Packets
- Parameter Archive
- Parameter Lists
- Parameter Values
- Processing
- Queues
- Replication
- RocksDB
- Server
- Services
- Sessions
- Stream Archive
- Table
- Time Correlation
- Time
- Timeline
Related
Yamcs Release Notes
Yamcs Server Manual
Source Code Documentation
Download this Document
Fetch File ListΒΆ
Request file list from remote
URI Template
POST /api/filetransfer/{instance}/{serviceName}/files:sync
{instance}
Yamcs instance name
{serviceName}
File transfer service name
Request Body
interface ListFilesRequest {
// Entity from which to get the file list
source: string;
// Entity from which to get the file list
destination: string;
// Path of folder to list files from
remotePath: string;
// Options for the transfer
options: {[key: string]: any};
}