List trust authority
GET/v2/config/digital-wallet/openid/trust-authorities
Lists all trust authority configurations, including EBSI Trust Registry entries, used for trust chain validation in OID4VCI and OpenID4VP flows.
Responses
- 200
- 401
- 500
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
trustAuthority object[]
Unique identifier for the trust authority record.
Type of the trust list (e.g. EBSI Trusted Issuer Registry).
URL or identifier of the trust list endpoint.
Human-readable name of the trust authority.
Unix timestamp (in seconds) when this trust authority was registered.
Unix timestamp (in seconds) when this trust authority was last modified.
When true, this trust authority is disabled and not used for credential or verifier trust validation.
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
{
"trustAuthority": [
{
"id": "string",
"type": true,
"value": true,
"name": true,
"createdAt": 0,
"updatedAt": 0,
"disabled": true
}
],
"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"
}