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

# get_cardholder_payment_method_status

> Check whether a cardholder has a funding payment method on file.

Connect to `https://mcp.agentcard.sh/mcp` with your **organization credential** (`client_id` + `client_secret`, or the org access token).

**Behavior:** read-only.

## What it does

Check whether a cardholder has a funding payment method on file.

## Inputs

| Field                        | Type   | Description       |
| ---------------------------- | ------ | ----------------- |
| `cardholder_id` *(required)* | string | The cardholder id |

## Returns

| Field                  | Type    | Description                              |
| ---------------------- | ------- | ---------------------------------------- |
| `message` *(required)* | string  | Human-readable status.                   |
| `hasPaymentMethod`     | boolean | Whether a default payment method exists. |

## Example call

```json theme={null}
{
  "tool": "get_cardholder_payment_method_status",
  "arguments": {
    "cardholder_id": "\u2026"
  }
}
```
