Hi,
For security reasons, I want to send an encrypted password in the PATCH /users/id forced password change api. Is there a way that Azure can decrypt it and store it ?
Hi,
For security reasons, I want to send an encrypted password in the PATCH /users/id forced password change api. Is there a way that Azure can decrypt it and store it ?
Hi @AbhayChandramouli-2076 • Thank you for reaching out.
Graph API takes passwords as unicode strings with no other encoding.
As the Graph API uses SSL and all the Graph Calls sent on the wire are encrypted by default, there is no option to encode/encrypt the passwords in the Graph calls that can be decrypted by Azure AD.
Please "Accept the answer" if the information helped you. This will help us and others in the community as well.
So if we pass {
"passwordProfile": {
"forceChangePasswordNextSignIn": false,
"password": "Password23"
}
}
The question is "is it safe ?" to do this ?
@AbhayChandramouli-2076 • I would say it is safe as the call is sent securely over HTTPS on the network. You just need to be careful with onlookers watching you typing the password on-screen :)
9 people are following this question.