curl --request GET \
--url 'https://sandbox.rollfi.xyz/reports#getBusinessUserDetails' \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"method": "getBusinessUser",
"companyId": "B62B4EB2-4198-42FE-95E3-00959BEF1B8F"
}'
{
"BusinessUser": [
{
"businessUserId": "F7F09EAD-2FA8-458F-B3E6-750F42B15857",
"businessUser": "Tyler Hm",
"firstName": "Tyler",
"middleName": "",
"lastName": "Hm",
"email": "tylerhm@mailsac.com",
"phoneNumber": "8473625628",
"payrollAdmin": true,
"bookKeeper": true,
"beneficialOwner": true,
"employee": false,
"ownershipPercentage": 0.1,
"companyLocationID": "F7F09EAD-2FA8-458F-B3E6-750F42B15857",
"address1": "919 2nd Ave",
"address2": "",
"city": "New York",
"state": "NY",
"zipcode": "10017-1582",
"country": "US",
"ssn": "857476277",
"startDate": "2023-12-10",
"dateOfBirth": "2000-12-10"
}
]
}
This endpoint gets all the Business User Information
curl --request GET \
--url 'https://sandbox.rollfi.xyz/reports#getBusinessUserDetails' \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"method": "getBusinessUser",
"companyId": "B62B4EB2-4198-42FE-95E3-00959BEF1B8F"
}'
{
"BusinessUser": [
{
"businessUserId": "F7F09EAD-2FA8-458F-B3E6-750F42B15857",
"businessUser": "Tyler Hm",
"firstName": "Tyler",
"middleName": "",
"lastName": "Hm",
"email": "tylerhm@mailsac.com",
"phoneNumber": "8473625628",
"payrollAdmin": true,
"bookKeeper": true,
"beneficialOwner": true,
"employee": false,
"ownershipPercentage": 0.1,
"companyLocationID": "F7F09EAD-2FA8-458F-B3E6-750F42B15857",
"address1": "919 2nd Ave",
"address2": "",
"city": "New York",
"state": "NY",
"zipcode": "10017-1582",
"country": "US",
"ssn": "857476277",
"startDate": "2023-12-10",
"dateOfBirth": "2000-12-10"
}
]
}
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
.