curl --request GET \
--url 'https://sandbox.rollfi.xyz/reports#getBusinessUserInfo' \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"method": "getBusinessUserById",
"businessUserId": "D8934854-20F7-4607-8007-A4B78254007F"
}'
{
"businessUser": [
{
"businessUserId": "D8934854-20F7-4607-8007-A4B78254007F",
"businessUser": "Regina Wise",
"firstName": "Regina",
"middleName": "",
"lastName": "Wise",
"email": "wise021@mailsac.com",
"phoneNumber": "2511630007",
"payrollAdmin": true,
"bookKeeper": true,
"beneficialOwner": false,
"employee": true,
"ownershipPercentage": 0,
"companyLocationID": "889F5A0D-CBC5-4495-A09B-D98B63490C1C",
"address1": "102 Fallsgrove Blvd",
"address2": "",
"city": "Rockville",
"state": "MD",
"zipcode": "20850",
"country": "US",
"ssn": "587400936",
"startDate": "2020-09-09",
"dateOfBirth": "2006-09-09"
}
]
}
curl --request GET \
--url 'https://sandbox.rollfi.xyz/reports#getBusinessUserInfo' \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"method": "getBusinessUserById",
"businessUserId": "D8934854-20F7-4607-8007-A4B78254007F"
}'
{
"businessUser": [
{
"businessUserId": "D8934854-20F7-4607-8007-A4B78254007F",
"businessUser": "Regina Wise",
"firstName": "Regina",
"middleName": "",
"lastName": "Wise",
"email": "wise021@mailsac.com",
"phoneNumber": "2511630007",
"payrollAdmin": true,
"bookKeeper": true,
"beneficialOwner": false,
"employee": true,
"ownershipPercentage": 0,
"companyLocationID": "889F5A0D-CBC5-4495-A09B-D98B63490C1C",
"address1": "102 Fallsgrove Blvd",
"address2": "",
"city": "Rockville",
"state": "MD",
"zipcode": "20850",
"country": "US",
"ssn": "587400936",
"startDate": "2020-09-09",
"dateOfBirth": "2006-09-09"
}
]
}
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
.