Expand description
Microsoft Graph contacts (users.contacts): list, delta, get,
create, update, delete.
https://learn.microsoft.com/en-us/graph/api/resources/contact
Modules§
- create
- Create a Microsoft Graph contact (
POST /me/contactsorPOST /me/contactFolders/{id}/contacts). - delete
- Delete a Microsoft Graph contact (
DELETE /me/contacts/{id}). - delta
- Track changes to Microsoft Graph contacts (
GET /me/contacts/deltaorGET /me/contactFolders/{id}/contacts/delta). - get
- Get a Microsoft Graph contact (
GET /me/contacts/{id}). - list
- List Microsoft Graph contacts (
GET /me/contactsorGET /me/contactFolders/{id}/contacts). - update
- Update a Microsoft Graph contact (
PATCH /me/contacts/{id}).
Structs§
- Msgraph
Contact - A contact in a contact folder. Doubles as the create/update body.
- Msgraph
Physical Address - A physical address of a contact (home, business or other).
- Msgraph
Single Value Extended Property - A single-value extended MAPI property: the full property id (the
String {guid} Name <name>form) and its value.