Create client
documentedCreate a new client/application.
POST /api/v2/clientsManagement APIno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://{{AUTH0_DOMAIN}}/api/v2/clients" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"name": "{{$name}}", "description": "{{$description}}", "app_type": "{{$app_type}}", "callbacks": ["{{$callback_url}}"], "logo_uri": "{{$logo_uri}}", "jwt_configuration": {"alg": "RS256", "lifetime_in_seconds": {{$lifetime_seconds}}}}'