# GET /customers/{customer_id}/payment-methods/{payment_method_id}

**Get a payment method for a customer**

Returns a payment method for a customer using its ID and related customer ID.

**Required permissions:** `payment_method.read`

## Path parameters

| Name | Type | Required | Description |
| --- | --- | --- | --- |
| `customer_id` | string | required | Paddle ID of the customer entity to work with. (pattern: `^ctm_[a-z\d]{26}$`) |
| `payment_method_id` | string | required | Paddle ID of the payment method entity to work with. |

## Response (200)

- `data`: object (required) — Represents a customer payment method entity.
  - `id`: string (required) — Unique Paddle ID for this payment method entity, prefixed with `paymtd_`. (pattern: `^paymtd_[a-z\d]{26}$`)
  - `customer_id`: string (required) — Paddle ID of the customer that this payment method is saved for, prefixed with `ctm_`. (pattern: `^ctm_[a-z\d]{26}$`)
  - `address_id`: string (required) — Paddle ID of the address for this payment method, prefixed with `add_`. (pattern: `^add_[a-z\d]{26}$`)
  - `type`: string (required) — Type of payment method saved.
  - `card` (required) — Information about the credit or debit card saved. `null` unless `type` is `card`.
  - `paypal` (required) — Information about the PayPal payment method saved. `null` unless `type` is `paypal`.
  - `underlying_details`
  - `south_korea_local_card` (required) — Information about the Korean payment method used to pay. `null` unless `type` is `south_korea_local_card`.
  - `origin`: string (required) — Describes how this payment method was saved.
  - `saved_at`: string (date-time) (required) — RFC 3339 datetime string of when this entity was saved. Set automatically by Paddle.
  - `updated_at`: string (date-time) (required) — RFC 3339 datetime string of when this entity was updated. Set automatically by Paddle.
- `meta`: object (required) — Information about this response.
  - `request_id`: string (required) — Unique ID for the request relating to this response. Provide this when contacting Paddle support about a specific request.

### Response example

```json
{
  "data": {
    "customer_id": "ctm_01hv6y1jedq4p1n0yqn5ba3ky4",
    "address_id": "add_01j2jfab8zcjy524w6e4s1knjy",
    "id": "paymtd_01j2jff1m3es31sdkejpaym164",
    "type": "card",
    "card": {
      "cardholder_name": "Sam Miller",
      "type": "visa",
      "last4": "4242",
      "expiry_month": 5,
      "expiry_year": 2025
    },
    "paypal": null,
    "origin": "saved_during_purchase",
    "saved_at": "2024-07-12T03:23:26Z",
    "updated_at": "2024-10-29T14:12:28.018784Z",
    "underlying_details": null,
    "south_korea_local_card": null
  },
  "meta": {
    "request_id": "03dae283-b7e9-47dc-b8c0-229576d90139"
  }
}
```
