# Get all payment cards by customerId

Method that returns a list of all payment cards attached to a member. If there are no cards attached to the member, an empty list will be returned.

This method requires an integration with a payment provider.

Endpoint: GET /payment-cards/customerId/{customerId}
Version: 4.3.2
Security: api_key

## Path parameters:

  - `customerId` (string, required)
    Id of member

## Response 200 fields (application/json):

  - `data` (array)

  - `data.id` (string)
    Generated unique member id
    Example: "2457B03E-9925-45E9-B551-25F10D7BD4F2"

  - `data.cardId` (string)
    Example: "223b6c7f-0961-4efb-9a99-6e20f00a7897"

  - `data.token` (string)
    Example: "999999999999999999"

  - `data.cardName` (string)
    Type of card. Depending on source of registration, this value can be empty
    Example: "Visa"

  - `data.cardData` (string)
    Expiration date. Depending on source of registration, this value can be empty
    Example: "05/2025"

  - `data.maskedCardNo` (string)
    Masked card number. Depending on source of registration, this value can be empty

  - `data.displayCardName` (string)
    Card name given by customer
    Example: "DNB Visa"

  - `data.displayCardData` (string)
    Expiration date given by customer
    Example: "05/2025"

  - `metaData` (object)

  - `metaData.CreatedAt` (string)
    Example: "2023-01-01 15:15:00"

  - `metaData.UpdatedAt` (string)
    Example: "2023-01-05 15:15:00"


## Response 400 fields

## Response 401 fields

## Response 403 fields
