Skip to main content
DELETE
/
tool
/
{tool_id}
Python
from superu import SuperU

client = SuperU("YOUR_SUPERU_API_KEY")

payload = {
    "tool_id": "tool_01HXR9259WDZ2X3ZZKQ7HDG4C2"
}

response = client.tools.delete(**payload)
print(response)
{
  "status": "success",
  "tool_id": "tool_01HXR9259WDZ2X3ZZKQ7HDG4C2",
  "message": "Tool deleted"
}

Authorizations

superU-Api-Key
string
header
required

Your SuperU API key.

Path Parameters

tool_id
string
required

Tool ID

Example:

"tool_01HXR9259WDZ2X3ZZKQ7HDG4C2"

Response

Tool deleted

Generic Response schema.

status
string

Status value.

Example:

"success"

message
string

Message value.

Example:

"Request completed successfully"

data
object

Data value.