bookingCustomer 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 a customer of a bookingBusiness.

Methods

Method Return Type Description
List customers bookingCustomer collection Get a list of bookingCustomer objects.
Create bookingCustomer bookingCustomer Create a new bookingCustomer object.
Get bookingCustomer bookingCustomer Read the properties and relationships of a bookingCustomer object.
Update bookingCustomer Update a bookingCustomer object.
Delete None Delete a bookingCustomer object.

Properties

Property Type Description
addresses physicalAddress collection Addresses associated with the customer, including home, business and other addresses.
createdDateTime DateTimeOffset The date, time and timezone when the customer was created.
displayName String The name of the customer.
emailAddress String The SMTP address of the customer.
id String The ID of the customer. Read-only.
lastUpdatedDateTime DateTimeOffset The date, time and timezone when the customer was last updated.
phones phone collection Phone numbers associated with the customer, including home, business and mobile numbers.

Relationships

None

JSON representation

The following is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.bookingCustomer",
  "id": "String (identifier)",
  "displayName": "String",
  "emailAddress": "String",
  "addresses": [
    {
      "@odata.type": "microsoft.graph.physicalAddress"
    }
  ],
  "phones": [
    {
      "@odata.type": "microsoft.graph.phone"
    }
  ],
  "createdDateTime": "String (timestamp)",
  "lastUpdatedDateTime": "String (timestamp)"
}