> ## 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.

# list_withdrawal_recipients

> List the user's saved bank accounts for withdrawals, masked (bank name and last four only).

Connect to `https://mcp.agentcard.sh/mcp` with the **user's connection token** (or a `buy_token` for org-owned accounts).

**Behavior:** read-only, idempotent.

## What it does

List the user's saved bank accounts for withdrawals, masked (bank name and last four only). Use a recipient's id as recipient\_id with withdraw. If the list is empty, collect the user's bank details and call create\_withdrawal\_recipient first.

## Inputs

None.

## Returns

| Field                  | Type   | Description                                   |
| ---------------------- | ------ | --------------------------------------------- |
| `message` *(required)* | string | Human-readable list (or an empty-state note). |
| `count`                | number | Number of saved bank destinations.            |
| `recipients`           | array  | Saved bank destinations, masked.              |

## Example call

```json theme={null}
{
  "tool": "list_withdrawal_recipients",
  "arguments": {}
}
```
