Skip to main content

Update SSO Provider

Update SSO provider configuration.

Quick Navigation
Outline

Endpoint

PUT /api/v1/sso/providers/{provider_id}

Headers

HeaderRequiredDescription
AuthorizationYesBearer <access_token>
Content-TypeYesapplication/json

Path Parameters

ParameterTypeRequiredDescription
provider_idintegerYesSSO Provider ID

Request Body

{
"name": "Updated Provider Name",
"sso_url": "https://example.okta.com/sso/saml/v2",
"certificate": "new_base64_certificate"
}

Response

Success (200)

{
"success": true,
"data": {
"provider": {
"id": 1,
"name": "Updated Provider Name",
"status": "active"
},
"message": "SSO provider updated successfully"
},
"message": "SSO provider updated successfully"
}

Features

  • Configuration updates
  • Certificate rotation
  • Validation

Status

[WARNING] TODO: Not Implemented

This endpoint is defined in the router but the implementation logic is not yet complete.