Create SSO provider
documentedRegister a new SSO provider.
POST /admin/sso/providersAdminno 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://{{base_url}}/auth/v1/admin/sso/providers" \
-X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "APIKey: {{SUPABASE_API_KEY}}" \
-H "Authorization: Bearer {{SUPABASE_API_KEY}}" \
-d '{"type": "{{$provider_type}}", "metadata_url": "{{$metadata_url}}", "domains": ["{{$domain}}"]}'