You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I need to update a web certificate (PFX with password) for my application using Microsoft Graph Beta API. The certificate is used in Azure AD App Proxy and must be stored securely with a password.
I understand that the certificate may need to be set under:
Result: No key credentials or certificate metadata returned.
Questions:
Where should the PFX certificate and password be stored?
keyCredentials
verifiedCustomDomainCertificatesMetadata
verifiedCustomDomainKeyCredential
verifiedCustomDomainPasswordCredential
any other Command / Property
Are there specific API permissions required for this update?
I have "Application.ReadWrite.All" and "Directory.ReadWrite.All", but do I need additional permissions?
Environment Details:
Using Microsoft Graph Beta API
Application is registered in Azure AD and uses Azure AD App Proxy
The .pfx certificate must be stored with a password
Any help or working examples would be greatly appreciated!
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I need to update a web certificate (PFX with password) for my application using Microsoft Graph Beta API. The certificate is used in Azure AD App Proxy and must be stored securely with a password.
I understand that the certificate may need to be set under:
However, I'm unable to retrieve or update these values correctly.
What I Have Tried:
`$applicationId = ""
$application = Get-MgBetaApplication -Filter "appId eq '$applicationId'"
$application`
Result: No key credentials or certificate metadata returned.
Questions:
Where should the PFX certificate and password be stored?
keyCredentials
verifiedCustomDomainCertificatesMetadata
verifiedCustomDomainKeyCredential
verifiedCustomDomainPasswordCredential
any other Command / Property
Are there specific API permissions required for this update?
I have "Application.ReadWrite.All" and "Directory.ReadWrite.All", but do I need additional permissions?
Environment Details:
Using Microsoft Graph Beta API
Application is registered in Azure AD and uses Azure AD App Proxy
The .pfx certificate must be stored with a password
Any help or working examples would be greatly appreciated!
Beta Was this translation helpful? Give feedback.
All reactions