Yamcs HTTP API
- Activities
- Alarms
- Audit
- Buckets
- Clearance
- Commands
- COP-1
- Database
- Events
- File Transfer
- IAM
- Indexes
- Instances
- Links
- MDB Override
- MDB
- Packets
- Parameter Archive
- Parameter Lists
- Parameter Values
- Processing
- Queues
- Replication
- RocksDB
- Server
- Services
- Sessions
- Stream Archive
- Table
- Time Correlation
- Time
- Timeline
Related
Yamcs Release Notes
Yamcs Server Manual
Source Code Documentation
Download this Document
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",
}