Microsoft Graph Users API
A Microsoft API that allows you to build compelling app experiences based on users, their relationships with other users and groups, and the resources they access for example their mails, calendars, files, administrative roles, group memberships.
641 questions
Thanks. :)
Hi, would you mind providing screenshots that show how you set up a business phone? So that I can better reproduce your problem.
Hi, since the code didn't work properly I don't have it anymore.
I can only tell you what I did and what I want to be the outcome of it..
I created a user with a single value for businessPhones:
user.businessPhones = Arrays.asList(<String-Array with one String value>);
After the creation of the user I tried to update the businessPhones property to be empty:
user.businessPhones = new ArrayList<String>();
user.businessPhones = null;
user.additionalDataManager().put("businessPhones", new JsonArray());
user.additionalDataManager().put("businessPhones", null);
I cant't really remember what else I testet but nothing worked out.
I just want to empty/delete the users businessPhones value.
Thank you for answering this fast.
Sign in to comment