curl --request POST \
--url 'https://sandbox.rollfi.xyz/companyOnboarding#createBusiness' \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"method": "createBusiness",
"registration": {
"company": "Best LLC",
"businessWebsite": "www.schumm.com",
"doingBusinessAs": "Best",
"isTermsAccepted": true
},
"kybInformation": {
"ein": "109709569",
"entityType": "LLP",
"incorporationState": "Alabama",
"dateOfIncorporation": "2015-02-25",
"irsAssisgnedFederalFilingForm": "941",
"payrollRunThisYear": "Yes",
"formerPaidThisYear": "No"
},
"companyLocation": {
"companyLocation": "Main",
"address1": "8745 Colard Ln",
"address2": "",
"city": "Lyons",
"state": "CO",
"zipcode": "80540",
"phoneNumber": "9889890989",
"isWorkLocation": true,
"isMailingAddress": true,
"isFilingAddress": true
},
"businessUser": {
"firstName": "Manoj",
"middleName": "",
"lastName": "Deshmukh",
"phoneNumber": "9974574177",
"email": "[email protected]",
"address1": "8745 Colard Ln",
"address2": "",
"city": "Lyons",
"state": "CO",
"zipcode": "80540",
"ssn": "458756985",
"dateOfBirth": "2000-09-09",
"payrollAdmin": true,
"bookkeeper": true,
"beneficialOwner": true,
"ownershipPercentage": 25
}
}
'{
"registration": {
"companyId": "98016CB2-FAA4-47E5-8173-DD6F29C7C397",
"kybInformationId": "32E9AE44-529A-4B4E-9C40-56DFCE99E712",
"businessUserId": "4B47C1DA-F279-40E8-ABF6-ADD82E7C2582",
"companyLocationId": "FB3B168C-62C2-43D0-A1EF-B3C6C5C6FAE3",
"status": "Registered",
"message": "A company with name Wise Wonders co is registered successfully and KYB verification is in progress."
}
}The createBusiness API offers a holistic solution for seamlessly integrating a new company into the system. This API is designed to streamline the onboarding process by consolidating multiple steps into a single, efficient call. This approach is ideal for businesses seeking a quick and straightforward onboarding experience.
createBusiness API:Company Registration
KYB Information
Location Setup
Admin User Addition
KYB Process Initiation
curl --request POST \
--url 'https://sandbox.rollfi.xyz/companyOnboarding#createBusiness' \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"method": "createBusiness",
"registration": {
"company": "Best LLC",
"businessWebsite": "www.schumm.com",
"doingBusinessAs": "Best",
"isTermsAccepted": true
},
"kybInformation": {
"ein": "109709569",
"entityType": "LLP",
"incorporationState": "Alabama",
"dateOfIncorporation": "2015-02-25",
"irsAssisgnedFederalFilingForm": "941",
"payrollRunThisYear": "Yes",
"formerPaidThisYear": "No"
},
"companyLocation": {
"companyLocation": "Main",
"address1": "8745 Colard Ln",
"address2": "",
"city": "Lyons",
"state": "CO",
"zipcode": "80540",
"phoneNumber": "9889890989",
"isWorkLocation": true,
"isMailingAddress": true,
"isFilingAddress": true
},
"businessUser": {
"firstName": "Manoj",
"middleName": "",
"lastName": "Deshmukh",
"phoneNumber": "9974574177",
"email": "[email protected]",
"address1": "8745 Colard Ln",
"address2": "",
"city": "Lyons",
"state": "CO",
"zipcode": "80540",
"ssn": "458756985",
"dateOfBirth": "2000-09-09",
"payrollAdmin": true,
"bookkeeper": true,
"beneficialOwner": true,
"ownershipPercentage": 25
}
}
'{
"registration": {
"companyId": "98016CB2-FAA4-47E5-8173-DD6F29C7C397",
"kybInformationId": "32E9AE44-529A-4B4E-9C40-56DFCE99E712",
"businessUserId": "4B47C1DA-F279-40E8-ABF6-ADD82E7C2582",
"companyLocationId": "FB3B168C-62C2-43D0-A1EF-B3C6C5C6FAE3",
"status": "Registered",
"message": "A company with name Wise Wonders co is registered successfully and KYB verification is in progress."
}
}Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Show child attributes
Show child attributes
Show child attributes