Forum Discussion
AP_TC_ECASD
Sep 30, 2025Brass Contributor
New-MgBookingBusinessService | Turn Customer Information Questions Off
I'm trying to turn off the stock Customer information questions except for customer email but cannot find how to do it? Any support is much appreciated. Below is what I've recently tried... # Pro...
LainRobertson
Sep 30, 2025Silver Contributor
Hi AP_TC_ECASD,
I don't use these APIs, but looking at the documentation, Graph shows that bookingBusiness and bookingCustomQuestion are two separate endpoints. The bookingBusiness endpoint documentation even lists customQuestions as a relationship (read-only, at that) rather than a property.
What this collectively points to is that you cannot create the businessBooking entity and the bookingCustomQuestion with a single call to New-MgBookingBusinessService. Rather, you will need to:
- Call New-MgBookingBusiness first;
- Call New-MgBookingBusinessCustomQuestion afterwards, using the "id" obtained from the above commandlet. You'll need to call this once per question as it doesn't take multiple questions as input.
References:
- New-MgBookingBusiness (Microsoft.Graph.Bookings) | Microsoft Learn
- New-MgBookingBusinessCustomQuestion (Microsoft.Graph.Bookings) | Microsoft Learn
- bookingBusiness resource type - Microsoft Graph v1.0 | Microsoft Learn
- bookingCustomQuestion resource type - Microsoft Graph v1.0 | Microsoft Learn
- Create bookingCustomQuestion - Microsoft Graph v1.0 | Microsoft Learn
Cheers,
Lain
AP_TC_ECASD
Oct 05, 2025Brass Contributor
LainRobertson Unfortunately, I don’t think that’s it. I create and control custom questions all the time and the Customer information questions aren’t a part of that module.