GET
/
payment
/
organizations
/
{organizationId}
/
customers
/
{customerId}
/
saved-cards
curl --request GET \
  --url https://gateway.cyrexa.com/ipg/1.0.0/payment/organizations/{organizationId}/customers/{customerId}/saved-cards \
  --header 'Authorization: Bearer <token>'
[
  {
    "last4Digit": "<string>",
    "expiryDate": "<string>",
    "cardHolderName": "<string>",
    "cardType": "<string>",
    "registrationId": "<string>"
  }
]

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

organizationId
string
required
customerId
string
required

Response

200
text/plain
Success
last4Digit
string | null
expiryDate
string | null
cardHolderName
string | null
cardType
string | null
registrationId
string | null