# 2FA

<mark style="color:green;">`POST`</mark> `https://yourwebsite.com/api/auth/tfa/verify`

#### Request Body

| Name                                    | Type   | Description   |
| --------------------------------------- | ------ | ------------- |
| token<mark style="color:red;">\*</mark> | string | Session Token |
| code<mark style="color:red;">\*</mark>  | string |               |

{% tabs %}
{% tab title="200: Successful" %}

```json
{
    "status": true,
}
```

{% endtab %}

{% tab title="404: Session not found" %}

```json
{
    "status": false,
    "error": "SESSION_NOT_FOUND",
    "message": "Session not found!"
}
```

{% endtab %}
{% endtabs %}
