Company info overview
Identify the business you are underwriting
The company info feature provides lenders with essential information about borrower companies. It serves as a cornerstone for comprehensive lending decisions by offering insights into a company's identity including address, phone number and registration numbers.
Feature components
Supported outputs
You can retrieve the data read by the feature by calling either the Get company accounting profile or Get company commerce profile endpoints.
- TypeScript
- Python
- C#
- Go
const response = await lendingClient.companyInfo.getAccountingProfile({
companyId: companyId,
});
if(response.statusCode != 200){
throw new Error("Could not get company's accounting profile")
}
console.log(response.accountingCompanyInfo.companyName)
request = operations.GetAccountingProfileRequest(
company_id=company_id,
)
response = lending_client.company_info.get_accounting_profile(req)
if response.status_code != 200:
raise Exception("Could not get company's accounting profile")
print(response.accounting_company_info.company_name)
var response = await lendingClient.CompanyInfo.GetAccountingProfileAsync(new() {
CompanyId = companyId,
});
if(response.StatusCode != 200){
throw new Exception("Could not get current suppliers");
}
Console.WriteLine(response.AccountingCompanyInfo.CompanyName);
ctx := context.Background()
response, err := lendingClient.CompanyInfo.GetAccountingProfile(ctx,
operations.GetAccountingProfileRequest{
CompanyID: companyID,
})
if response.StatusCode == 200 {
fmt.Println(response.AccountingCompanyInfo.CompanyName)
}
Read next
Was this page useful?
👏
👍
🤔
👎
😭