/  Yamcs HTTP API  /  Parameter Archive  /  Delete Partitions

Delete PartitionsΒΆ

Delete partitions

Response is of type string and list the partitions that have been removed.

URI Template

POST /api/archive/{instance}/parameterArchive:deletePartitions
{instance}

Yamcs instance name.

Request Body

interface DeletePartitionsRequest {

  // Start with the partition that contains this timestamp. Specify a date string in ISO 8601 format.
  start: string;  // RFC 3339 timestamp

  // Stop with the partition that contains this timestamp. The stop partition will be removed as
  // well. Specify a date string in ISO 8601 format.
  stop: string;  // RFC 3339 timestamp
}

Response Type

interface StringMessage {
  message: string;
}