Update MFA factor
documentedUpdate a user’s MFA factor.
PUT /admin/users/{userId}/factors/{factorId}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://{{$project_ref}}.supabase.co/auth/v1/admin/users/{{$user_id}}/factors/{{$factor_id}}" \
-X PUT \
-H "Authorization: Bearer {{SUPABASE_SECRET}}" \
-H "apikey: {{SUPABASE_API_KEY}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"friendly_name": "{{$friendly_name}}", "phone": "{{$phone}}"}'