API Description
- Retrieve all loan officers of specified company.
Api Endpoint
GET
/api/v1/user/loan-officersQuery Parameters
| Name | DataType | Value |
|---|---|---|
company_token | String | wNpOV47PLkRuS8taZpMaPQDTU |
Responses
🟢 Success
{
"success": true,
"message": "Loan officers retrieved successfully.",
"data": {
"loan_officers": [
{
"token": "abcdefghijklmnopqrstuvwxy",
"username": "loan_officer",
"first_name": "Loan",
"last_name": "Officer",
"name": "Loan Officer",
"email": "loan_officer@domain.com",
"phone": "+13154487878"
},
{
"token": "abcdefghijklmnopqrstuvwxy",
"username": "loan_processor",
"first_name": "Loan",
"last_name": "Processor",
"name": "Loan Processor",
"email": "loan_processor@domain.com",
"phone": "+13154487878"
}
]
},
"meta": {},
"errors": []
}