Update SSO Provider
Update SSO provider configuration.
Quick Navigation
Endpoint
PUT /api/v1/sso/providers/{provider_id}
Headers
| Header | Required | Description |
|---|---|---|
Authorization | Yes | Bearer <access_token> |
Content-Type | Yes | application/json |
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
provider_id | integer | Yes | SSO 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.