DELETE
/
api
/
workers
/
{workerId}
/
tests
/
{testId}
import os
from brainbase_labs import BrainbaseLabs

client = BrainbaseLabs(
    api_key=os.environ.get("BRAINBASE_LABS_API_KEY"),  # This is the default and can be omitted
)
client.workers.tests.delete(
    test_id="testId",
    worker_id="workerId",
)

Authorizations

x-api-key
string
header
required

API key authentication

Path Parameters

workerId
string
required
testId
string
required

Response

204

Test deleted successfully (No Content)