Validates the 6-digit code and returns API credentials if correct. Code expires after 5 minutes.
cURL
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>" }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The request has succeeded.
verified