/  Yamcs HTTP API  /  File Transfer  /  Fetch File List

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};
}