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)
| 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): |