Password Entry in Authentication Methods Example

Overview

For the upcoming change to add “Password Visibility in User Authentication Methods API”, this article provides an example of a response for a user that has a password set when using the endpoint “GET /api/v2/users/{id}/authentication-methods”.

Applies To

  • Management API
  • Get Authentication Methods
  • /api/v2/users/{id}/authentication-methods

Solution

After July 8th, 2025, when a password is set, it will be shown in the JSON response like this:

{ 
    "id": "password|***",
    "type": "password",
    "identity_user_id": "123a4b***",
    "last_password_reset": "2025-07-09T12:08:05.563Z",
    "created_at: "2025-07-08T16:08:05.748Z"
},

If a user has no password set, there will be no authentication method entry that has the type “password”.