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