Get Loan Business Tenants
GET /api/v1/loans/{loanId}/businesses/{businessId}/tenants/{tenantId}
Description
Retrieve information about tenants associated with a specific loan and business.
Path Parameters
| Name | Type | Description |
|---|---|---|
loanId | string | The ID of the loan (path parameter) |
businessId | string | The ID of the business (path parameter) |
tenantId | string | The ID of the tenant (path parameter) |
Example
GET /api/v1/loans/loan123/businesses/business456/tenants/tenant789
Response Code: 200 - OK
Description
Success. Retrieves information about tenants associated with the specified loan and business.
Example
{
"data": {
"tenantId": "tenant789",
"name": "Tenant Name",
"email": "tenant@email.com",
"phone": "123-456-7890"
// Additional fields as per response
},
"status": "success"
}
🔑 Authentication bearer
| Param | Value | Type |
|---|---|---|
| token | {{accessCode}} | string |
LANGUAGE
CURL REQUEST
curl --request GET \
--url /api/v1/loans/{loanId}/businesses/{businessId}/tenants/{tenantId} \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!