getCustomer
Get a Customer by id
This function retrieves the details of the customer which is represented by the Id passed in the parameters.
suspend fun getCustomer(
token: String,
customerId: String
): ResponseHolder<ApiCustomerResultView?> {
return CustomerRequests(baseUrl, activity).getCustomer(
token, schemeId, customerId
)
}
Updated about 2 years ago