retrieveAll16

abstract suspend fun retrieveAll16(officeId: Long? = null, staffInOfficeHierarchy: Boolean? = false, loanOfficersOnly: Boolean? = false, status: String? = "active"): List<RetrieveOneResponse>

Retrieve Staff Returns the list of staff members. Example Requests: staff Retrieve a Staff by status Returns the details of a Staff based on status. By default it Returns all the ACTIVE Staff. If status=INACTIVE, then it returns all INACTIVE Staff. and for status=ALL, it Returns both ACTIVE and INACTIVE Staff. Example Requests: staff?status=active Responses:

  • 200: OK

Return

kotlin.collections.List

Parameters

officeId

officeId (optional)

staffInOfficeHierarchy

staffInOfficeHierarchy (optional, default to false)

loanOfficersOnly

loanOfficersOnly (optional, default to false)

status

status (optional, default to "active")