List notification
GET/v2/config/digital-wallet/openid/notifications
This endpoint is used for listing notification.
Request
Query Parameters
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.
Possible values: [read
, unread
]
Filtering notification by status
Possible values: [credential_acked
, credential_revoked
, credential_expired
]
Filtering notification by notification type
Responses
- 200
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
notification object[]
Identifier for the notification
Possible values: [credential_acked
, credential_revoked
, credential_expired
]
Define the type of the notification
Define the type related id of the notification
Define the content of the notification
Possible values: [read
, unread
]
Define the status of the notification
Timestamp when the record was created.
Timestamp when the record was updated.
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
{
"notification": [
{
"id": "string",
"notificationType": "credential_acked",
"notificationTypeRelatedId": "string",
"notificationContent": {},
"status": "read",
"createdAt": 0,
"updatedAt": 0
}
],
"pagination": {
"currentPage": 0,
"totalItems": 0,
"totalPages": 0,
"limit": 0,
"hasPrevious": true,
"hasNext": true
}
}