/  Yamcs HTTP API  /  Server  /  List Topics

List TopicsΒΆ

List topics

URI Template

GET /api/topics

Response Type

interface ListTopicsResponse {
  topics: TopicInfo[];
}

Related Types

interface TopicInfo {
  topic: string;
  service: string;
  method: string;
  description: string;
  inputType: string;
  outputType: string;
  deprecated: boolean;
}