Create connection
documentedCreate a new authentication/identity connection.
POST /api/v2/connectionsManagement 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/connections" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"name": "{{$name}}", "display_name": "{{$display_name}}", "strategy": "{{$strategy}}", "enabled_clients": ["{{$enabled_client_id}}"], "description": "{{$description}}", "is_domain_connection": {{$is_domain_connection}}, "options": {{$options}}}'