You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -22,6 +24,8 @@ This message is commonly used as a response to [/resource-management/0.1/permiss
22
24
|**granted**| List of objects representing users who have been granted access to the resource. Each entry includes the user’s DID and the timestamp when access was granted. | object[]| ❌ |
23
25
|**pending**| List of objects representing users whose permission requests are awaiting approval. Each entry includes the user’s DID and the timestamp when the request was received. | object[]| ❌ |
24
26
|**rejected**| List of objects representing users whose permission requests were explicitly rejected. Each entry includes the user’s DID and the timestamp when the rejection occurred. | object[]| ❌ |
27
+
|**revoked**| List of objects representing users whose permission requests were explicitly revoked. Each entry includes the user’s DID and the timestamp when the rejection occurred. | object[]| ❌ |
28
+
|**deleted**| List of objects representing users whose permission requests were explicitly deleted. Each entry includes the user’s DID and the timestamp when the rejection occurred. | object[]| ❌ |
25
29
26
30
27
31
| Field | Description | Type | Required |
@@ -59,6 +63,12 @@ This message is commonly used as a response to [/resource-management/0.1/permiss
@@ -18,6 +19,8 @@ Attachments may also be included to share encrypted authorization data or other
18
19
|**id**| Unique identifier of the resource for which permissions are being updated. In the current implementation, this corresponds to the configuration ID. | string | ✅ |
19
20
|**grant**| List of DIDs that have been granted access to the resource. | string[]| ❌ |
20
21
|**reject**| List of DIDs that were explicitly denied access. This field can be omitted if no rejections are needed. | string[]| ❌ |
22
+
|**revoke**| List of DIDs whose access was revoked. This field can be omitted if no revocations are needed. | string[]| ❌ |
23
+
21
24
22
25
23
26
-**Example of permissions-update:**
@@ -38,6 +41,9 @@ Attachments may also be included to share encrypted authorization data or other
0 commit comments