Update OIDC Provider (Admin)
PATCH
/oidc/admin/providers/{id}
Updates an existing OIDC provider's configuration such as endpoints, client credentials, or enabled status. Admin access required.
Authorizations
BearerAuth
Enter your session token to authenticate API requests
TypeHTTP (bearer)
Parameters
Path Parameters
id*
The unique identifier of the OIDC provider to update
Typestring
RequiredRequest Body
application/json
JSON
{
"name": "string",
"issuer": "string",
"clientId": "string",
"clientSecret": "string",
"redirectUri": "string",
"scope": "string",
"enabled": true,
"emailAttribute": "string",
"firstNameAttribute": "string",
"lastNameAttribute": "string",
"usernameAttribute": "string",
"isInternal": true
}
Responses
Provider successfully updated
application/json
JSON
{
}