--- title: "Update OIDC SSO configuration" source_url: https://dev.digicert.com/certcentral-apis/services-api/account/update-oidc-sso-configuration.html api_method: PUT api_endpoint: "/services/v2/sso/oidc/entity" api_url: "https://www.digicert.com/services/v2/sso/oidc/entity" --- **PUT** `https://www.digicert.com/services/v2/sso/oidc/entity` Use this endpoint to update your OpenID Connect (OIDC) SSO configuration. ## Example requests and responses ## cURL ```bash curl --request PUT 'https://www.digicert.com/services/v2/sso/oidc/entity' \ --header 'X-DC-DEVKEY: {{api_key}}' \ --header 'Content-Type: application/json' \ --data-raw '{ "provider_url": "https://provider.example.com/", "client_id": "client_id", "client_secret": "client_secret", "friendly_name": "Public Friendly Name", "scope_parameter": "preferred_username", "discoverable": true }' ``` ## 204 No Content ```console // No content ``` ## Request parameters
| Name | Req/Opt | Type | Description |
|---|---|---|---|
| provider_url | required | string | URL for your Identity Provider (IdP). Get this value from your IdP service. |
| client_id | required | string | Client ID from your IdP that CertCentral can use to identify itself in requests to your OIDC service. |
| client_secret | required | string | Password from your IdP that CertCentral can use to authenticate requests to your OIDC service. |
| friendly_name | required | string | Custom SSO provider friendly name. If discoverable is true, this friendly name is visible to anyone who visits DigiCert's public SSO login pages. |
| scope_parameter | required | string | ID token claim attribute to match with the username. Allowed values:
|
| discoverable | optional | boolean | If true, your provider friendly name appears in the list of IdPs for anyone who visits DigiCert's public SSO pages. Default: false |