bookingCustomer リソースの種類

名前空間: microsoft.graph

重要

Microsoft Graph の /beta バージョンの API は変更される可能性があります。 実稼働アプリケーションでこれらの API を使用することは、サポートされていません。 v1.0 で API を使用できるかどうかを確認するには、Version セレクターを使用します。

BookingBusiness の顧客を表します。

メソッド

メソッド 戻り値の型 説明
顧客の一覧表示 bookingCustomer コレクション BookingCustomer オブジェクトの一覧を取得します。
BookingCustomer を作成する bookingCustomer 新しい BookingCustomer オブジェクトを 作成します。
BookingCustomer を入手する bookingCustomer bookingCustomer オブジェクトのプロパティとリレーションシップを読み取ります。
Update bookingCustomer BookingCustomer オブジェクトを更新します。
Delete なし BookingCustomer オブジェクトを削除します。

プロパティ

プロパティ 説明
アドレス physicalAddress コレクション 自宅、ビジネス、その他の住所など、顧客に関連付けられている住所。
createdDateTime DateTimeOffset 顧客が作成された日付、時刻、タイム ゾーン。
displayName String 顧客の名前。
emailAddress String 顧客の SMTP アドレス。
id String 顧客の ID。 読み取り専用。
lastUpdatedDateTime DateTimeOffset 顧客が最後に更新された日付、時刻、タイム ゾーン。
phones phone コレクション 自宅、ビジネス、携帯電話番号など、顧客に関連付けられている電話番号。

リレーションシップ

なし

JSON 表記

リソースの JSON 表記を次に示します。

{
  "@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)"
}