List Customers

Get all customers' details using this endpoint.

You will be able to fetch customer details using the endpoint below;

GET /customers/

Response

{
    "data": [
        {
            "id": "6f7e1e7f-93d1-4fcc-b7a4-738f869615c8",
            "first_name": "Test",
            "last_name": "Customer",
            "email": "test@custom.er",
            "phone_number": "+2348012345678",
            "billing_address": {
                "line1": "123 Test lane",
                "line2": "356 Mike Drive",
                "city": "Anon",
                "state": "Acme",
                "zip_code": "12345",
                "country": "US"
            }
        }
    ],
    pagination: {
        "before": "",
        "after": "",
        "limit": 15
    }
}

Last updated