> ## Documentation Index
> Fetch the complete documentation index at: https://vastai-80aa3a82-docs-cln-3283-cli-tfa-790d53bc8de7f1f3.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# vastai tfa auth-new

Authorize your account to add a new 2FA method. This step is required before running `vastai tfa activate`. For your first method, verification defaults to email. For subsequent methods, use an existing 2FA method.

## Usage

```bash theme={null}
vastai tfa auth-new {[--method-type METHOD_TYPE | --method-id ID | --backup-code BACKUP_CODE] | [--secret SECRET --code CODE]}
```

## Options

<ParamField path="--method-type" type="string">
  2FA method type to use for authorization. Choices: `email`, `sms`, `totp`. Defaults to `email`. Only use when you have exactly one method of this type.
</ParamField>

<ParamField path="--method-id" type="string">
  2FA method ID to use if you have more than one of the same type. Get the ID from `vastai tfa status`.
</ParamField>

<ParamField path="--backup-code" type="string">
  One-time backup code. Using a backup code immediately authorizes without an interactive code prompt.
</ParamField>

<ParamField path="--secret" type="string">
  Secret token from a previous incomplete authorization attempt. Use with `--code` to resume.
</ParamField>

<ParamField path="--code" type="string">
  2FA code from a previous incomplete authorization attempt. Use with `--secret` to resume.
</ParamField>

## Examples

```bash theme={null}
# Default: authorize via email (use for first 2FA method)
vastai tfa auth-new

# Authorize via TOTP (existing Authenticator app)
vastai tfa auth-new --method-type totp

# Authorize via SMS
vastai tfa auth-new -t sms

# Authorize using a specific method ID
vastai tfa auth-new --method-id 456

# Authorize with backup code (no interactive prompt)
vastai tfa auth-new --backup-code ABCD-EFGH-IJKL

# Resume a previous incomplete authorization
vastai tfa auth-new --secret abc123def456 --code 123456
```

## Global Options

The following options are available for all commands:

| Option          | Description                                           |
| --------------- | ----------------------------------------------------- |
| `--url URL`     | Server REST API URL                                   |
| `--retry N`     | Retry limit                                           |
| `--raw`         | Output machine-readable JSON                          |
| `--explain`     | Verbose explanation of API calls                      |
| `--api-key KEY` | API key (defaults to `~/.config/vastai/vast_api_key`) |
