I am trying to create channels in Microsoft Teams using the Microsoft Graph Beta API. In the docs, it says that the channel entity has a property IsFavoriteByDefault
that indicates
Whether the channel should automatically be marked 'favorite' for all members of the team. Default: false.
https://learn.microsoft.com/en-us/graph/api/resources/channel?view=graph-rest-beta#properties
However, trying the Graph Beta API (either with custom call or the Graph Explorer) and whatever value I pass to this property true
or false
, this property remains null
.
Is there anything special to do to actually set the value of this property ?