List organisation wallet units
GET/v2/config/digital-wallet/openid/wallet-provider/organisation-wallet-units
Lists all organization wallet units managed by the wallet provider for OID4VCI and OpenID4VP operations.
Request
Query Parameters
Filter by Legal Person Identification Data (LPID) credential status.
Filter by Wallet Unit Attestation (WUA) lifecycle status.
Filter by organisation name.
Number of records to skip for pagination.
Default value: 10
Maximum number of records to return per page.
Responses
- 200
- 401
- 500
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
walletUnit object[]
Name of the organisation
Possible values: [inactive, active, expired, revoked]
status of the legal PID
expiry of the legal PID
status of the wallet unit attestation
expiry of the wallet unit attestation
total number of issued credentials
total number of verifications
timestamp for the last activity for the organisation
pagination object
Current page number
Total number of items available
Total number of pages based on limit
Number of items per page
Indicates if there's a previous page
Indicates if there's a next page
{
"walletUnit": [
{
"organisationName": "string",
"lpidStatus": "inactive",
"lpidExpiry": 0,
"wuaStatus": "string",
"wuaExpiry": "string",
"issuedCredentials": 0,
"verifications": 0,
"lastActivity": "string"
}
],
"pagination": {
"currentPage": 1,
"totalItems": 25,
"totalPages": 3,
"limit": 10,
"hasPrevious": false,
"hasNext": true
}
}
Unauthorized
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
{
"errorCode": 400,
"errorDescription": "Bad input parameter"
}
Internal server error
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
{
"errorCode": 400,
"errorDescription": "Bad input parameter"
}