AurionAI Docs

Verify Email Otp

Verify the 6-digit email OTP code sent during registration. Requires Bearer JWT (user already has token from registration). On success, marks email as verified and returns a new JWT with email_verified=true.

POST
/api/v1/signup/verify-email-otp

Verify the 6-digit email OTP code sent during registration.

Requires Bearer JWT (user already has token from registration). On success, marks email as verified and returns a new JWT with email_verified=true.

Authorization

AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X POST "https://loading/api/v1/signup/verify-email-otp" \  -H "Content-Type: application/json" \  -d '{    "code": "string"  }'
{}
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}