Log out
Learn how to log out customers.
Call Kustomer.logOut
to log out a customer from chat. Kustomer.logOut
removes all conversations from the device.
Kustomer.logOut
won't clear any global settings (for example, business hours) and knowledge base data.
Kustomer.logOut({ error in
if error != nil {
print("there was a problem \(error?.localizedDescription ?? "")")
}
})
Use
logIn
andlogOut
instead of `identifyCurrentCustomerWe've deprecated
identifyCurrentCustomer
. UselogIn()
orlogOut()
followed by logIn() instead.
Updated 7 months ago