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
Delete Time Of Flight IntervalsΒΆ
Delete intervals for the time of flight calculation.
All the intervals with the start time falling in the requested [start, stop] interval will be removed.
URI Template
POST /api/tco/{instance}/{serviceName}/tof:deleteIntervals
{instance}
Yamcs instance name.
{serviceName}
Service name.
Request Body
//Delete all the TofIntervals having
// start <= tofInterval.ertStart <= stop
interface DeleteTimeOfFlightIntervalsRequest {
start: string; // RFC 3339 timestamp
stop: string; // RFC 3339 timestamp
}