Delete span score
Removes a score from a log.
```Python Python
url = "https://api.respan.ai/api/logs/{log_id}/scores/{score_id}/"
api_key = "YOUR_KEY" # Replace with your actual Respan API key
headers = {
"Authorization": f"Bearer {api_key}",
"Content-Type": "application/json"
}
response = requests.delete(url, headers=headers)
print(response.status_code) # Should print 204 for successful deletion
```
```json 204 No Content
// No response body is returned for successful deletions.
```
Authentication
AuthorizationBearer
API key authentication. Get your API key from https://platform.respan.ai/platform/api-keys
Path parameters
log_id
Log Id
score_id
Score Id
Response
No content
Errors
401
Unauthorized Error