Sign in

Create OAuth client

documented

Register a new OAuth client (admin).

POST /admin/oauth/clientsAdminno 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://api.supabase.com/v1/admin/oauth/clients" \
  -X POST \
  -H "Authorization: Bearer {{SUPABASE_SERVICE_ROLE}}" \
  -H "apikey: {{SUPABASE_API_KEY}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"name": "{{$name}}", "redirect_uris": ["{{$redirect_uri}}"], "grant_types": ["authorization_code"], "response_types": ["code"]}'