Read notification
GET/v2/config/digital-wallet/openid/notification/:notificationId
This endpoint is used for reading notification.
Request
Path Parameters
notificationId stringrequired
Identifier for the notification.
Responses
- 200
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
notification object
id stringrequired
Identifier for the notification
notificationType stringrequired
Possible values: [credential_acked
, credential_revoked
, credential_expired
]
Define the type of the notification
notificationTypeRelatedId stringrequired
Define the type related id of the notification
notificationContent object
Define the content of the notification
status string
Possible values: [read
, unread
]
Define the status of the notification
createdAt numberrequired
Timestamp when the record was created.
updatedAt numberrequired
Timestamp when the record was updated.
{
"notification": {
"id": "string",
"notificationType": "credential_acked",
"notificationTypeRelatedId": "string",
"notificationContent": {},
"status": "read",
"createdAt": 0,
"updatedAt": 0
}
}
Loading...