removeMfaPhoneNumber

client.removeMfaPhoneNumber({
  accessToken: string,
  phoneNumber: string
})

About this command

Unregister a phone number from MFA credentials.

Examples

client.removeMfaPhoneNumber({
    accessToken: 'eyJ0eXAiOiJKV1QiL...',
    phoneNumber: '+33606060606'
})

Parameters

accessToken string

The authorization credential JSON Web Token (JWT) used to access the ReachFive API, less than five minutes old.

phoneNumber string

The user’s phone number.

Both the international format and the national conventions of the account’s country are accepted if configured in account settings.

Response

Type: Promise<void>