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

# customer_payment_method_retrieve

> Retrieve one payment method belonging to a customer.

<div className="tool-route"><span className="tool-row-method" data-method="GET">GET</span><code>{"https://api.stripe.com/v1/customers/{customer}/payment_methods/{paymentMethod}"}</code></div>

```python stripe_customer_payment_method_retrieve.py theme={null}
from charter.packs import stripe

result = await stripe.customer_payment_method_retrieve.ainvoke({"paymentMethod": ..., "customer": ...})
```

## Path parameters

<div className="reference-table">
  | Field                                                                 | Type     | Description                                   |
  | --------------------------------------------------------------------- | -------- | --------------------------------------------- |
  | `paymentMethod` <span className="required" title="required">\*</span> | `string` | The ID of the payment method.                 |
  | `customer` <span className="required" title="required">\*</span>      | `string` | The ID of the customer the method belongs to. |
</div>
