Update Client Profile

Update Client Profile (sub-user)

You can add sub-user to your account, to enable them have a separate account only to be linked to your master account. With this, you can have some services created for them like Virtual account to their available wallet.

📘

PATCH METHOD

{{baseUrl}}api/v2/clients/profile
{
    "email": "[email protected]",
    "firstName": "Dawe",
    "lastName": "John",
    "dob": "1998/05/23",
    "sex": "Male",
    "address": "Somewhere in lagos",
    "state": "Lagos",
    "city": "Lekki",
    "zipcode": "23402",
    "country": "Nigeria",
    "countryCode": "NG",
    "mobileCode": "+234",
    "mobile": "8080808080",
    "employmentStatus": "Employed",
    "occupation": "Software",
    "sourceOfFund": "Business",
    "incomeRange": "0-50,000",
    "accountDesignation": "Personal"
}
FieldRequiredData TypeDescription
emailtrueemailSub User Email Address
firstNametrueStringSub User First Name i.e John
lastNametrueStringSub User First Name i.e Doe
sextrueStringSub User Gender
mobiletrueStringMobile Number
mobileCodetrueStringSub User Country Mobile Code i.e Oyo-NIG32
dobtruedateSub User Date of Birth i.e 23-05-1998
addresstruestringSub User resident address
statetruestringSub users resident state
citytruestringResident City of Beneficiary. Check City endpoint to get cityID and cityName, supply both cityID and cityName i.e IBADAN-25181
zipcodetruestringSub User resident zip code
countrytruestringSub users country
countryCodetruestringSub users country ISO code i.e US, CA.
employmentStatustruestringEmployed or Not Employed
occupationtruestringSelf Employed, Civil Servant, Student
sourceOfFundtruestringPick from
incomeRangetruestring"1-10000", "10001-100000", ...
accountDesignationtruestringPersonal or Business

👍

Response

{
    "status": true,
    "content": {
        "data": [
            {
                "username": "H7X-1661093084",
                "email": "[email protected]",
                "pix": null,
                "firstName": "Tyler",
                "lastName": "James",
                "dob": "09-08-2022",
                "sex": "Male",
                "address": "Somehwere in Lagos",
                "state": "Lagos",
                "stateCode": null,
                "city": "Lekki",
                "zipcode": 23402,
                "country": "Nigeria",
                "countryCode": "NG",
                "mobileCode": "+234",
                "mobile": "8080808080",
                "companyName": "",
                "created_at": "2022-08-21T14:44:44.000000Z",
                "updated_at": "2022-09-15T19:33:33.000000Z",
          
            }
        ]
    }
}