billing_deletePaymentMethodV1
Remove a payment method from your account by specifying its ID. This tool allows users to delete unused payment methods, maintaining account cleanliness and security.
Instructions
Delete a payment method from your account.
Use this endpoint to remove unused payment methods from user accounts.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| paymentMethodId | Yes | Payment method ID |
Input Schema (JSON Schema)
{
"properties": {
"paymentMethodId": {
"description": "Payment method ID",
"type": "integer"
}
},
"required": [
"paymentMethodId"
],
"type": "object"
}
Implementation Reference
- types.d.ts:239-247 (schema)Schema definition for the 'billing_deletePaymentMethodV1' tool in the APITools interface, specifying the input parameter 'paymentMethodId' of type number and a generic response."billing_deletePaymentMethodV1": { params: { /** * Payment method ID */ paymentMethodId: number; }; response: any; // Response structure will depend on the API };