Read notification
GET/v2/config/digital-wallet/openid/notification/:notificationId
Retrieves a wallet notification by its ID for OID4VCI or OpenID4VP events.
Request
Path Parameters
Unique identifier of an OID4VCI credential lifecycle notification.
Responses
- 200
- 401
- 500
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
notification object
Unique identifier for the notification.
Possible values: [credential_acked, credential_revoked, credential_expired]
Type of the OID4VCI notification event. credential_acked (holder acknowledged), credential_revoked (issuer revoked), credential_expired (credential expired).
Identifier of the related resource (e.g. credential exchange ID).
JSON object containing the notification payload details.
Possible values: [read, unread]
Read status. unread for new notifications, read for viewed.
Unix timestamp (in seconds) when the notification was created.
Unix timestamp (in seconds) when the notification was last modified.
{
"notification": {
"id": "string",
"notificationType": "credential_acked",
"notificationTypeRelatedId": "string",
"notificationContent": {},
"status": "read",
"createdAt": 0,
"updatedAt": 0
}
}
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"
}