Retrieve a customer's payment method
Retrieve the information of a specific payment method that is saved.
Request
Response
OK
Was this page helpful?
Retrieve the information of a specific payment method that is saved.
OK
curl -L -g -X GET 'https://merchant.revolut.com/api/1.0/customers/{customer_id}/payment-methods/{payment_method_id}' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <yourSecretApiKey>'
{
"id": "edef3ba4-60a0-4df3-8f12-e5fc858c2420",
"type": "CARD",
"saved_for": "CUSTOMER",
"method_details": {
"bin": "459678",
"last4": "6896",
"expiry_month": 3,
"expiry_year": 2025,
"cardholder_name": "Example Customer",
"brand": "VISA",
"funding": "DEBIT",
"issuer": "EXAMPLE ISSUER",
"issuer_country": "GB",
"billing_address": {
"street_line_1": "7",
"street_line_2": "Westferry Circus",
"post_code": "E144HD",
"city": "London",
"region": "Greater London",
"country_code": "GB"
},
"created_at": "2023-03-24T14:15:22Z"
}
}