Fetch Customer
Get customers' details using this endpoint.
You will be able to fetch specific customer details using the endpoint below;
GET /customers/:id
Response
{
"data": {
"id": "6f7e1e7f-93d1-4fcc-b7a4-738f869615c8",
"first_name": "Test",
"last_name": "Customer",
"email": "test@custom.com",
"phone_number": "+2348012345678",
"billing_address": {
"line1": "123 Test lane",
"line2": "3456 Mike Drive",
"city": "Anon",
"state": "Acme",
"zip_code": "12345",
"country": "US"
}
}
}
Last updated