physicalAddress 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.

Represents the street address of a resource such as a contact or event.

Properties

Property Type Description
city String The city.
countryOrRegion String The country or region. It's a free-format string value, for example, "United States".
postalCode String The postal code.
postOfficeBox String The post office box number.
state String The state.
street String The street.
type physicalAddressType The type of address. Possible values are: unknown, home, business, other.

JSON representation

The following JSON representation shows the resource type.

{
  "city": "string",
  "countryOrRegion": "string",
  "postalCode": "string",
  "postOfficeBox": "string",
  "state": "string",
  "street": "string",
  "type": "string"
}