In create calendar event through outlook api how to hide the attendees to see other attendees.
I want attendees other than the organizer not to see who the event's attendees are, i checked the entire api documentation but cant find how to hide the attendees to see each other.
Please let me know if i want to pass any additional parameter in the api request inorder to fullfill my requirement.
Below is my sample request
{
'Start': {
'DateTime': new Date(date),
'TimeZone': 'Asia/Calcutta',
},
'End': {
'DateTime': new Date(date),
'TimeZone': 'Asia/Calcutta',
},
"ShowAs": "Free",
"IsReminderOn":true,
"Importance": "High",
"Organizer" :{EmailAddress:{"Address":"{email}","Name":"{name}","Type": "Required"}}
"Attendees" :[{EmailAddress:{"Address":"{attendee1email}","Name":"{attendee1emailname}"}},{EmailAddress:{"Address":"{attendee1emailemail}","Name":"{attendee1email2name}"}}]
}
based on above sample create event request, how should i hide attendee1 should not see attendee2 as a guest and viceversa, but organizer should be able to see both the attendees.