Update an Authentication Provider
Roles
Analytics Events
/v1/users/authentication-providers/{id}Updates an existing Authentication Provider by providing its ID.
Analytic events
- USER_AUTHENTICATION_PROVIDER_UPDATE_START
- USER_AUTHENTICATION_PROVIDER_UPDATE_SUCCESS
- USER_AUTHENTICATION_PROVIDER_UPDATE_FAIL
Authorization
bearerAuth In: header
Path Parameters
Authentication Provider ID
uuidRequest Body
application/json
Update an Authentication Provider
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
application/json
curl -X PUT "https://example.com/v1/users/authentication-providers/497f6eca-6276-4993-bfeb-53cbbbba6f08" \ -H "Content-Type: application/json" \ -d '{ "clientId": "string" }'{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "redirectUrl": "http://example.com", "url": "http://example.com", "scope": [ "openid", "profile", "email" ], "clientId": "string", "tokenEndpointAuthMethod": "client_secret_basic", "staticRequestParameters": { "property1": "string", "property2": "string" }, "forwardedRequestParameters": [], "claimsToPersist": [], "clientSecret": "string"}How would you rate this page?
Retrieve an Authentication Provider GET
Retrieve an existing Authentication Provider by providing its ID. ### **Analytic events** * USER_AUTHENTICATION_PROVIDER_RETRIEVE_START * USER_AUTHENTICATION_PROVIDER_RETRIEVE_SUCCESS * USER_AUTHENTICATION_PROVIDER_RETRIEVE_FAIL
Delete an Authentication Provider DELETE
Deletes an existing Authentication Provider by providing its ID. ### **Analytic events** * USER_AUTHENTICATION_PROVIDER_DELETE_START * USER_AUTHENTICATION_PROVIDER_DELETE_SUCCESS * USER_AUTHENTICATION_PROVIDER_DELETE_FAIL