List trust authority
GET/v2/config/digital-wallet/openid/trust-authorities
This endpoint is used for listing trust authority.
Responses
- 200
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
trustAuthority object[]
id string
Identifier for the global configuration
type booleanrequired
Defines the type of trust list
value booleanrequired
Define the trust list url
name boolean
Define the name of the trust list
createdAt numberrequired
Timestamp when the record was created.
updatedAt numberrequired
Timestamp when the record was updated.
pagination object
currentPage integer
Current page number
totalItems integer
Total number of items available
totalPages integer
Total number of pages based on limit
limit integer
Number of items per page
hasPrevious boolean
Indicates if there's a previous page
hasNext boolean
Indicates if there's a next page
{
"trustAuthority": [
{
"id": "string",
"type": true,
"value": true,
"name": true,
"createdAt": 0,
"updatedAt": 0
}
],
"pagination": {
"currentPage": 0,
"totalItems": 0,
"totalPages": 0,
"limit": 0,
"hasPrevious": true,
"hasNext": true
}
}
Loading...