updateCustomer
Modify a Customer
This function modifies the customer whose Id matches the Id inputted in the parameters.
suspend fun updateCustomer(
token: String,
customerData: ApiCustomerPutView
): ResponseHolder<Any?> {
return CustomerRequests(baseUrl, activity).updateCustomer(
token, schemeId, customerData
)
}
Updated over 2 years ago