Skip to main content
POST
/
v1
/
auth
/
verify
/
confirm
Confirm email verification code
curl --request POST \
  --url https://api.vidjutsu.ai/v1/auth/verify/confirm \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "<string>",
  "code": "<string>"
}
'
{
  "status": "verified",
  "apiKey": "<string>",
  "clientId": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
email
string
required
code
string
required

Response

200 - application/json

The request has succeeded.

status
enum<string>
required
Available options:
verified
apiKey
string
required
clientId
string
required