Sign in

Delete MFA factor

documented

Remove an MFA factor for a user.

DELETE /admin/users/{userId}/factors/{factorId}Adminno 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://{{SUPABASE_URL}}/auth/v1/admin/users/{{$user_id}}/factors/{{$factor_id}}' \
  -X DELETE \
  -H 'Authorization: Bearer {{SUPABASE_SERVICE_ROLE_JWT}}' \
  -H 'apikey: {{SUPABASE_API_KEY}}' \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json'
Delete MFA factor · Supabase · OpenIntegrations