FortID LogoFortID

Get All Credentials

Retrieve all issued credentials for a specific wallet.

Get all Wallet's Credentials.

GET
/wallets/{walletId}/credentials

Returns all the credentials of the targeted wallet. The returned credentials are not selectively disclosed. All credential data will be visible in the plain text.

Path Parameters

walletId*string

The unique identifier of the Wallet.

Formatuuid

Header Parameters

Authorization*string

Token for authenticating requests to the FortID Wallet Service.

Response Body

application/json

application/json

curl -X GET "https://ews.fortid.com/wallets/f4856bb7-d77a-4a6a-9c8a-7d7f6f639cfb/credentials" \  -H "Authorization: Bearer {access_token}"
[
  {
    "credentialId": "f568fec0-10b6-4b94-9daf-e62c50c9bf3e",
    "issuerUrl": "http://example.com",
    "claims": {
      "eu.europa.ec.eudi.pid.1": {
        "sex": 5,
        "birth_date": "1980-05-23",
        "given_name": "John",
        "expiry_date": "2026-05-23T12:12:12Z",
        "family_name": "Doe",
        "nationality": [
          "FR"
        ],
        "issuance_date": "2024-05-23T12:12:12Z",
        "resident_city": "Rome",
        "place_of_birth": "DE",
        "issuing_country": "DE",
        "resident_street": "123 via Appia",
        "resident_country": "IT",
        "issuing_authority": "DE",
        "resident_postal_code": "00100"
      }
    },
    "format": "mso_mdoc",
    "type": "eu.europa.ec.eudi.pid.1",
    "credentialConfigurationId": "eu.europa.ec.eudi.pid_mdoc",
    "validity": {
      "validFrom": "2019-08-24T14:15:22Z",
      "validUntil": "2019-08-24T14:15:22Z",
      "createdAt": "2019-08-24T14:15:22Z",
      "receivedAt": "2019-08-24T14:15:22Z"
    }
  }
]
{
  "message": "Wallet with ID f4856bb7-d77a-4a6a-9c8a-7d7f6f639cfb not found"
}
Empty