MCPcopy Create free account
hub / github.com/dropbox/dropbox-sdk-python / contacts_delete_manual_contacts

Method contacts_delete_manual_contacts

dropbox/base.py:170–188  ·  view source on GitHub ↗

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. Route attributes: scope: contacts.write :rtype: None

(self)

Source from the content-addressed store, hash-verified

168 # Routes in contacts namespace
169
170 def contacts_delete_manual_contacts(self):
171 """
172 Removes all manually added contacts. You'll still keep contacts who are
173 on your team or who you imported. New contacts will be added when you
174 share.
175
176 Route attributes:
177 scope: contacts.write
178
179 :rtype: None
180 """
181 arg = None
182 r = self.request(
183 contacts.delete_manual_contacts,
184 'contacts',
185 arg,
186 None,
187 )
188 return None
189
190 def contacts_delete_manual_contacts_batch(self,
191 email_addresses):

Callers

nothing calls this directly

Calls 1

requestMethod · 0.95

Tested by

no test coverage detected