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 enforce passwords rotation and for that I need the timestamp when the password was last changed. This is available via the REST API as the passwordUpdatedAt property, which is my current workaround. It would be nice to have this included in the Go SDK though, so I don't have to mix raw HTTP calls with SDK.
Steps to reproduce:
auth.UserRecord struct does not have the PasswordUpdatedAt property. Looks like the REST parsing inside the SDK is done via the userQueryResponse struct in user_mgt.go file. That one is missing this property too.
Can you make this property available please? Thanks!
The text was updated successfully, but these errors were encountered:
Describe the problem
I need to enforce passwords rotation and for that I need the timestamp when the password was last changed. This is available via the REST API as the
passwordUpdatedAt
property, which is my current workaround. It would be nice to have this included in the Go SDK though, so I don't have to mix raw HTTP calls with SDK.Steps to reproduce:
auth.UserRecord
struct does not have thePasswordUpdatedAt
property. Looks like the REST parsing inside the SDK is done via theuserQueryResponse
struct inuser_mgt.go
file. That one is missing this property too.Can you make this property available please? Thanks!
The text was updated successfully, but these errors were encountered: