Reputation: 16041
When using local accounts, can we force a password change every N days?
If not, can we use the graph api to determine the last time the password was changed?
Upvotes: 1
Views: 603
Reputation: 378
The Azure AD B2C Team updated the user voice request here. So now you can use an extension policy to force the password expiration, you can take a look at the code here.
Also, the Azure AD Team released a similar feature, updating the user voice request here.
The property is called:
lastPasswordChangeDateTime
and indeed seems to be the correct one:
The time when this Azure AD user last changed their password. The date and time information uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'
See the updated official documentation for the Graph API.
Upvotes: 0