We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db0c388 commit 52dc695Copy full SHA for 52dc695
microsoftgraph/client.py
@@ -371,6 +371,10 @@ def outlook_create_me_contact(self, **kwargs):
371
url = "{0}me/contacts".format(self.base_url)
372
return self._post(url, **kwargs)
373
374
+ def outlook_create_contact_in_folder(self, folder_id, **kwargs):
375
+ url = "{0}/me/contactFolders/{1}/contacts".format(self.base_url, folder_id)
376
+ return self._post(url, **kwargs)
377
+
378
def outlook_get_contact_folders(self, params=None):
379
url = "{0}me/contactFolders".format(self.base_url)
380
return self._get(url, params=params)
0 commit comments