curl --request GET \
--url https://developersandbox-api.flutterwave.com/customers/{id} \
--header 'Authorization: Bearer <token>'{
"status": "success",
"message": "<string>",
"data": {
"id": "cus_3XarBILKQS",
"address": {
"city": "New York",
"country": "US",
"line1": "123 Main Street",
"postal_code": "10001",
"state": "New York",
"line2": "Apt 4B"
},
"email": "cornelius@gmail.com",
"name": {
"first": "King",
"middle": "Leo",
"last": "LeBron"
},
"phone": {
"country_code": "234",
"number": "08012345678"
},
"meta": {},
"created_datetime": "2023-11-07T05:31:56Z"
}
}Retrieve a customer.
curl --request GET \
--url https://developersandbox-api.flutterwave.com/customers/{id} \
--header 'Authorization: Bearer <token>'{
"status": "success",
"message": "<string>",
"data": {
"id": "cus_3XarBILKQS",
"address": {
"city": "New York",
"country": "US",
"line1": "123 Main Street",
"postal_code": "10001",
"state": "New York",
"line2": "Apt 4B"
},
"email": "cornelius@gmail.com",
"name": {
"first": "King",
"middle": "Leo",
"last": "LeBron"
},
"phone": {
"country_code": "234",
"number": "08012345678"
},
"meta": {},
"created_datetime": "2023-11-07T05:31:56Z"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
A unique identifier to track this operation. It must be between 12 and 255 characters in length.
12 - 255ID of the customer.
"cus_3XarBILKQS"
Was this page helpful?