---
title: "Retrieves stored payment methods"
method: POST
path: "/subscription/paymentMethods"
tags: ["Subscription Service"]
---

# Retrieves stored payment methods

`POST /subscription/paymentMethods`

Gets the stored payment methods associated with a subscriptionId

## Request body

- StoredPaymentMethodRequest
  - `subscriptionId` string, required — Unique subscription identifier used to retrieve stored payment methods.

## Response `200`

Payment methods successfully retrieved

- StoredPaymentMethodsResponse
  - `creditCards` StoredCreditCard[] — List of stored credit cards for the subscription.
    - `storedPaymentMethodId` string — Identifier of the stored payment method.
    - `maskedCardNumber` string — Masked credit card number.
    - `cardType` string — Card type.
    - `cardHolderName` string — Card holder name.
    - `expiryMonth` string — Expiration month.
    - `expiryYear` string — Expiration year.
  - `bankAccounts` StoredBankAccount[] — List of stored bank accounts for the subscription.
    - `storedPaymentMethodId` string — Identifier of the stored payment method.
    - `maskedAccountNumber` string — Masked bank account number.
    - `maskedRoutingNumber` string — Masked routing number.
    - `accountHolderName` string — Account holder name or business name.
  - `subscriptionId` string — Unique subscription identifier associated with the stored payment methods.
  - `httpStatusCode` integer — HTTP status code.
  - `message` string — Response message.
  - `responseTimestamp` string, date-time — Date and time when the response was generated.

## Other responses

- `400` — Invalid input data
- `401` — Unauthorized. The access token is missing, invalid, or expired.
- `404` — No saved payment methods found
- `500` — Internal server error

---

[API](https://skmtc.dev/civikestpayment/apis/pays-service-api-specifications.md) · [All operations](https://skmtc.dev/civikestpayment/apis/pays-service-api-specifications/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/civikestpayment/pays-service-api-specifications/revisions/e94a116dff94/schema)
