Yamcs HTTP API
Methods
- 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
- Sdls
- Server
- Services
- Sessions
- Stream Archive
- Table
- Time Correlation
- Time
- Timeline
Related
Yamcs Release Notes
Yamcs Server Manual
Source Code Documentation
Download this Document
Set KeyΒΆ
Set the key
URI Template
PUT /api/sdls/{instance}/{linkName}/{spi}/key
{instance}
The Yamcs instance
{linkName}
The name of the encrypted link
{spi}
The Security Parameter Index
Request Body
interface HttpBody {
// The Content-Type header value for this body.
// If unspecified, defaults to application/octet-stream
contentType: string;
// If set, a Content-Disposition header is added
// to the response. Weg agents use this to trigger
// a download.
filename: string;
// The body as raw binary
data: string; // Base64
// Any other metadata (used in multipart/form)
metadata: {[key: string]: string};
}