Update
PUT/oauth2/authorized-clients/:id
Update a OAuth2 Authorized Client given its client registration id
Request
Path Parameters
id int64required
The Id
- application/json
Body
required
access_token_expires_at date-time
When the Access Token expires
access_token_issued_at date-time
When the Access Token was issued
access_token_scopes string
The Access Token scopes
access_token_type string
The Access Token Type
access_token_value string
The Access Token Value
client_registration_id string
The Client Registration Id
principal_name string
The Principal Name
refresh_token_issued_at date-time
When the Access Token was issued
refresh_token_value string
The Refresh Token Value
Responses
- 200
- 401
Found
- application/json
- Schema
- Example (from schema)
Schema
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
{
"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"
}
Authentication Failure