Hi @Bambula,
Are you currently using a Find meeting times action in your setup?
Within that action it is possible to use a room in a resource attendees field. The response of that action will tell you if the attendees are available for your meeting (start and end time need to be included). With a condition you can check what the outcome is of this action.
Below is an example.
Check if it has found any meeting suggestions at all.
length(outputs('Find_meeting_times_(V2)')?['body/meetingTimeSuggestions'])
is greater than 0
Check if the empty reason is empty
empty(outputs('Find_meeting_times_(V2)')?['body/emptySuggestionsReason'])
is equal to true
Check if the found slot is 100 confidence score. If it is for example 50 one of the attendees can't make it.
outputs('Find_meeting_times_(V2)')?['body/meetingTimeSuggestions'][0]['confidence']
is equal to 100
