List organisation wallet units
GET/v2/config/digital-wallet/openid/wallet-provider/organisation-wallet-units
This endpoint is used by wallet provider for listing organisation wallet units.
Request
Query Parameters
status of legal PID
status of Wallet unit attestation
name of the organisation
Requested index for start of resources to be provided in response requested by client
Default value: 10
Number of items returned per page. Requested number of resources to be provided in response requested by client.
Responses
- 200
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": 0,
    "totalItems": 0,
    "totalPages": 0,
    "limit": 0,
    "hasPrevious": true,
    "hasNext": true
  }
}