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"
}