Buzz LIghtyear
Buzz LIghtyear

Reputation: 490

Microsoft Graph API - How to update userSMIMECertificate

Is it possible to update userSMIMECertificate object for a user in Azure active directory using graph API?

Upvotes: 1

Views: 550

Answers (2)

Buzz LIghtyear
Buzz LIghtyear

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

Alina Li
Alina Li

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:

Set-ADUser

Update Active Directory user fields with powershell scrip

Powershell return true/false on property value, not the value

Upvotes: 1

Related Questions