bookingCustomQuestion 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 custom question for a bookingBusiness.

Inherits from bookingNamedEntity.

Methods

Method Return type Description
List bookingCustomQuestions bookingCustomQuestion collection Get a list of the bookingCustomQuestion objects and their properties.
Create bookingCustomQuestion bookingCustomQuestion Create a new bookingCustomQuestion object.
Get bookingCustomQuestion bookingCustomQuestion Read the properties and relationships of a bookingCustomQuestion object.
Update bookingCustomQuestion None Update the properties of a bookingCustomQuestion object.
Delete bookingCustomQuestion None Delete a bookingCustomQuestion object.

Properties

Property Type Description
answerInputType answerInputType The expected answer type. The possible values are: text, radioButton, unknownFutureValue.
answerOptions String collection List of possible answer values.
createdDateTime DateTimeOffset The date, time and timezone when the custom question was created.
displayName String The question. Inherited from bookingNamedEntity.
id String The ID of the custom question. Inherited from entity.
lastUpdatedDateTime DateTimeOffset The date, time and timezone when the custom question was last updated.

Relationships

None.

JSON representation

The following is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.bookingCustomQuestion",
  "id": "String (identifier)",
  "createdDateTime": "String (timestamp)",
  "lastUpdatedDateTime": "String (timestamp)",
  "displayName": "String",
  "answerInputType": "String",
  "answerOptions": [
    "String"
  ]
}