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

> Check a cardholder's identity verification status: not_started, pending (review usually takes about a minute), requires_input (the user must redo something — r…

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 a cardholder's identity verification status: not\_started, pending (review usually takes about a minute), requires\_input (the user must redo something — reason says what), verified (cards can be issued), or rejected.

## Inputs

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

## Returns

| Field                  | Type   | Description                                                         |
| ---------------------- | ------ | ------------------------------------------------------------------- |
| `message` *(required)* | string | Human-readable status.                                              |
| `status`               | string | not\_started \| pending \| requires\_input \| verified \| rejected. |
| `reason`               | string | Present on requires\_input / rejected.                              |

## Example call

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