Merchant API
Retrieve a customer list
api
get
/api/1.0/customers

Retrieve a customer list

Get a list of all your customers.

Request

Header Parameters
Header Parameters

Response

OK

Response body
Body array
Was this page helpful?
GET
/api . /1.0 . /customers . 
Parameters
curl -L -X GET 'https://merchant.revolut.com/api/1.0/customers' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <yourSecretApiKey>'
Response body samples
[
{
"id": "9dfb8491-bfb0-4420-ad63-0fa7bdd3dffb",
"full_name": "First Customer",
"email": "first.customer@example.com",
"created_at": "2020-06-24T12:12:56.596703Z",
"updated_at": "2020-06-24T12:12:56.737082Z"
},
{
"id": "6c7c97a8-cfc1-4cf3-8b38-26a74fdf1fae",
"full_name": "Second Customer",
"business_name": "Second Business",
"email": "second.customer@example.com",
"phone": "+441234567890",
"created_at": "2020-06-24T12:03:39.979397Z",
"updated_at": "2020-06-25T10:03:39.134417Z"
},
{
"id": "014f0ad6-c45b-4d7d-83c6-80eea94fceac",
"full_name": "Third Customer",
"email": "third.customer@example.com",
"phone": "+441234567890",
"created_at": "2020-06-23T14:13:08.262336Z",
"updated_at": "2020-06-24T10:47:11.173027Z"
}
]