Update OAuth client
documentedUpdate an OAuth client.
PUT /admin/oauth/clients/{clientId}Adminno 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://{{SUPABASE_API_URL}}/auth/v1/admin/oauth/clients/{{$clientId}}" \
-X PUT \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "Authorization: Bearer {{SUPABASE_SECRET}}" \
-d '{"name": "{{$name}}", "redirect_uris": ["{{$redirect_uri}}"], "grants": ["{{$grant1}}", "{{$grant2}}"], "scope": "{{$scope}}"}'