Get the users MFA status
/users/{userId}/mfa
The ID of the user
curl -L \ --url 'https://api.ecosuite.io//users/{userId}/mfa' \ --header 'Authorization: YOUR_API_KEY'
{ "mfa": "text" }
Remove the users MFA configuration. They will be requested to reconfigure it again if required
curl -L \ --request DELETE \ --url 'https://api.ecosuite.io//users/{userId}/mfa' \ --header 'Authorization: YOUR_API_KEY'
{}