Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion 1.1/openid-4-verifiable-credential-issuance-1_1.md
Original file line number Diff line number Diff line change
Expand Up @@ -1632,7 +1632,22 @@ Authorization: Bearer czZCaGRSa3F0MzpnWDFmQmF0M2JW
}
```

Below is a non-normative example of a Notification Request when a Credential was deleted by the End-User:
Below is a non-normative example of a Notification Request when a Credential was rejected by the End-User:

```
POST /notification HTTP/1.1
Host: server.example.com
Content-Type: application/json
Authorization: Bearer czZCaGRSa3F0MzpnWDFmQmF0M2JW

{
"notification_id": "3fwe98js",
"event": "credential_deleted",
"event_description": "User rejected the issued Credential."
}
```

Below is a non-normative example of a Notification Request when a Credential could not be stored in the Wallet:

```
POST /notification HTTP/1.1
Expand Down