Skip to main content

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

NameTypeDescription
loanIdstringThe ID of the loan (path parameter)
businessIdstringThe ID of the business (path parameter)
tenantIdstringThe 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

ParamValueType
token{{accessCode}}string

LANGUAGE

AUTHORIZATION

Bearer

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!