UserLoan Officers

API Description

  • Retrieve all loan officers of specified company.

Api Endpoint

GET
/api/v1/user/loan-officers

Query Parameters

NameDataTypeValue
company_token
StringwNpOV47PLkRuS8taZpMaPQDTU

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": []
}