---
title: "Get payment details for user"
method: GET
path: "/api/v2/organizations/{orgSlug}/payment-details"
tags: ["Payment Details"]
---

# Get payment details for user

`GET /api/v2/organizations/{orgSlug}/payment-details`

Retrieve a list of payment details based on provided filters 

 Required scopes: `flex.billing.paymentDetails.read`

## Path parameters

- `orgSlug` string, required

## Query parameters

- `member` string
- `company` string
- `$select` string
- `$cursorNext` string
- `$cursorPrev` string
- `$limit` number

## Response `200`

- object
  - `rangeStart` number
  - `rangeEnd` number
  - `cursorNext` string
  - `cursorPrev` string
  - `results` PaymentDetailsResultDto[]
    - `_id` string — The _id of the payment details.
    - `details` union — An object containing the payment method details (card or ACH bank account).
      - StripeDetailsResultDto
        - `id` string — The id of the card in Stripe.
        - `name` string — The name of the card's owner.
        - `brand` string — The name of the card's owner.
        - `funding` string — The type of card, e.g. a credit card.
        - `expirationMonth` number — The expiration month of the card.
        - `expirationYear` number — The expiration year of the card.
        - `country` string — The country with which the card is associated.
        - `cvcCheck` string — The result of the CVC check. It should always be set to 'pass', if the card is created.
        - `last4` string — The last 4 digits of the card.
      - AchDetailsResultDto
        - `id` string — The id of the bank account in Stripe.
        - `name` string — The name of the account holder.
        - `last4` string — The last 4 digits of the bank account.
        - `bankName` string — Name of the bank.
        - `accountHolderType` string — Type of account holder (individual or company).
        - `accountType` string — Type of account (checking or savings).
        - `status` string — Status of the bank account.
    - `authorization` PaymentDetailsAuthorizationResultDto
      - `authProvider` string — The id of the auth provider
      - `status` string — The status of the auth
    - `type` 'stripe' — The payment provider type. Currently only Stripe is supported.
    - `method` 'card' | 'ach' — The payment method type. Used to calculate any method-specific processing fees in the summary.
    - `paymentCustomer` string — The _id of the card in Stripe. Same as the _id in the "card" object.
    - `paymentSource` string — The _id of the card in Stripe. Same as the _id in the "card" object.
    - `locations` string — An array containing the list of locations for which the payment details are valid.
    - `createdAt` string, date-time — The time when the payment details were created
    - `createdBy` string — The _id user that created the payment details

---

[API](https://skmtc.dev/officernd/apis/authentication-api.md) · [All operations](https://skmtc.dev/officernd/apis/authentication-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/officernd/authentication-api/revisions/6bcd33dc648e/schema)
