> ## Documentation Index
> Fetch the complete documentation index at: https://docs.continuouslabs.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Remove a Simulator tag

> Removes a name and tag reference from a Simulator. The Simulator artifact remains available by ID.



## OpenAPI

````yaml /openapi/simulation.yaml delete /v1/simulators/{id}/tag
openapi: 3.1.0
info:
  description: >-
    The continuous-simulation API builds reusable Simulators and runs isolated
    Simulations and Worlds. This document describes the stable v1 public
    contract.
  title: continuous-simulation API
  version: v1
servers:
  - description: Continuous production API.
    url: https://api.continuouslabs.ai
security: []
tags:
  - description: Read deployment metadata for the public API.
    name: meta
    x-group: API metadata
  - description: Create and control isolated runtime instances of ready Simulators.
    name: simulations
    x-group: Simulations
  - description: Build, inspect, tag, publish, and delete reusable Simulator artifacts.
    name: simulators
    x-group: Simulators
  - description: Upload and publish Simulator artifacts.
    name: uploads
    x-group: Artifact uploads
  - description: Create and control coordinated groups of Simulations.
    name: worlds
    x-group: Worlds
paths:
  /v1/simulators/{id}/tag:
    delete:
      tags:
        - simulators
      summary: Remove a Simulator tag
      description: >-
        Removes a name and tag reference from a Simulator. The Simulator
        artifact remains available by ID.
      operationId: untag-simulator
      parameters:
        - in: path
          name: id
          required: true
          schema:
            type: string
        - description: >-
            Required with a sealed session on workspace-scoped routes. API keys
            carry their workspace.
          in: header
          name: X-Workspace-Id
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TagSimulatorRequest'
        required: true
      responses:
        '204':
          description: No Content
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '408':
          $ref: '#/components/responses/RequestTimeout'
        '413':
          $ref: '#/components/responses/PayloadTooLarge'
        '415':
          $ref: '#/components/responses/UnsupportedMediaType'
        '422':
          $ref: '#/components/responses/UnprocessableEntity'
        '500':
          $ref: '#/components/responses/InternalServerError'
        '503':
          $ref: '#/components/responses/ServiceUnavailable'
      security:
        - apiKeyAuth: []
        - sessionBearerAuth: []
        - sessionCookie: []
components:
  schemas:
    TagSimulatorRequest:
      additionalProperties: false
      examples:
        - reference: billing:latest
      properties:
        $schema:
          description: A URL to the JSON Schema for this object.
          examples:
            - https://example.com/schemas/TagSimulatorRequest.json
          format: uri
          readOnly: true
          type: string
        reference:
          minLength: 1
          type: string
      required:
        - reference
      type: object
    Error:
      additionalProperties: false
      examples:
        - code: simulator_not_ready
          detail: simulator is not ready
      properties:
        code:
          minLength: 1
          type: string
        detail:
          minLength: 1
          type: string
      required:
        - code
        - detail
      type: object
  responses:
    BadRequest:
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Error'
      description: Bad Request
    Unauthorized:
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Error'
      description: Unauthorized
    Forbidden:
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Error'
      description: Forbidden
    NotFound:
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Error'
      description: Not Found
    RequestTimeout:
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Error'
      description: Request Timeout
    PayloadTooLarge:
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Error'
      description: Request Entity Too Large
    UnsupportedMediaType:
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Error'
      description: Unsupported Media Type
    UnprocessableEntity:
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Error'
      description: Unprocessable Entity
    InternalServerError:
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Error'
      description: Internal Server Error
    ServiceUnavailable:
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Error'
      description: Service Unavailable
  securitySchemes:
    apiKeyAuth:
      bearerFormat: Continuous API key
      description: >-
        Use a Continuous API key. Send it in the Authorization header as a
        Bearer token.
      scheme: bearer
      type: http
    sessionBearerAuth:
      bearerFormat: sealed session
      description: >-
        Use a sealed user session Bearer token. This method supports browser and
        session-only operations.
      scheme: bearer
      type: http
    sessionCookie:
      description: >-
        Use the sealed browser session cookie. This method supports browser and
        session-only operations.
      in: cookie
      name: wos-session
      type: apiKey

````