curl --request GET \
--url 'https://sandbox.rollfi.xyz/reports#getCompanyInfo' \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"method": "getCompanyInfo",
"companyId": "B62B4EB2-4198-42FE-95E3-00959BEF1B8F"
}'
{
"Company": [
{
"company": "Diferential Pay",
"companyID": "B62B4EB2-4198-42FE-95E3-00959BEF1B8F",
"businessWebsite": "",
"registration": {
"isTermsAccepted": true,
"isEsign": true
},
"CompanyLocations": [
{
"address1": "8642 Yule St",
"address2": "",
"city": "Arvada",
"state": "CO",
"zipcode": "80007-7241",
"country": "US",
"companyLocation": "Main"
}
],
"KYBInformations": [
{
"ein": "389723826",
"email": "tylerhm@mailsac.com",
"EntityType": {
"entityType": "LLC"
},
"phoneNumber": "8473625628",
"dateOfIncorporation": "2024-11-21"
}
],
"kycStatus": "passed",
"BankAccounts": [
{
"companyFundingSourceEntityId": "141C7B75-1044-4D18-A64B-64895BAF8090",
"bankName": "First Platypus Bank",
"accountName": "Plaid Saving",
"accountNumber": "XXXXXXXXX1111",
"accountType": "savings"
}
]
}
]
}
This Report Gets you Company Information
curl --request GET \
--url 'https://sandbox.rollfi.xyz/reports#getCompanyInfo' \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"method": "getCompanyInfo",
"companyId": "B62B4EB2-4198-42FE-95E3-00959BEF1B8F"
}'
{
"Company": [
{
"company": "Diferential Pay",
"companyID": "B62B4EB2-4198-42FE-95E3-00959BEF1B8F",
"businessWebsite": "",
"registration": {
"isTermsAccepted": true,
"isEsign": true
},
"CompanyLocations": [
{
"address1": "8642 Yule St",
"address2": "",
"city": "Arvada",
"state": "CO",
"zipcode": "80007-7241",
"country": "US",
"companyLocation": "Main"
}
],
"KYBInformations": [
{
"ein": "389723826",
"email": "tylerhm@mailsac.com",
"EntityType": {
"entityType": "LLC"
},
"phoneNumber": "8473625628",
"dateOfIncorporation": "2024-11-21"
}
],
"kycStatus": "passed",
"BankAccounts": [
{
"companyFundingSourceEntityId": "141C7B75-1044-4D18-A64B-64895BAF8090",
"bankName": "First Platypus Bank",
"accountName": "Plaid Saving",
"accountNumber": "XXXXXXXXX1111",
"accountType": "savings"
}
]
}
]
}
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
.