/  Yamcs HTTP API  /  Clearance  /  List Clearances

List ClearancesΒΆ

List clearances

URI Template

GET /api/clearances

Response Type

interface ListClearancesResponse {
  clearances: ClearanceInfo[];
}

Related Types

interface ClearanceInfo {
  username: string;
  level: SignificanceLevelType;
  issuedBy: string;
  issueTime: string;  // RFC 3339 timestamp
  hasCommandPrivileges: boolean;
}

enum SignificanceLevelType {
  NONE = "NONE",
  WATCH = "WATCH",
  WARNING = "WARNING",
  DISTRESS = "DISTRESS",
  CRITICAL = "CRITICAL",
  SEVERE = "SEVERE",
}