Skip to content

List Payment Methods

GET
/api/members/{memberId}/payment-methods
curl --request GET \
--url https://example.com/api/members/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/payment-methods \
--header 'Authorization: Bearer <token>'

Returns all stored payment methods for a member. The default method (if any) is listed first.

memberId
required
string format: uuid

The member’s unique identifier.

Payment methods for the member.

Media type application/json
Array<object>
object
id
string format: uuid
merchantId
string format: uuid
memberId
string format: uuid
type
string
Allowed values: Card BankAccount
brand
string
nullable
last4
string
nullable
expiryMonth
integer format: int32
nullable
expiryYear
integer format: int32
nullable
accountName
string
nullable
bsb
string
nullable
isDefault
boolean
createdAt
string format: date-time
updatedAt
string format: date-time
Example
[
{
"type": "Card"
}
]