Sign in

Register client

documented

Registers a new dynamic OAuth client.

POST /oauth2/v1/clientsOAuth 2.0no implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

Official Okta Dynamic Client Registration API: POST /oauth2/v1/clients. Base URL is https://{yourOktaDomain}/oauth2/v1/clients (e.g., https://dev-123456.okta.com/oauth2/v1/clients). See Okta docs: Dynamic Client Registration (Register a client) for the endpoint and request body, and the OpenAPI reference for details. ([developer.okta.com](https://developer.okta.com/docs/reference/api/oauth-clients))

npx -y keychains@latest curl "https://{{OKTA_DOMAIN}}/oauth2/v1/clients" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"application_type": "web", "client_name": "{{$client_name}}", "redirect_uris": ["{{$redirect_uri}}"], "grant_types": ["authorization_code"], "response_types": ["code"], "token_endpoint_auth_method": "client_secret_basic"}'
Register client · Okta · OpenIntegrations