delete-card
Remove stored payment cards from Terminal.shop MCP Server by specifying the card ID, simplifying payment management and ensuring up-to-date account details.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cardId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cardId": {
"type": "string"
}
},
"required": [
"cardId"
],
"type": "object"
}