JavaScript
import Scorecard from 'scorecard-ai'; const client = new Scorecard({ apiKey: 'My API Key', }); const testset = await client.testsets.delete('246'); console.log(testset.success);
{ "success": true }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The ID of the Testset to delete.
"246"
Testset deleted successfully
Whether the deletion was successful.
Was this page helpful?