Tool details
| Field | Value |
|---|---|
| Name | delete_api_key |
| Group | API Keys |
Playground
Input schema
Input schema
{
"type": "object",
"properties": {
"api_key_id": {
"type": "string",
"description": "API key ID to delete"
},
"confirm": {
"type": "boolean",
"description": "Must be true to confirm deletion"
}
},
"required": [
"api_key_id",
"confirm"
],
"additionalProperties": false,
"description": "Input schema for the delete_api_key tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}
Output schema
Output schema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the returned record."
},
"deleted": {
"type": "boolean",
"description": "The deleted associated with this tool result."
}
},
"required": [
"id",
"deleted"
],
"additionalProperties": false,
"description": "Structured result returned by the delete_api_key tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}