ContactsRoutes
open class ContactsRoutes
Routes for the contacts namespace
-
Removes all manually added contacts. You’ll still keep contacts who are on your team or who you imported. New contacts will be added when you share.
Declaration
Swift
@discardableResult open func deleteManualContacts() -> RpcRequest<VoidSerializer, VoidSerializer>
Return Value
Through the response callback, the caller will receive a
Void
object on success or aVoid
object on failure. -
Removes manually added contacts from the given list.
Declaration
Swift
@discardableResult open func deleteManualContactsBatch(emailAddresses: Array<String>) -> RpcRequest<VoidSerializer, Contacts.DeleteManualContactsErrorSerializer>
Parameters
emailAddresses
List of manually added contacts to be deleted.
Return Value
Through the response callback, the caller will receive a
Void
object on success or aContacts.DeleteManualContactsError
object on failure.