Get sources and uses¶
Get the sources and uses of funds for a given deal.
Parameters¶
dealId string
The unique identifier of the deal that you want to retrieve.
Response¶
Type: application/json
Schema: DealFundsInfoResponseDto
success boolean
error ErrorDto
id string
fundsLoansInfo FundsLoansInfoDto
fundsSourcesInfo FundsSourcesInfoDto
fundsUsesInfo FundsUsesInfoDto
Response
{
"success": true,
"error": {
"target": "string",
"code": "Duplicated",
"message": "string",
"details": ["string"]
},
"id": "string",
"fundsLoansInfo": {
"loanFundsItems": [
{
"sourcesOfFunds": "string",
"amount": 0,
"loanPaymentStructure": "InterestOnly",
"amortizationTerm": 0,
"interestRate": 0,
"dealIncomeValuation": 0,
"dealNOI": 0,
"debtYield": 0,
"ltv": 0,
"dscr": 0
}
],
"avgLTV": 0,
"totalDSCR": 0,
"totalDebtYield": 0
},
"fundsSourcesInfo": {
"fundSourceItems": [
{
"id": "string",
"sourcesOfFunds": "string",
"amount": 0,
"loanPaymentStructure": "InterestOnly",
"amortizationTerm": 0,
"interestRate": 0,
"dollarPerUnit": 0,
"dollarPerSF": 0,
"percentOfTotal": 0,
"default": true,
"isDefault": true
}
],
"totalAmount": 0,
"totalDollarPerUnit": 0,
"totalDollarPerSF": 0,
"balanceBetweenUsesAndSources": 0,
"balanceName": "string"
},
"fundsUsesInfo": {
"fundUseItems": [
{
"id": "string",
"usesOfFunds": "string",
"amount": 0,
"dollarPerUnit": 0,
"dollarPerSF": 0,
"percentOfTotal": 0,
"default": true,
"isDefault": true
}
],
"totalAmount": 0,
"totalDollarPerUnit": 0,
"totalDollarPerSF": 0
}
}