Customers List

List of all customers

To make this request, send an authenticated request to the customers endpoint.

Get a list of your customers

GET https://api.oneappgo.com/v1/business/customers

Take a look at how you might do this:

curl --location --request GET 'https://api.oneappgo.com/v1/business/customers' \
--header 'Authorization: Bearer YOUR_SECRET_KEY'

Sample response

{
    "status": true,
    "totalcustomer": 2,
    "message": "Customers retrieved",
    "data": [
        {
            "txref": "63490b145600340",
            "ctemail": "johndoe@gmail.com",
            "ctphone": "",
            "statuscode": "6",
            "customername": "John Doe"
        },
        {
            "txref": "634fghj93606583",
            "ctemail": "willsmith@gmail.com",
            "ctphone": "",
            "statuscode": "1",
            "customername": "Will Smith"
        }
    ]
}

Last updated