relatedContact resource type
Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Contact record related to an educationUser that provides information for guardians, aides, doctors, and so on.
Methods
Method | Return Type | Description |
---|---|---|
Update | relatedContact collection | Update the relatedContacts for an educationUser |
Properties
Property | Type | Description |
---|---|---|
displayName | String | Name of the contact. Required. |
accessConsent | Boolean | Indicates whether the user has been consented to access student data. |
emailAddress | String | Email address of the contact. |
mobilePhone | String | Mobile phone number of the contact. |
relationship | contactRelationship | Relationship to the user. Possible values are: parent , relative , aide , doctor , guardian , child , other , unknownFutureValue . |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.relatedContact",
"displayName": "String",
"emailAddress": "String",
"mobilePhone": "String",
"relationship": "String",
"accessConsent": "Boolean"
}