Authentication

Verify 2FA email code

POST
/auth/twofactorauth/emailotp/verify

Finishes the login sequence with an 2FA email code.

Authorization

authCookie
auth<token>

Auth Token via Cookie

In: cookie

Request Body

application/json

code*string

Response Body

application/json

application/json

curl -X POST "https://api.vrchat.cloud/api/1/auth/twofactorauth/emailotp/verify" \  -H "Content-Type: application/json" \  -d '{    "code": "string"  }'
{
  "verified": true
}
{
  "error": {
    "message": "\"Missing Credentials\"",
    "status_code": 401
  }
}