Reputation: 490
Is it possible to update userSMIMECertificate object for a user in Azure active directory using graph API?
Upvotes: 1
Views: 550
Reputation: 490
It is not possible to use the graph API to upload the user SMIME certificate to AAD/Office365. The only workable solution available is to upload the SMIME Certificate using the Set-Mailbox PowerShell commandlet and setting the arguments -UserSMimeCertificate
Upvotes: 1
Reputation: 884
You could not to use Microsoft Graph API to update userSMIMECertificate.
You could use PowerShell cmdlet set-aduser
For more information, please refer to these links:
Update Active Directory user fields with powershell scrip
Powershell return true/false on property value, not the value
Upvotes: 1