# `Stripe.Services.CustomerPaymentMethodService`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/services/customer_payment_method_service.ex#L2)

CustomerPaymentMethod API operations.

# `list_payment_methods`

```elixir
@spec list_payment_methods(Stripe.Client.t(), String.t(), map(), keyword()) ::
  {:ok, term()} | {:error, Stripe.Error.t()}
```

List a Customer's PaymentMethods

Returns a list of PaymentMethods for a given Customer

# `retrieve_payment_method`

```elixir
@spec retrieve_payment_method(
  Stripe.Client.t(),
  String.t(),
  String.t(),
  map(),
  keyword()
) ::
  {:ok, term()} | {:error, Stripe.Error.t()}
```

Retrieve a Customer's PaymentMethod

Retrieves a PaymentMethod object for a given Customer.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
