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 ExecutorsΒΆ
List available executors
URI Template
GET /api/activities/{instance}/executors
{instance}
Yamcs instance name
Response Type
interface ListExecutorsResponse {
// Yamcs instance name
executors: ExecutorInfo[];
}
Related Types
interface ExecutorInfo {
// Executor type name
type: string;
// Display name
displayName: string;
// Executor description
description: string;
// Name of an icon in the Material Icons font.
icon: string;
}