curl --request PUT \
--url 'https://sandbox.rollfi.xyz/adminPortal#updateBusinessUser' \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '"{\r\n \"method\": \"updateBusinessUser\",\r\n \"businessUser\": {\r\n \"businessUserId\": \"67DEFFE5-ADC9-4B21-A3B4-194C468290F4\",\r\n \"firstName\": \"Marcus\",\r\n \"middleName\": \"\",\r\n \"lastName\": \"Steve\",\r\n \"email\": \"marcus020@sto.com\",\r\n \"phoneNumber\": \"9988884377\",\r\n \"address1\": \"8745 Colard Ln\",\r\n \"address2\": \"\",\r\n \"city\": \"Lyons\",\r\n \"state\": \"CO\",\r\n \"zipcode\": \"80540\",\r\n \"country\": \"US\",\r\n \"ssn\": \"745896325\",\r\n \"dateOfBirth\": \"2000-09-09\",\r\n \"payrollAdmin\": true,\r\n \"bookkeeper\": true,\r\n \"beneficialOwner\": true,\r\n \"ownershipPercentage\": 25,\r\n }\r\n}"'
{
"businessUser": {
"businessUserId": "3819B535-F3AA-4E5E-A055-16D33CE68315",
"status": "Ready",
"message": "The Business User has been updated successfully."
}
}
The Business User details can be updated using this endpoint
curl --request PUT \
--url 'https://sandbox.rollfi.xyz/adminPortal#updateBusinessUser' \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '"{\r\n \"method\": \"updateBusinessUser\",\r\n \"businessUser\": {\r\n \"businessUserId\": \"67DEFFE5-ADC9-4B21-A3B4-194C468290F4\",\r\n \"firstName\": \"Marcus\",\r\n \"middleName\": \"\",\r\n \"lastName\": \"Steve\",\r\n \"email\": \"marcus020@sto.com\",\r\n \"phoneNumber\": \"9988884377\",\r\n \"address1\": \"8745 Colard Ln\",\r\n \"address2\": \"\",\r\n \"city\": \"Lyons\",\r\n \"state\": \"CO\",\r\n \"zipcode\": \"80540\",\r\n \"country\": \"US\",\r\n \"ssn\": \"745896325\",\r\n \"dateOfBirth\": \"2000-09-09\",\r\n \"payrollAdmin\": true,\r\n \"bookkeeper\": true,\r\n \"beneficialOwner\": true,\r\n \"ownershipPercentage\": 25,\r\n }\r\n}"'
{
"businessUser": {
"businessUserId": "3819B535-F3AA-4E5E-A055-16D33CE68315",
"status": "Ready",
"message": "The Business User has been updated successfully."
}
}
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
The response is of type object
.