/  Yamcs HTTP API  /  Server  /  List Routes

List RoutesΒΆ

List routes

URI Template

GET /api/routes

Response Type

interface ListRoutesResponse {
  routes: RouteInfo[];
}

Related Types

interface RouteInfo {
  service: string;
  method: string;
  description: string;
  httpMethod: string;
  url: string;
  inputType: string;
  outputType: string;
  deprecated: boolean;
  requestCount: string;  // String decimal
  errorCount: string;  // String decimal
  logFormat: string;
}