Sign in

Create SSO provider

documented

Register a new SSO provider.

POST /admin/sso/providersAdminno 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)

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}}"]}'
Create SSO provider · Supabase · OpenIntegrations