Getting started Community Training Tutorials Documentation APIs, AI & Tools
PUT /oauth2/connect/register/{{client_id}}
Accept: application/json
Host: identity.example.com
Authorization: Bearer access-token
{
"client_id": "client_id",
"client_secret": "some-secret",
"redirect_uris": [
"https://example.com/"
],
"grant_types": [ "authorization_code" ],
"token_endpoint_auth_method": "client_secret_basic",
"response_types": [ "code" ],
"client_name": "test-client-name"
}



