DELETE
/
spans
/
{span_id}
/
metrics
/
{metric_id}
Delete Metric
import requests

url = "https://api.opper.ai/v2/spans/{span_id}/metrics/{metric_id}"

headers = {"Authorization": "Bearer <token>"}

response = requests.request("DELETE", url, headers=headers)

print(response.text)
This response does not have an example.

Authorizations

Authorization
string
header
required

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

Path Parameters

span_id
string
required
metric_id
string
required

Response

204

Successful Response