delete_credential
Remove a specific credential for a consumer in the APISIX-MCP server by providing the username and credential ID to manage access securely.
Instructions
Delete a credential for a consumer
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | credential id | |
username | Yes | consumer username |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "credential id",
"type": "string"
},
"username": {
"description": "consumer username",
"type": "string"
}
},
"required": [
"username",
"id"
],
"type": "object"
}