Skip to main content
DELETE
/
v1
/
run
/
{run_id}
/
gold-label
/
{gold_label_id}
Delete run gold label
curl --request DELETE \
  --url https://api.example.com/v1/run/{run_id}/gold-label/{gold_label_id} \
  --header 'Authorization: Bearer <token>'
{
  "error": "<string>"
}
Delete a gold label from a run. This operation cannot be undone.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

run_id
string<uuid>
required

The ID of the run

gold_label_id
string<uuid>
required

The ID of the gold label

Response

Gold label deleted successfully