/  Yamcs HTTP API  /  Tag  /  Delete Tag

Delete TagΒΆ

Delete a tag

Warning

This method is going to be removed. Use Yamcs Timeline instead by adding the service org.yamcs.timeline.TimelineService to your instance configuration.

URI Template

DELETE /api/archive/{instance}/tags/{tagTime}/{tagId}
{instance}

Yamcs instance name.

{tagTime}

{tagId}

Response Type

interface ArchiveTag {
  id: number;
  name: string;
  start: string;  // String decimal
  stop: string;  // String decimal
  description: string;
  color: string;
  startUTC: string;  // RFC 3339
  stopUTC: string;  // RFC 3339
}