# Get Payment Methods

<mark style="color:blue;">`GET`</mark> /v3/customers/me/payment-methods

## Request

The details below help you form your HTTP requests to this endpoint.

### Headers

You may need to provide specific headers.

<table><thead><tr><th>Name</th><th>Type</th><th data-type="checkbox">Required</th><th>Description</th></tr></thead><tbody><tr><td>customer-token</td><td>string</td><td>true</td><td>Customer's authentication token</td></tr><tr><td>x-version-override</td><td>string</td><td>false</td><td>N/A</td></tr></tbody></table>

## Response

The details below help you understand the responses you could get from this endpoint.

### Samples

Below are samples of responses, with tabs corresponding to returned status code.

{% tabs %}
{% tab title="200" %}

```javascript
[
    {
        "id": "5910c6805bffb3590e07cc1e",
        "type": "card",
        "cardBrand": "Visa",
        "lastFour": "1234",
        "firstSix": "411111",
        "label": "My Visa Card"
    }
]
```

{% endtab %}
{% endtabs %}

### Schema

The response's schema is outlined below.

<table><thead><tr><th>Name</th><th>Type</th><th data-type="checkbox">Required</th><th>Description</th></tr></thead><tbody><tr><td>data</td><td>array</td><td>false</td><td>N/A</td></tr><tr><td>data[].id</td><td>string</td><td>true</td><td>Payment Method Id</td></tr><tr><td>data[].type</td><td>string</td><td>true</td><td>Type of payment method</td></tr><tr><td>data[].cardBrand</td><td>string</td><td>false</td><td>Brand of the card</td></tr><tr><td>data[].lastFour</td><td>string</td><td>true</td><td>Last four digits of the card or account</td></tr><tr><td>data[].firstSix</td><td>string</td><td>false</td><td>First six digits of the card</td></tr><tr><td>data[].label</td><td>string</td><td>true</td><td>Label for the payment method</td></tr></tbody></table>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://dev.flexshopper.com/medusa/3.0-beta/customer/get-payment-methods.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
