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"
}
Field | Required | Data Type | Description |
---|---|---|---|
true | Sub User Email Address | ||
firstName | true | String | Sub User First Name i.e John |
lastName | true | String | Sub User First Name i.e Doe |
sex | true | String | Sub User Gender |
mobile | true | String | Mobile Number |
mobileCode | true | String | Sub User Country Mobile Code i.e Oyo-NIG32 |
dob | true | date | Sub User Date of Birth i.e 23-05-1998 |
address | true | string | Sub User resident address |
state | true | string | Sub users resident state |
city | true | string | Resident City of Beneficiary. Check City endpoint to get cityID and cityName, supply both cityID and cityName i.e IBADAN-25181 |
zipcode | true | string | Sub User resident zip code |
country | true | string | Sub users country |
countryCode | true | string | Sub users country ISO code i.e US, CA. |
employmentStatus | true | string | Employed or Not Employed |
occupation | true | string | Self Employed, Civil Servant, Student |
sourceOfFund | true | string | Pick from |
incomeRange | true | string | "1-10000", "10001-100000", ... |
accountDesignation | true | string | Personal 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",
}
]
}
}
Updated almost 2 years ago