/  Yamcs HTTP API  /  Database  /  Get Database

Get DatabaseΒΆ

Get database

URI Template

GET /api/databases/{name}
{name}

Database name

Response Type

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