List Credentials

Retrieves all credentials associated with the authenticated user.

HTTP request
GET /auth/credentials
Authorization requirements
Header Type Required Description
Authorization string Yes Bearer token used to authenticate the API request. See Authentication flows for instructions on generating this token.
Request body
curl --request GET \
  --url https://api.digitalassets.ibm.com/auth/credentials \
  --header 'Authorization: Bearer <token>'
Response
200: Success

Example response:

{
  "items": [
    {
      "kind": "Fido2",
      "credentialId": "<string>",
      "credentialUuid": "<string>",
      "dateCreated": "<string>",
      "isActive": true,
      "name": "<string>",
      "publicKey": "<string>",
      "relyingPartyId": "<string>",
      "origin": "<string>"
    }
  ]
}