/  Yamcs HTTP API  /  Database  /  List Databases

List DatabasesΒΆ

List databases

URI Template

GET /api/databases

Response Type

interface ListDatabasesResponse {
  databases: DatabaseInfo[];
}

Related Types

interface DatabaseInfo {

  // Database name
  name: string;

  // Path on server
  path: string;
  tablespace: string;

  // Names of the tables in this database
  tables: string[];

  // Names of the streams in this database
  streams: string[];
}