Skip to content

Latest commit

 

History

History
65 lines (50 loc) · 1.77 KB

File metadata and controls

65 lines (50 loc) · 1.77 KB
title typedEmailAddress resource type
description Represents the name, email addresses, and their corresponding email address type of a contact.
ms.localizationpriority medium
doc_type resourcePageType
ms.subservice mail
author kevinbellinger
ms.date 04/03/2024

typedEmailAddress resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Represents the name, email addresses, and their corresponding email address type of a contact.

Properties

Property Type Description
address String The email address of a contact.
name String The display name of a contact.
type String The type of email address. The possible values are: unknown, work, personal, main, other. The default value is unknown, which means address has not been set as a specific type.
otherLabel String To specify a custom type of email address, set type to other, and assign otherLabel to a custom string. For example, you may use a specific email address for your volunteer activities. Set type to other, and set otherLabel to a custom string such as Volunteer work.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "address": "string",
  "name": "string",
  "type": "string",
  "otherLabel": "string"
}