joinScheme
Customer join scheme by id
This function adds the customer with Id from the parameters, to the scheme with Id from the parameters.
suspend fun joinScheme(
token: String,
customerId: String
): ResponseHolder<Any?> {
return CustomerRequests(baseUrl, activity).joinScheme(
token = token,
schemeId = schemeId,
customerId = customerId
)
}
Updated over 2 years ago