suspendUserAccount
Suspend a Customer by id
This function suspends the customer with Id from the parameters. Suspended customer can be activated again by scheme administrator.
suspend fun suspendUserAccount(
id: String
): ResponseHolder<Any?> {
return CustomerRequests(baseUrl, activity).suspendUserAccount(
schemeId = schemeId,
id = id
)
}
Updated over 2 years ago