post https://example.com/auth/api/v1/idp/clients
Creates a new identity provider client configuration. client_id and client_secret are automatically generated by server.
Log in to see full request history
Responses
Creates a new identity provider client configuration. client_id and client_secret are automatically generated by server.
xxxxxxxxxx
30curl --request POST \
--url https://example.com/auth/api/v1/idp/clients \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"idp_type": "oidc",
"oidc_issuer": "Provided by server",
"oidc_audience": [
"testdomain.local"
],
"oidc_client_id": "Provided by server",
"oidc_client_secret": "Provided by server",
"oidc_scopes_enabled": "Provided by server",
"oidc_response_types_supported": "Provided by server",
"oidc_grant_types_supported": "Provided by server",
"oidc_code_challenge_method_enabled": true,
"oidc_auth_method_enabled": "client_secret_basic",
"oidc_auth_method_post": true,
"oidc_grant_type_refresh_token": true,
"oidc_signature_algorithm": "RS256",
"oidc_access_token_valid_in_minutes": 5,
"oidc_refresh_token_valid_in_minutes": 480,
"saml_identifier": "Provided by server",
"saml_sso_service_url": "Provided by server",
"saml_metadata_url": "Provided by server",
"saml_public_x509_certificate": "Provider by server",
"enabled": true
}
Try It!
to start a request and see the response here! Or choose an example: