My Account API
cURL
curl --request GET \ --url https://{host}/me/v1/authentication-methods \ --header 'Authorization: Bearer <token>'
{ "authentication_methods": [ { "id": "<string>", "created_at": "2023-11-07T05:31:56Z", "usage": [ "primary" ], "type": "password", "identity_user_id": "<string>", "last_password_reset": "2023-11-07T05:31:56Z" } ] }
Retrieve detailed list of authentication methods belonging to the authenticated user.
Bearer and DPoP tokens are supported depending on the API configuration
Successfully retrieved authentication methods
20
Show child attributes