GET
/
users
/
{userID}
/
passwordManagers
curl --request GET \
  --url https://backendapi.corbado.io/v2/users/{userID}/passwordManagers \
  --header 'Authorization: Basic <encoded-value>'
{
  "passwordManagers": [
    {
      "id": "<string>",
      "userID": "<string>",
      "clientEnvID": "<string>",
      "credentialID": "<string>",
      "aaguid": "<string>",
      "status": "<string>",
      "score": 123,
      "createdMs": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

userID
string
required

ID of user

Response

200
application/json

List of all matching password managers

The response is of type object.