List
GET/oauth2/authorized-clients
List OAuth2 Authorized Clients
Request
Query Parameters
cursor string
The cursor
limit integer
Default value: 10
The maximum number of results
Responses
- 200
- 401
Found
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
first stringnullablerequired
The link to the first page.
items
object[]
required
An array of objects.
access_token_expires_at date-time
access_token_issued_at date-time
access_token_scopes string
access_token_type string
access_token_value string
client_registration_id string
id int64
principal_name string
refresh_token_issued_at date-time
refresh_token_value string
last stringnullablerequired
The link to the last page.
next stringnullablerequired
The link to the next page or null if there's no page.
prev stringnullablerequired
The link to the previous page or null if there's no page.
self stringnullablerequired
The link to the current page.
{
"first": "string",
"items": [
{
"access_token_expires_at": "2024-07-29T15:51:28.071Z",
"access_token_issued_at": "2024-07-29T15:51:28.071Z",
"access_token_scopes": "string",
"access_token_type": "string",
"access_token_value": "string",
"client_registration_id": "string",
"id": 0,
"principal_name": "string",
"refresh_token_issued_at": "2024-07-29T15:51:28.071Z",
"refresh_token_value": "string"
}
],
"last": "string",
"next": "string",
"prev": "string",
"self": "string"
}
Authentication Failure