Delete score

Deletes an evaluation score. ```Python Python url = "https://api.respan.ai/api/scores/{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

idstringRequired
Id

Response

No content

Errors

401
Unauthorized Error