Get Client Details

Get Client (sub-user) Details

Display data of a created client, profile information, wallet, KYC/KYB Verification status and others.

📘

POST METHOD

{{baseUrl}}api/v2/clients/user
{
    "email" : "[email protected]",
  
}
FieldRequiredData TypeDescription
emailtrueemailSub User Email Address

👍

Response

{
    "status": true,
    "content": {
        "data": {
            "endUser": {
                "username": "rv1-1661349202",
                "email": "[email protected]",
                "level": 0,
                "emailVerify": 1,
                "referral": 3,
                "id": 31,
                "pix": null,
                "firstName": "Dawe",
                "lastName": "John",
                "dob": "1998/05/23",
                "sex": "Male",
                "address": "somehwere around the world",
                "state": "Lagos",
                "stateCode": null,
                "city": "Lekki",
                "zipcode": "",
                "country": "Nigeria",
                "countryCode": "NG",
                "mobileCode": "+234",
                "mobile": "8080808080",
                "userType": 1,
                "companyName": "",
                "created_at": "2022-08-24T13:53:22.000000Z",
                "updated_at": "2022-08-24T13:53:22.000000Z",
               
            },
            "wallet": [
                {
                    "id": 113,
                    "cur": "NGN",
                    "balance": 0,
                    "created_at": "2022-08-24T13:53:22.000000Z",
                    "updated_at": "2022-08-24T13:53:22.000000Z",
                    "currency": "Naira",
                    "country": "Nigeria",
                    "countryCode": "NG",
                    "flag": "https://qwid.io/assets/svg/flag/ng.svg"
                },
                {
                    "id": 116,
                    "cur": "USD",
                    "balance": 0,
                    "created_at": "2022-08-24T13:53:22.000000Z",
                    "updated_at": "2022-08-24T13:53:22.000000Z",
                    "currency": "Dollar",
                    "country": "United State Of America",
                    "countryCode": "US",
                    "flag": "https://qwid.io/assets/svg/flag/us.svg"
                },
                {
                    "id": 115,
                    "cur": "GBP",
                    "balance": 0,
                    "created_at": "2022-08-24T13:53:22.000000Z",
                    "updated_at": "2022-08-24T13:53:22.000000Z",
                    "currency": "Pounds",
                    "country": "United Kingdom",
                    "countryCode": "UK",
                    "flag": "https://qwid.io/assets/svg/flag/gb.svg"
                },
                {
                    "id": 114,
                    "cur": "EUR",
                    "balance": 0,
                    "created_at": "2022-08-24T13:53:22.000000Z",
                    "updated_at": "2022-08-24T13:53:22.000000Z",
                    "currency": "Euro",
                    "country": "Europe",
                    "countryCode": "EU",
                    "flag": "https://qwid.io/assets/svg/flag/eu.svg"
                }
            ],
            "kyc": {
                "status": false,
                "verificationLink": "https://signup.getmati.com/?merchantToken=629a22873eb640001c5dc1e0&flowId=62ebce4b06f1e1001c505dc7&metadata=%7B%22fixedLanguage%22%3A%22en%22%2C%22user_id%22%3A%22dawesr%40boximail.com%22%2C%22userType%22%3A1%7D"
            }
        }
    }
}