Retrieve a customer
Get the information about a specific customer
, based on its ID.
Request
Response
OK
Was this page helpful?
Get the information about a specific customer
, based on its ID.
OK
curl -L -g -X GET 'https://merchant.revolut.com/api/1.0/customers/{customer_id}' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <yourSecretApiKey>'
{
"id": "6c7c97a8-cfc1-4cf3-8b38-26a74fdf1fae",
"full_name": "Example Customer",
"business_name": "Example Business",
"email": "example.customer@example.com",
"phone": "+441234567890",
"date_of_birth": "1990-01-01",
"created_at": "2020-06-24T12:03:39.979397Z",
"updated_at": "2020-06-25T10:03:39.134417Z",
"payment_methods": [
{
"id": "648334a8-9546-a983-a81a-efc6d5bdd0be",
"type": "REVOLUT_PAY",
"saved_for": "MERCHANT",
"method_details": {
"created_at": "2023-06-09T14:18:16.577888Z"
}
},
{
"id": "edef3ba4-60a0-4df3-8f12-e5fc858c2420",
"type": "CARD",
"saved_for": "CUSTOMER",
"method_details": {
"bin": "459765",
"last4": "6578",
"expiry_month": 2,
"expiry_year": 2025,
"cardholder_name": "Example Customer",
"brand": "VISA",
"funding": "DEBIT",
"issuer": "EXAMPLE ISSUER",
"issuer_country": "GB",
"billing_address": {
"street_line_1": "7, Westferry Circus",
"street_line_2": "Columbus Building",
"post_code": "E144HD",
"city": "London",
"region": "Greater London",
"country_code": "GB"
},
"created_at": "2023-03-24T14:15:22Z"
}
}
]
}