> ## Documentation Index
> Fetch the complete documentation index at: https://docs.agentcard.sh/llms.txt
> Use this file to discover all available pages before exploring further.

# remove_payment_method

> Permanently remove a saved payment method.

Removes a saved payment method, detaching it permanently. Find the right `payment_method_id` with [list\_payment\_methods](/companies/mcp/tools/list_payment_methods); to add a replacement later, use [setup\_payment\_method](/companies/mcp/tools/setup_payment_method).

## Parameters

| Parameter           | Type   | Required | Description                                     |
| ------------------- | ------ | -------- | ----------------------------------------------- |
| `payment_method_id` | string | Yes      | The payment method ID to remove, like `pm_xxx`. |

## Returns

A confirmation that the payment method was removed, echoing the `paymentMethodId` with `status: "removed"`. Removal is permanent, so the card would need to be saved again with [setup\_payment\_method](/companies/mcp/tools/setup_payment_method) if the user wants it back.

## Example

```json theme={null}
{ "name": "remove_payment_method", "arguments": { "payment_method_id": "pm_1AbCdEfGhIjKlMnO" } }
```
