AuthConnector
Update an OAuth client
Update an OAuth client (superadmin only).
patch/auth/connectors/oauth-clients/{oauth_client_id}
Path parameters
oauth_client_idinteger required
ID of the OAuth client to update.
ID of the OAuth client to update.
Query parameters
cookie_namestring nullable
Request body
Example request
{
"name": "Microsoft 365",
"description": "Shared Microsoft OAuth application.",
"icon_url": "https://cdn.example.com/icons/microsoft.svg"
}Response
Successful Response
Example response
{
"created_at": "2026-01-15T10:30:00Z",
"updated_at": "2026-01-16T08:00:00Z",
"creator_user_id": 12,
"updater_user_id": 12,
"id": 1,
"name": "Microsoft 365",
"client_id": "11111111-2222-3333-4444-555555555555",
"description": "Microsoft Entra ID login and connectors",
"icon_url": "https://cdn.example.com/microsoft.png",
"authorize_url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize",
"admin_consent_url": "https://login.microsoftonline.com/common/adminconsent",
"token_url": "https://login.microsoftonline.com/common/oauth2/v2.0/token",
"logout_url": "https://login.microsoftonline.com/common/oauth2/v2.0/logout",
"redirect_uri": "https://app.example.com/auth/callback"
}