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

# Delete Run Gold Label

> Delete a specific gold label for a run

Delete a gold label from a run. This operation cannot be undone.


## OpenAPI

````yaml DELETE /v1/run/{run_id}/gold-label/{gold_label_id}
openapi: 3.1.0
info:
  title: re-factor API Reference
  version: 1.0.0
  description: API specification for re-factor system based on schema definitions
servers: []
security:
  - BearerAuth: []
paths:
  /v1/run/{run_id}/gold-label/{gold_label_id}:
    parameters:
      - name: run_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
        description: The ID of the run
      - name: gold_label_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
        description: The ID of the gold label
    delete:
      summary: Delete run gold label
      description: Delete a specific gold label for a run
      responses:
        '204':
          description: Gold label deleted successfully
        '401':
          $ref: '#/components/responses/UnauthorizedError'
        '404':
          $ref: '#/components/responses/NotFoundError'
components:
  responses:
    UnauthorizedError:
      description: Unauthorized
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
    NotFoundError:
      description: Not Found
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````