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
Copy file name to clipboardExpand all lines: packages/core/src/routes/admin-user/session.openapi.json
+19Lines changed: 19 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,25 @@
12
12
"description": "Retrieve all non-expired sessions for the user, including session metadata and interaction details when available."
13
13
}
14
14
},
15
+
"/api/users/{userId}/grants": {
16
+
"get": {
17
+
"tags": ["Dev feature"],
18
+
"parameters": [
19
+
{
20
+
"in": "query",
21
+
"name": "appType",
22
+
"description": "Application type filter. Use 'thirdParty' to list third-party app grants only, or 'firstParty' to list first-party app grants only. If omitted, grants from all applications are returned."
23
+
}
24
+
],
25
+
"responses": {
26
+
"200": {
27
+
"description": "Return non-expired grants of the user. Results are filtered by app type when `appType` is provided."
28
+
}
29
+
},
30
+
"summary": "Get user active grants",
31
+
"description": "Retrieve all non-expired grants of the user. Optionally filter by application type via `appType`; when omitted, grants from all application types are returned."
0 commit comments