Skip to main content
POST
/
api
/
v1
/
auth
/
verify-email
Verify Email
curl --request POST \
  --url https://api.devkit4ai.com/api/v1/auth/verify-email \
  --header 'Content-Type: application/json' \
  --data '
{
  "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "verification_token": "<string>"
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}
Verify a user’s email address using the verification token sent via email.

Body

token
string
required
Email verification token

Response

message
string
Confirmation message
email
string
Verified email address

Body

application/json
user_id
string<uuid>
required
verification_token
string
required

Response

Successful Response